/* Anime Sticker Maker Studio (Animora) — marketing site
   "Playful Anime Pop": bright lavender canvas, blue→purple gradient hero,
   sunny-yellow + candy-pink accents, heavy rounded sans display headings,
   pill buttons, soft glows and sticker-style shadows. */

:root {
  --bg: #f4f5ff;           /* very light lavender-white */
  --bg-soft: #eceefff5;    /* slightly deeper lavender */
  --bg-card: #ffffff;      /* white card */
  --bg-card-soft: #f7f8ff;
  --ink-ribbon: #241a4d;   /* deep indigo dark surface */

  --border: rgba(80, 70, 160, 0.12);
  --border-strong: rgba(80, 70, 160, 0.22);
  --hairline: rgba(80, 70, 160, 0.12);

  --text: #211a3d;         /* deep indigo-ink */
  --text-soft: #55507a;    /* muted body */
  --text-mute: #8b86a8;    /* captions */

  /* brand pop colors, pulled from the app graphics */
  --blue: #4b73ff;
  --blue-deep: #3a5cf0;
  --purple: #8b5cf6;
  --purple-deep: #7c3aed;
  --yellow: #ffce3a;       /* sunny highlight (the "Stickers" word) */
  --pink: #ff5c93;         /* candy pink */
  --wa-green: #25d366;     /* WhatsApp green */

  --grad-hero: linear-gradient(150deg, #4f79ff 0%, #6a56f0 48%, #8b5cf6 100%);
  --grad-brand: linear-gradient(92deg, var(--blue) 0%, var(--purple) 100%);

  --accent: var(--purple);
  --accent-2: var(--blue);
  --accent-3: #6d4be0;     /* link / label accent */

  --shadow-sm: 0 2px 10px rgba(60, 45, 110, 0.07);
  --shadow-md: 0 16px 40px rgba(60, 45, 110, 0.14);
  --shadow-lg: 0 34px 70px rgba(50, 35, 100, 0.22);
  --shadow-pop: 0 18px 44px rgba(107, 75, 224, 0.30);

  --radius-card: 20px;
  --radius-hero: 28px;
  --radius-badge: 14px;
  --radius-pill: 999px;

  --maxw: 1160px;

  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter",
    "Segoe UI", Roboto, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.rule {
  border: none;
  border-top: 1px solid var(--hairline);
  max-width: var(--maxw);
  margin: 0 auto;
}

/* small uppercase eyebrow/label */
.eyebrow, .kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-3);
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(244, 245, 255, 0.82);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.brand span b {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a.link {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.18s;
}
.nav-links a.link:hover { color: var(--accent-3); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  padding: 11px 24px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.16s, box-shadow 0.16s, background 0.16s, color 0.16s;
}
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-pop);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--accent-3); color: var(--accent-3); }

/* ---------- GOOGLE PLAY BADGE ---------- */
.googleplay-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #16111f;
  color: #fff;
  border-radius: var(--radius-badge);
  padding: 11px 24px 11px 18px;
  box-shadow: var(--shadow-md);
  transition: transform 0.16s, box-shadow 0.16s;
}
.googleplay-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.googleplay-badge svg { width: 26px; height: 26px; flex: none; }
.googleplay-badge .gp-text { display: flex; flex-direction: column; line-height: 1.1; }
.googleplay-badge .gp-small {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.82;
}
.googleplay-badge .gp-big { font-size: 1.2rem; font-weight: 700; letter-spacing: 0.01em; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  margin: 22px auto 0;
  max-width: calc(var(--maxw) + 48px);
  padding: 0 24px;
}
.hero-panel {
  position: relative;
  background: var(--grad-hero);
  border-radius: 34px;
  padding: 76px 60px 72px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
/* soft star / glow texture on the hero */
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 340px at 12% -10%, rgba(255,255,255,0.22), transparent 70%),
    radial-gradient(460px 300px at 100% 120%, rgba(255, 92, 147, 0.30), transparent 70%),
    radial-gradient(360px 260px at 84% -6%, rgba(255, 206, 58, 0.26), transparent 68%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 52px;
  align-items: center;
}
.hero-copy .eyebrow {
  color: #fff;
  opacity: 0.92;
  margin-bottom: 20px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(2.5rem, 5.4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 22px;
  text-shadow: 0 4px 20px rgba(30, 15, 70, 0.25);
}
.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}
.hero p.lead {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.92);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero-cta .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.hero-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: #fff;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  list-style: none;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.trust-row li {
  position: relative;
  padding-left: 18px;
}
.trust-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

/* hero art — overlapping phone screenshots */
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}
.hero-phone {
  position: relative;
}
.hero-phone img {
  width: 250px;
  max-width: 100%;
  display: block;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(25, 12, 60, 0.42);
}
.hero-phone.back {
  position: absolute;
  transform: rotate(-8deg) translate(-58%, 4%);
  left: 50%;
  opacity: 0.96;
}
.hero-phone.back img { width: 210px; }
.hero-phone.front {
  transform: rotate(5deg) translateX(14%);
  z-index: 2;
}

/* ---------- SECTION HEADINGS ---------- */
.section { padding: 90px 0; }
.section-head {
  max-width: 680px;
  margin: 0 0 54px;
}
.section-head .kicker { margin-bottom: 14px; }
.section-head h2 {
  font-weight: 800;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}
.section-head p { color: var(--text-soft); font-size: 1.05rem; max-width: 560px; }

/* ---------- FEATURES ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px 34px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  box-shadow: var(--shadow-pop);
}
.feature-card:nth-child(2) .feature-num { background: linear-gradient(92deg, var(--pink), #ff8f6b); box-shadow: 0 14px 34px rgba(255, 92, 147, 0.3); }
.feature-card:nth-child(3) .feature-num { background: linear-gradient(92deg, var(--wa-green), #4fd98a); box-shadow: 0 14px 34px rgba(37, 211, 102, 0.3); }
.feature-card:nth-child(5) .feature-num { background: linear-gradient(92deg, #ffb23a, var(--yellow)); box-shadow: 0 14px 34px rgba(255, 178, 58, 0.32); color: #4a2f00; }
.feature-card:nth-child(6) .feature-num { background: linear-gradient(92deg, var(--purple), var(--pink)); box-shadow: 0 14px 34px rgba(139, 92, 246, 0.3); }
.feature-card h3 {
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 9px;
}
.feature-card p { color: var(--text-soft); font-size: 0.97rem; }

/* ---------- SCREENSHOTS ---------- */
.screens-scroller {
  justify-content: safe center;
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 30px;
  scrollbar-width: thin;
  scrollbar-color: var(--purple) transparent;
}
.screens-scroller::-webkit-scrollbar { height: 7px; }
.screens-scroller::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 999px;
}
.screens-scroller::-webkit-scrollbar-track { background: transparent; }
.screen-tile {
  flex: 0 0 auto;
  width: 258px;
  scroll-snap-align: center;
}
.screen-tile img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

/* ---------- PRIVACY CALLOUT ---------- */
.privacy-callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-hero);
  padding: 54px 54px;
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 54px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.privacy-callout .kicker { margin-bottom: 14px; }
.privacy-callout h2 {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.privacy-callout p { color: var(--text-soft); margin-bottom: 14px; }
.privacy-list { list-style: none; display: grid; gap: 15px; }
.privacy-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.97rem;
  color: var(--text-soft);
  padding-bottom: 15px;
  border-bottom: 1px solid var(--hairline);
}
.privacy-list li:last-child { border-bottom: none; padding-bottom: 0; }
.privacy-list svg {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  color: var(--wa-green);
}

/* ---------- DOWNLOAD CTA ---------- */
.download-card {
  background: var(--grad-hero);
  border-radius: var(--radius-hero);
  padding: 74px 40px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.download-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(440px 300px at 16% -10%, rgba(255, 206, 58, 0.30), transparent 70%),
    radial-gradient(460px 320px at 90% 120%, rgba(255, 92, 147, 0.34), transparent 70%);
  z-index: 0;
}
.download-card > * { position: relative; z-index: 1; }
.download-card .kicker { color: var(--yellow); margin-bottom: 16px; }
.download-card img.dl-icon {
  width: 84px; height: 84px; border-radius: 20px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.30);
  margin-bottom: 22px;
}
.download-card h2 {
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
  color: #fff;
  text-shadow: 0 4px 18px rgba(30, 15, 70, 0.25);
}
.download-card p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  margin: 0 auto 30px;
}
.download-card .googleplay-badge { background: #16111f; }

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--hairline);
  margin-top: 0;
  padding: 62px 0 38px;
  background: var(--bg-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 14px;
}
.footer-brand img { width: 36px; height: 36px; border-radius: 10px; }
.footer p.blurb { color: var(--text-soft); font-size: 0.93rem; max-width: 300px; }
.footer h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { color: var(--text-soft); font-size: 0.93rem; transition: color 0.16s; }
.footer ul a:hover { color: var(--accent-3); }
.footer-bottom {
  border-top: 1px solid var(--hairline);
  margin-top: 46px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-mute);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

/* ---------- LEGAL / CONTENT PAGES ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 66px 32px 96px;
}
.legal .back-link {
  color: var(--accent-3);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 30px;
}
.legal .back-link:hover { text-decoration: underline; }
.legal h1 {
  font-weight: 800;
  font-size: clamp(2.1rem, 4.4vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 10px;
}
.legal .dates { color: var(--text-mute); font-size: 0.88rem; margin-bottom: 36px; }
.legal .summary-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--purple);
  border-radius: var(--radius-card);
  padding: 26px 30px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}
.legal .summary-box h3 {
  font-weight: 800;
  font-size: 1.16rem;
  margin-bottom: 14px;
  color: var(--accent-3);
}
.legal .summary-box ul { padding-left: 20px; display: grid; gap: 9px; }
.legal .summary-box li { color: var(--text-soft); }
.legal h2 {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 42px 0 14px;
  padding-top: 8px;
}
.legal h3 {
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--text);
  margin: 26px 0 8px;
}
.legal p, .legal li { color: var(--text-soft); margin-bottom: 12px; }
.legal ul, .legal ol { padding-left: 22px; margin-bottom: 16px; }
.legal li { margin-bottom: 7px; }
.legal a.inline { color: var(--accent-3); font-weight: 600; text-decoration: underline; }
.legal a.inline:hover { color: var(--purple-deep); }
.legal strong { color: var(--text); font-weight: 700; }
.legal em { font-style: italic; }
.legal .sdk-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.legal .sdk-card h3 { margin-top: 0; color: var(--text); }
.legal .sdk-card p { margin-bottom: 6px; font-size: 0.94rem; }
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 0.92rem;
}
.legal th, .legal td {
  border: 1px solid var(--border);
  padding: 11px 14px;
  text-align: left;
}
.legal th {
  background: var(--bg-soft);
  color: var(--text);
  font-weight: 700;
}
.legal td { color: var(--text-soft); }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 26px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.faq-item h3 {
  font-weight: 800;
  font-size: 1.14rem;
  margin-bottom: 8px;
  color: var(--text);
}
.faq-item p { color: var(--text-soft); margin-bottom: 0; }
.contact-card {
  background: var(--grad-hero);
  color: #fff;
  border-radius: var(--radius-hero);
  padding: 44px 34px;
  text-align: center;
  margin-top: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(360px 240px at 14% -10%, rgba(255, 206, 58, 0.28), transparent 70%),
    radial-gradient(380px 260px at 90% 120%, rgba(255, 92, 147, 0.30), transparent 70%);
  z-index: 0;
}
.contact-card > * { position: relative; z-index: 1; }
.contact-card h2 {
  font-weight: 800;
  color: #fff;
  font-size: 1.7rem;
  margin: 0 0 10px;
}
.contact-card p { color: rgba(255,255,255,0.9); margin-bottom: 22px; }
.contact-card a.email-btn {
  display: inline-block;
  background: #fff;
  color: var(--accent-3);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  transition: transform 0.16s;
}
.contact-card a.email-btn:hover { transform: translateY(-2px); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 920px) {
  .hero-panel { padding: 52px 34px 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { order: -1; min-height: 380px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .privacy-callout { grid-template-columns: 1fr; gap: 34px; padding: 44px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links a.link { display: none; }
  .section { padding: 70px 0; }
}
@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .hero { padding: 0 14px; }
  .hero-panel { padding: 40px 24px 46px; border-radius: 26px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-phone img { width: 210px; }
  .hero-phone.back { display: none; }
  .hero-phone.front { transform: rotate(0); }
  .screen-tile { width: 214px; }
  .section { padding: 58px 0; }
  .privacy-callout { padding: 34px 24px; }
  .download-card { padding: 54px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .legal { padding: 50px 22px 72px; }
}
