/* ============================================================
   Anka — Landing page v2
   Editorial, quiet, photo-first. Built on Anka design-system
   semantic colours; surface shifted WARM to match the product.
   Reveal animations are gated behind html.anka-js so content
   is always visible if JS doesn't run.
   ============================================================ */

:root {
  /* warm surface */
  --bg:        #F4EFE6;
  --bg-2:      #ECE5D8;
  --paper:     #FBF8F2;
  --card:      #FFFFFF;
  --ink:       #16140F;
  --ink-2:     #57514A;
  --ink-3:     #8C857A;
  --ink-4:     #C2BAAC;
  --line:      #E6DECF;
  --hairline:  #DCD2BD;
  --deep:      #16130E;
  --deep-2:    #211D16;
  --deep-card: #262119;
  --on-deep:   #F4EFE6;
  --on-deep-2: #B6AE9F;

  /* semantic accents (from Anka tokens) */
  --teal:        #0E8A98;
  --teal-press:  #0A7280;
  --teal-tint:   #D6EEF2;
  --kept:        #2FB969;
  --kept-tint:   #D7F0DF;
  --pending:     #F5A623;
  --pending-tint:#FCE6BD;
  --urgent:      #FF5247;
  --urgent-tint: #FFE0DC;
  --buffer:      #4A8FE7;
  --buffer-tint: #DFEBFB;

  /* brand accent (tweakable) — defaults to kept-green */
  --accent:      #2FB969;
  --accent-tint: #D7F0DF;

  --sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --shadow:    0 1px 2px rgba(22,19,14,.04), 0 16px 40px -20px rgba(22,19,14,.18);
  --shadow-md: 0 2px 6px rgba(22,19,14,.05), 0 28px 60px -24px rgba(22,19,14,.28);
  --shadow-lg: 0 4px 10px rgba(22,19,14,.06), 0 40px 80px -28px rgba(22,19,14,.32);
  --card-border: rgba(22,19,14,.08);
  --card-shadow: 0 1px 2px rgba(22,19,14,.04), 0 16px 32px -22px rgba(22,19,14,.22);
}

* { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-weight: 500; font-size: 17px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--kept-tint); }
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.035em; line-height: 1.02; font-weight: 800; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.wrap.narrow { max-width: 880px; }

.soft { color: var(--kept, #2FB969); }

/* ============================================================
   BUTTONS
   ============================================================ */
.appstore {
  display: inline-flex; align-items: center; gap: 12px;
  height: 60px; padding: 0 26px 0 22px;
  background: var(--ink); color: #fff; border-radius: 16px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 10px 26px -12px rgba(22,19,14,.45);
}
.appstore:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -14px rgba(22,19,14,.5); }
.appstore:active { transform: translateY(0) scale(.99); }
.appstore svg { width: 27px; height: 27px; flex-shrink: 0; }
.appstore .as-txt { display: flex; flex-direction: column; line-height: 1.08; text-align: left; }
.appstore .as-sm { font-size: 11px; font-weight: 600; opacity: .82; }
.appstore .as-lg { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; }
.appstore.invert { background: #fff; color: var(--ink); box-shadow: 0 12px 36px -14px rgba(0,0,0,.5); }
.appstore.invert .as-sm { opacity: .62; }
.waitlist-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 25px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 14px 34px -16px rgba(22,19,14,.55);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.waitlist-button:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -16px rgba(22,19,14,.6); }
.waitlist-button:active { transform: translateY(0) scale(.99); }
.waitlist-button svg { width: 19px; height: 19px; transition: transform .2s ease; }
.waitlist-button:hover svg { transform: translateX(3px); }

.ghost {
  display: inline-flex; align-items: center; gap: 9px;
  height: 60px; padding: 0 24px; border-radius: 16px;
  border: 1px solid var(--hairline); background: transparent;
  font-weight: 700; font-size: 16px; color: var(--ink);
  white-space: nowrap;
  transition: background .18s ease, border-color .18s ease, transform .12s ease;
}
.ghost:hover { background: #fff; border-color: var(--ink-4); }
.ghost:active { transform: scale(.99); }
.ghost svg { width: 18px; height: 18px; transition: transform .2s ease; }
.ghost:hover svg { transform: translateX(3px); }
.ghost.on-deep { border-color: rgba(244,239,230,.22); background: transparent; color: var(--on-deep); }
.ghost.on-deep:hover { background: rgba(244,239,230,.08); border-color: rgba(244,239,230,.35); }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 80; height: 76px; display: flex; align-items: center; transition: background .3s, box-shadow .3s, height .3s; }
.nav.scrolled { height: 64px; background: rgba(244,239,230,.82); backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%); box-shadow: 0 1px 0 var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: baseline; font-weight: 800; font-size: 28px; letter-spacing: -0.04em; color: var(--ink); }
.logo .d { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); margin-left: 3px; transform: translateY(-1px); }
.nav-r { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; gap: 30px; font-weight: 600; font-size: 15px; color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); }
.nav-mini { display: inline-flex; align-items: center; height: 42px; padding: 0 18px; border-radius: 12px; background: var(--ink); color: #fff; font-weight: 700; font-size: 14.5px; transition: transform .12s, background .2s; white-space: nowrap; }
.nav-links a { white-space: nowrap; }
.nav-mini:hover { background: var(--deep-2); }
.nav-mini:active { transform: scale(.98); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 160px 0 110px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.hero h1 { font-size: clamp(48px, 6.4vw, 88px); letter-spacing: -0.045em; line-height: 0.96; }
.hero .sub { font-size: clamp(18px, 1.55vw, 21px); line-height: 1.5; color: var(--ink-2); font-weight: 500; margin: 28px 0 38px; max-width: 520px; }
.hero .cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* Hero visual: ONE photo placeholder + one or two quiet message cards.
   A soft warm/green wash sits behind the photo to give the moment depth. */
.hero-stage { position: relative; display: flex; justify-content: center; align-items: center; min-height: 640px; }
.hero-stage::before {
  content: "";
  position: absolute;
  inset: -60px -12% -60px -10%;
  background:
    radial-gradient(ellipse 55% 50% at 28% 30%, var(--accent-tint), transparent 65%),
    radial-gradient(ellipse 50% 45% at 78% 78%, var(--teal-tint), transparent 70%);
  opacity: 1;
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
}
.hero-photo-wrap { position: relative; z-index: 2; }

/* tiny brand-mark anchor floating just above the photo — ties the moment to Anka */
.hero-photo-wrap .anchor {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
  background: #fff;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 12px; font-weight: 800; letter-spacing: -0.01em;
  z-index: 6;
  text-transform: lowercase;
}
.hero-photo-wrap .anchor i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-right: 2px;
}

/* ============================================================
   PHOTO PLACEHOLDERS  (tasteful, intentional, replaceable)
   ============================================================ */
.photo {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  background: var(--photo-grad, linear-gradient(155deg, #E9D2B0 0%, #C99670 45%, #7C5947 100%));
}
/* directional light + shadow — gives the placeholder shape and depth */
.photo::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 28% 18%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(ellipse 90% 70% at 72% 92%, rgba(0,0,0,.4), transparent 65%),
    radial-gradient(ellipse 60% 40% at 60% 50%, rgba(0,0,0,.08), transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.photo .tag {
  position: absolute; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 7px;
  height: 28px; padding: 0 12px 0 9px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-2);
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.photo .tag svg { width: 13px; height: 13px; color: var(--ink-2); }
.photo .tag.before  { background: var(--pending-tint); color: #7a4a06; }
.photo .tag.during  { background: var(--teal-tint); color: var(--teal-press); }
.photo .tag.after   { background: var(--kept-tint); color: #1c7a44; }
.photo .tag.before svg,
.photo .tag.during svg,
.photo .tag.after  svg { color: currentColor; }
.photo .label {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  color: #fff;
  font-weight: 600; font-size: 15px; letter-spacing: -.01em; line-height: 1.35;
  text-shadow: 0 2px 18px rgba(0,0,0,.6);
  z-index: 3;
  font-feature-settings: "ss01" on;
}
.photo .label::before {
  content: "["; opacity: .7; margin-right: 2px;
}
.photo .label::after {
  content: "]"; opacity: .7; margin-left: 2px;
}

/* Photo moods — saturated enough to read clearly under the light/shadow overlay */
.photo.dusk     { --photo-grad: linear-gradient(165deg, #F2C792 0%, #D88553 50%, #6B3525 100%); }
.photo.morning  { --photo-grad: linear-gradient(160deg, #D8DDC8 0%, #9CA68B 50%, #3F4839 100%); }
.photo.daylight { --photo-grad: linear-gradient(165deg, #F8D199 0%, #E08A4A 50%, #7A3818 100%); }
.photo.evening  { --photo-grad: linear-gradient(165deg, #C8A984 0%, #8E6A4A 45%, #2A1E15 100%); }

.photo.portrait { aspect-ratio: 4 / 5; }
.photo.landscape { aspect-ratio: 5 / 4; }

/* Real photo variant — image fills the figure; drop the placeholder grad + overlay */
.photo.real { background: var(--bg-2); }
.photo.real::after { display: none; }
.photo.real img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* ============================================================
   HERO PHOTO + MESSAGE CARDS
   ============================================================ */
.hero-photo-wrap { position: relative; width: 100%; max-width: 460px; }
.hero-photo-wrap .photo { width: 100%; }

/* The two supportive messages — quiet, anchored to the photo edge */
.msg {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 16px;
  box-shadow:
    0 1px 2px rgba(15, 20, 25, .08),
    0 8px 24px rgba(15, 20, 25, .18),
    0 24px 48px rgba(15, 20, 25, .22);
  padding: 12px 14px 13px;
  width: 252px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: start;
  z-index: 5;
}
.msg .av {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: #fff;
}
.msg .av.maya   { background: linear-gradient(135deg, #FF8B6E 0%, #F45F44 100%); }
.msg .av.dad    { background: linear-gradient(135deg, #F5C57A 0%, #C98326 100%); }
.msg .av.george { background: linear-gradient(135deg, #5DC9A8 0%, #0E8A98 100%); }
.msg .av.tara   { background: linear-gradient(135deg, #C58CF0 0%, #8B4DD1 100%); }
.msg .av.jord   { background: linear-gradient(135deg, #7AB1F8 0%, #4A8FE7 100%); }
.msg .head { font-size: 13px; font-weight: 800; color: var(--ink); display: flex; align-items: baseline; gap: 7px; line-height: 1.15; flex-wrap: wrap; }
.msg .head .when { font-size: 11px; font-weight: 600; color: var(--ink-3); letter-spacing: .01em; }
.msg .body { font-size: 13px; font-weight: 500; color: var(--ink-2); line-height: 1.4; margin-top: 4px; }
.hero-messages { display: contents; }

/* Comment placements — from user sketch.
   Maya  — top right, above her head.
   George — middle left.
   Dad    — middle right, just below Maya.
   Tara   — bottom left. */
.msg-1 { top: 12%;  right: -84px; }   /* Maya   */
.msg-2 { top: 46%;  left:  -84px; }   /* George */
.msg-3 { top: 60%;  right: -64px; }   /* Dad    */
.msg-4 { bottom: 6%; left:  -96px; }   /* Tara   */

/* ============================================================
   EVIDENCE / TURNING POINT  (dark surface + green stat card)
   ============================================================ */
.evidence {
  position: relative;
  padding: 140px 0 150px;
  background: var(--deep);
  color: var(--on-deep);
  border-top: none;
  border-bottom: none;
  overflow: hidden;
}
.evidence-blob {
  position: absolute;
  width: 1100px; height: 1100px;
  border-radius: 50%;
  top: -40%; right: -22%;
  background: radial-gradient(circle, rgba(47,185,105,.18), transparent 62%);
  pointer-events: none;
}
.evidence .wrap { position: relative; }
.evidence-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 88px;
  align-items: center;
}

/* --- LEFT column --- */
.evidence-h {
  font-size: clamp(40px, 4.6vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 36px;
  max-width: 14ch;
  color: var(--on-deep);
}
.evidence-h .soft { color: var(--kept, #2FB969); }

.evidence-lede {
  font-size: clamp(18px, 1.45vw, 21px);
  color: var(--on-deep);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 22px;
  max-width: 34ch;
}
.evidence-list {
  list-style: none;
  padding: 0 0 0 22px;
  margin: 0 0 30px;
  border-left: 2px solid var(--accent);
}
.evidence-list li {
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--on-deep);
  padding: 5px 0;
}
.evidence-p {
  font-size: clamp(18px, 1.45vw, 21px);
  color: var(--on-deep-2);
  font-weight: 500;
  line-height: 1.55;
  max-width: 44ch;
}
.evidence-p .hi { color: var(--accent); font-weight: 800; }

/* --- RIGHT column: green stat card --- */
.stat-card {
  position: relative;
  background: var(--accent);            /* bright kept-green */
  color: var(--ink);
  border-radius: 32px;
  padding: 44px 44px 38px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 30px 80px -30px rgba(47,185,105,.55),
    0 16px 48px -20px rgba(0,0,0,.55);
  max-width: 520px;
  margin: 0 auto;                       /* horizontally centered in column */
  isolation: isolate;
  overflow: hidden;
  text-align: left;
}
.stat-wash {
  position: absolute; inset: 0;
  border-radius: inherit;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 100% 100%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(ellipse 50% 30% at 0% 0%, rgba(255,255,255,.18), transparent 70%);
}
.stat-card .stat-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  white-space: nowrap;
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent, #2FB969);
  padding: 7px 12px 7px 9px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 1px 0 rgba(22,19,14,.05);
}
.stat-card .stat-eyebrow svg { color: var(--accent, #2FB969); }
.stat-eyebrow svg { width: 13px; height: 13px; }

.stat-pre {
  margin: 28px 0 6px;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-figure {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-num {
  font-size: clamp(140px, 16vw, 220px);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.075em;
  color: #FFFFFF;
}
.stat-num .pct {
  font-size: 0.55em;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.04em;
  margin-left: 2px;
}
.stat-more {
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 10px;
}

.stat-sub {
  margin: 22px 0 30px;
  font-size: clamp(18px, 1.45vw, 21px);
  color: rgba(22,19,14,.78);
  font-weight: 500;
  line-height: 1.45;
  max-width: 36ch;
}

.stat-src {
  display: flex; width: 100%; align-items: center; justify-content: flex-end; gap: 8px;
  text-align: right;
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(22,19,14,.55);
}
.stat-src::before {
  content: ""; width: 16px; height: 1px; background: rgba(22,19,14,.45);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding: 120px 0; }
.how-head { max-width: 760px; margin-bottom: 36px; }
.how-head h2 { font-size: clamp(32px, 3.8vw, 48px); letter-spacing: -0.035em; line-height: 1.05; }
.how-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: stretch; }
.steps {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 4px;
}
.steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 26px;
  padding: 28px 20px;
  margin: 0 -20px;
  align-items: start;
  min-height: 132px;
  border-radius: 18px;
  transition: background .45s ease, transform .45s ease;
}
/* Highlight the step nearest the reading line as you scroll. */
html.anka-js .steps li.lit {
  background: var(--paper);
}
.steps li + li { border-top: 1px solid var(--hairline); }
.steps .n {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; letter-spacing: -0.01em;
  color: #fff;
  background: var(--ink-3);
  transition: transform .45s ease, box-shadow .45s ease;
}
/* progression across the four steps — red → amber → blue → green */
.steps li:nth-child(1) { --step-c: var(--urgent); }
.steps li:nth-child(2) { --step-c: var(--pending); }
.steps li:nth-child(3) { --step-c: var(--buffer); }
.steps li:nth-child(4) { --step-c: var(--kept); }
.steps .n { background: var(--step-c); }
html.anka-js .steps li.lit .n {
  transform: scale(1.06);
  box-shadow: 0 10px 24px -8px var(--step-c);
}
.steps h3 { font-size: 28px; letter-spacing: -0.025em; line-height: 1.15; }
.steps p { font-size: 19px; color: var(--ink-2); margin-top: 12px; line-height: 1.55; max-width: 480px; }

.how-phone {
  display: flex; justify-content: center; align-items: center;
}
.how-phone-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
}

.iphone-frame {
  width: min(100%, 398px);
  aspect-ratio: 398 / 800;
}

/* live check-in animation iframe */
.checkin-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color-scheme: light;
}
.liveframe { position: relative; width: 300px; aspect-ratio: 360 / 760; }
.liveframe iframe { width: 100%; height: 100%; border: 0; background: transparent; display: block; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: 110px 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.features-head { max-width: 740px; margin-bottom: 72px; }
.features-head h2 { font-size: clamp(32px, 3.8vw, 48px); letter-spacing: -0.035em; line-height: 1.05; }
.features-head p { font-size: 18px; color: var(--ink-2); margin-top: 22px; max-width: 540px; }

.feat-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feat {
  position: relative;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 22px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  will-change: transform;
}
.feat:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow:
    0 1px 0 rgba(15,20,25,.04),
    0 28px 56px -22px rgba(15,20,25,.28);
}
.feat .feat-body { display: flex; flex-direction: column; gap: 10px; }
.feat h4 {
  font-size: 22px;
  letter-spacing: -0.022em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.feat p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}

/* HERO — spans the full row, text + supporter-message stack */
.feat-hero {
  grid-column: 1 / -1;
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
  min-height: 320px;
}
.feat-hero .feat-body { gap: 18px; max-width: 28ch; }
.feat-hero h4 {
  font-size: clamp(28px, 2.6vw, 36px);
  letter-spacing: -0.028em;
  line-height: 1.08;
}
.feat-hero p { font-size: 17px; line-height: 1.55; max-width: 32ch; }

/* --- supporter messages stack (hero art) --- */
.feat-art-msgs {
  position: relative;
  min-height: 280px;
  align-self: stretch;
}
.art-msg {
  position: absolute;
  background: #fff;
  border: 1px solid #ECEEF1;
  border-radius: 18px;
  box-shadow:
    0 1px 2px rgba(15,20,25,.05),
    0 22px 44px -16px rgba(15,20,25,.22);
  padding: 15px 18px 16px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  width: clamp(250px, 24vw, 296px);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  z-index: 1;
}
.art-msg-eloise { top: 0;    right: 6%;  transform: rotate(1.4deg); z-index: 3; }
.art-msg-juan   { top: 86px; left: 2%;   transform: rotate(-2deg);  z-index: 2; }
.art-msg-amber  { bottom: 0; right: -2%; transform: rotate(1.8deg); z-index: 2; }
.feat-hero:hover .art-msg-eloise { transform: rotate(1.4deg) translateY(-3px); }
.feat-hero:hover .art-msg-juan   { transform: rotate(-2deg)  translateY(-3px); }
.feat-hero:hover .art-msg-amber  { transform: rotate(1.8deg) translateY(-3px); }
.art-msg .av { width: 40px; height: 40px; font-size: 15px; }
.art-msg .art-head { font-size: 15px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.art-msg p { font-size: 14.5px; color: var(--ink-2); line-height: 1.45; margin-top: 5px; }

/* hand-drawn green doodles — sit in the empty corners around the messages, never over them */
.feat-art-msgs .doodle {
  position: absolute;
  color: var(--kept, #2FB969);
  pointer-events: none;
  opacity: 0.88;
  z-index: 1;            /* below the cards — they're in the gaps anyway */
}
.doodle-squiggle { width: 108px; height: 72px; top: 2%;     left: 4%;   transform: rotate(-4deg); }
.doodle-heart    { width: 56px;  height: 56px; bottom: 6%;  left: 6%;   transform: rotate(-8deg); }
.doodle-heart-sm { width: 36px;  height: 36px; bottom: 22%; left: 16%;  transform: rotate(14deg); opacity: 0.72; }
.doodle-star     { width: 34px;  height: 34px; top: 46%;    right: 3%;  transform: rotate(12deg); }
.doodle-star-2   { width: 34px;  height: 34px; top: 60%;    right: 10%; transform: rotate(-22deg); opacity: 0.78; }

/* avatars — flat colour fills, no gradient slop */
.feat .av, .art-msg .av {
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff;
}
.feat .av.eloise, .art-msg .av.eloise { background: #FF5247; }
.feat .av.juan,   .art-msg .av.juan   { background: #F5A623; }
.feat .av.amber,  .art-msg .av.amber  { background: #5BA87A; }

/* --- four small cards: consistent mini-visual row at the bottom --- */
.feat-sm { min-height: 260px; }
.feat-sm .feat-body { flex: 1; }
.feat-art-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-top: auto;
}

/* tick circles (Daily check-ins) */
.feat-art-row .tick {
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1.6px dashed var(--ink-4);
  color: transparent;
  flex-shrink: 0;
}
.feat-art-row .tick.on { background: var(--kept, #2FB969); border-color: transparent; color: #fff; }
.feat-art-row .tick svg { width: 15px; height: 15px; }

/* mini pill — Gentle Streaks + Buffer days */
.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.mini-pill strong { font-weight: 800; }
.mini-pill svg { width: 18px; height: 18px; flex-shrink: 0; }
.mini-pill-streak {
  background: var(--pending-tint, #FFE6BD);
  color: #6E4209;
}
.mini-pill-streak svg { color: var(--pending, #F5A623); }
.mini-pill-buffer {
  background: var(--buffer-tint, #DFEBFB);
  color: #1E4E94;
}
.mini-pill-buffer svg { color: var(--buffer, #4A8FE7); }

/* Supporter prompts: ring + red CTA */
.feat-art-prompt { gap: 10px; }
.mini-ring {
  position: relative;
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mini-ring-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.mini-ring-time {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.mini-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--urgent, #FF5247);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

/* ============================================================
   HUMAN SECTION
   ============================================================ */
.human { padding: 140px 0 130px; }
.human-head { max-width: 880px; margin: 0 auto 88px; text-align: center; }
.human-head h2 {
  font-size: clamp(36px, 4.4vw, 60px);
  letter-spacing: -0.038em;
  line-height: 1.02;
}
.human-head p {
  font-size: clamp(17px, 1.35vw, 20px);
  color: var(--ink-2);
  margin: 22px auto 0;
  max-width: 580px;
  line-height: 1.5;
}

.human-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 44px);
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}
.human-state { margin: 0; }
.human-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-2, #ECEFF2);
  box-shadow:
    0 1px 0 rgba(15,20,25,.04),
    0 30px 64px -32px rgba(15,20,25,.28);
}
.human-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter .6s ease;
}
/* editorial colour grade — flatter/cooler for "before", warm/clear for "after" */
.human-photo.is-before img {
  filter: saturate(0.55) brightness(0.94) contrast(0.98) hue-rotate(-6deg);
}
.human-photo.is-after img {
  filter: saturate(1.08) brightness(1.04) contrast(1.02);
}

.human-pill {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  padding: 16px 26px;
  border-radius: 999px;
  color: #FFFFFF;
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    0 8px 24px -10px rgba(15,20,25,.45),
    0 2px 6px -2px rgba(15,20,25,.25);
}
.human-pill .dot { display: none; }
.human-photo.is-before .human-pill { background: var(--urgent, #FF5247); }
.human-photo.is-after  .human-pill { background: var(--kept,   #2FB969); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  padding: 150px 0;
  text-align: center;
  background: var(--deep);
  color: var(--on-deep);
  position: relative;
  overflow: hidden;
}
/* soft warm-to-dark transition so the cream page flows into the dark block */
.final::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 140px;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 100%);
  opacity: .14;
  pointer-events: none;
}
.final .glow { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; }
.final .glow.g1 { width: 540px; height: 540px; background: var(--teal); top: -160px; left: 8%; opacity: .32; }
.final .glow.g2 { width: 500px; height: 500px; background: var(--accent); bottom: -200px; right: 6%; opacity: .3; }
.final .inner { position: relative; z-index: 3; }

/* a small brand-mark accent above the headline */
.final .dots {
  display: inline-flex; gap: 10px;
  margin-bottom: 32px;
  padding: 8px 16px;
  background: rgba(244,239,230,.06);
  border: 1px solid rgba(244,239,230,.12);
  border-radius: 999px;
  align-items: center;
}
.final .dots span { width: 8px; height: 8px; border-radius: 50%; }
.final .dots .label {
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--on-deep-2); padding-left: 4px;
}
.final h2 { color: #fff; font-size: clamp(40px, 5.6vw, 76px); letter-spacing: -0.045em; line-height: 0.98; max-width: 900px; margin: 0 auto 22px; }
.final h2 .soft { color: var(--kept, #2FB969); }
.final p { font-size: clamp(18px, 1.7vw, 22px); color: var(--on-deep-2); max-width: 540px; margin: 0 auto 40px; line-height: 1.5; }
.final .waitlist-eyebrow {
  margin-bottom: 22px;
  color: var(--kept, #2FB969);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.waitlist-form {
  width: min(100%, 650px);
  margin: 0 auto;
}
.waitlist-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 8px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,.65);
}
.waitlist-fields input {
  min-width: 0;
  height: 56px;
  padding: 0 18px;
  border: 0;
  outline: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}
.waitlist-fields input::placeholder { color: var(--ink-3); }
.waitlist-fields input:focus { box-shadow: inset 0 0 0 2px var(--kept, #2FB969); }
.waitlist-fields button {
  height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .12s ease, background .2s ease;
}
.waitlist-fields button:hover { background: #2a2823; }
.waitlist-fields button:active { transform: scale(.98); }
.final .waitlist-note {
  max-width: 610px;
  margin: 16px auto 0;
  color: rgba(244,239,230,.62);
  font-size: 12px;
  line-height: 1.55;
}
.waitlist-note a {
  color: rgba(244,239,230,.88);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--deep); color: var(--on-deep); padding: 64px 0 48px; border-top: 1px solid rgba(244,239,230,.06); }
.footer .top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; align-items: flex-start; }
.footer .logo { color: var(--on-deep); }
.footer .brandline { font-size: 14.5px; color: var(--on-deep-2); margin-top: 14px; max-width: 280px; line-height: 1.55; font-weight: 500; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #6b6354; margin: 0 0 16px; }
.footer-col a { display: block; font-size: 14.5px; font-weight: 600; color: var(--on-deep-2); margin-bottom: 11px; }
.footer-col a:hover { color: var(--on-deep); }
.footer .bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(244,239,230,.1); font-size: 13px; color: #6b6354; font-weight: 600; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta { position: fixed; inset: auto 0 0 0; z-index: 90; padding: 12px 18px calc(12px + env(safe-area-inset-bottom)); background: rgba(244,239,230,.9); backdrop-filter: blur(18px) saturate(160%); box-shadow: 0 -1px 0 var(--line); transform: translateY(120%); transition: transform .35s cubic-bezier(.2,.7,.3,1); display: none; }
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .waitlist-button { width: 100%; min-height: 56px; }

/* ============================================================
   CONFIRMATION PAGE
   ============================================================ */
.thanks-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--bg);
}
.thanks-main {
  display: grid;
  place-items: center;
  padding: 132px 20px 72px;
}
.thanks-card {
  width: min(100%, 680px);
  padding: clamp(36px, 7vw, 72px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
  text-align: center;
  box-shadow: 0 28px 70px -44px rgba(22,19,14,.4);
}
.thanks-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--kept, #2FB969);
  color: #fff;
}
.thanks-mark svg { width: 30px; height: 30px; }
.thanks-card h1 {
  font-size: clamp(40px, 7vw, 64px);
  letter-spacing: -.045em;
  line-height: 1;
}
.thanks-card p {
  max-width: 500px;
  margin: 22px auto 30px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.65;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page {
  padding: 142px 0 100px;
}
.legal-shell {
  max-width: 820px;
}
.legal-header {
  padding-bottom: 38px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--hairline);
}
.legal-header h1 {
  font-size: clamp(42px, 6vw, 68px);
  letter-spacing: -0.045em;
}
.legal-updated {
  margin-top: 18px;
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 700;
}
.legal-intro {
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-2);
}
.invite-cta {
  margin-top: 28px;
}
.legal-contact {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.legal-contact p + p {
  margin-top: 5px;
}
.legal-content section + section {
  margin-top: 44px;
}
.legal-content h2 {
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.legal-content h3 {
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 24px 0 10px;
}
.legal-content p,
.legal-content li {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.72;
}
.legal-content p + p {
  margin-top: 14px;
}
.legal-content ul {
  margin: 14px 0 0;
  padding-left: 24px;
}
.legal-content li + li {
  margin-top: 7px;
}
.legal-content strong {
  color: var(--ink);
}
.legal-content a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
}
.legal-nav-link:hover {
  color: var(--ink);
}

/* ============================================================
   SCROLL REVEAL  (transform-only; safety net guarantees visibility)
   ============================================================ */
html.anka-js .reveal { transition: transform .7s cubic-bezier(.2,.7,.3,1), opacity .7s ease; }
html.anka-js .reveal:not(.in) { transform: translateY(14px); }
html.anka-js .reveal.in { transform: none; }
html.anka-js .reveal.d1 { transition-delay: .07s; }
html.anka-js .reveal.d2 { transition-delay: .14s; }
html.anka-js .reveal.d3 { transition-delay: .21s; }
html.anka-js .reveal.d4 { transition-delay: .28s; }

html.anka-js .msg { transition: opacity 1s cubic-bezier(.16,.8,.3,1), transform 1s cubic-bezier(.16,.8,.3,1); }
html.anka-js .msg:not(.in) { opacity: 0; transform: translate(0, 12px) scale(.97); }
html.anka-js .msg.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.anka-js .reveal:not(.in),
  html.anka-js .msg:not(.in) { opacity: 1 !important; transform: none !important; }
  html.anka-js .reveal, html.anka-js .msg { transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   TWEAK: surface mood
   ============================================================ */
html[data-mood="cool"] {
  --bg: #F4F6F8; --bg-2: #EBEEF2; --paper: #FBFCFD; --card: #FFFFFF;
  --ink: #0F1419; --ink-2: #4A5560; --ink-3: #8590A0; --ink-4: #B6BFCB;
  --line: #E6E9ED; --hairline: #DCDFE4;
  --deep: #0F1419; --deep-2: #1A1F26; --deep-card: #1B2127; --on-deep: #F4F6F8; --on-deep-2: #A7B0BD;
}
html[data-mood="stark"] {
  --bg: #F2F1EF; --bg-2: #E8E7E3; --paper: #FAFAF8; --card: #FFFFFF;
  --ink: #18181A; --ink-2: #54534F; --ink-3: #8B8A85; --ink-4: #C1C0BB;
  --line: #E5E4E0; --hairline: #D8D7D2;
  --deep: #141413; --deep-2: #1F1F1D; --deep-card: #242421; --on-deep: #F2F1EF; --on-deep-2: #ADACA6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero { padding: 130px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-photo-wrap { max-width: 520px; margin: 0 auto; }
  .msg-1 { right: -32px; top: 12%; }
  .msg-2 { left:  -32px; top: 46%; }
  .msg-3 { right: -32px; top: 60%; }
  .msg-4 { left:  -32px; bottom: 6%; }
  .evidence { padding: 90px 0 90px; }
  .evidence-grid { grid-template-columns: 1fr; gap: 64px; }
  .evidence-h { max-width: none; }
  .stat-card { padding: 44px 36px 40px; }
  .how-grid { grid-template-columns: 1fr; gap: 56px; }
  .how-phone { position: static; }
  .feat-bento { grid-template-columns: repeat(2, 1fr); }
  .feat-hero { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; padding: 40px 36px; }
  .human-pair { gap: 22px; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-mini { display: none; }
  .hero { padding: 116px 0 60px; }
  .hero h1 { font-size: clamp(40px, 11vw, 56px); }
  .hero-photo-wrap { width: calc(100vw - 40px); max-width: none; }
  .evidence { padding: 70px 0 70px; }
  .stat-card { padding: 36px 28px 34px; border-radius: 26px; }
  .stat-figure { gap: 12px; }
  .stat-num { font-size: clamp(96px, 28vw, 144px); }
  .how, .features, .human { padding: 80px 0; }
  .final { padding: 100px 0; }
  .waitlist-fields { grid-template-columns: 1fr; }
  .waitlist-fields button { width: 100%; }
  .feat-bento { grid-template-columns: 1fr; }
  .feat, .feat-hero { padding: 28px 24px; min-height: 0; }
  .feat-hero { grid-template-columns: 1fr; gap: 24px; }
  .feat-hero h4 { font-size: 26px; }
  .feat-art-msgs { min-height: 280px; }
  .appstore, .ghost { height: 56px; }
  .hero .cta-row { flex-direction: column; align-items: stretch; }
  .hero .cta-row .appstore, .hero .cta-row .ghost, .hero .cta-row .waitlist-button { justify-content: center; }
  .hero-stage { min-height: 0; align-items: stretch; }
  .hero-photo-wrap { display: block; }
  .hero-messages { display: contents; }
  .msg,
  .msg-1,
  .msg-2,
  .msg-3,
  .msg-4 {
    position: absolute;
    display: grid;
    width: 168px;
    grid-template-columns: 26px 1fr;
    gap: 8px;
    padding: 10px;
    border-color: rgba(255,255,255,.75);
    border-radius: 14px;
    box-shadow: 0 12px 26px -15px rgba(22,19,14,.52);
  }
  .msg .av { width: 26px; height: 26px; font-size: 11px; }
  .msg .head { font-size: 11px; gap: 5px; }
  .msg .head .when { font-size: 9px; }
  .msg .body { margin-top: 3px; font-size: 10.5px; line-height: 1.32; }
  .msg-1 { top: 2%; right: -6px; width: 146px; }
  .msg-2 { top: 39%; left: -6px; }
  .msg-3 { top: 53%; right: -6px; width: 154px; }
  .msg-4 { bottom: 7%; left: -6px; width: 160px; }
  .human-pill {
    top: auto;
    bottom: 10px;
    left: 10px;
    padding: 9px 12px;
    font-size: 13px;
    box-shadow: 0 5px 14px -8px rgba(15,20,25,.5);
  }
  .sticky-cta { display: block; }
  .footer .top { flex-direction: column; }
  .proof .num { font-size: 64px; }
  .legal-page { padding: 112px 0 74px; }
  .legal-header { margin-bottom: 34px; padding-bottom: 30px; }
  .legal-intro { font-size: 17px; }
  .legal-content section + section { margin-top: 36px; }
}
