/* ============================================================
   Academy Wyld — student landing
   Sable v5 "amber/paper" design system (landing palette).
   Tokens lifted 1:1 from the design brief (§2.1–2.3).
   ============================================================ */

:root {
  /* — Surfaces & field — */
  --field:      #F4F2EF;
  --field-glow: #DCE7E2;
  --surface:    #FFFFFF;
  --paper:      #FAF9F6;

  /* — Ink — */
  --ink:        #211E19;
  --paper-ink:  #1B2421;
  --muted:      #6B6358;
  --faint:      #9A9186;

  /* — Accent (forest green) — */
  --accent:      #2E6E68;
  --accent-deep: #235651;
  --accent-soft: rgba(46,110,104,0.14);
  --on-accent:   #F2F7F5;
  --cool:        #1F4A44;

  /* — Neutrals — */
  --chip:     #EAEFEC;
  --hairline: rgba(33,30,25,0.12);
  --hairline-strong: rgba(33,30,25,0.18);
  --track:    rgba(33,30,25,0.08);
  --danger:   #C0392B;

  /* — Type — */
  --display: 'Manrope', system-ui, sans-serif;
  --body:    'Inter', system-ui, sans-serif;

  /* — Shape — */
  --r-card: 16px;
  --r-pill: 100px;
  --shadow-card: 0 1px 2px rgba(33,30,25,0.04), 0 12px 30px rgba(33,30,25,0.06);
  --shadow-lift: 0 2px 4px rgba(33,30,25,0.05), 0 22px 48px rgba(33,30,25,0.10);

  --maxw: 1120px;
  --maxw-narrow: 960px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--body);
  background: var(--field);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient background glow — the only "blur" in Sable v5 */
.bg-field { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.bg-field::before, .bg-field::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(80px);
}
.bg-field::before {
  width: 620px; height: 620px; right: -8%; top: -12%;
  background: var(--field-glow); opacity: 0.7;
}
.bg-field::after {
  width: 540px; height: 540px; left: -10%; bottom: 6%;
  background: var(--accent-soft); opacity: 0.9;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Layout ───────────────────────────────────────────── */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: var(--maxw-narrow); }
section { position: relative; }

/* ── Type atoms ───────────────────────────────────────── */
.caps {
  font-family: var(--body); font-weight: 600;
  font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--muted); margin: 0;
}
.caps.accent { color: var(--accent); }
.display {
  font-family: var(--display); font-weight: 700;
  letter-spacing: -0.5px; line-height: 1.06; color: var(--ink); margin: 0;
}
.display .it { font-family: var(--body); font-style: italic; font-weight: 400; }
.lede { font-size: 18px; color: var(--muted); line-height: 1.55; margin: 0; }
.eyebrow-num { font-family: var(--body); font-weight: 600; font-variant-numeric: tabular-nums; }

/* ── Buttons / pills ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--body); font-weight: 600; font-size: 15px;
  border: none; border-radius: var(--r-pill);
  padding: 13px 24px; transition: transform .12s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn--accent { background: var(--accent); color: var(--on-accent); box-shadow: 0 1px 2px rgba(33,30,25,0.10); }
.btn--accent:hover { background: var(--accent-deep); box-shadow: var(--shadow-card); }
.btn--paper { background: var(--surface); color: var(--ink); border: 1px solid var(--hairline); }
.btn--paper:hover { border-color: var(--hairline-strong); box-shadow: var(--shadow-card); }
.btn--ghost { background: transparent; color: var(--ink); padding: 13px 14px; }
.btn--ghost:hover { color: var(--accent); }
.btn--lg { font-size: 16px; padding: 16px 30px; }
.btn--block { width: 100%; }

/* ── Card ─────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 22px;
}
.card.paper { background: var(--paper); }
.card.hover { transition: transform .2s ease, box-shadow .25s ease; }
.card.hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--chip); color: var(--cool);
  font-size: 11px; font-weight: 600; letter-spacing: 0.4px;
  padding: 5px 11px; border-radius: var(--r-pill);
}
.chip.accent { background: var(--accent-soft); color: var(--accent-deep); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(244,242,239,0.82);
  backdrop-filter: blur(12px) saturate(1.1);
  border-bottom-color: var(--hairline);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -0.3px; white-space: nowrap; }
.brand .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); display: inline-block; }
.nav-links { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--muted); padding: 8px 12px; border-radius: 8px; transition: color .15s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-burger { display: none; background: transparent; border: none; padding: 8px; border-radius: 8px; }
.nav-burger svg { display: block; }

/* mobile menu drawer */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); z-index: 60;
  background: var(--surface); box-shadow: -20px 0 60px rgba(33,30,25,0.16);
  transform: translateX(102%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 24px; gap: 4px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { padding: 14px 8px; font-size: 17px; font-weight: 500; border-bottom: 1px solid var(--hairline); }
.mobile-menu .mm-actions { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.mobile-menu .mm-close { align-self: flex-end; background: transparent; border: none; padding: 6px; margin: -8px -4px 8px 0; color: var(--muted); }
.scrim { position: fixed; inset: 0; background: rgba(31,26,20,0.32); z-index: 55; opacity: 0; pointer-events: none; transition: opacity .28s ease; }
.scrim.open { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 138px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center; }

/* personal-letter portrait */
.portrait-wrap { position: relative; width: 100%; aspect-ratio: 4 / 5; }
.portrait {
  position: absolute; inset: 0; width: 100% !important; height: 100% !important;
  border-radius: 20px;
  box-shadow: var(--shadow-lift); border: 1px solid var(--hairline);
  background: var(--paper);
}
.portrait-cap {
  position: absolute; left: 16px; bottom: -18px;
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--r-pill); padding: 9px 16px 9px 14px;
  display: flex; align-items: center; gap: 9px; box-shadow: var(--shadow-card);
  font-size: 13px; color: var(--ink);
}
.portrait-cap .av { width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: var(--on-accent); display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.hand {
  position: absolute; right: -8px; top: 14px; transform: rotate(-7deg);
  font-family: 'Inter', cursive; font-style: italic; font-size: 17px; color: var(--cool);
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 14px;
  padding: 8px 14px; box-shadow: var(--shadow-card); max-width: 190px; line-height: 1.35;
}
.hand::after { content: "✓ verified by IPA"; display: block; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; font-style: normal; color: var(--faint); margin-top: 4px; }

.hero-h1 { font-size: clamp(36px, 5.2vw, 60px); margin: 18px 0 0; }
.hero-sub { margin-top: 22px; max-width: 30em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin-top: 26px; color: var(--muted); font-size: 14px; }
.trust .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--faint); }

/* tap-to-hear chip used inline in hero sub */
.tap-word { position: relative; color: var(--accent-deep); font-weight: 600; border-bottom: 2px dotted var(--accent); cursor: default; }

/* ============================================================
   SOCIAL PROOF STRIP
   ============================================================ */
.proof { padding: 8px 0 30px; }
.proof-card {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--hairline); border-radius: var(--r-card);
  background: var(--surface); box-shadow: var(--shadow-card); overflow: hidden;
}
.proof-item { padding: 22px 24px; border-left: 1px solid var(--hairline); }
.proof-item:first-child { border-left: none; }
.proof-num { font-family: var(--display); font-weight: 800; font-size: 30px; color: var(--ink); letter-spacing: -0.5px; font-variant-numeric: tabular-nums; }
.proof-num .star { color: var(--accent); }
.proof-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section { padding: 66px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head .display { font-size: clamp(28px, 3.6vw, 40px); margin-top: 12px; }
.section-head .lede { margin-top: 14px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ── value cards (Why) ── */
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.value-card .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; margin-bottom: 16px; }
.value-card h3 { font-family: var(--display); font-weight: 700; font-size: 19px; margin: 0 0 8px; letter-spacing: -0.2px; }
.value-card p { margin: 0; color: var(--muted); font-size: 15px; }
.audience-line { margin-top: 22px; font-size: 14px; color: var(--faint); text-align: center; }

/* ── How it works ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step .num { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: var(--on-accent); font-family: var(--display); font-weight: 700; font-size: 17px; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-family: var(--display); font-weight: 700; font-size: 17px; margin: 0 0 6px; }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; }
.step .connector { display: none; }

/* ── Program ── */
.program-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.format-list { display: flex; flex-direction: column; gap: 14px; }
.format {
  display: flex; gap: 16px; padding: 18px 20px; border: 1px solid var(--hairline);
  border-radius: var(--r-card); background: var(--surface); transition: box-shadow .2s ease, transform .2s ease;
}
.format:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.format .ic { flex: none; width: 40px; height: 40px; border-radius: 11px; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; }
.format h3 { font-family: var(--display); font-weight: 700; font-size: 16.5px; margin: 0 0 3px; }
.format p { margin: 0; color: var(--muted); font-size: 14px; }
.program-shots { position: relative; display: flex; justify-content: center; }
.program-shots .phone { width: 250px; }
.program-shots .phone img { border-radius: 30px; box-shadow: var(--shadow-lift); }
.program-shots .phone.back { position: absolute; width: 200px; left: 0; top: 36px; transform: rotate(-6deg); opacity: .96; }
.program-shots .phone.back img { border-radius: 26px; }
.program-shots .phone.front { position: relative; z-index: 2; margin-left: 64px; }

/* ============================================================
   DOWNLOAD APP
   ============================================================ */
.download { padding: 66px 0; }
.download-card {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 24px;
  box-shadow: var(--shadow-card); padding: 44px;
}
.dl-benefits { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 14px; }
.dl-benefits li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink); }
.dl-benefits .tick { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; margin-top: 1px; }
.web-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 24px; font-weight: 600; color: var(--accent-deep); }
.web-link:hover { gap: 11px; }
.web-link .arr { transition: transform .15s ease; }

.dl-deliver { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.dl-phone { width: 210px; }
.dl-phone img { border-radius: 28px; box-shadow: var(--shadow-lift); }
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.store-badge {
  position: relative; display: flex; align-items: center; gap: 10px;
  background: var(--paper-ink); color: var(--on-accent);
  border-radius: 12px; padding: 9px 16px; min-width: 150px;
  opacity: 0.55; cursor: default; border: 1px solid rgba(255,255,255,0.06);
}
.store-badge .glyph { flex: none; }
.store-badge .sb-text { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge .sb-small { font-size: 9.5px; letter-spacing: 0.5px; opacity: 0.8; }
.store-badge .sb-big { font-family: var(--display); font-weight: 700; font-size: 16px; }
.store-badge .soon { position: absolute; top: -9px; right: -8px; background: var(--chip); color: var(--cool); font-size: 9.5px; font-weight: 700; letter-spacing: 0.6px; padding: 3px 8px; border-radius: var(--r-pill); border: 1px solid var(--hairline); }
.store-badge.live { opacity: 1; cursor: pointer; }
.store-badge.live:hover { box-shadow: var(--shadow-card); }
.store-badge.live .soon { display: none; }

.qr-row { display: flex; align-items: center; gap: 14px; }
.qr-tile {
  width: 96px; height: 96px; border-radius: var(--r-card); background: var(--surface);
  border: 1px solid var(--hairline); display: grid; place-items: center; color: var(--faint);
}
.qr-cap { font-size: 12.5px; color: var(--muted); max-width: 130px; }
.qr-cap strong { color: var(--ink); display: block; font-size: 13px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { display: flex; flex-direction: column; gap: 16px; }
.review-card .quote-mark { font-family: var(--display); font-size: 40px; line-height: 0.7; color: var(--accent); height: 24px; }
.review-card .qbody { font-size: 16px; line-height: 1.5; color: var(--ink); flex: 1; }
.review-card .badge-move { font-size: 13px; color: var(--accent-deep); font-weight: 600; }
.review-foot { display: flex; align-items: center; gap: 11px; }
.review-foot .av { width: 38px; height: 38px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; font-weight: 700; font-size: 14px; }
.review-foot .who { font-size: 13.5px; }
.review-foot .who b { display: block; font-weight: 600; }
.review-foot .who span { color: var(--muted); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan { display: flex; flex-direction: column; }
.plan.popular { border-color: var(--accent); box-shadow: 0 2px 4px rgba(33,30,25,0.05), 0 24px 50px rgba(46,110,104,0.14); }
.plan-head { display: flex; align-items: center; justify-content: space-between; }
.plan h3 { font-family: var(--display); font-weight: 700; font-size: 18px; margin: 0; }
.plan .price { margin: 18px 0 4px; font-family: var(--display); font-weight: 800; font-size: 34px; letter-spacing: -0.5px; }
.plan .price small { font-family: var(--body); font-weight: 500; font-size: 15px; color: var(--muted); }
.plan .price-sub { color: var(--muted); font-size: 14px; }
.plan ul { list-style: none; padding: 0; margin: 20px 0 24px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink); }
.plan ul li .tick { flex: none; color: var(--accent-deep); margin-top: 2px; }
.pricing-note { text-align: center; margin-top: 22px; color: var(--faint); font-size: 13.5px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%; background: transparent; border: none; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; font-family: var(--display); font-weight: 600; font-size: 16.5px; color: var(--ink);
}
.faq-q .pm { flex: none; width: 22px; height: 22px; color: var(--accent-deep); transition: transform .25s ease; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 0 18px; color: var(--muted); font-size: 14.5px; line-height: 1.55; max-width: 92%; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { padding: 26px 0 70px; }
.final-card {
  background: var(--paper-ink); color: var(--on-accent);
  border-radius: 28px; padding: 64px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.final-card::before { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: var(--accent); opacity: 0.20; filter: blur(80px); right: -6%; top: -40%; }
.final-card .display { color: var(--on-accent); font-size: clamp(30px, 4.4vw, 48px); position: relative; }
.final-card .lede { color: rgba(255,247,236,0.74); margin: 16px auto 0; max-width: 30em; position: relative; }
.final-cta-btns { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; position: relative; }
.btn--on-dark { background: rgba(255,255,255,0.08); color: var(--on-accent); border: 1px solid rgba(255,255,255,0.16); }
.btn--on-dark:hover { background: rgba(255,255,255,0.14); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--surface); border-top: 1px solid var(--hairline); padding: 56px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer .brand { margin-bottom: 14px; }
.footer-about { color: var(--muted); font-size: 14px; max-width: 30ch; }
.footer-col h4 { font-family: var(--body); font-weight: 600; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--faint); margin: 0 0 14px; }
.footer-col a { display: block; color: var(--muted); font-size: 14.5px; padding: 5px 0; }
.footer-col a:hover { color: var(--ink); }
.footer-mini-badges { display: flex; gap: 10px; margin-top: 16px; }
.footer-mini-badges .store-badge { min-width: 0; padding: 7px 12px; transform: scale(0.92); transform-origin: left; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--hairline); color: var(--faint); font-size: 13px; flex-wrap: wrap; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--hairline); display: grid; place-items: center; color: var(--muted); }
.footer-social a:hover { color: var(--accent-deep); border-color: var(--accent); }

/* ============================================================
   MODALS (sign up / log in)
   ============================================================ */
.modal-scrim { position: fixed; inset: 0; background: rgba(31,26,20,0.42); z-index: 80; display: grid; place-items: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.modal-scrim.open { opacity: 1; pointer-events: auto; }
.modal {
  width: 100%; max-width: 420px; background: var(--surface); border-radius: 22px;
  box-shadow: 0 30px 80px rgba(33,30,25,0.28); padding: 32px; position: relative;
  transform: translateY(12px) scale(.98); transition: transform .22s cubic-bezier(.4,0,.2,1);
  max-height: 92vh; overflow-y: auto;
}
.modal-scrim.open .modal { transform: none; }
.modal-close { position: absolute; top: 16px; right: 16px; background: transparent; border: none; color: var(--muted); padding: 6px; border-radius: 8px; }
.modal-close:hover { color: var(--ink); background: var(--chip); }
.modal h2 { font-family: var(--display); font-weight: 700; font-size: 24px; margin: 0 0 6px; letter-spacing: -0.3px; }
.modal .sub { color: var(--muted); font-size: 14.5px; margin: 0 0 22px; }
.field-group { margin-bottom: 16px; }
.field-group label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field-group input {
  width: 100%; font-family: var(--body); font-size: 15px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--hairline); border-radius: 12px; padding: 13px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field-group input::placeholder { color: var(--faint); }
.field-group input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.pw-strength { height: 4px; border-radius: 4px; background: var(--track); margin-top: 8px; overflow: hidden; }
.pw-strength i { display: block; height: 100%; width: 0; background: var(--accent); border-radius: 4px; transition: width .25s ease, background .25s ease; }
.pw-hint { font-size: 12px; color: var(--faint); margin-top: 6px; }
.consent { display: flex; gap: 9px; align-items: flex-start; font-size: 12.5px; color: var(--muted); margin: 4px 0 20px; }
.consent input { margin-top: 2px; accent-color: var(--accent); }
.consent a { color: var(--accent-deep); text-decoration: underline; }
.modal .divider { display: flex; align-items: center; gap: 12px; color: var(--faint); font-size: 12px; margin: 20px 0; }
.modal .divider::before, .modal .divider::after { content: ""; flex: 1; height: 1px; background: var(--hairline); }
.social-row { display: flex; gap: 10px; }
.social-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px; border-radius: 12px; border: 1px solid var(--hairline); background: var(--surface); font-size: 14px; font-weight: 500; }
.social-btn:hover { border-color: var(--hairline-strong); background: var(--paper); }
.modal-foot { text-align: center; margin-top: 20px; font-size: 13.5px; color: var(--muted); }
.modal-foot a { color: var(--accent-deep); font-weight: 600; }
.backend-note { display: flex; gap: 9px; align-items: flex-start; background: var(--accent-soft); border-radius: 12px; padding: 11px 13px; font-size: 12px; color: var(--cool); margin-top: 18px; }
.forgot-note { font-size: 13px; color: var(--muted); text-align: center; margin-top: 14px; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .portrait-wrap { max-width: 380px; margin: 0 auto; order: -1; }
  .program-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 24px 18px; }
  .download-card { grid-template-columns: 1fr; gap: 36px; padding: 36px 28px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col.legal { grid-column: span 1; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav .btn--ghost { display: none; }
  .hero { padding: 112px 0 48px; }
  .proof-card { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--hairline); }
  .proof-item:nth-child(odd) { border-left: none; }
  .value-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .final-card { padding: 44px 26px; }
  .section { padding: 50px 0; }
  .hero-cta .btn, .final-cta-btns .btn { flex: 1; }
  .qr-row { display: none; }            /* QR useless on phone (§5.2) */
  .program-shots .phone.back { display: none; }
  .program-shots .phone.front { margin-left: 0; }
  .store-badges { width: 100%; }
  .store-badge { flex: 1; }
}
@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .footer-grid { grid-template-columns: 1fr; }
}
