/* ═══════════════ TOKENS ═══════════════ */
:root {
  --blue: #0a7cff;
  --blue-dark: #0059d6;
  --sky-1: #3fa4ff;
  --sky-2: #0a6de8;
  --yellow: #ffc931;
  --pink: #ff5d8f;
  --ink: #14284b;
  --muted: #5b7099;
  --bg: #f6faff;
  --card: #ffffff;
  --radius: 28px;
  --shadow: 0 12px 40px -12px rgba(20, 40, 75, 0.14);
  --font: "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ═══════════════ REVEAL ═══════════════ */
.reveal        { opacity: 0; transform: translateY(24px); }
.reveal-left   { opacity: 0; transform: translateX(-64px); }
.reveal-right  { opacity: 0; transform: translateX(64px); }
.reveal, .reveal-left, .reveal-right {
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.is-visible { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
  .float, .tw { animation: none !important; }
}

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding: 14px 20px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px -8px rgba(20, 40, 75, 0.12);
}
.nav__inner { max-width: 1120px; margin: 0 auto; display: flex; align-items: center; gap: 28px; }
.nav__brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 20px; color: #fff; transition: color 0.3s; }
.nav.is-scrolled .nav__brand { color: var(--ink); }
.nav__icon { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.nav__links { margin-left: auto; display: flex; gap: 26px; font-weight: 700; font-size: 15px; color: rgba(255,255,255,0.9); transition: color 0.3s; }
.nav.is-scrolled .nav__links { color: var(--muted); }
.nav__links a:hover { opacity: 0.7; }
.btn--nav {
  background: var(--yellow); color: var(--ink);
  font-weight: 800; font-size: 15px;
  padding: 10px 22px; border-radius: 999px;
  box-shadow: 0 6px 18px -6px rgba(255, 201, 49, 0.7);
  transition: transform 0.15s ease;
}
.btn--nav:hover { transform: translateY(-2px); }
@media (max-width: 640px) { .nav__links { display: none; } .btn--nav { margin-left: auto; } }

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(255,255,255,0.25), transparent 60%),
    linear-gradient(165deg, var(--sky-1) 0%, var(--sky-2) 90%);
  padding: 130px 0 0;
  overflow: hidden;
}
.hero__inner {
  max-width: 1120px; margin: 0 auto;
  padding-inline: 20px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px;
  align-items: center;
  padding-bottom: 170px;
}
.hero__eyebrow {
  color: rgba(255,255,255,0.7);
  font-weight: 800; font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-bottom: 22px;
}
.hero h1 {
  color: #fff; font-size: clamp(44px, 6vw, 72px);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero__sub {
  color: rgba(255,255,255,0.92); font-size: 19px; font-weight: 600;
  max-width: 460px; margin-bottom: 34px;
}
.hero__proof { display: flex; align-items: center; gap: 10px; margin-top: 22px; color: rgba(255,255,255,0.85); font-weight: 700; font-size: 14px; }
.hero__rating { color: var(--yellow); letter-spacing: 2px; font-size: 16px; }

/* stores */
.stores { display: flex; gap: 14px; flex-wrap: wrap; }
.store {
  display: flex; align-items: center; gap: 12px;
  background: #10182b; color: #fff;
  padding: 12px 22px; border-radius: 16px;
  box-shadow: 0 10px 26px -10px rgba(0,0,0,0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.store:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -10px rgba(0,0,0,0.5); }
.store__logo { width: 26px; height: 26px; flex-shrink: 0; }
.store__text { display: flex; flex-direction: column; line-height: 1.15; }
.store__text small { font-size: 11px; opacity: 0.75; font-weight: 600; }
.store__text b { font-size: 18px; font-weight: 800; }

/* phone mockups */
.phone {
  border-radius: 42px;
  border: 10px solid #10182b;
  background: #10182b;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(6, 30, 80, 0.55);
}
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 32px; }
.phone--hero { width: min(320px, 78vw); margin: 0 auto; transform: rotate(3deg); }

.hero__visual { position: relative; }
.float { position: absolute; filter: drop-shadow(0 12px 20px rgba(6,30,80,0.3)); }
.float--love { width: 130px; top: -30px; left: -8px; animation: bob 4.5s ease-in-out infinite; }
.float--shoot { width: 110px; bottom: 30px; right: -6px; animation: bob 5.5s ease-in-out 0.8s infinite; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-14px) rotate(3deg); } }

/* twinkles */
.hero__stars { position: absolute; inset: 0; pointer-events: none; }
.tw { position: absolute; color: rgba(255,255,255,0.8); animation: twinkle 3s ease-in-out infinite; }
.tw--1 { top: 14%; left: 8%;  font-size: 20px; }
.tw--2 { top: 26%; left: 30%; font-size: 12px; animation-delay: 0.6s; }
.tw--3 { top: 12%; left: 58%; font-size: 16px; animation-delay: 1.2s; }
.tw--4 { top: 34%; left: 90%; font-size: 20px; animation-delay: 0.3s; }
.tw--5 { top: 55%; left: 4%;  font-size: 14px; animation-delay: 1.8s; }
.tw--6 { top: 66%; left: 46%; font-size: 12px; animation-delay: 0.9s; }
.tw--7 { top: 20%; left: 76%; font-size: 13px; animation-delay: 2.2s; }
.tw--8 { top: 48%; left: 64%; font-size: 17px; animation-delay: 1.5s; }
@keyframes twinkle { 0%,100% { opacity: 0.25; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.15); } }

.hero__clouds { display: block; width: 100%; height: clamp(120px, 16vw, 220px); margin-top: calc(clamp(120px, 16vw, 220px) * -1); position: relative; }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding-bottom: 130px; }
  .hero__sub { margin-inline: auto; }
  .stores { justify-content: center; }
  .hero__proof { justify-content: center; }
  .hero__visual { margin-top: 20px; }
  .float--love { left: 4%; }
  .float--shoot { right: 4%; }
}

/* ═══════════════ STATS ═══════════════ */
.stats {
  max-width: 860px; margin: 36px auto 0; position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px;
}
.stat { text-align: center; }
.stat b { display: block; font-size: 34px; font-weight: 900; color: var(--blue); line-height: 1.1; }
.stat span { font-size: 14px; font-weight: 700; color: var(--muted); }
@media (max-width: 640px) {
  .stats { margin-inline: 20px; padding: 22px 10px; gap: 8px; }
  .stat b { font-size: 24px; }
  .stat span { font-size: 11.5px; }
}

/* ═══════════════ SECTIONS ═══════════════ */
.section { max-width: 1120px; margin: 0 auto; padding: 110px 20px 0; }
.section__head { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.section__head h2 { font-size: clamp(30px, 4vw, 42px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 14px; }
.section__head p { color: var(--muted); font-size: 18px; font-weight: 600; }

/* features list */
.feature-list {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 22px;
}
.feature {
  display: flex; align-items: center; gap: 28px;
  background: var(--card); border-radius: var(--radius);
  padding: 26px 32px;
  box-shadow: var(--shadow);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.25s ease;
}
.feature:hover { box-shadow: 0 24px 50px -16px rgba(20,40,75,0.2); }
.feature--flip { flex-direction: row-reverse; text-align: right; }
.feature__img {
  flex-shrink: 0;
  width: 108px; height: 108px; border-radius: 28px;
  display: grid; place-items: center;
}
.feature__img img { width: 82px; height: 82px; object-fit: contain; }
.feature__img--blue   { background: #e7f1ff; }
.feature__img--pink   { background: #ffeef3; }
.feature__img--yellow { background: #fff6dd; }
.feature h3 { font-size: 21px; font-weight: 800; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 15.5px; font-weight: 600; }
@media (max-width: 600px) {
  .feature, .feature--flip { flex-direction: column; text-align: center; gap: 18px; padding: 26px 22px; }
  .feature__img { width: 92px; height: 92px; }
  .feature__img img { width: 70px; height: 70px; }
}

/* ═══════════════ MASCOT ═══════════════ */
.mascot {
  margin-top: 120px;
  background: linear-gradient(165deg, #eaf4ff, #dcecff);
  position: relative;
  overflow: hidden;
}
.mascot__inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px;
  align-items: center; padding: 90px 20px;
}
.mascot__peek {
  position: absolute; left: 0; top: 50%;
  width: min(520px, 46vw);
  transform: translate(-30%, -50%);
  pointer-events: none;
}
.mascot__peek.reveal-left { transform: translate(-60%, -50%); opacity: 0; }
.mascot__peek.is-visible  { transform: translate(-30%, -50%) !important; opacity: 1 !important; }
.mascot__peek img {
  width: 100%;
  object-fit: cover; object-position: right center;
  aspect-ratio: 1.05 / 1;
  filter: drop-shadow(0 24px 40px rgba(20,40,75,0.16));
}
.mascot__copy h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px; }
.mascot__head p { color: var(--muted); font-size: 18px; font-weight: 600; }
.mascot__head { margin-bottom: 26px; }
.checks { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.checks li {
  background: #fff; border-radius: 18px;
  padding: 14px 20px 14px 48px;
  position: relative;
  font-weight: 600; color: var(--muted); font-size: 15px;
  box-shadow: 0 6px 20px -8px rgba(20,40,75,0.12);
}
.checks li b { color: var(--ink); font-weight: 800; }
.checks li::before {
  content: "✓";
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  color: var(--blue); font-weight: 900; font-size: 17px;
}
@media (max-width: 860px) {
  .mascot__inner { grid-template-columns: 1fr; text-align: left; padding-top: 56px; padding-bottom: 56px; }
  .mascot__spacer { display: none; }

  /* star peeks from the left edge, aligned with the heading */
  .mascot__peek {
    top: 56px; left: 0;
    width: min(250px, 58vw);
    transform: translateX(-30%);
  }
  .mascot__peek.reveal-left { transform: translateX(-64%); opacity: 0; }
  .mascot__peek.is-visible  { transform: translateX(-30%) !important; opacity: 1 !important; }

  /* heading + subtitle sit beside the star */
  .mascot__head {
    margin-left: min(180px, 42vw);
    min-height: min(238px, 55vw);
    display: flex; flex-direction: column; justify-content: center;
    margin-bottom: 30px;
  }
  .mascot__copy h2 { font-size: clamp(22px, 6vw, 28px); }
  .mascot__head p { font-size: 15.5px; }
}

/* ═══════════════ SCREENS ═══════════════ */
.screens {
  display: flex; gap: 26px; justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.shot {
  width: 250px; flex-shrink: 0;
  border-radius: 28px;
  overflow: hidden;
}
.shot img { width: 100%; display: block; }

@media (max-width: 1120px) {
  /* full-bleed native carousel */
  .screens {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    justify-content: flex-start;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 26px calc(50vw - 120px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .screens::-webkit-scrollbar { display: none; }
  .screens .shot {
    flex: 0 0 240px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transform: scale(0.94);
    transition: transform 0.25s ease;
  }
  .screens .shot.is-centered { transform: scale(1.05); z-index: 2; }
}

/* ═══════════════ FAQ ═══════════════ */
.section--faq { max-width: 760px; }
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq details {
  background: var(--card); border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: 20px 52px 20px 24px;
  font-weight: 800; font-size: 17px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: #e7f1ff; color: var(--blue);
  display: grid; place-items: center;
  font-weight: 900; font-size: 18px;
  transition: transform 0.25s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}
.faq details[open] .faq__content { grid-template-rows: 1fr; }
.faq .faq__content-inner { overflow: hidden; }
.faq .faq__content p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.35s ease;
}
.faq details[open] .faq__content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

/* ═══════════════ CTA ═══════════════ */
.cta { padding: 110px 20px; }
.cta__inner {
  max-width: 1000px; margin: 0 auto;
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(255,255,255,0.18), transparent 60%),
    linear-gradient(160deg, var(--sky-1), var(--sky-2));
  border-radius: 40px;
  padding: 60px;
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 30px;
  align-items: center;
  box-shadow: 0 40px 80px -30px rgba(10, 109, 232, 0.45);
  overflow: hidden;
}
.cta__mascot { width: min(380px, 100%); object-fit: contain; }
.cta__copy h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 10px; }
.cta__copy p { color: rgba(255,255,255,0.92); font-size: 18px; font-weight: 600; margin-bottom: 28px; }
@media (max-width: 800px) {
  .cta__inner { grid-template-columns: 1fr; padding: 44px 28px; text-align: center; }
  .cta__mascot { margin: 0 auto; width: min(300px, 84%); }
  .stores--cta { justify-content: center; }
}

/* ═══════════════ FOOTER ═══════════════ */
.footer { background: #10182b; color: rgba(255,255,255,0.75); padding: 48px 20px; }
.footer__inner { max-width: 1120px; margin: 0 auto; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 18px; color: #fff; }
.footer__brand img { width: 34px; height: 34px; border-radius: 9px; }
.footer__links { display: flex; gap: 24px; font-weight: 700; font-size: 14px; margin-left: auto; }
.footer__links a:hover { color: #fff; }
.footer__copy { width: 100%; font-size: 13px; opacity: 0.55; }
@media (max-width: 640px) {
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { margin-left: 0; }
}

/* ═══════════════ LEGAL PAGES ═══════════════ */
.legal { max-width: 760px; margin: 0 auto; padding: 140px 20px 90px; }
.legal h1 { font-size: clamp(32px, 4vw, 44px); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 8px; }
.legal .legal__updated { color: var(--muted); font-weight: 700; font-size: 14px; margin-bottom: 40px; }
.legal h2 { font-size: 22px; font-weight: 800; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--muted); font-weight: 600; font-size: 15.5px; }
.legal ul { padding-left: 22px; margin: 10px 0; }
.legal a { color: var(--blue); font-weight: 700; }
.legal .nav { background: rgba(255,255,255,0.9); }
