/* Squirrel Squad · Locked Brand Tokens + Components
   Direction (updated 2026-04-21): V2 cream base + V1 hero energy + V3 button confidence.
   Cream #FFF8EE is the base on ALL pages including hero. Purple/yellow/coral are ACCENTS only.
   Hero box art gets a soft yellow/coral glow halo (V1's energy on cream, not purple bg).
   CTAs keep V3 chunky drop-shadow. See site/_briefs/BRIEF.md for full spec.
   Use only these classes/tokens — do not invent new colors or fonts. */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=DM+Sans:wght@400;500;700&display=swap');

/* ---------- Tokens ---------- */
/* Teal palette refresh — matches new box-front cover (2026-05).
   Legacy --purple / --yellow names kept as backward-compat aliases that
   resolve to the new teal/gold values, so existing CSS keeps working
   without find/replace. New --teal / --gold / --howl-purple are the
   canonical names going forward. */
:root {
  /* canonical teal palette */
  --teal:        #3DA1A0;   /* primary — was --purple */
  --teal-light:  #5BB8B0;   /* gradient tops, soft accents */
  --teal-deep:   #1A6B6B;   /* gradient bottoms, deep shadows */
  --gold:        #FFB94A;   /* warm gold — was --yellow */
  --coral:       #FF6B47;   /* warm coral — shifted from #FF6B9D */
  --mint:        #7FE3B0;   /* re-tuned to match insert */
  --howl-purple: #4A1E8B;   /* Howl badge exception — matches printed card art */

  /* base */
  --cream:      #F5E9C3;   /* warm cream — matches box wordmark */
  --cream-warm: #FAF1D2;   /* slight warm shift */
  --border:     #E8DFD0;
  --ink:        #0E3540;   /* navy-teal — outlines, body text */
  --ink-soft:   #4a5360;   /* cool grey-teal */
  --muted:      #6a7580;   /* cool muted grey */

  /* legacy aliases — DO NOT use directly in new code; use --teal/--gold */
  --purple:      var(--teal);
  --purple-deep: var(--teal-deep);
  --purple-soft: var(--teal-light);
  --yellow:      var(--gold);

  /* per-habit backgrounds (from card art) — NOTE: --h-sleep-* and --h-exercise-*
     are LEGACY names from the old habit set. Current canonical habits are
     Mind/Food/Move/Learn. Kept here for any older page that still references
     them; new code should use --mind / --food / --move / --learn directly. */
  --h-sleep-bg: #E8EEFF;
  --h-sleep-accent: #5B78D9;
  --h-food-bg: #DFF5EA;
  --h-food-accent: #3FA86E;
  --h-exercise-bg: #F3E6FA;
  --h-exercise-accent: #8A5ECB;
  --h-mind-bg: #FFE4EC;
  --h-mind-accent: #D94878;

  /* habit colors (canonical — from card art) */
  --mind:  #FF6B9D;
  --food:  #3DA5F0;
  --move:  #9456E2;
  --learn: #E0B321;

  /* status */
  --done: #3FA86E;
  --progress: #F4BB3A;
  --next: #5BC0EB;
  --blocked: #E63946;

  /* type */
  --f-display: 'Fredoka', system-ui, sans-serif;
  --f-body: 'DM Sans', system-ui, sans-serif;

  /* spacing */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --shadow-card: 0 18px 40px -20px rgba(14, 53, 64, .22);
  --shadow-chunky: 5px 5px 0 var(--ink);
  --shadow-chunky-lg: 6px 6px 0 var(--ink);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 28px; }

/* ---------- Nav ---------- */
.nav {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--purple);
  display: flex; flex-direction: column; align-items: flex-start;
  line-height: 1.05;
  text-decoration: none;
}
.nav__logo .brand { display: flex; align-items: center; gap: 6px; }
.nav__logo .tagline {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: .3px;
  margin-top: 2px;
  opacity: .8;
  text-transform: none;
}
.nav__links {
  display: flex; gap: 26px;
  list-style: none;
  font-size: 14px; font-weight: 500;
}
.nav__links a { opacity: .8; transition: opacity .15s, color .15s; }
.nav__links a:hover { opacity: 1; color: var(--coral); }
@media (max-width: 768px) { .nav__links { display: none; } }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--f-display); font-weight: 700; line-height: 1.1; }
h1 { font-size: clamp(40px, 6vw, 68px); margin-bottom: 18px; }
h2 { font-size: clamp(32px, 4.5vw, 48px); margin-bottom: 14px; }
h3 { font-size: 26px; margin-bottom: 10px; }
h4 { font-size: 20px; margin-bottom: 8px; }
.text-coral { color: var(--coral); }
.text-yellow { color: var(--yellow); }
.text-purple { color: var(--purple); }
.text-muted { color: var(--muted); }
.lead { font-size: 17px; color: var(--ink-soft); max-width: 620px; }

/* ---------- Pills / Tags ---------- */
.pill {
  display: inline-block;
  background: #FFE4EC; color: var(--coral);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700; letter-spacing: .4px;
  text-transform: uppercase;
}
.pill--purple { background: #E0F0EF; color: var(--teal); }  /* teal-tinted, was lavender — kept class name for compat */
.pill--yellow { background: #FFF5D6; color: #a07d1b; }

/* ---------- Buttons (V3 chunky drop-shadow) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-display); font-weight: 600;
  font-size: 17px;
  padding: 15px 32px;
  border-radius: 14px;
  text-decoration: none;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-chunky-lg);
  transition: transform .12s, box-shadow .12s;
  cursor: pointer;
  background: #fff;
  color: var(--ink);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.btn--primary { background: var(--yellow); color: var(--ink); }
.btn--purple { background: var(--purple); color: #fff; }
.btn--coral { background: var(--coral); color: #fff; }
.btn--small { padding: 10px 20px; font-size: 14px; box-shadow: 4px 4px 0 var(--ink); }
.btn--ghost { background: transparent; }

/* ---------- Hero (V2 cream base with V1 energy retained)
   — cream warmth replaces the purple gradient
   — energy comes from big Fredoka type, yellow halo, purple accent word,
     coral accent word, sparkles, and the box shadow depth.               */
.hero {
  padding: 72px 0 88px;
  background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; top: -160px; right: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 62%);
  opacity: .45; pointer-events: none; z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; bottom: -200px; left: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 62%);
  opacity: .22; pointer-events: none; z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero__sparkle {
  position: absolute;
  font-size: 30px;
  opacity: .65;
  pointer-events: none;
  z-index: 1;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) { .hero__grid { grid-template-columns: 1fr; } }
.hero h1 { color: var(--ink); font-size: clamp(36px, 5vw, 58px); line-height: 1.05; }
.hero h1 .y { color: var(--purple); }
.hero h1 .c { color: var(--coral); }
.hero__sub { font-size: 18px; color: var(--ink-soft); margin-bottom: 30px; max-width: 500px; }
.hero__box-wrap { position: relative; }
.hero__box-wrap img {
  border-radius: 16px;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-chunky-lg);
}
.hero__box-wrap::before {
  content: "";
  position: absolute; inset: -32px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 60%);
  opacity: .55; z-index: -1;
  border-radius: 50%;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--yellow); color: var(--ink);
  padding: 20px 0;
  font-family: var(--f-display); font-weight: 600;
  border-bottom: 3px solid var(--ink);
}
.stats-bar__row {
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 16px; text-align: center;
}
.stats-bar b { font-size: 24px; display: block; }
.stats-bar span { font-size: 13px; opacity: .7; }

/* ---------- Section (V2 warmth for interiors) ---------- */
.section { padding: 80px 0; }
.section--cream { background: var(--cream); }
.section--warm { background: var(--cream-warm); }
.section--white { background: #fff; }
.section__head { text-align: center; margin-bottom: 48px; }
.section__lead { color: var(--ink-soft); margin: 0 auto 48px; max-width: 560px; text-align: center; font-size: 16px; }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card__icon { font-size: 36px; margin-bottom: 10px; }
.card__body { font-size: 14.5px; color: var(--ink-soft); }

/* Habit color-coded cards */
.habit-card {
  padding: 32px 26px;
  border-radius: var(--r-lg);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-chunky);
  transition: transform .15s, box-shadow .15s;
  text-align: center;
}
.habit-card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--ink); }
.habit-card--sleep { background: var(--h-sleep-bg); }
.habit-card--food { background: var(--h-food-bg); }
.habit-card--exercise { background: var(--h-exercise-bg); }
.habit-card--mind { background: var(--h-mind-bg); }

.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }

/* ---------- Steps (numbered) ---------- */
.step { text-align: center; padding: 24px 18px; }
.step__n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--yellow); color: var(--ink);
  font-family: var(--f-display); font-weight: 700; font-size: 26px;
  margin-bottom: 14px;
  border: 3px solid var(--ink);
}

/* ---------- Reservation banner ---------- */
.reserve {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--coral), var(--yellow));
  color: var(--ink);
  text-align: center;
}
.reserve__counter {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 18px;
}
.reserve__counter b { color: var(--purple-deep); font-size: 28px; margin: 0 6px; }

/* ---------- Combined "Get Squirrel Squad" CTA (orange band)
   Single section with shop button + email subscribe.
   Replaces the old separate cta-shop / cta-subscribe bands. */
.cta-combined {
  background: linear-gradient(135deg, var(--coral), var(--yellow));
  color: var(--ink);
  padding: 64px 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  text-align: center;
}
.cta-combined .pill { background: #fff; color: var(--ink); }
.cta-combined h2 { color: var(--ink); font-size: clamp(30px, 4.4vw, 42px); margin: 12px 0 12px; }
.cta-combined p { color: var(--ink); max-width: 580px; margin: 0 auto 26px; font-size: 16.5px; line-height: 1.55; opacity: .9; }
.cta-combined .cta-combined__shop { font-size: 17px; padding: 15px 36px; }
.cta-combined .cta-combined__divider {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 28px auto 18px; max-width: 460px;
  font-family: var(--f-display); font-weight: 700;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink); opacity: .65;
}
.cta-combined .cta-combined__divider::before,
.cta-combined .cta-combined__divider::after {
  content: ""; flex: 1; height: 2px; background: var(--ink); opacity: .25;
}
.cta-combined__form {
  display: flex; flex-wrap: wrap; gap: 10px;
  max-width: 460px; margin: 0 auto;
  justify-content: center;
}
.cta-combined__form input {
  flex: 1 1 220px; min-width: 0; padding: 13px 18px;
  border: 3px solid var(--ink); border-radius: 99px;
  font-family: var(--f-body); font-size: 15px; background: #fff; color: var(--ink);
}
.cta-combined__form input:focus { outline: none; }
.cta-combined__form button { white-space: nowrap; }

/* ---------- "As seen in" press strip with logo treatment ---------- */
.press-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 36px; padding: 28px 0;
}
.press-row .label {
  font-family: var(--f-display); font-weight: 700; font-size: 12px;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted);
}
.press-row .logo {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700; font-style: italic;
  font-size: 19px; color: #6a5a7e;
  letter-spacing: -.3px; opacity: .75;
  filter: grayscale(1);
}
.press-row .logo--block {
  font-family: var(--f-display); font-style: normal;
  text-transform: uppercase; letter-spacing: 2px; font-size: 15px;
}

/* ---------- Deep footer · 4-column grid, always horizontal
   Brand | Learn & Shop | Follow us | Stay in the loop
   No social row underneath — social lives inline next to links. */
.footer-deep {
  background: var(--ink);
  color: var(--cream);
  border-top: 3px solid var(--ink);
  font-size: 13px;
}
.footer-deep__inner {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr 1.6fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0 32px;
}
.footer-deep__brand .footer-brand {
  font-family: var(--f-display); font-weight: 700;
  font-size: 22px; color: #fff; margin-bottom: 10px;
}
.footer-deep__brand .footer-tag {
  color: rgba(255,255,255,.62);
  font-size: 13px; line-height: 1.55; margin-bottom: 0;
}
.footer-deep__col h4,
.footer-deep__newsletter h4 {
  font-family: var(--f-display); font-weight: 700;
  font-size: 11.5px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 12px;
}
.footer-deep ul.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-deep ul.footer-links li { margin-bottom: 6px; }
.footer-deep ul.footer-links li a {
  color: rgba(255,255,255,.75); text-decoration: none; font-size: 13px;
}
.footer-deep ul.footer-links li a:hover { color: var(--yellow); }
.footer-deep__newsletter p {
  color: rgba(255,255,255,.62); font-size: 12.5px;
  line-height: 1.5; margin-bottom: 12px;
}
.footer-sub-form { display: flex; gap: 6px; }
.footer-sub-form input {
  flex: 1; min-width: 0; padding: 9px 14px;
  border: 1.5px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.05);
  color: #fff; border-radius: 99px;
  font-family: var(--f-body); font-size: 12.5px;
}
.footer-sub-form input::placeholder { color: rgba(255,255,255,.45); }
.footer-sub-form input:focus { outline: none; border-color: var(--yellow); }
.footer-sub-form button {
  padding: 9px 14px; border: none; cursor: pointer;
  background: var(--yellow); color: var(--ink); border-radius: 99px;
  font-family: var(--f-display); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: .6px;
  white-space: nowrap;
}
.footer-sub-form button:hover { background: var(--coral); color: #fff; }

/* "Follow us" column · social icons inline next to link col */
.footer-deep__follow ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.footer-deep__follow ul li { margin: 0; }
.footer-deep__follow ul a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.footer-deep__follow ul a svg {
  width: 15px; height: 15px; display: block; fill: currentColor;
}
.footer-deep__follow ul a:hover {
  background: var(--yellow); color: var(--ink); border-color: var(--yellow);
  transform: translateY(-1px);
}

/* ---------- Footer legal (full-width band, tiny boilerplate) ---------- */
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 14px 0 18px;
  font-size: 11px;
  color: rgba(255,255,255,.42);
  line-height: 1.55;
}
.footer-legal__top {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 8px 18px; margin-bottom: 8px;
}
.footer-legal__links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-legal a { color: rgba(255,255,255,.55); text-decoration: none; }
.footer-legal a:hover { color: var(--yellow); }
.footer-legal__boilerplate { font-size: 10.5px; color: rgba(255,255,255,.32); }

@media (max-width: 900px) {
  .footer-deep__inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-deep__brand { grid-column: 1 / -1; }
  .footer-deep__newsletter { grid-column: 1 / -1; max-width: 360px; }
}
@media (max-width: 480px) {
  .footer-deep__inner { grid-template-columns: 1fr; gap: 22px; padding: 28px 0 24px; }
  .footer-legal__top { flex-direction: column; align-items: flex-start; }
}

/* ---------- Legacy footer (kept for transitional pages) ---------- */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 36px 0;
  font-size: 13px;
}
.footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer a { color: var(--yellow); }

/* ---------- Sticky launch bar (top of every page) ---------- */
.launch-bar {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink); color: #fff;
  font-family: var(--f-display); font-weight: 600;
  font-size: 13px; letter-spacing: .3px;
  padding: 10px 16px; text-align: center;
  border-bottom: 2px solid var(--yellow);
}
.launch-bar a {
  color: var(--yellow); text-decoration: underline;
  text-decoration-color: rgba(255,211,71,.4);
  text-underline-offset: 3px; font-weight: 700;
}
.launch-bar a:hover { text-decoration-color: var(--yellow); }
@media (max-width: 520px) { .launch-bar { font-size: 12px; padding: 9px 12px; } }

/* ---------- Hero — single eyebrow + tagline + email capture ---------- */
.hero-eyebrow {
  display: inline-block; font-family: var(--f-display); font-weight: 700;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--purple); background: #EFE8F4;
  padding: 7px 14px; border-radius: var(--r-pill); margin-bottom: 16px;
}
.hero-tagline {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(18px, 2.4vw, 22px); color: var(--coral);
  margin: -4px 0 14px;
}
.hero__email-form .hero__form-row { display: flex; flex-wrap: wrap; gap: 10px; }
.hero__email-form .hero__privacy {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--ink-soft); margin-top: 10px;
  line-height: 1.4;
}
.hero__email-form .hero__privacy input { flex: 0 0 auto; margin-top: 3px; accent-color: var(--purple); }
.hero__email-form .hero__privacy a { color: var(--purple); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.hero__email-support {
  font-size: 14px; color: var(--ink-soft); margin: 10px 0 0; line-height: 1.45; max-width: 480px;
}

/* ---------- Hero video — picture poster + tap-to-play + controls ---------- */
.hero__video-wrap { position: relative; }
.hero__video-wrap video,
.hero__video-wrap picture,
.hero__video-wrap picture img {
  width: 100%; border-radius: 16px; border: 3px solid var(--ink);
  box-shadow: var(--shadow-chunky-lg); display: block;
  background: var(--cream-warm);
}
.hero__video-wrap picture { position: relative; overflow: hidden; }
.hero__video-wrap.is-playing picture { display: none; }
.hero__video-wrap .hero__video { display: none; }
.hero__video-wrap.is-playing .hero__video { display: block; }
.hero__video-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--ink);
  border: 3px solid var(--ink); border-radius: 99px;
  padding: 13px 22px 13px 18px; font-family: var(--f-display); font-weight: 700;
  font-size: 15px; cursor: pointer; box-shadow: var(--shadow-chunky);
  transition: transform .12s, box-shadow .12s;
}
.hero__video-play:hover { transform: translate(calc(-50% - 2px), calc(-50% - 2px)); box-shadow: 8px 8px 0 var(--ink); }
.hero__video-wrap.is-playing .hero__video-play { display: none; }
.hero__video-controls {
  position: absolute; left: 12px; bottom: 12px;
  display: none; gap: 6px; align-items: center;
}
.hero__video-wrap.is-playing .hero__video-controls { display: flex; }
.hero__video-controls button {
  width: 32px; height: 32px;
  border: none;
  background: rgba(20, 16, 40, .55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 50%; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .15s, transform .12s;
  padding: 0;
}
.hero__video-controls button:hover { background: rgba(20, 16, 40, .8); transform: scale(1.06); }
.hero__video-controls button:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
.hero__video-controls button svg { width: 14px; height: 14px; display: block; fill: currentColor; }
.hero__video-controls .sound-hint {
  font-family: var(--f-body); font-weight: 600; font-size: 11px;
  letter-spacing: .3px; color: #fff;
  background: rgba(20, 16, 40, .55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 6px 10px; border-radius: 99px;
  display: none;
  animation: sound-hint-fade 2.5s ease-in 0s 1 both;
  pointer-events: none;
}
.hero__video-wrap.is-muted .sound-hint { display: inline-block; }
@keyframes sound-hint-fade {
  0% { opacity: 0; transform: translateX(-4px); }
  10% { opacity: 1; transform: translateX(0); }
  90% { opacity: 1; }
  100% { opacity: .55; }
}
.hero__video-wrap::before {
  content: ""; position: absolute; inset: -32px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 60%);
  opacity: .55; z-index: -1; border-radius: 50%;
}

/* ---------- Single-stat strip (consolidated hero stats) ---------- */
.stats-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 14px 28px; padding: 18px 22px; margin-top: 26px;
  background: var(--yellow); color: var(--ink);
  border: 3px solid var(--ink); border-radius: var(--r-pill);
  font-family: var(--f-display); font-weight: 700;
  font-size: 13px; letter-spacing: .5px; text-transform: uppercase;
  box-shadow: var(--shadow-chunky);
}
.stats-strip span { display: inline-flex; align-items: center; }
.stats-strip span + span::before {
  content: "·"; margin-right: 28px; margin-left: -14px;
  opacity: .5; font-weight: 400;
}
@media (max-width: 520px) {
  .stats-strip { font-size: 11.5px; gap: 8px 14px; padding: 14px 16px; }
  .stats-strip span + span::before { margin-right: 14px; margin-left: -7px; }
}

/* ---------- Proof section — expert (fixed) + parents (marquee) ---------- */
.proof-stage {
  position: relative;
  padding: 24px 0 8px;
}
/* Dotted "map" backdrop — abstract, fades at edges */
.proof-stage::before {
  content: ""; position: absolute; inset: -10px 0;
  background-image:
    radial-gradient(circle, rgba(14,53,64,.10) 1.2px, transparent 1.6px);
  background-size: 22px 22px;
  background-position: 11px 11px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at center, #000 25%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 90% at center, #000 25%, transparent 100%);
  z-index: 0;
}
.proof-row {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 340px) 1fr;
  gap: 24px;
  align-items: stretch;
}
.proof-row__fixed {
  display: flex; flex-direction: column; gap: 18px;
}

/* Combined Creator + Process card — one cohesive left column */
.proof-card--story {
  background: linear-gradient(165deg, var(--cream-warm) 0%, #fff 80%);
  border-color: var(--purple); border-width: 3px;
  padding: 22px 22px 20px;
  display: flex; flex-direction: column;
}
.proof-card--story .creator-head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 10px;
}
.proof-card--story .portrait {
  width: 60px; height: 60px; border-radius: 50%;
  overflow: hidden; flex: 0 0 auto;
  border: 3px solid var(--ink); box-shadow: var(--shadow-chunky);
  background: #fff;
}
.proof-card--story .portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proof-card--story .creator-name {
  font-family: var(--f-display); font-weight: 700;
  font-size: 18px; color: var(--purple); line-height: 1.15; margin: 0;
}
.proof-card--story .creator-name small {
  display: block; font-family: var(--f-body); font-weight: 600;
  font-size: 12px; color: var(--ink-soft); margin-top: 4px; letter-spacing: .2px;
}
.proof-card--story .why-lead {
  font-family: var(--f-display); font-weight: 700;
  font-size: 11.5px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--coral); margin: 4px 0 8px;
}
.proof-card--story .creator-body {
  font-family: var(--f-body); font-weight: 500;
  font-size: 13.5px; line-height: 1.55; color: var(--ink); margin: 0;
}
.proof-card--story .creator-link {
  display: inline-block; margin-top: 12px;
  font-family: var(--f-display); font-weight: 700; font-size: 12.5px;
  color: var(--purple); text-decoration: underline;
  text-decoration-color: rgba(14,53,64,.4); text-underline-offset: 3px;
}
.proof-card--story .creator-link:hover { text-decoration-color: var(--purple); }

/* Clinician credential block (inside the combined card, visually separated) */
.proof-card--story .credential {
  margin-top: 18px; padding-top: 16px;
  border-top: 1.5px dashed rgba(14,53,64,.28);
  display: flex; gap: 12px; align-items: flex-start;
}
.proof-card--story .credential-mark {
  flex: 0 0 auto;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--purple); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 700; font-size: 18px;
  border: 2.5px solid var(--ink); box-shadow: 2px 2px 0 var(--ink);
}
.proof-card--story .credential-body {
  font-family: var(--f-body); font-size: 12.5px; color: var(--ink); line-height: 1.4;
}
.proof-card--story .credential-body strong {
  display: block; font-family: var(--f-display); font-weight: 700;
  font-size: 13.5px; color: var(--purple);
  text-transform: uppercase; letter-spacing: .4px; margin-bottom: 3px;
}
.proof-card--story .credential-body small {
  display: block; font-size: 11.5px; color: var(--muted); margin-top: 3px;
}
@media (max-width: 820px) {
  .proof-row { grid-template-columns: 1fr; gap: 18px; }
}

.proof-card {
  background: #fff; border: 3px solid var(--ink); border-radius: var(--r-lg);
  box-shadow: var(--shadow-chunky); padding: 22px 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.proof-card blockquote {
  font-family: var(--f-display); font-weight: 600;
  font-size: 15.5px; line-height: 1.45; color: var(--ink); margin: 0;
  flex: 1;
}
.proof-card .attribution { display: flex; align-items: center; gap: 12px; }
.proof-card .monogram {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--yellow); color: var(--ink);
  border: 2.5px solid var(--ink); box-shadow: 2px 2px 0 var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 700; font-size: 15px;
  flex: 0 0 auto;
}
.proof-card .monogram--coral { background: var(--coral); color: #fff; }
.proof-card .monogram--purple { background: var(--purple); color: #fff; }
.proof-card .monogram--mint { background: var(--mint); color: var(--ink); }
.proof-card .who {
  font-family: var(--f-body); font-weight: 700; font-size: 13px;
  color: var(--ink); line-height: 1.3;
}
.proof-card .who small {
  display: block; font-weight: 500; font-size: 12px;
  color: var(--muted); margin-top: 2px;
}

/* Marquees — two stacked rows of reviews, counter-scrolling */
.proof-marquees {
  display: flex; flex-direction: column; gap: 14px;
  align-self: stretch;
}
.proof-marquee {
  position: relative;
  overflow: hidden;
  flex: 1 1 auto;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.proof-marquee__track {
  display: flex; gap: 16px;
  width: max-content;
  animation: proof-marquee 30s linear infinite;
  will-change: transform;
}
.proof-marquee--reverse .proof-marquee__track {
  animation-direction: reverse;
  animation-duration: 36s;
}
.proof-marquee:hover .proof-marquee__track,
.proof-marquee:focus-within .proof-marquee__track { animation-play-state: paused; }
.proof-marquee .proof-card {
  width: 280px; flex: 0 0 280px;
  padding: 18px 20px;
}
@keyframes proof-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* track = cards × 2 */
}
@media (prefers-reduced-motion: reduce) {
  .proof-marquee__track { animation: none; }
  .proof-marquee {
    overflow-x: auto;
    -webkit-mask-image: none; mask-image: none;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  }
  .proof-marquee .proof-card { scroll-snap-align: start; }
}

/* ---------- "How it plays" micro-animations (ported from a9 brief, namespaced) ---------- */
.htp-stage {
  position: relative; height: 200px;
  background: radial-gradient(circle at 50% 38%, #15756f, #0E5E5C);
  border-radius: var(--r-md); border: 3px solid var(--ink);
  box-shadow: var(--shadow-chunky); overflow: hidden;
  margin: 0 auto 16px; max-width: 280px;
}
.htp-num {
  position: absolute; top: 10px; left: 10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--yellow); color: var(--ink);
  font-family: var(--f-display); font-weight: 700; font-size: 15px;
  display: grid; place-items: center;
  border: 2.5px solid var(--ink); z-index: 9;
}
.htp-card { position: absolute; border-radius: 10px; border: 2.5px solid var(--ink); box-shadow: 3px 4px 0 rgba(0,0,0,.28); }
.htp-eyes { position: absolute; inset: 0; }
.htp-eyes::before, .htp-eyes::after {
  content: ""; position: absolute; top: 34%; width: 11px; height: 11px; border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, #fff 1.5px, var(--ink) 2px, var(--ink) 60%, #fff 62%);
}
.htp-eyes::before { left: 24%; } .htp-eyes::after { right: 24%; }

/* draw */
.htp-deck { left: 50%; bottom: 18px; width: 56px; height: 80px; transform: translateX(-50%); background: var(--cream); border-radius: 10px; border: 2.5px solid var(--ink); }
.htp-deck i { position: absolute; inset: 0; border-radius: 10px; border: 2.5px solid var(--ink); background: var(--cream); }
.htp-deck i:nth-child(1) { transform: translate(-5px, 4px); }
.htp-deck i:nth-child(2) { transform: translate(4px, 7px); z-index: -1; }
.htp-drawcard {
  left: 50%; top: 56px; width: 56px; height: 80px; margin-left: -28px;
  background: var(--coral); animation: htp-rise 3.4s ease-in-out infinite;
}
.htp-drawcard .htp-eyes { opacity: 1; animation: htp-reveal 3.4s ease-in-out infinite; }
@keyframes htp-rise {
  0% { transform: translateY(72px) scaleX(1); opacity: 0; background: var(--cream); }
  12% { opacity: 1; }
  42% { transform: translateY(0) scaleX(1); background: var(--cream); }
  50% { transform: translateY(0) scaleX(.04); }
  58% { transform: translateY(0) scaleX(1); background: var(--coral); }
  84% { transform: translateY(0) scaleX(1); background: var(--coral); opacity: 1; }
  100% { transform: translateY(-12px) scaleX(1); background: var(--coral); opacity: 0; }
}
@keyframes htp-reveal { 0%, 52% { opacity: 0; } 58%, 100% { opacity: 1; } }
.htp-nooo {
  position: absolute; top: 14px; left: 50%;
  color: #fff; font-family: var(--f-display); font-weight: 700; font-size: 12px; white-space: nowrap;
  background: var(--coral); padding: 4px 10px; border-radius: 12px;
  border: 2.5px solid var(--ink);
  transform: translateX(-50%) scale(0); animation: htp-pop 3.4s ease-in-out infinite;
}
@keyframes htp-pop {
  0%, 56% { transform: translateX(-50%) scale(0); opacity: 0; }
  64% { transform: translateX(-50%) scale(1.18); opacity: 1; }
  70% { transform: translateX(-50%) scale(1); }
  84% { opacity: 1; }
  92%, 100% { opacity: 0; }
}

/* match */
.htp-grump {
  left: 50%; top: 50%; width: 68px; height: 96px; margin: -48px 0 0 -34px;
  background: var(--purple); animation: htp-beat 3.2s ease-in-out infinite;
}
.htp-grump .htp-dot {
  position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px; border-radius: 50%; background: var(--coral); border: 2px solid var(--ink);
}
@keyframes htp-beat {
  0%, 54% { transform: scale(1) rotate(0); opacity: 1; }
  70% { transform: scale(0) rotate(22deg); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.htp-squad {
  left: 50%; top: 50%; width: 68px; height: 96px; margin: -48px 0 0 -34px;
  background: var(--coral); animation: htp-slap 3.2s ease-in-out infinite;
}
@keyframes htp-slap {
  0% { transform: translate(120px, -16px) rotate(12deg); opacity: 0; }
  10% { opacity: 1; }
  38% { transform: translate(12px, 2px) rotate(-5deg); }
  46% { transform: translate(0, 0) rotate(0); }
  54% { transform: translate(0, 0); }
  66% { transform: translate(0, 0); opacity: 0; }
  100% { opacity: 0; }
}
.htp-tick {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%) scale(0);
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--yellow); border: 3px solid var(--ink);
  display: grid; place-items: center; color: var(--ink);
  font-family: var(--f-display); font-weight: 700; font-size: 22px;
  animation: htp-tick 3.2s ease-in-out infinite;
}
@keyframes htp-tick {
  0%, 58% { transform: translate(-50%, -50%) scale(0); }
  68% { transform: translate(-50%, -50%) scale(1.25); }
  74% { transform: translate(-50%, -50%) scale(1); }
  86% { opacity: 1; }
  92%, 100% { opacity: 0; }
}

/* win at 4 */
.htp-trophies {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%);
  display: flex; gap: 10px;
}
.htp-trophy {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--yellow); border: 3px solid var(--ink);
  display: grid; place-items: center; font-size: 18px; transform: scale(0);
  animation: htp-appear 3.6s ease-in-out infinite;
}
.htp-trophy:nth-child(1) { animation-delay: 0s; }
.htp-trophy:nth-child(2) { animation-delay: .32s; }
.htp-trophy:nth-child(3) { animation-delay: .64s; }
.htp-trophy:nth-child(4) { animation-delay: .96s; }
@keyframes htp-appear {
  0% { transform: scale(0); }
  8% { transform: scale(1.25); }
  14% { transform: scale(1); }
  72% { transform: scale(1); opacity: 1; }
  82%, 100% { transform: scale(1); opacity: 0; }
}
.htp-win {
  position: absolute; left: 50%; top: 74%;
  transform: translate(-50%, -50%) scale(0);
  background: var(--coral); color: #fff;
  font-family: var(--f-display); font-weight: 700; font-size: 13px;
  padding: 4px 13px; border-radius: 14px; border: 2.5px solid var(--ink);
  animation: htp-winpop 3.6s ease-in-out infinite;
}
@keyframes htp-winpop {
  0%, 40% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  48% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
  55% { transform: translate(-50%, -50%) scale(1); }
  78% { opacity: 1; }
  86%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .htp-stage *,
  .htp-stage *::before,
  .htp-stage *::after { animation: none !important; }
  .htp-drawcard { transform: translateY(0); background: var(--coral); opacity: 1; }
  .htp-drawcard .htp-eyes { opacity: 1; }
  .htp-nooo { transform: translateX(-50%) scale(1); opacity: 1; }
  .htp-grump { opacity: .35; }
  .htp-squad { transform: none; opacity: 1; }
  .htp-tick { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  .htp-trophy { transform: scale(1); opacity: 1; }
  .htp-win { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

/* ---------- Founding-Squad benefit list (bottom CTA) ---------- */
.founding-squad-list {
  list-style: none; padding: 0; margin: 22px auto 18px;
  max-width: 460px; text-align: left;
  display: flex; flex-direction: column; gap: 8px;
}
.founding-squad-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--f-body); font-weight: 500; font-size: 14.5px;
  color: var(--ink); line-height: 1.45;
}
.founding-squad-list li::before {
  content: "✓"; flex: 0 0 auto;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink); color: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; margin-top: 1px;
}
.founding-squad-lockin {
  font-family: var(--f-display); font-weight: 600;
  font-size: 14.5px; color: var(--ink);
  margin: 8px auto 0; max-width: 480px;
}
.founding-squad-lockin a {
  color: var(--purple); text-decoration: underline;
  text-decoration-color: rgba(14,53,64,.4); text-underline-offset: 3px;
  font-weight: 700;
}
.founding-squad-lockin a:hover { text-decoration-color: var(--purple); }

/* ---------- Shop.html — "Not sure yet?" learn-more block ---------- */
.shop-learn-more {
  background: #fff; border: 3px solid var(--ink); border-radius: var(--r-lg);
  box-shadow: var(--shadow-chunky); padding: 28px 30px;
  max-width: 620px; margin: 36px auto 0; text-align: center;
}
.shop-learn-more h3 {
  font-family: var(--f-display); font-weight: 700;
  font-size: 20px; color: var(--purple); margin: 0 0 10px;
}
.shop-learn-more p {
  font-size: 14.5px; color: var(--ink-soft); margin: 0 0 16px;
}
.shop-learn-more__links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.shop-sister-link {
  display: block; max-width: 620px; margin: 22px auto 0;
  text-align: center; font-family: var(--f-display); font-weight: 600;
  font-size: 14.5px; color: var(--purple);
}
.shop-sister-link a {
  color: var(--purple); text-decoration: underline;
  text-decoration-color: rgba(14,53,64,.4); text-underline-offset: 3px;
}
.shop-sister-link a:hover { text-decoration-color: var(--purple); }

/* ---------- Utilities ---------- */
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 40px; }
.text-center { text-align: center; }
.rotate-minus { transform: rotate(-2deg); display: inline-block; }
