/* ============================================================
   AlkaTerra — marketing site
   Build contract: selen-mobile/docs/design (BRAND_BOOK · DESIGN · PREMIUM_PRODUCT_PACK)
   "Mediterranean editorial × members-only intimacy × intelligent coach"
   A private coaching room, not a dashboard. Quiet, specific, warm.
   ============================================================ */

:root {
  /* ---- Color tokens (DESIGN.md §Color Tokens) ---- */
  --bone:        #F4EFE5;   /* default background — ~70% of surfaces */
  --bone-2:      #EBE5D7;   /* raised panels, linen-adjacent fills */
  --bone-3:      #DCD4C2;   /* low-contrast dividers / stone */
  --linen:       #ECE5D5;   /* user message bubbles, soft inputs */
  --ink:         #1B1F17;   /* primary text */
  --ink-soft:    #3F4538;   /* secondary readable text */
  --ink-mute:    #76796C;   /* metadata, placeholders, inactive */
  --olive:       #3D4A2E;   /* primary action, active tab, authority */
  --olive-deep:  #1F2A18;   /* rare dark surfaces */
  --sage:        #8AA88A;   /* coach hairline, quiet state */
  --sage-mute:   #B8C6B0;   /* passive accents */
  --terracotta:  #B85C38;   /* errors / off-rhythm — never primary */
  --brass:       #B89968;   /* rare premium ornament */
  --lemon:       #E8C547;   /* brand lemon — sparing */
  --line:        #D4CCBB;   /* hairline borders */
  --line-soft:   #E2DBCA;   /* softer hairlines */
  --paper:       #FBF8F1;   /* lightest card lift on bone */

  /* ---- Type ---- */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ital:  'Instrument Serif', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --maxw: 1200px;
  --pad: 40px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.js .reveal:not(.in) { opacity: 0; transform: translateY(14px); }
.reveal { transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.rd1 { transition-delay: 90ms; } .rd2 { transition-delay: 180ms; }
.rd3 { transition-delay: 270ms; } .rd4 { transition-delay: 360ms; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal:not(.in) { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  overflow-x: hidden;
}

/* atmospheric grain — barely-there material */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("noise.svg");
  mix-blend-mode: multiply;
}
@media (pointer: coarse) { body::before { display: none; } }

/* constant dashed engineering grid behind everything (Yemma-style) */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image:
    repeating-linear-gradient(to right, #000 0 3px, transparent 3px 10px),
    repeating-linear-gradient(to bottom, #000 0 3px, transparent 3px 10px);
  -webkit-mask-composite: source-in;
  mask-image:
    repeating-linear-gradient(to right, #000 0 3px, transparent 3px 10px),
    repeating-linear-gradient(to bottom, #000 0 3px, transparent 3px 10px);
  mask-composite: intersect;
  opacity: 0.45;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; margin: 0; letter-spacing: -0.01em; }
em, .ital { font-family: var(--ital); font-style: italic; letter-spacing: 0; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute);
}
.eyebrow::before {
  content: ""; flex: 0 0 auto; width: 22px; height: 1px;
  background: var(--brass); opacity: 0.9;
}
.eyebrow.olive { color: var(--olive); }

/* ---- buttons (calm, no hype) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  padding: 13px 26px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: all 280ms var(--ease);
  white-space: nowrap;
}
.btn-olive { background: var(--olive); color: var(--bone); }
.btn-olive:hover { background: var(--olive-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-soft); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-text { color: var(--ink-soft); font-weight: 500; font-size: 15px; padding: 13px 4px; border-bottom: 1px solid var(--line); border-radius: 0; }
.btn-text:hover { color: var(--ink); border-color: var(--ink); }
.btn-lemon { background: var(--lemon); color: var(--olive-deep); }
.btn-lemon:hover { background: color-mix(in srgb, var(--lemon) 88%, #fff); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bone) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid transparent; transition: border-color 300ms var(--ease);
}
body.scrolled .nav { border-bottom-color: var(--line); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 16px var(--pad); display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 26px; height: 26px; }
.brand span { font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 14.5px; color: var(--ink-soft); transition: color 200ms; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
@media (max-width: 880px) { .nav-links { display: none; } }

/* ============================================================
   HERO — editorial, left-anchored, negative space at right
   ============================================================ */
.hero { position: relative; padding: 78px 0 56px; overflow: hidden; }
.hero-lemon {
  position: absolute; right: -160px; top: -80px; width: 620px; height: 620px;
  opacity: 0.05; pointer-events: none; z-index: 0; transform: rotate(-12deg);
}
/* soft glow behind the hero phone */
.hero-media { position: relative; }
.hero-media::before {
  content: ""; position: absolute; width: 360px; height: 440px; top: 50%; left: 50%;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(61,74,46,0.16), transparent 68%);
  filter: blur(36px); z-index: 0; pointer-events: none;
}
.hero-media .phone-stage { position: relative; z-index: 1; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 44px; } }

.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-eyebrow .rule { height: 1px; width: 44px; background: var(--sage); }
.hero h1 { font-size: clamp(46px, 6.4vw, 86px); line-height: 0.98; font-weight: 300; letter-spacing: -0.025em; }
.hero h1 em { font-weight: 400; }
.hero-sub { margin-top: 28px; font-size: 19px; line-height: 1.62; color: var(--ink-soft); max-width: 30em; font-weight: 400; }
.hero-cta { margin-top: 36px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; color: var(--ink-mute); text-transform: uppercase; }

/* ============================================================
   PHONE — realistic iPhone (Dynamic Island, titanium frame)
   ============================================================ */
.phone-stage { display: flex; justify-content: center; perspective: 2000px; }
.phone {
  width: 320px; flex: 0 0 320px;
  /* brushed-titanium frame with warm rails that catch light at the edges */
  background:
    linear-gradient(135deg, #6f6856 0%, #4a4537 8%, #2a2a1f 22%, #15160e 40%, #0b0c06 50%, #15160e 60%, #2a2a1f 78%, #4a4537 92%, #736b58 100%);
  border-radius: 56px;
  padding: 13px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.55),
    0 2.5px 2px rgba(255,250,235,0.36) inset,
    0 -2.5px 2px rgba(0,0,0,0.6) inset,
    2px 0 2px rgba(255,250,235,0.13) inset,
    -2px 0 2px rgba(0,0,0,0.46) inset,
    0 64px 110px -44px rgba(31,42,24,0.62),
    0 32px 60px -32px rgba(31,42,24,0.46),
    0 12px 24px -16px rgba(0,0,0,0.4);
}
/* side buttons — left volume rocker, right power, with metallic edge */
.phone::before {
  content: ""; position: absolute; left: -3px; top: 150px; width: 3px; height: 120px;
  background: linear-gradient(180deg, #56523f, #1c1e15 12%, #050603 88%, #2a281e); border-radius: 4px 0 0 4px;
  box-shadow: 0 -70px 0 -0.5px #14140d, 0.5px 0 1.5px rgba(255,250,235,0.08);
}
.phone::after {
  content: ""; position: absolute; right: -3px; top: 184px; width: 3px; height: 82px;
  background: linear-gradient(180deg, #56523f, #1c1e15 12%, #050603 88%, #2a281e); border-radius: 0 4px 4px 0;
  box-shadow: -0.5px 0 1.5px rgba(255,250,235,0.08);
}
.phone-screen {
  position: relative; background: var(--bone); border-radius: 43px; overflow: hidden;
  aspect-ratio: 320 / 676; z-index: 1;
  box-shadow:
    0 0 0 2.5px #06070b,
    0 0 0 3.5px rgba(160,150,118,0.28),
    0 0 0 4px rgba(0,0,0,0.5),
    0 1px 3px rgba(255,250,235,0.16) inset;
}
/* Dynamic Island */
.phone-notch {
  position: absolute; top: 13px; left: 50%; transform: translateX(-50%);
  width: 93px; height: 27px; background: #000; border-radius: 999px; z-index: 30;
  box-shadow: 0 0 0 0.5px rgba(255,255,255,0.04);
}
.phone-notch::after {
  content: ""; position: absolute; right: 9px; top: 50%; transform: translateY(-50%);
  width: 9px; height: 9px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #34506a, #05080c 72%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}
/* hero tilt + idle float for depth */
.phone.tilt { transform: rotateY(-15deg) rotateX(5deg) rotateZ(1.4deg); transform-style: preserve-3d; transition: transform 700ms var(--ease); }
.phone.tilt:hover { transform: rotateY(-7deg) rotateX(3deg) rotateZ(0.6deg); }
@keyframes phoneFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
.hero-media .phone-stage { animation: phoneFloat 6.5s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .phone.tilt { transition: none; } .hero-media .phone-stage { animation: none; } }
@media (max-width: 600px) { .phone.tilt { transform: none; } }

.scr { position: absolute; inset: 0; display: flex; flex-direction: column; }
.scr-status { display: flex; align-items: center; justify-content: space-between; padding: 16px 28px 6px; font-family: var(--sans); font-size: 12.5px; font-weight: 600; color: var(--ink); flex: 0 0 auto; }
.scr-status .ic { display: flex; gap: 5px; align-items: center; }
.scr-status .ic svg { width: 16px; height: 11px; }

/* tab bar (Today · Chat · Diary · You) */
.scr-tabs { display: flex; justify-content: space-around; align-items: center; padding: 9px 8px calc(9px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: color-mix(in srgb, var(--bone) 92%, transparent); flex: 0 0 auto; }
.scr-tab { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 4px 13px; border-radius: 12px; font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: lowercase; color: var(--ink-mute); }
.scr-tab svg { width: 19px; height: 19px; }
.scr-tab.on { color: var(--olive); background: color-mix(in srgb, var(--olive) 12%, transparent); }

/* ---- CHAT screen (the thesis) ---- */
.scr-chat { background: var(--bone); }
.chat-top { display: flex; align-items: center; gap: 9px; padding: 8px 14px 10px; border-bottom: 1px solid var(--line-soft); flex: 0 0 auto; }
.chat-top img { width: 24px; height: 24px; border-radius: 50%; flex: 0 0 auto; }
.chat-top .who { flex: 1; text-align: center; font-family: var(--sans); font-weight: 600; font-size: 15px; letter-spacing: -0.01em; color: var(--ink); }
.chat-top .acts { display: flex; align-items: center; gap: 13px; color: var(--ink-soft); flex: 0 0 auto; }
.chat-top .acts svg { width: 18px; height: 18px; }
.chat-top .gear { margin-left: auto; color: var(--ink-mute); }
.chat-top .gear svg { width: 17px; height: 17px; }
.chat-body { flex: 1; overflow: hidden; padding: 14px 16px 6px; display: flex; flex-direction: column; gap: 13px; }
.chat-ts { font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); text-align: center; margin: 2px 0; }
.bub-user { align-self: flex-end; max-width: 82%; background: var(--linen); color: var(--ink); font-size: 13.5px; line-height: 1.45; padding: 10px 14px; border-radius: 18px 18px 6px 18px; }
.msg-coach { align-self: flex-start; max-width: 92%; font-family: var(--serif); font-size: 16px; line-height: 1.44; color: var(--ink); }
.msg-coach em { font-family: var(--ital); }
.chat-actions { display: flex; gap: 8px; align-self: flex-start; }
.chat-actions span { width: 30px; height: 30px; border-radius: 9px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--ink-mute); background: var(--paper); }
.chat-actions svg { width: 14px; height: 14px; }
.chat-chips { display: flex; gap: 7px; flex-wrap: wrap; }
.chat-chip { font-family: var(--sans); font-size: 11.5px; white-space: nowrap; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; background: var(--paper); }
.chat-compose { display: flex; align-items: center; gap: 10px; padding: 10px 14px 5px; flex: 0 0 auto; }
.chat-compose .plus { width: 26px; height: 26px; color: var(--ink-soft); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.chat-compose .plus svg { width: 22px; height: 22px; }
.chat-compose .field { flex: 1; background: var(--linen); border-radius: 22px; padding: 11px 16px; font-size: 13px; color: var(--ink-mute); }
.chat-compose .mic { width: 38px; height: 38px; border-radius: 50%; background: color-mix(in srgb, var(--lemon) 50%, var(--paper)); color: var(--ink); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.chat-compose .mic svg { width: 17px; height: 17px; }
.chat-disc { flex: 0 0 auto; text-align: center; font-family: var(--sans); font-size: 9px; color: var(--ink-mute); padding: 1px 14px 8px; }

/* ---- TODAY screen ---- */
.scr-today { background: var(--bone); }
.today-scroll { flex: 1; overflow: hidden; padding: 8px 18px; display: flex; flex-direction: column; gap: 13px; }
.today-greet { font-family: var(--serif); font-size: 23px; line-height: 1.12; font-weight: 300; margin-top: 4px; }
.today-greet em { font-family: var(--ital); }
.today-date { font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }
.today-card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 15px 16px; }
.today-card .lab { font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 7px; }
.today-card .ln { font-family: var(--serif); font-size: 16px; line-height: 1.34; color: var(--ink); }
.today-card .ln em { font-family: var(--ital); }
.today-seal { display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid var(--line); border-radius: 14px; background: var(--bone-2); }
.today-seal .dot { width: 26px; height: 26px; border-radius: 50%; background: var(--olive); color: var(--bone); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.today-seal .dot svg { width: 14px; height: 14px; }
.today-seal .t { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive); }
.today-seal .s { font-size: 11.5px; color: var(--ink-soft); margin-top: 1px; }
.today-chips { display: flex; gap: 7px; flex-wrap: wrap; }
.today-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 18px; padding: 8px 13px; background: var(--paper); }
.today-chip svg { width: 14px; height: 14px; color: var(--olive); }

/* ---- DIARY screen ---- */
.scr-diary { background: var(--bone); }
.diary-scroll { flex: 1; overflow: hidden; padding: 8px 18px; display: flex; flex-direction: column; gap: 14px; }
.diary-day { font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); border-bottom: 1px solid var(--line); padding-bottom: 6px; }
.diary-entry { display: flex; gap: 12px; }
.diary-entry .thumb { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; flex: 0 0 auto; background: var(--bone-2); }
.diary-entry .ev { font-size: 13px; font-weight: 500; color: var(--ink); }
.diary-entry .ev small { display: block; font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 3px; font-weight: 500; }
.diary-entry .read { font-family: var(--serif); font-size: 14.5px; line-height: 1.4; color: var(--ink-soft); margin-top: 4px; }
.diary-entry .read em { font-family: var(--ital); color: var(--ink); }
.diary-rhythm { margin-top: 2px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.diary-rhythm .lab { font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }
.diary-rhythm .bars { display: flex; align-items: flex-end; gap: 6px; height: 40px; margin-top: 10px; }
.diary-rhythm .bars span { flex: 1; background: var(--sage-mute); border-radius: 3px 3px 0 0; }
.diary-rhythm .bars span.on { background: var(--olive); }
.diary-rhythm .cap { font-family: var(--serif); font-size: 13.5px; line-height: 1.4; color: var(--ink-soft); margin-top: 10px; }

/* ---- SUNDAY LETTER screen ---- */
.scr-letter { background: var(--bone); }
.letter-scroll { flex: 1; overflow: hidden; padding: 14px 20px; display: flex; flex-direction: column; gap: 12px; }
.letter-kicker { font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }
.letter-h { font-family: var(--serif); font-size: 26px; font-weight: 300; line-height: 1.08; letter-spacing: -0.02em; }
.letter-h em { font-family: var(--ital); }
.letter-p { font-family: var(--serif); font-size: 15.5px; line-height: 1.5; color: var(--ink-soft); }
.letter-p em { font-family: var(--ital); color: var(--ink); }
.letter-sig { font-family: var(--ital); font-size: 17px; color: var(--ink); margin-top: 2px; }

/* ============================================================
   SECTION scaffold
   ============================================================ */
.section { position: relative; z-index: 1; padding: 96px 0; }
.section.tight { padding: 72px 0; }
.section-head { max-width: 42rem; }
.section-head h2 { font-size: clamp(34px, 4.4vw, 56px); line-height: 1.04; font-weight: 300; letter-spacing: -0.02em; margin-top: 18px; }
.section-head h2 em { font-weight: 400; }
.section-head p { margin-top: 22px; font-size: 18px; line-height: 1.6; color: var(--ink-soft); max-width: 34em; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---- the four rooms ---- */
.rooms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; border-top: 1px solid var(--line); }
@media (max-width: 860px) { .rooms { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .rooms { grid-template-columns: 1fr; } }
.room { padding: 30px 26px 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.room:last-child { border-right: 1px solid var(--line); }
@media (min-width: 861px) { .rooms .room:nth-child(4) { border-right: 0; } }
.room .n { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: var(--ink-mute); }
.room .ic { margin: 18px 0 16px; color: var(--olive); }
.room .ic svg { width: 26px; height: 26px; }
.room h3 { font-size: 26px; font-weight: 400; }
.room p { margin-top: 9px; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); }

/* ---- editorial split (spotlight) ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.flip .split-media { order: -1; }
@media (max-width: 920px) { .split { grid-template-columns: 1fr; gap: 40px; } .split.flip .split-media { order: 0; } }
.split-copy h2 { font-size: clamp(32px, 4vw, 50px); line-height: 1.05; font-weight: 300; letter-spacing: -0.02em; margin-top: 16px; }
.split-copy h2 em { font-weight: 400; }
.split-copy p { margin-top: 20px; font-size: 17px; line-height: 1.62; color: var(--ink-soft); max-width: 32em; }
.split-copy .lede { font-family: var(--serif); font-size: 22px; line-height: 1.42; color: var(--ink); margin-top: 18px; }
.split-copy .lede em { font-family: var(--ital); }
.split-list { margin: 26px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; }
.split-list li { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); font-size: 15.5px; color: var(--ink-soft); line-height: 1.5; }
.split-list li:last-child { border-bottom: 1px solid var(--line); }
.split-list .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; color: var(--olive); text-transform: uppercase; flex: 0 0 64px; padding-top: 4px; }
.split-cta { margin-top: 30px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.split-media { display: flex; justify-content: center; }

/* tinted media backdrops for phones */
.media-tint { position: relative; border-radius: 28px; padding: 52px 0; width: 100%; display: flex; justify-content: center; overflow: hidden; }
.media-tint.olive { background: linear-gradient(165deg, #41502f, #25311c); }
.media-tint.bone { background: var(--bone-2); }
.media-tint .watermark { position: absolute; width: 360px; height: 360px; opacity: 0.06; right: -90px; bottom: -90px; pointer-events: none; }

/* ---- floating bubble composition (chat thesis, no phone) ---- */
.bubble-tint { padding: 56px 44px; }
@media (max-width: 560px) { .bubble-tint { padding: 40px 22px; } }
.bubble-stage { position: relative; z-index: 1; width: 100%; max-width: 420px; display: flex; flex-direction: column; gap: 16px; }
.float-ts { align-self: center; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,239,229,0.5); }
.float-user { align-self: flex-end; max-width: 78%; background: rgba(244,239,229,0.92); color: var(--ink-soft); font-size: 15px; line-height: 1.45; padding: 13px 17px; border-radius: 20px 20px 6px 20px; box-shadow: 0 18px 40px -22px rgba(0,0,0,0.5); }
.float-coach { align-self: flex-start; max-width: 90%; background: rgba(248,245,239,0.97); border-left: 2px solid var(--sage); border-radius: 6px 18px 18px 6px; padding: 16px 19px; font-family: var(--serif); font-size: 18.5px; line-height: 1.44; color: var(--ink); box-shadow: 0 26px 56px -28px rgba(0,0,0,0.55); }
.float-coach em { font-family: var(--ital); }
.float-coach .fc-by { display: flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive); margin-bottom: 9px; }
.float-coach .fc-by img { width: 15px; height: 15px; }
.float-chips { align-self: flex-start; display: flex; gap: 8px; flex-wrap: wrap; padding-left: 4px; }
.float-chip { font-size: 12px; color: rgba(244,239,229,0.92); border: 1px solid rgba(244,239,229,0.28); border-radius: 18px; padding: 7px 13px; }
/* staggered float-in + gentle idle drift */
.float-ts, .float-user, .float-coach, .float-chips { opacity: 0; transform: translateY(18px) scale(0.97); transition: opacity 640ms var(--ease), transform 640ms var(--ease); }
.reveal.in .float-ts { transition-delay: 80ms; }
.reveal.in .float-user { transition-delay: 200ms; }
.reveal.in .float-coach { transition-delay: 360ms; }
.reveal.in .float-user.b2 { transition-delay: 560ms; }
.reveal.in .float-coach.c2 { transition-delay: 720ms; }
.reveal.in .float-chips { transition-delay: 900ms; }
.reveal.in .float-ts, .reveal.in .float-user, .reveal.in .float-coach, .reveal.in .float-chips { opacity: 1; transform: none; }
.bubble-stage .float-coach { animation: drift 7s ease-in-out infinite 1.2s; }
.bubble-stage .float-user { animation: drift 8s ease-in-out infinite 0.6s; }
@keyframes drift { 0%, 100% { translate: 0 0; } 50% { translate: 0 -6px; } }
@media (prefers-reduced-motion: reduce) {
  .float-ts, .float-user, .float-coach, .float-chips { opacity: 1; transform: none; }
  .bubble-stage .float-coach, .bubble-stage .float-user { animation: none; }
}

/* ---- floating evidence ledger (diary, no phone) ---- */
.ledger-tint { padding: 54px 40px; }
@media (max-width: 560px) { .ledger-tint { padding: 38px 20px; } }
.ledger-stage { position: relative; z-index: 1; width: 100%; max-width: 420px; display: flex; flex-direction: column; gap: 14px; }
.ledger-day { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); padding-left: 4px; }
.ledger-card { display: flex; gap: 15px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 14px; box-shadow: 0 26px 54px -30px rgba(31,42,24,0.42); }
.ledger-card .lc-thumb { width: 76px; height: 76px; border-radius: 13px; object-fit: cover; flex: 0 0 auto; background: var(--bone-2); }
.lc-body { min-width: 0; }
.lc-src { font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.lc-title { font-size: 15px; font-weight: 500; color: var(--ink); margin-top: 4px; }
.lc-read { font-family: var(--serif); font-size: 15.5px; line-height: 1.4; color: var(--ink-soft); margin-top: 6px; }
.lc-read em { font-family: var(--ital); color: var(--ink); }
.ledger-rhythm { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 16px 17px; box-shadow: 0 26px 54px -30px rgba(31,42,24,0.42); }
.lr-lab { font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }
.lr-bars { display: flex; align-items: flex-end; gap: 8px; height: 46px; margin-top: 12px; }
.lr-bars span { flex: 1; background: var(--sage-mute); border-radius: 4px 4px 0 0; transform-origin: bottom; }
.lr-bars span.on { background: var(--olive); }
.lr-cap { font-family: var(--serif); font-size: 15px; line-height: 1.42; color: var(--ink-soft); margin-top: 12px; }
/* stagger + offset for a stacked, dynamic feel */
.ledger-card.lc1 { margin-right: 22px; }
.ledger-card.lc2 { margin-left: 30px; }
.ledger-day, .ledger-card, .ledger-rhythm { opacity: 0; transform: translateY(20px); transition: opacity 620ms var(--ease), transform 620ms var(--ease); }
.reveal.in .ledger-day { transition-delay: 60ms; }
.reveal.in .ledger-card.lc1 { transition-delay: 200ms; }
.reveal.in .ledger-card.lc2 { transition-delay: 380ms; }
.reveal.in .ledger-rhythm.lc3 { transition-delay: 560ms; }
.reveal.in .ledger-day, .reveal.in .ledger-card, .reveal.in .ledger-rhythm { opacity: 1; transform: none; }
.reveal.in .lr-bars span { animation: barGrow 700ms var(--ease) both; }
.reveal.in .lr-bars span:nth-child(1){animation-delay:.7s}.reveal.in .lr-bars span:nth-child(2){animation-delay:.78s}.reveal.in .lr-bars span:nth-child(3){animation-delay:.86s}.reveal.in .lr-bars span:nth-child(4){animation-delay:.94s}.reveal.in .lr-bars span:nth-child(5){animation-delay:1.02s}.reveal.in .lr-bars span:nth-child(6){animation-delay:1.1s}.reveal.in .lr-bars span:nth-child(7){animation-delay:1.18s}
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* ---- paper letter (Sunday letter, no phone) ---- */
.paper-tint { padding: 56px 44px; }
@media (max-width: 560px) { .paper-tint { padding: 40px 22px; } }
.paper-letter { position: relative; z-index: 1; width: 100%; max-width: 384px; background: linear-gradient(180deg, #fcfaf4, #f6f1e6); border-radius: 4px; padding: 36px 34px 32px; box-shadow: 0 40px 80px -36px rgba(0,0,0,0.5), 0 2px 0 rgba(0,0,0,0.04); transform: rotate(-1.2deg); }
.paper-letter::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--brass); opacity: 0.5; border-radius: 4px 0 0 4px; }
.pl-mast { display: flex; align-items: center; gap: 9px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.pl-mast img { width: 20px; height: 20px; }
.pl-mast span { font-family: var(--serif); font-size: 16px; letter-spacing: 0.01em; }
.pl-kicker { font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-top: 18px; }
.pl-h { font-family: var(--serif); font-size: 30px; font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; margin-top: 10px; }
.pl-h em { font-family: var(--ital); }
.pl-p { font-family: var(--serif); font-size: 16px; line-height: 1.52; color: var(--ink-soft); margin-top: 14px; }
.pl-p em { font-family: var(--ital); color: var(--ink); }
.pl-sig { font-family: var(--ital); font-size: 19px; color: var(--ink); margin-top: 20px; }
.paper-letter { opacity: 0; transform: rotate(-1.2deg) translateY(26px); transition: opacity 760ms var(--ease), transform 760ms var(--ease); }
.reveal.in .paper-letter { opacity: 1; transform: rotate(-1.2deg); }
@media (prefers-reduced-motion: reduce) {
  .ledger-day, .ledger-card, .ledger-rhythm, .paper-letter { opacity: 1; transform: none; }
  .paper-letter { transform: rotate(-1.2deg); }
  .reveal.in .lr-bars span { animation: none; }
}

/* ---- floating menu intelligence (scan a menu, no phone) ---- */
.menu-tint { padding: 54px 40px; }
@media (max-width: 560px) { .menu-tint { padding: 38px 20px; } }
.menu-stage { position: relative; z-index: 1; width: 100%; max-width: 392px; }
.menu-card { background: linear-gradient(180deg, #fcfaf4, #f5f0e4); border-radius: 6px; padding: 24px 26px 22px; box-shadow: 0 40px 80px -36px rgba(0,0,0,0.5), 0 2px 0 rgba(0,0,0,0.04); transform: rotate(0.9deg); }
.menu-scan { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive); border: 1px solid var(--line); border-radius: 999px; padding: 5px 11px; background: var(--paper); }
.menu-scan i { width: 6px; height: 6px; border-radius: 50%; background: var(--olive); animation: scanpulse 1.5s ease-in-out infinite; }
@keyframes scanpulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }
.menu-rest { font-family: var(--serif); font-size: 22px; line-height: 1.1; margin: 15px 0 3px; }
.menu-sub { font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }
.menu-dish { display: flex; gap: 13px; align-items: flex-start; padding: 12px 0; border-top: 1px solid var(--line-soft); }
.menu-pick { width: 23px; height: 23px; border-radius: 50%; background: var(--olive); color: var(--bone); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; margin-top: 1px; }
.menu-pick svg { width: 12px; height: 12px; }
.menu-pick.skip { background: transparent; border: 1.5px solid var(--line-2); }
.menu-pick.skip svg { color: var(--ink-mute); width: 10px; height: 10px; }
.menu-dn { font-size: 15px; font-weight: 500; color: var(--ink); line-height: 1.25; }
.menu-note { font-family: var(--ital); font-size: 14.5px; line-height: 1.32; color: var(--olive-text); margin-top: 4px; }
.menu-note.swap { color: var(--gold-text); }
.menu-stage .menu-card { opacity: 0; transform: rotate(0.9deg) translateY(24px); transition: opacity 720ms var(--ease), transform 720ms var(--ease); }
.reveal.in .menu-card { opacity: 1; transform: rotate(0.9deg); }
.menu-dish { opacity: 0; transform: translateX(10px); transition: opacity 480ms var(--ease), transform 480ms var(--ease); }
.reveal.in .menu-dish { opacity: 1; transform: none; }
.reveal.in .menu-dish:nth-child(3){transition-delay:.34s}.reveal.in .menu-dish:nth-child(4){transition-delay:.46s}.reveal.in .menu-dish:nth-child(5){transition-delay:.58s}.reveal.in .menu-dish:nth-child(6){transition-delay:.7s}
@media (prefers-reduced-motion: reduce) {
  .menu-card { opacity: 1 !important; transform: rotate(0.9deg) !important; }
  .menu-dish { opacity: 1 !important; transform: none !important; }
}

/* ---- the method ---- */
.method { background: var(--olive-deep); color: var(--bone); position: relative; z-index: 1; overflow: hidden; }
.method .wrap { position: relative; z-index: 2; }
.method .eyebrow { color: var(--sage-mute); }
.method h2 { color: var(--bone); font-size: clamp(34px,4.4vw,58px); font-weight: 300; line-height: 1.04; letter-spacing: -0.02em; margin-top: 18px; }
.method h2 em { font-weight: 400; color: var(--lemon); }
.method-lede { margin-top: 24px; font-family: var(--serif); font-size: 23px; line-height: 1.5; color: color-mix(in srgb, var(--bone) 84%, transparent); max-width: 30em; }
.method-lede em { font-family: var(--ital); }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 60px; background: rgba(244,239,229,0.16); border: 1px solid rgba(244,239,229,0.16); }
@media (max-width: 820px) { .method-grid { grid-template-columns: 1fr; } }
.method-cell { background: var(--olive-deep); padding: 30px 28px; }
.method-cell .mn { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: var(--brass); }
.method-cell h3 { color: var(--bone); font-size: 24px; font-weight: 400; margin-top: 16px; }
.method-cell p { margin-top: 10px; font-size: 14.5px; line-height: 1.58; color: color-mix(in srgb, var(--bone) 66%, transparent); }
.method-lemon { position: absolute; left: -120px; top: -100px; width: 480px; opacity: 0.06; z-index: 1; pointer-events: none; }

/* ---- guided rooms (plans) ---- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
@media (max-width: 820px) { .plans { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }
.plan { border: 1px solid var(--line); border-radius: 16px; padding: 28px 26px; background: var(--paper); display: flex; flex-direction: column; }
.plan .dur { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive); }
.plan h3 { font-size: 27px; font-weight: 400; margin-top: 14px; }
.plan p { margin-top: 10px; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); }
.plan .watch { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; line-height: 1.5; color: var(--ink-soft); }
.plan .watch b { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); font-weight: 500; display: block; margin-bottom: 5px; }

/* ---- voices (quiet testimonials) ---- */
.voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 54px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 860px) { .voices { grid-template-columns: 1fr; } }
.voice { background: var(--bone); padding: 34px 30px; display: flex; flex-direction: column; }
.voice p { font-family: var(--serif); font-size: 20px; line-height: 1.42; color: var(--ink); }
.voice p em { font-family: var(--ital); }
.voice .by { margin-top: auto; padding-top: 22px; display: flex; align-items: center; gap: 11px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }

/* monogram avatars */
.v-photo { flex: 0 0 auto; display: inline-block; border-radius: 50%; box-shadow: 0 0 0 1px color-mix(in srgb, var(--ink) 10%, transparent); }
.v-mono { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-family: var(--mono); font-size: 11.5px; font-weight: 500; letter-spacing: 0.02em; }
.v-mono.olive { color: var(--olive); background: color-mix(in srgb, var(--olive) 14%, var(--paper)); }
.v-mono.gold  { color: #8A6921; background: color-mix(in srgb, var(--lemon) 26%, var(--paper)); }
.v-mono.sage  { color: #4C5C42; background: color-mix(in srgb, var(--sage) 26%, var(--paper)); }
.v-mono.lg { width: 52px; height: 52px; font-size: 16px; }

/* lead testimonial */
.voice-lead { position: relative; margin-top: 54px; background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--brass); border-radius: 16px; padding: 48px 52px; box-shadow: var(--shadow-card, 0 18px 44px -34px rgba(31,42,24,0.35)); display: grid; grid-template-columns: 1fr minmax(190px, 230px); gap: 48px; align-items: center; }
.voice-lead blockquote { position: relative; margin: 0; font-family: var(--serif); font-weight: 300; font-size: clamp(23px, 2.5vw, 31px); line-height: 1.4; letter-spacing: -0.01em; color: var(--ink); text-wrap: balance; hanging-punctuation: first; }
.voice-lead blockquote::before { content: "\201C"; position: absolute; top: -0.46em; left: -0.42em; font-family: var(--serif); font-size: 4.6em; line-height: 1; color: color-mix(in srgb, var(--brass) 36%, transparent); pointer-events: none; z-index: 0; }
.voice-lead blockquote > * , .voice-lead blockquote { position: relative; }
.voice-lead blockquote em { font-family: var(--ital); font-style: italic; }
.voice-lead .vl-by { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; padding-left: 48px; border-left: 1px solid var(--line); }
.voice-lead .vl-meta { display: flex; flex-direction: column; gap: 4px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
.voice-lead .vl-meta b { font-family: var(--sans); font-weight: 600; font-size: 16px; letter-spacing: 0; text-transform: none; color: var(--ink); }
@media (max-width: 760px) { .voice-lead { grid-template-columns: 1fr; gap: 28px; padding: 34px 26px 30px; } .voice-lead .vl-by { padding-left: 0; padding-top: 26px; border-left: 0; border-top: 1px solid var(--line); align-self: stretch; } }

/* ---- testimonial wall (placeholder set) ---- */
.voices-wall { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .voices-wall { grid-template-columns: 1fr; } }
.voices-note { margin-top: 22px; text-align: center; font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }
.voices-note span { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); margin-top: 6px; }

/* ---- integrations (wearables — coming soon) ---- */
.intg-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 50px; }
@media (max-width: 880px) { .intg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .intg-grid { grid-template-columns: 1fr; } }
.intg {
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  border: 1px solid var(--line); border-radius: 14px; padding: 22px 20px 20px;
  background: var(--paper);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms var(--ease);
}
.intg.live { border-top: 3px solid var(--olive); }
.intg.live:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -32px rgba(31,42,24,0.4); }
.intg-ic { width: 30px; height: 30px; color: var(--olive); display: flex; }
.intg-ic svg { width: 30px; height: 30px; }
.intg.soon .intg-ic { color: var(--ink-mute); opacity: 0.78; }
.intg-name { font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--ink); line-height: 1.12; min-height: 2.24em; display: flex; align-items: flex-start; }
.intg.soon .intg-name { color: var(--ink-soft); }
.intg-status {
  margin-top: auto; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
}
.intg-status.connected { color: var(--olive); }
.intg-status.connected svg { width: 13px; height: 13px; }
.intg-status.soon-tag {
  color: var(--ink-mute); background: var(--bone-2);
  border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px;
}
.intg-note { margin-top: 24px; text-align: center; font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); max-width: 52em; margin-left: auto; margin-right: auto; }

/* ---- Selen ---- */
.selen { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .selen { grid-template-columns: 1fr; gap: 36px; } }
.selen-photo { position: relative; }
.selen-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 22%; border-radius: 4px; filter: saturate(0.92) contrast(1.02); }
.selen-photo .tag { position: absolute; left: 18px; bottom: 18px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone); background: color-mix(in srgb, var(--olive-deep) 80%, transparent); padding: 8px 12px; border-radius: 4px; backdrop-filter: blur(4px); }
.selen h2 { font-size: clamp(30px,3.8vw,48px); font-weight: 300; line-height: 1.06; letter-spacing: -0.02em; margin-top: 16px; }
.selen h2 em { font-weight: 400; }
.selen-body { margin-top: 22px; font-size: 17px; line-height: 1.64; color: var(--ink-soft); }
.selen-body em { font-family: var(--ital); font-style: italic; color: var(--ink); }
.selen-quote { margin-top: 26px; font-family: var(--serif); font-size: 25px; line-height: 1.36; color: var(--ink); padding-left: 20px; border-left: 1px solid var(--sage); }
.selen-quote em { font-family: var(--ital); }
.selen-sig { margin-top: 24px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); line-height: 1.7; }
.selen-sig b { color: var(--ink); font-weight: 500; }

/* full-bleed real-world proof band (GOSS billboard) — caption sits on a dark bar BELOW the photo so it never fights the image's own type */
.proof-band { position: relative; z-index: 1; width: 100%; margin: 0; }
.proof-band img { width: 100%; height: clamp(320px, 42vw, 580px); object-fit: cover; object-position: 50% 30%; display: block; }
/* top edge feathers into the cream above so the photo melds rather than sitting as a hard rectangle */
.proof-band::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 88px; z-index: 2; pointer-events: none; background: linear-gradient(to bottom, var(--bone) 0%, color-mix(in srgb, var(--bone) 45%, transparent) 48%, transparent 100%); }
.proof-band .pb-cap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px 32px; background: var(--olive-deep); color: var(--bone); padding: 22px var(--pad); }
.proof-band .pb-lab { display: inline-flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage-mute); white-space: nowrap; }
.proof-band .pb-lab::before { content: ""; width: 22px; height: 1px; background: var(--lemon); opacity: 0.85; }
.proof-band .pb-line { font-family: var(--serif); font-weight: 400; font-size: clamp(18px, 2vw, 25px); line-height: 1.25; color: var(--bone); letter-spacing: -0.01em; }
.proof-band .pb-line em { font-family: var(--ital); font-style: italic; color: var(--lemon); }
@media (max-width: 560px) { .proof-band .pb-cap { padding: 18px 22px; } }

/* ---- channels ---- */
.channels-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 50px; }
@media (max-width: 820px) { .channels-row { grid-template-columns: 1fr; } }
.channel { border: 1px solid var(--line); border-radius: 14px; padding: 24px 22px; background: var(--paper); }
.channel .ic { color: var(--olive); }
.channel .ic svg { width: 24px; height: 24px; }
.channel h3 { font-size: 21px; font-weight: 400; margin-top: 16px; }
.channel p { margin-top: 7px; font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); }

/* ---- membership ---- */
.member { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 760px; margin: 50px auto 0; }
@media (max-width: 640px) { .member { grid-template-columns: 1fr; } }
.member-card { position: relative; border: 1px solid var(--line); border-radius: 18px; padding: 30px; background: var(--paper); }
.member-card.year { background: var(--olive-deep); border-color: var(--olive-deep); color: var(--bone); transform: scale(1.04); transform-origin: center bottom; z-index: 1; }
@media (max-width: 640px) { .member-card.year { transform: none; } }
.member-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--lemon); color: var(--olive-deep); font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; padding: 5px 14px; border-radius: 999px; box-shadow: 0 8px 18px -10px rgba(15,22,10,0.7); }
.member-card.year .member-save { color: var(--lemon); background: transparent; border: 1px solid color-mix(in srgb, var(--lemon) 55%, transparent); }
.member-card .plan-name { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }
.member-card .plan-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.member-save { white-space: nowrap; font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive-deep); background: var(--lemon); padding: 4px 9px; border-radius: 999px; }
.member-card.year .plan-name { color: var(--sage-mute); }
.member-card .price { font-family: var(--serif); font-size: 52px; font-weight: 300; line-height: 1; letter-spacing: -0.02em; margin: 14px 0 4px; }
.member-card .price span { font-family: var(--sans); font-size: 15px; color: var(--ink-mute); font-weight: 400; }
.member-card.year .price span { color: var(--sage-mute); }
.member-card .meta { font-size: 13.5px; color: var(--ink-soft); }
.member-card.year .meta { color: color-mix(in srgb, var(--bone) 70%, transparent); }
.member-card .mbtn { margin-top: 22px; width: 100%; }
.member-card.year .btn-olive { background: var(--lemon); color: var(--olive-deep); }
.member-card.year .btn-olive:hover { background: color-mix(in srgb, var(--lemon) 88%, #fff); }
.member-foot { text-align: center; margin-top: 26px; font-size: 14px; color: var(--ink-mute); line-height: 1.6; }

/* ---- closing ---- */
.closing { position: relative; z-index: 1; text-align: center; padding: 110px 0; }
.closing img.mk { width: 40px; height: 40px; margin: 0 auto 30px; opacity: 0.9; }
.closing h2 { font-size: clamp(40px,6vw,76px); font-weight: 300; line-height: 1; letter-spacing: -0.03em; }
.closing h2 em { font-weight: 400; }
.closing .sub { margin-top: 24px; font-size: 18px; color: var(--ink-soft); }
.closing .cta { margin-top: 38px; display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.closing .num { margin-top: 30px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }

/* ---- email row ---- */
.signup { display: flex; gap: 10px; max-width: 440px; flex-wrap: wrap; }
.signup.center { margin: 0 auto; justify-content: center; }
.signup input { flex: 1; min-width: 200px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 14px 20px; font-family: var(--sans); font-size: 15px; color: var(--ink); }
.signup input:focus { outline: none; border-color: var(--olive); }
.signup input::placeholder { color: var(--ink-mute); }
.form-note { margin-top: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--olive); min-height: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--bone-2); border-top: 1px solid var(--line); position: relative; z-index: 1; }
.foot-inner { max-width: var(--maxw); margin: 0 auto; padding: 64px var(--pad) 30px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .foot-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
.foot-brand { display: flex; align-items: center; gap: 10px; }
.foot-brand img { width: 24px; height: 24px; }
.foot-brand span { font-family: var(--serif); font-size: 21px; }
.foot-col p { margin-top: 16px; font-size: 14px; line-height: 1.6; color: var(--ink-soft); max-width: 30ch; }
.foot-col h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 500; margin: 0 0 16px; }
.foot-col .fl { display: block; font-size: 14px; color: var(--ink-soft); padding: 6px 0; transition: color 200ms; }
.foot-col .fl:hover { color: var(--ink); }
.fine { max-width: var(--maxw); margin: 0 auto; padding: 22px var(--pad) 40px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12.5px; color: var(--ink-mute); }

/* ============================================================
   COACHING MODES — "she meets you where you are"
   ============================================================ */
.modes-band { padding-top: 76px; padding-bottom: 76px; }
.modes-head { max-width: 40rem; }
.modes-head h2 { font-size: clamp(32px,4vw,52px); font-weight: 300; line-height: 1.04; letter-spacing: -0.02em; margin-top: 16px; }
.modes-head h2 em { font-weight: 400; }
.modes-head p { margin-top: 20px; font-size: 17px; line-height: 1.6; color: var(--ink-soft); max-width: 32em; }
.modes-row { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 48px; border-top: 1px solid var(--line); }
@media (max-width: 900px) { .modes-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .modes-row { grid-template-columns: 1fr; } }
.mode { padding: 24px 22px 26px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
@media (min-width: 901px) { .mode:nth-child(5) { border-right: 0; } }
.mode .mk { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive); }
.mode p { margin-top: 12px; font-size: 14px; line-height: 1.5; color: var(--ink-soft); }

/* ============================================================
   EVIDENCE — "ask her why; she shows her work" (the AI-native signature)
   ============================================================ */
.evidence { background: var(--bone-2); }
.ev-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 60px; align-items: center; }
@media (max-width: 940px) { .ev-grid { grid-template-columns: 1fr; gap: 40px; } }
.ev-copy h2 { font-size: clamp(32px,4vw,52px); line-height: 1.04; font-weight: 300; letter-spacing: -0.02em; margin-top: 16px; }
.ev-copy h2 em { font-weight: 400; }
.ev-copy .lede { font-family: var(--serif); font-size: 22px; line-height: 1.44; color: var(--ink); margin-top: 20px; }
.ev-copy .lede em { font-family: var(--ital); }
.ev-copy p { margin-top: 18px; font-size: 16.5px; line-height: 1.62; color: var(--ink-soft); max-width: 33em; }
.ev-controls { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px; }
.ev-ctl { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px; padding: 7px 13px; background: var(--paper); }

/* the trace card — renders why_this_answer, humanely */
.trace { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 26px 26px 24px; box-shadow: 0 30px 70px -42px rgba(31,42,24,0.4); }
.trace-head { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); display: flex; align-items: center; gap: 10px; }
.trace-head::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }
.trace-line { font-family: var(--serif); font-size: 22px; line-height: 1.32; color: var(--ink); margin: 14px 0 22px; padding-left: 15px; border-left: 1px solid var(--sage); }
.trace-line em { font-family: var(--ital); }
.trace-spine { position: relative; padding-left: 26px; }
.trace-spine::before { content: ""; position: absolute; left: 5px; top: 6px; bottom: 12px; width: 1px; background: var(--line); }
.trace-node { position: relative; padding: 12px 0; border-top: 1px solid var(--line-soft); }
.trace-node:first-child { border-top: 0; padding-top: 2px; }
.trace-node::before { content: ""; position: absolute; left: -24px; top: 17px; width: 9px; height: 9px; border-radius: 50%; background: var(--olive); box-shadow: 0 0 0 4px var(--paper); }
.trace-node:first-child::before { top: 7px; }
.trace-node.missing::before { background: var(--paper); border: 1.5px solid var(--terracotta); }
.trace-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.trace-k { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--olive); flex: 0 0 auto; }
.trace-node.missing .trace-k { color: var(--terracotta); }
.trace-c { font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); margin-left: auto; border: 1px solid var(--line); border-radius: 999px; padding: 3px 8px; flex: 0 0 auto; }
.trace-c.good { color: var(--olive); border-color: color-mix(in srgb, var(--olive) 32%, var(--line)); }
.trace-c.warn { color: var(--terracotta); border-color: color-mix(in srgb, var(--terracotta) 30%, var(--line)); }
.trace-d { display: block; font-size: 14.5px; line-height: 1.46; color: var(--ink-soft); margin-top: 5px; width: 100%; }
.trace-node.missing .trace-d { color: var(--ink); }
.trace-foot { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.trace-conf { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
.trace-ask { font-family: var(--ital); font-size: 18px; line-height: 1.4; color: var(--ink); margin-top: 10px; }

/* ============================================================
   WHOLE-BODY EVIDENCE — Apple Health context (depth)
   ============================================================ */
.whole { background: var(--bone); }
.whole-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 60px; align-items: center; }
@media (max-width: 940px) { .whole-grid { grid-template-columns: 1fr; gap: 40px; } }
.whole-copy h2 { font-size: clamp(32px,4vw,52px); line-height: 1.04; font-weight: 300; letter-spacing: -0.02em; margin-top: 16px; }
.whole-copy h2 em { font-weight: 400; }
.whole-copy .lede { font-family: var(--serif); font-size: 22px; line-height: 1.44; color: var(--ink); margin-top: 20px; }
.whole-copy .lede em { font-family: var(--ital); }
.whole-copy p { margin-top: 18px; font-size: 16.5px; line-height: 1.62; color: var(--ink-soft); max-width: 33em; }
.whole-reads { margin: 26px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; }
.whole-reads li { font-family: var(--serif); font-size: 18px; line-height: 1.42; color: var(--ink-soft); padding: 13px 0; border-top: 1px solid var(--line); }
.whole-reads li:last-child { border-bottom: 1px solid var(--line); }
.whole-reads li em { font-family: var(--ital); color: var(--ink); }

.wc { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 24px 24px 22px; box-shadow: 0 30px 70px -42px rgba(31,42,24,0.4); }
.wc-head { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); display: flex; align-items: center; gap: 9px; }
.wc-head svg { width: 14px; height: 14px; color: var(--terracotta); }
.wc-trend-top { display: flex; align-items: baseline; justify-content: space-between; margin: 20px 0 8px; }
.wc-lab { font-size: 14px; font-weight: 500; color: var(--ink); }
.wc-meta { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.spark { width: 100%; height: 84px; display: block; overflow: visible; }
.spark .spark-line { fill: none; stroke: var(--olive); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.spark .spark-area { fill: url(#sparkfill); opacity: 0.6; }
.spark .spark-dot { fill: var(--olive); }
.wc-cap { font-family: var(--ital); font-size: 16px; line-height: 1.4; color: var(--ink); margin-top: 10px; }
.wc-signals { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; margin-top: 22px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
@media (max-width: 420px) { .wc-signals { grid-template-columns: 1fr; } }
.wc-sig { background: var(--paper); padding: 13px 14px; }
.ws-k { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.ws-v { display: block; font-size: 13px; color: var(--ink); margin-top: 5px; line-height: 1.3; }
.wc-read { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-family: var(--serif); font-size: 17px; line-height: 1.42; color: var(--ink); padding-left: 14px; border-left: 1px solid var(--sage); }
.wc-read em { font-family: var(--ital); }

/* ============================================================
   MOTION — dynamism layer
   ============================================================ */
/* live hero chat */
.chat-stream { transition: opacity 440ms var(--ease); }
.chat-stream .anim-in { animation: msgIn 520ms var(--ease) both; }
@keyframes msgIn { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }
.typing { align-self: flex-start; display: inline-flex; gap: 5px; padding: 4px 2px 4px 15px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); animation: typedot 1.1s ease-in-out infinite; }
.typing i:nth-child(2) { animation-delay: 0.18s; } .typing i:nth-child(3) { animation-delay: 0.36s; }
@keyframes typedot { 0%,60%,100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.caret::after { content: "\2009"; border-right: 2px solid var(--sage); animation: caret 0.9s step-end infinite; }
@keyframes caret { 50% { border-color: transparent; } }

/* interactive evidence trace */
.trace-toggle { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; user-select: none; font-family: var(--sans); font-size: 13px; color: var(--olive); background: var(--bone); border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; transition: all 220ms var(--ease); }
.trace-toggle:hover { border-color: var(--olive); }
.trace-toggle .tg-ic { width: 14px; height: 14px; transition: transform 320ms var(--ease); }
.trace.open .trace-toggle .tg-ic { transform: rotate(180deg); }
.trace-collapse { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 460ms var(--ease); }
.trace.open .trace-collapse { grid-template-rows: 1fr; }
.trace-collapse > .trace-inner { overflow: hidden; min-height: 0; }
.trace-spine { padding-top: 18px; }
.trace-node { opacity: 0; transform: translateY(8px); transition: opacity 460ms var(--ease), transform 460ms var(--ease); }
.trace.open .trace-node { opacity: 1; transform: none; }
.trace.open .trace-node:nth-child(1) { transition-delay: 60ms; }
.trace.open .trace-node:nth-child(2) { transition-delay: 150ms; }
.trace.open .trace-node:nth-child(3) { transition-delay: 240ms; }
.trace.open .trace-node:nth-child(4) { transition-delay: 330ms; }
.trace-foot { opacity: 0; transition: opacity 420ms var(--ease) 430ms; }
.trace.open .trace-foot { opacity: 1; }
.trace-node::before { transition: transform 380ms var(--ease); }
.trace:not(.open) .trace-node::before { transform: scale(0); }

/* spark draw */
.spark .spark-line { stroke-dasharray: var(--len, 600); stroke-dashoffset: var(--len, 600); }
.spark.drawn .spark-line { transition: stroke-dashoffset 1500ms var(--ease); stroke-dashoffset: 0; }
.spark .spark-area, .spark .spark-dot { opacity: 0; transition: opacity 600ms var(--ease) 900ms; }
.spark.drawn .spark-area { opacity: 0.6; } .spark.drawn .spark-dot { opacity: 1; }

/* hover life */
.room, .plan, .channel, .mode, .member-card, .voice { transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms var(--ease); }
.member-card.year:hover { transform: scale(1.04) translateY(-4px); }
.plan:hover, .channel:hover, .member-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -32px rgba(31,42,24,0.4); }
.room:hover, .mode:hover { background: var(--paper); }
.voice:hover { background: var(--paper); }
.parallax { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .chat-stream .anim-in { animation: none; }
  .trace-collapse { grid-template-rows: 1fr; }
  .trace-node { opacity: 1; transform: none; }
  .trace-foot { opacity: 1; }
  .trace-node::before { transform: none; }
  .spark .spark-line { stroke-dashoffset: 0; }
  .spark .spark-area { opacity: 0.6; } .spark .spark-dot { opacity: 1; }
  .parallax { transform: none !important; }
}

/* ============================================================
   STORE BADGES (post-launch download CTAs)
   ============================================================ */
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badges.center { justify-content: center; }
.badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: linear-gradient(176deg, #283417 0%, var(--olive-deep) 52%, #161e0f 100%);
  color: var(--bone);
  border: 1px solid #0f160a; border-radius: 14px;
  padding: 10px 18px 10px 16px;
  box-shadow: 0 1px 0 rgba(255,250,235,0.1) inset, 0 0 0 0.5px rgba(255,250,235,0.04) inset, 0 12px 26px -18px rgba(31,42,24,0.5);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.badge:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,250,235,0.12) inset, 0 18px 38px -18px rgba(31,42,24,0.6), 0 0 0 3px rgba(184,153,104,0.18); }
.badge-ic { width: 24px; height: 24px; flex: 0 0 auto; }
.badge-t { display: flex; flex-direction: column; align-items: flex-start; text-align: left; line-height: 1.05; }
.badge-t small { font-family: var(--sans); font-size: 10px; font-weight: 400; letter-spacing: 0.04em; opacity: 0.74; }
.badge-t b { font-family: var(--sans); font-size: 17px; font-weight: 500; letter-spacing: -0.01em; }
.badge.light { background: var(--bone); color: var(--olive-deep); border-color: var(--bone); box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 10px 24px -16px rgba(31,42,24,0.3); }
.badge.light:hover { background: var(--paper); box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 20px 40px -18px rgba(31,42,24,0.34), 0 0 0 3px rgba(184,153,104,0.16); }
.badge.outline { background: transparent; color: var(--bone); border-color: color-mix(in srgb, var(--bone) 40%, transparent); }
.badge.sm { padding: 8px 15px 8px 12px; border-radius: 12px; gap: 9px; }
.badge.sm .badge-ic { width: 20px; height: 20px; }
.badge.sm .badge-t small { font-size: 9px; }
.badge.sm .badge-t b { font-size: 14px; }

/* ============================================================
   SOCIAL PROOF PILL
   ============================================================ */
.proof { display: inline-flex; align-items: center; gap: 14px; padding: 0; background: none; border: 0; }
.proof-rule { width: 36px; height: 1px; background: var(--line); flex: none; }
.proof-cred { font-size: 13px; letter-spacing: .012em; color: var(--ink-soft); display: inline-flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.proof-cred b { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.proof-cred .reg { font-size: .66em; vertical-align: super; letter-spacing: 0; }
.proof-cred .dot { color: var(--line); padding: 0 1px; }

/* ============================================================
   HOW IT WORKS — numbered steps
   ============================================================ */
.how-head { max-width: 40rem; }
.how-head h2 { font-size: clamp(34px,4.4vw,56px); line-height: 1.04; font-weight: 300; letter-spacing: -0.02em; margin-top: 18px; }
.how-head h2 em { font-weight: 400; }
.how-head p { margin-top: 20px; font-size: 18px; line-height: 1.6; color: var(--ink-soft); max-width: 34em; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 56px; }
@media (max-width: 820px) { .how-steps { grid-template-columns: 1fr; } }
.how-step { position: relative; padding: 0 34px 0 0; }
@media (max-width: 820px) { .how-step { padding: 0 0 28px; } }
.how-step .hs-n { font-family: var(--serif); font-size: 64px; font-weight: 300; line-height: 1; color: var(--sage); letter-spacing: -0.02em; }
.how-step .hs-rule { height: 1px; background: var(--line); margin: 20px 0 18px; position: relative; }
.how-step .hs-rule::before { content: ""; position: absolute; left: 0; top: 0; width: 34px; height: 1px; background: var(--olive); }
.how-step h3 { font-size: 25px; font-weight: 400; }
.how-step p { margin-top: 10px; font-size: 15.5px; line-height: 1.56; color: var(--ink-soft); max-width: 26em; }
.how-cta { margin-top: 50px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.how-cta .ln { font-size: 14px; color: var(--ink-mute); }

/* ============================================================
   AFFILIATE BAND
   ============================================================ */
.affiliate { background: var(--olive-deep); color: var(--bone); position: relative; z-index: 1; overflow: hidden; }
.affiliate .wrap { position: relative; z-index: 2; }
.aff-lemon { position: absolute; right: -110px; bottom: -120px; width: 440px; opacity: 0.06; z-index: 1; pointer-events: none; }
.aff-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
@media (max-width: 880px) { .aff-grid { grid-template-columns: 1fr; gap: 36px; } }
.aff-copy .eyebrow { color: var(--sage-mute); }
.aff-copy h2 { color: var(--bone); font-size: clamp(30px,3.8vw,48px); font-weight: 300; line-height: 1.06; letter-spacing: -0.02em; margin-top: 16px; }
.aff-copy h2 em { font-weight: 400; color: var(--lemon); }
.aff-copy p { margin-top: 20px; font-size: 17px; line-height: 1.62; color: color-mix(in srgb, var(--bone) 76%, transparent); max-width: 34em; }
.aff-cta { margin-top: 28px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.aff-cta .btn-lemon { background: var(--lemon); color: var(--olive-deep); }
.aff-cta .btn-lemon:hover { background: color-mix(in srgb, var(--lemon) 88%, #fff); }
.aff-cta .ln { font-size: 13.5px; color: color-mix(in srgb, var(--bone) 60%, transparent); }
.aff-terms { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(244,239,229,0.16); border: 1px solid rgba(244,239,229,0.16); border-radius: 14px; overflow: hidden; }
.aff-term { background: var(--olive-deep); padding: 24px 22px; }
.aff-term .at-n { font-family: var(--serif); font-size: 36px; font-weight: 300; line-height: 1; color: var(--lemon); }
.aff-term .at-l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: color-mix(in srgb, var(--bone) 60%, transparent); margin-top: 10px; }

/* ============================================================
   NAV store area
   ============================================================ */
.nav-actions { gap: 12px; }
.nav .nav-store { display: flex; gap: 8px; }
@media (max-width: 980px) { .nav .nav-store { display: none; } .nav-actions .badge.get { display: inline-flex; } }
@media (min-width: 981px) { .nav-actions .badge.get { display: none; } }

/* ============================================================
   COACHING MODES — two-column top with iMessage capture
   ============================================================ */
.modes-top { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; margin-bottom: 8px; }
@media (max-width: 900px) { .modes-top { grid-template-columns: 1fr; gap: 40px; } }
.modes-visual { display: flex; justify-content: center; }

/* iMessage capture card — authentic Messages look */
.imsg { width: 100%; max-width: 330px; background: #fff; border: 1px solid var(--line); border-radius: 30px; padding: 0 0 16px; overflow: hidden; box-shadow: 0 38px 84px -48px rgba(31,42,24,0.5); font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", system-ui, sans-serif; }
.imsg-bar { display: grid; grid-template-columns: 30px 1fr 30px; align-items: center; gap: 4px; padding: 0 16px; height: 64px; box-sizing: border-box; background: rgba(247,247,248,0.94); border-bottom: 1px solid #e3e3e5; }
.imsg-back { color: #0a7cff; display: flex; align-items: center; }
.imsg-back svg { width: 12px; height: 21px; }
.imsg-contact { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.imsg-ava { width: 30px; height: 30px; border-radius: 50%; background: #ececec; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.imsg-ava img { width: 25px; height: 25px; }
.imsg-name { font-size: 11px; color: #3c3c43; display: flex; align-items: center; gap: 3px; font-weight: 500; }
.imsg-name svg { width: 6px; height: 6px; color: #b3b3b8; }
.imsg-video { color: #0a7cff; display: flex; justify-content: flex-end; align-items: center; }
.imsg-video svg { width: 21px; height: 15px; }
.imsg-thread { display: flex; flex-direction: column; gap: 2px; padding: 14px 18px 4px; }
.imsg-ts { text-align: center; font-size: 10.5px; color: #8e8e93; margin: 2px 0 9px; }
.imsg-ts b { font-weight: 600; }
.bub-sent { align-self: flex-end; max-width: 76%; background: #0a7cff; color: #fff; font-size: 14.5px; line-height: 1.34; padding: 7px 13px; border-radius: 18px; position: relative; }
.bub-sent::before { content: ""; position: absolute; z-index: 0; bottom: 0; right: -8px; width: 20px; height: 20px; background: #0a7cff; border-bottom-left-radius: 16px; }
.bub-sent::after { content: ""; position: absolute; z-index: 1; bottom: 0; right: -10px; width: 10px; height: 20px; background: #fff; border-bottom-left-radius: 10px; }
.bub-photo { align-self: stretch; width: 100%; border-radius: 18px; overflow: hidden; margin-top: 6px; box-shadow: 0 14px 30px -16px rgba(0,0,0,0.42); }
.bub-photo img { width: 100%; display: block; height: auto; }
.imsg-delivered { align-self: flex-end; font-size: 10px; color: #8e8e93; margin: 3px 2px 2px 0; }
.bub-recv { align-self: flex-start; max-width: 80%; background: #e9e9eb; color: #000; font-size: 14.5px; line-height: 1.36; padding: 7px 13px; border-radius: 18px; position: relative; margin-top: 7px; }
.bub-recv::before { content: ""; position: absolute; z-index: 0; bottom: 0; left: -8px; width: 20px; height: 20px; background: #e9e9eb; border-bottom-right-radius: 16px; }
.bub-recv::after { content: ""; position: absolute; z-index: 1; bottom: 0; left: -10px; width: 10px; height: 20px; background: #fff; border-bottom-right-radius: 10px; }
/* sequenced arrival for life */
.chat-demo .bub-photo { transform: scale(0.93); opacity: 0; transition: transform 620ms var(--ease) 200ms, opacity 620ms var(--ease) 200ms; }
.chat-demo.in .bub-photo { transform: none; opacity: 1; }
.chat-demo .imsg-delivered { opacity: 0; transition: opacity 400ms var(--ease) 600ms; }
.chat-demo.in .imsg-delivered { opacity: 1; }
.chat-demo .bub-recv { opacity: 0; transform: translateY(7px); transition: transform 520ms var(--ease) 720ms, opacity 520ms var(--ease) 720ms; }
.chat-demo.in .bub-recv { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .chat-demo .bub-photo, .chat-demo .imsg-delivered, .chat-demo .bub-recv { opacity: 1; transform: none; }
}

/* ---- channel demos: iMessage + Telegram side by side ---- */
.modes-head.center { max-width: 44rem; margin-left: auto; margin-right: auto; text-align: center; }
.modes-head.center p { margin-left: auto; margin-right: auto; }
.modes-chats { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 32px; margin: 46px auto 4px; }
.chat-demo { display: flex; flex-direction: column; align-items: center; gap: 16px; width: 330px; max-width: 100%; margin: 0; }
.chat-demo .imsg, .chat-demo .tg { flex: 1 1 auto; }
.chat-demo figcaption { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; text-transform: none; color: var(--ink-mute); }
.cd-dot { width: 9px; height: 9px; border-radius: 50%; }
.cd-dot.im { background: #0a7cff; }
.cd-dot.tg { background: #29a0db; }

/* Telegram capture card */
.tg { width: 100%; max-width: 330px; background: #fff; border: 1px solid var(--line); border-radius: 30px; overflow: hidden; box-shadow: 0 38px 84px -48px rgba(31,42,24,0.5); font-family: -apple-system, "SF Pro Text", "Segoe UI", system-ui, sans-serif; }
.tg-bar { display: grid; grid-template-columns: 20px 1fr 20px; align-items: center; gap: 6px; padding: 0 14px; height: 64px; box-sizing: border-box; background: #fff; border-bottom: 1px solid #ededed; }
.tg-back { color: #3390ec; display: flex; align-items: center; }
.tg-back svg { width: 11px; height: 19px; }
.tg-contact { display: flex; align-items: center; justify-content: center; gap: 8px; }
.tg-ava { width: 30px; height: 30px; border-radius: 50%; background: #ececec; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.tg-ava img { width: 25px; height: 25px; }
.tg-id { display: flex; flex-direction: column; gap: 1px; line-height: 1.12; }
.tg-id .nm { font-size: 12.5px; font-weight: 600; color: #000; }
.tg-id .st { font-size: 10.5px; color: #3390ec; }
.tg-menu { color: #9097a0; display: flex; justify-content: flex-end; }
.tg-menu svg { width: 17px; height: 17px; }
.tg-thread { display: flex; flex-direction: column; gap: 6px; padding: 14px 13px 13px; background: linear-gradient(170deg, #d2e8da 0%, #d6e4ef 100%); }
.tg-day { align-self: center; font-size: 10.5px; color: #fff; background: rgba(43,58,38,0.22); border-radius: 12px; padding: 2px 12px; margin-bottom: 2px; }
.tg-in { align-self: flex-start; max-width: 84%; background: #fff; color: #0e0e0e; font-size: 14.5px; line-height: 1.36; padding: 7px 11px 6px; border-radius: 15px 15px 15px 6px; box-shadow: 0 1px 1.5px rgba(0,0,0,0.1); }
.tg-out { align-self: flex-end; max-width: 84%; background: #e4fbcf; color: #0e0e0e; font-size: 14.5px; line-height: 1.36; padding: 7px 11px 6px; border-radius: 15px 15px 6px 15px; box-shadow: 0 1px 1.5px rgba(0,0,0,0.1); }
.tg-meta { display: block; text-align: right; font-size: 9.5px; margin-top: 2px; color: #5fa233; }
.tg-in .tg-meta { color: #9aa0a6; }
/* Telegram voice note */
.tg-voice { padding: 9px 12px 7px; }
.tgv-row { display: flex; align-items: center; gap: 9px; }
.tgv-play { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; background: #4eb04e; color: #fff; display: flex; align-items: center; justify-content: center; }
.tgv-play svg { width: 12px; height: 12px; margin-left: 1px; }
.tgv-wave { display: flex; align-items: center; gap: 2.5px; height: 20px; flex: 1; min-width: 0; }
.tgv-wave span { width: 2.5px; border-radius: 2px; background: #6fb33f; }
.tgv-dur { flex: 0 0 auto; font-size: 10.5px; color: #5fa233; }
.chat-demo .tg-in { opacity: 0; transform: translateY(7px); transition: transform 520ms var(--ease) 540ms, opacity 520ms var(--ease) 540ms; }
.chat-demo.in .tg-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .chat-demo .tg-in { opacity: 1; transform: none; } }

/* ============================================================
   TWEAKS PANEL
   ============================================================ */
.tw-panel { position: fixed; right: 18px; bottom: 18px; width: 270px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 24px 60px -24px rgba(31,42,24,0.4); z-index: 100; display: none; overflow: hidden; }
.tw-panel.open { display: block; }
.tw-h { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.tw-title { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); }
.tw-x { border: 0; background: none; font-size: 20px; color: var(--ink-mute); cursor: pointer; line-height: 1; }
.tw-body { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
.tw-row { display: flex; flex-direction: column; gap: 9px; }
.tw-lbl { font-size: 12px; color: var(--ink-soft); font-weight: 500; }
.tw-swatches { display: flex; gap: 8px; }
.tw-sw { width: 30px; height: 30px; border-radius: 8px; cursor: pointer; border: 2px solid transparent; box-shadow: 0 0 0 1px var(--line); }
.tw-sw.on { border-color: var(--paper); box-shadow: 0 0 0 2px var(--ink); }
.tw-segs { display: flex; border: 1px solid var(--line); border-radius: 9px; overflow: hidden; }
.tw-seg { flex: 1; text-align: center; font-size: 12px; padding: 8px 6px; cursor: pointer; color: var(--ink-soft); background: var(--bone); }
.tw-seg.on { background: var(--olive); color: var(--bone); }
.tw-text { border: 1px solid var(--line); border-radius: 9px; padding: 9px 11px; font-family: var(--sans); font-size: 13px; color: var(--ink); background: var(--bone); }
.tw-text:focus { outline: none; border-color: var(--olive); }
.tw-foot { font-size: 11px; line-height: 1.5; color: var(--ink-mute); }

/* ============================================================
   DEPTH & POLISH PASS
   ambient daylight · section rhythm · decorative orbs ·
   media lift · nav chrome — quiet by design, never loud
   ============================================================ */

/* missing tokens — menu skip-ring + readable note colours */
:root {
  --line-2:     #C9C0AD;   /* stronger hairline / skip ring */
  --olive-text: #3D4A2E;   /* olive as readable text */
  --gold-text:  #8A6921;   /* AA-safe warm gold for text */
}

/* ambient light — lit softly from above, settling at the foot.
   Sits under the grain + dashed grid so the page reads as a surface. */
body {
  background:
    radial-gradient(135% 76% at 50% -2%, #FBF7EE 0%, rgba(251,247,238,0) 46%),
    linear-gradient(180deg, var(--bone) 0%, var(--bone) 64%, #EEE8D9 100%);
  background-attachment: fixed;
}

/* section rhythm — translucent washes that fade into the page edges,
   letting the engineering grid + bone read through. */
.section.wash-warm, .section.wash-green { position: relative; z-index: 1; }
.section.wash-warm::after, .section.wash-green::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
.section.wash-warm::after {
  background: linear-gradient(180deg,
    rgba(225,202,158,0) 0%, rgba(225,202,158,0.20) 15%,
    rgba(225,202,158,0.20) 85%, rgba(225,202,158,0) 100%);
}
.section.wash-green::after {
  background: linear-gradient(180deg,
    rgba(138,168,138,0) 0%, rgba(138,168,138,0.13) 15%,
    rgba(138,168,138,0.13) 85%, rgba(138,168,138,0) 100%);
}

/* media compositions — lifted off the page with a soft cast + top edge */
.media-tint { box-shadow: 0 54px 108px -66px rgba(31,42,24,0.5); }
.media-tint::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
}

/* soft halos behind the standalone cards (evidence trace, health card) */
.ev-media, .whole-media { position: relative; }
.ev-media::before, .whole-media::before {
  content: ""; position: absolute; inset: -9%; z-index: 0; pointer-events: none;
  background: radial-gradient(58% 52% at 54% 46%, rgba(61,74,46,0.12), transparent 72%);
  filter: blur(38px);
}
.ev-media > *, .whole-media > * { position: relative; z-index: 1; }

/* decorative orbs — depth behind the dark bands (DS gradient-orb) */
.method::after, .affiliate::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none; z-index: 1;
  filter: blur(92px);
}
.method::after {
  width: 560px; height: 560px; top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(232,197,71,0.13), transparent 70%);
}
.affiliate::after {
  width: 560px; height: 560px; bottom: -210px; left: -150px;
  background: radial-gradient(circle, rgba(138,168,138,0.16), transparent 70%);
}
@media (prefers-reduced-motion: no-preference) {
  .method::after { animation: orbDrift 17s ease-in-out infinite; }
  .affiliate::after { animation: orbDrift 21s ease-in-out infinite reverse; }
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-28px, 24px); }
}

/* nav scroll-progress hairline */
.nav-progress {
  position: absolute; left: 0; bottom: -1px; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--olive), var(--brass));
  opacity: 0; transition: width 130ms linear, opacity 320ms var(--ease);
  pointer-events: none; z-index: 41;
}
body.scrolled .nav-progress { opacity: 0.9; }

/* active-section underline in nav */
.nav-links a { position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 1px;
  background: var(--olive); transform: scaleX(0); transform-origin: left center;
  transition: transform 260ms var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }

/* app-store badge — soft sheen sweep on hover */
.badge { position: relative; overflow: hidden; }
.badge::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255,250,235,0.16) 48%, transparent 64%);
  transform: translateX(-130%); transition: transform 760ms var(--ease);
}
.badge:hover::after { transform: translateX(130%); }
@media (prefers-reduced-motion: reduce) {
  .method::after, .affiliate::after { animation: none; }
}

/* ============================================================
   PREMIUM UPLIFT — 2026 polish pass
   typesetting · light & material · micro-interaction · poise
   Quiet by design: nothing here shouts.
   ============================================================ */

/* --- typesetting ------------------------------------------- */

/* selection reads as the brand's hand */
::selection { background: #2e3a22; color: var(--bone); }

/* kerning + ligatures on the display voice; discretionary on the hero */
h1, h2, h3, .lede, .msg-coach, .float-coach, .pl-h, .voice p, .selen-quote, .trace-line {
  font-kerning: normal; font-feature-settings: "kern" 1, "liga" 1;
}
.hero h1 { font-feature-settings: "kern" 1, "liga" 1, "dlig" 1; }

/* balanced rag on headings and ledes */
h2, h3 { text-wrap: balance; }
.section-head p, .split-copy .lede, .ev-copy .lede, .whole-copy .lede { text-wrap: pretty; }
/* pull-quotes hang their opening punctuation and balance their rag */
.selen-quote, .voice p, .voice-lead blockquote { hanging-punctuation: first; }
.selen-quote, .voice p { text-wrap: balance; }

/* cap-height trim where supported — headings sit true on the grid */
@supports (text-box: trim-both cap alphabetic) {
  h1, h2 { text-box: trim-both cap alphabetic; }
}

/* tabular figures wherever numbers align */
.price, .at-n, .hs-n, .ws-v, .member-save, .selen-sig { font-variant-numeric: lining-nums tabular-nums; }

/* --- wayfinding & focus ------------------------------------ */

/* anchored sections land clear of the sticky nav */
[id] { scroll-margin-top: 84px; }

/* keyboard focus — branded, visible, never removed */
:focus-visible { outline: 2px solid color-mix(in srgb, var(--olive) 60%, transparent); outline-offset: 3px; }
.btn:focus-visible, .badge:focus-visible, .trace-toggle:focus-visible { outline-offset: 2px; }

/* sticky nav gains a soft cast once the page is moving */
body.scrolled .nav { box-shadow: 0 12px 32px -26px rgba(31,42,24,0.35); }

/* --- light & material --------------------------------------- */

/* hairline dividers fade into the margins */
.divider { background: linear-gradient(90deg, transparent, var(--line) 14%, var(--line) 86%, transparent); }

/* one soft specular sweep across the phone glass */
.phone-screen::after {
  content: ""; position: absolute; inset: 0; z-index: 35; pointer-events: none; border-radius: inherit;
  background: linear-gradient(118deg, rgba(255,255,255,0) 40%, rgba(255,253,245,0.045) 47%, rgba(255,253,245,0.09) 51%, rgba(255,253,245,0.035) 56%, rgba(255,255,255,0) 63%);
}

/* the dark bands get their own grain (page grain multiplies to nothing on olive) */
.method::before, .affiliate::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("noise-2.svg");
  mix-blend-mode: screen; opacity: 0.55;
}

/* photography sits in a hairline mat */
.lc-thumb, .bub-photo img, .selen-photo img, .diary-entry .thumb {
  outline: 1px solid rgba(27,31,23,0.1); outline-offset: -1px;
}

/* the featured membership card carries real weight */
.member-card.year { box-shadow: 0 36px 76px -44px rgba(15,22,10,0.65), inset 0 1px 0 rgba(244,239,229,0.09); }

/* --- micro-interaction --------------------------------------- */

/* buttons: quiet lift, settled press */
.btn:hover { transform: translateY(-1px); }
.btn:active, .badge:active { transform: translateY(0) scale(0.985); transition-duration: 120ms; }
.btn-olive { box-shadow: inset 0 1px 0 rgba(255,250,235,0.14), 0 10px 22px -14px rgba(31,42,24,0.5); }
.btn-olive:hover { box-shadow: inset 0 1px 0 rgba(255,250,235,0.16), 0 16px 30px -16px rgba(31,42,24,0.55); }

/* the lemon tips its hat */
.brand img { transition: transform 460ms var(--ease); }
.brand:hover img { transform: rotate(16deg); }

/* chips acknowledge the hand */
.ev-ctl, .float-chip { transition: border-color 220ms var(--ease), color 220ms var(--ease), background 220ms var(--ease); }
.ev-ctl:hover { border-color: color-mix(in srgb, var(--olive) 45%, var(--line)); color: var(--ink); }
.float-chip:hover { border-color: rgba(244,239,229,0.55); }

/* footer links underline like an index */
.foot-col .fl:hover { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-2); }

/* hero headline arrives focused */
@media (prefers-reduced-motion: no-preference) {
  .hero h1.reveal { transition: opacity 850ms var(--ease), transform 850ms var(--ease), filter 850ms var(--ease); }
  html.js .hero h1.reveal:not(.in) { filter: blur(9px); }
}

/* ============================================================
   PRESS STRIP — quiet credibility band under the hero
   ============================================================ */
.press-strip {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bone-2) 50%, var(--bone));
}
.press-strip .wrap { display: flex; flex-direction: column; align-items: center; gap: 18px; padding-top: 26px; padding-bottom: 26px; }
.press-strip .lab { font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-mute); }
.press-strip .pubs { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; row-gap: 6px; }
.press-strip .pub { position: relative; font-family: var(--serif); font-size: clamp(18px, 1.9vw, 23px); color: var(--ink); letter-spacing: 0.005em; padding: 2px 28px; }
.press-strip .pub:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 17px; background: var(--line); }
@media (max-width: 560px) { .press-strip .pub { font-size: 16px; padding: 2px 16px; } }

/* ============================================================
   REFRAME — "why nothing's working" (direct-response hook, dark)
   ============================================================ */
.reframe { background: var(--olive-deep); color: var(--bone); text-align: center; overflow: hidden; }
.reframe .wrap { position: relative; z-index: 2; }
.reframe .eyebrow { color: var(--sage-mute); }
.reframe .eyebrow::before, .method .eyebrow::before, .aff-copy .eyebrow::before { background: var(--lemon); opacity: 0.7; }
.reframe h2 { color: var(--bone); font-size: clamp(34px, 4.6vw, 60px); font-weight: 300; line-height: 1.04; letter-spacing: -0.025em; margin: 18px auto 0; max-width: 17em; }
.reframe h2 em { font-weight: 400; color: var(--lemon); }
.reframe-lede { font-family: var(--serif); font-size: clamp(20px, 2.4vw, 26px); line-height: 1.5; color: color-mix(in srgb, var(--bone) 84%, transparent); max-width: 26em; margin: 26px auto 0; text-wrap: pretty; }
.reframe-lede em { font-family: var(--ital); color: var(--bone); }
.reframe-nots { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 36px auto 0; }
.reframe-not { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: color-mix(in srgb, var(--bone) 72%, transparent); border: 1px solid rgba(244,239,229,0.22); border-radius: 999px; padding: 9px 16px; }
.reframe-turn { font-family: var(--serif); font-size: clamp(20px, 2.3vw, 25px); line-height: 1.48; color: var(--bone); max-width: 27em; margin: 32px auto 0; text-wrap: pretty; }
.reframe-turn em { font-family: var(--ital); color: var(--lemon); }
.reframe-lemon { position: absolute; right: -130px; bottom: -130px; width: 460px; opacity: 0.06; z-index: 1; pointer-events: none; transform: rotate(8deg); }
.reframe::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("noise-2.svg");
  mix-blend-mode: screen; opacity: 0.55;
}

/* ============================================================
   POKE-INSPIRED ADDITIONS (Jun 2026)
   #3 hero "what's new" pill · #2 text-to-start · #1 proactive reach · #4 menu scan
   ============================================================ */

/* #3 — hero "what's new" pill */
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px; max-width: 100%;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 5px 14px 5px 5px; margin-bottom: 24px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset;
  transition: border-color 240ms var(--ease), transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.hero-pill:hover { border-color: color-mix(in srgb, var(--olive) 36%, var(--line)); transform: translateY(-1px); box-shadow: 0 12px 26px -18px rgba(31,42,24,0.5); }
.hero-pill .hp-tag { flex: 0 0 auto; font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone); background: var(--olive); border-radius: 999px; padding: 5px 9px; }
.hero-pill .hp-txt { font-size: 13px; color: var(--ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-pill .hp-txt b { color: var(--ink); font-weight: 500; }
.hero-pill .hp-arrow { flex: 0 0 auto; width: 14px; height: 14px; color: var(--ink-mute); transition: transform 240ms var(--ease), color 240ms var(--ease); }
.hero-pill:hover .hp-arrow { transform: translateX(3px); color: var(--olive); }
@media (max-width: 520px) { .hero-pill .hp-txt { font-size: 12px; white-space: normal; } }

/* #2 — text-to-start doorway under the store badge */
.hero-start { margin-top: 18px; display: flex; align-items: center; gap: 10px; max-width: 31em; }
.hero-start .hs-ics { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 5px; }
.hero-start .hs-ics svg { width: 18px; height: 18px; color: var(--olive); }
.hero-start .hs-txt { font-size: 14px; line-height: 1.5; color: var(--ink-soft); }
.hero-start a.hs-link { color: var(--ink); border-bottom: 1px solid var(--line-2); transition: border-color 200ms var(--ease); }
.hero-start a.hs-link:hover { border-color: var(--olive); }

/* #1 — proactive "she reaches out first" lock screen */
.lock-tint { padding: 52px 0; }
.scr-lock { background: linear-gradient(178deg, #2c3821 0%, #1d2715 46%, #141b0d 100%); color: var(--bone); }
.scr-lock .scr-status { color: rgba(244,239,229,0.92); }
.scr-lock .scr-status .ic svg { color: rgba(244,239,229,0.9); }
.lock-body { flex: 1; display: flex; flex-direction: column; padding: 8px 15px 0; overflow: hidden; }
.lock-time { text-align: center; margin: 12px 0 18px; }
.lock-day { font-family: var(--sans); font-size: 12.5px; font-weight: 500; letter-spacing: 0.01em; color: rgba(244,239,229,0.8); }
.lock-clock { font-family: var(--serif); font-weight: 300; font-size: 66px; line-height: 1; letter-spacing: -0.025em; margin-top: 2px; }
.lock-stack { display: flex; flex-direction: column; gap: 9px; margin-top: auto; padding-bottom: 12px; }
.lock-note {
  background: rgba(245,241,233,0.94); color: var(--ink);
  border-radius: 17px; padding: 11px 13px;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 32px -20px rgba(0,0,0,0.6);
}
.ln-app { display: flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.ln-app img { width: 13px; height: 13px; border-radius: 4px; }
.ln-title { font-size: 13px; font-weight: 600; color: var(--ink); margin-top: 5px; }
.ln-body { font-family: var(--serif); font-size: 13.5px; line-height: 1.34; color: var(--ink-soft); margin-top: 2px; }
.lock-foot { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 9px 0 16px; font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,239,229,0.62); }
.lock-foot .lf-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sage); }
.lock-note { opacity: 0; transform: translateY(16px) scale(0.985); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.in .lock-note { opacity: 1; transform: none; }
.reveal.in .lock-note:nth-child(1) { transition-delay: 0.22s; }
.reveal.in .lock-note:nth-child(2) { transition-delay: 0.44s; }
.reveal.in .lock-note:nth-child(3) { transition-delay: 0.66s; }
@media (prefers-reduced-motion: reduce) { .lock-note { opacity: 1; transform: none; } }

/* #4 — menu intelligence live scan */
.menu-card { position: relative; overflow: hidden; }
.menu-beam {
  position: absolute; left: 0; right: 0; top: 0; height: 46px; z-index: 4;
  pointer-events: none; opacity: 0;
  background: linear-gradient(180deg, transparent, rgba(61,74,46,0.16) 46%, rgba(61,74,46,0.16) 54%, transparent);
}
.menu-beam::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: rgba(61,74,46,0.5); }
.menu-card.reading .menu-beam { animation: menuSweep 1.35s var(--ease) forwards; }
@keyframes menuSweep { 0% { opacity: 0; transform: translateY(-46px); } 12% { opacity: 1; } 86% { opacity: 1; } 100% { opacity: 0; transform: translateY(430px); } }
.menu-card.js-scan .menu-dish { opacity: 0; transform: translateX(10px); transition: opacity 460ms var(--ease), transform 460ms var(--ease); }
.menu-card.js-scan .menu-dish.show { opacity: 1; transform: none; }
.menu-scan .ms-label { transition: opacity 220ms var(--ease); }
@media (prefers-reduced-motion: reduce) { .menu-card.reading .menu-beam { animation: none; opacity: 0; } }

/* language switch (EN / TR) */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang-switch span, .lang-switch a { display: inline-flex; align-items: center; padding: 3px 8px; border-radius: 999px; color: var(--ink-mute); text-decoration: none; transition: color 200ms var(--ease), background 200ms var(--ease); }
.lang-switch .ls-on { background: var(--olive); color: var(--bone); }
.lang-switch a:hover { color: var(--ink); }

/* ============================================================
   WEIGHT-INVERSION TYPE (impeccable principle, Jun 2026)
   Hero + closing stay airy (300); section titles ground at 400,
   their emphasis accents step to 500. Cormorant carries both.
   ============================================================ */
.section-head h2, .split-copy h2, .how-head h2, .modes-head h2,
.ev-copy h2, .whole-copy h2, .method h2, .aff-copy h2,
.reframe h2, .selen h2 { font-weight: 400; }
.section-head h2 em, .split-copy h2 em, .how-head h2 em, .modes-head h2 em,
.ev-copy h2 em, .whole-copy h2 em, .method h2 em, .aff-copy h2 em,
.reframe h2 em, .selen h2 em { font-weight: 500; }
/* hero + final CTA remain deliberately light */
.hero h1, .closing h2 { font-weight: 300; }

/* dark / long-form body copy breathes (line-height 1.68–1.74, measure ≤ 70ch) */
.selen-body { line-height: 1.72; max-width: 64ch; }
.aff-copy p, .split-copy p { line-height: 1.68; }

/* ============================================================
   DEPTH PASS (Jun 2026) — gentle resting elevation so framed
   surfaces lift off the page; still hairline-first, no heavy drops.
   ============================================================ */
.plan, .channel, .member-card {
  box-shadow: 0 1px 2px rgba(31,42,24,0.05), 0 16px 32px -26px rgba(31,42,24,0.30);
}
.member-card.year {
  box-shadow: 0 2px 8px rgba(15,22,10,0.24), 0 34px 64px -30px rgba(15,22,10,0.62);
}
/* whole testimonial wall + pricing pair settle on a soft ground shadow */
.voices { box-shadow: 0 26px 56px -42px rgba(31,42,24,0.55); }
.member { filter: drop-shadow(0 26px 44px rgba(31,42,24,0.10)); }
/* the rooms + modes grids get a faint lift as a block */
.rooms, .modes-row { box-shadow: 0 22px 50px -44px rgba(31,42,24,0.5); }

/* ============================================================
   LINK TREATMENTS (Jun 2026) — GOSS feature + inline press links
   ============================================================ */
.inline-link { color: var(--olive); border-bottom: 1px solid color-mix(in srgb, var(--olive) 38%, transparent); transition: border-color 200ms var(--ease), color 200ms var(--ease); }
.inline-link:hover { border-color: var(--olive); }

/* clickable GOSS cover — whole image links to the feature, no overlay */
.selen-photo a.cover-link { display: block; border-radius: 4px; }
.selen-photo a.cover-link img { display: block; transition: filter 260ms var(--ease); }
.selen-photo a.cover-link:hover img { filter: saturate(1) contrast(1.04) brightness(1.03); }

/* small private-coaching + Instagram row under Selen's signature */
.selen-personal { display: flex; align-items: center; gap: 16px; margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(27,31,23,0.12); flex-wrap: wrap; }
.selen-personal .sp-link { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); text-decoration: none; transition: color 200ms var(--ease); }
.selen-personal .sp-link span { display: inline-block; transition: transform 200ms var(--ease); }
.selen-personal .sp-link:hover { color: var(--olive-deep); }
.selen-personal .sp-link:hover span { transform: translate(2px, -2px); }
.selen-personal .sp-ig { display: inline-flex; align-items: center; justify-content: center; color: var(--ink-mute); margin-left: auto; transition: color 200ms var(--ease); }
.selen-personal .sp-ig:hover { color: var(--olive-deep); }

/* press-strip GOSS link sits flush with its siblings */
.press-strip a.pub { transition: color 200ms var(--ease); }
.press-strip a.pub:hover { color: var(--olive); }

/* proof-band: caption text cluster + read-the-feature link */
.proof-band .pb-text { display: flex; flex-direction: column; align-items: flex-end; gap: 9px; text-align: right; }
.proof-band .pb-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lemon); border-bottom: 1px solid color-mix(in srgb, var(--lemon) 45%, transparent); padding-bottom: 2px; transition: color 200ms var(--ease), border-color 200ms var(--ease); }
.proof-band .pb-link:hover { color: #fff; border-color: var(--lemon); }
.proof-band .pb-link span { transition: transform 200ms var(--ease); }
.proof-band .pb-link:hover span { transform: translate(2px, -2px); }
@media (max-width: 560px) { .proof-band .pb-text { align-items: flex-start; text-align: left; } }

/* ============================================================
   FAQ (AEO) — native accordion, no JS
   ============================================================ */
.faq .faq-head { max-width: 780px; margin: 0 auto; text-align: center; }
.faq .faq-head h2 { margin-top: 14px; }
.faq-grid { max-width: 780px; margin: 30px auto 0; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding: 22px 6px; font-family: var(--sans); font-size: 19px; font-weight: 500; line-height: 1.35; color: var(--ink); transition: color 200ms var(--ease); }
.faq-q:hover { color: var(--olive); }
.faq-q::-webkit-details-marker { display: none; }
.faq-ic { position: relative; flex: 0 0 auto; width: 16px; height: 16px; margin-top: 5px; }
.faq-ic::before, .faq-ic::after { content: ''; position: absolute; background: var(--olive); border-radius: 2px; transition: transform 250ms var(--ease); }
.faq-ic::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-ic::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-item[open] .faq-ic::after { transform: scaleY(0); }
.faq-a { padding: 0 6px 24px; color: var(--ink-soft); font-size: 16px; line-height: 1.62; max-width: 64ch; }
@media (max-width: 560px) { .faq-q { font-size: 17px; gap: 16px; } }

/* ============================================================
   MOBILE NAV — burger + overlay menu (injected by atterra-nav.js)
   ============================================================ */
.nav-burger { display: none; position: relative; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 4px; transition: border-color 200ms var(--ease); }
.nav-burger:hover { border-color: var(--ink-mute); }
.nav-burger span { display: block; width: 16px; height: 1.6px; background: var(--ink); border-radius: 2px; transition: transform 260ms var(--ease), opacity 200ms var(--ease); }
.nav-burger.on span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.nav-burger.on span:nth-child(2) { opacity: 0; }
.nav-burger.on span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }
@media (max-width: 880px) { .nav-burger { display: inline-flex; } }

.mobile-menu { position: fixed; inset: 0; z-index: 2000; background: color-mix(in srgb, var(--bone) 95%, transparent); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 300ms var(--ease), visibility 0s linear 300ms; display: flex; }
.mobile-menu.show { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity 300ms var(--ease); }
.mm-inner { margin: auto; width: 100%; max-width: 460px; padding: 88px 32px 48px; display: flex; flex-direction: column; gap: 6px; }
.mm-link { font-family: var(--serif); font-size: clamp(28px, 8vw, 38px); font-weight: 400; line-height: 1.18; color: var(--ink); text-decoration: none; padding: 8px 0; border-bottom: 1px solid var(--line-soft); transition: color 200ms var(--ease); }
.mm-link:hover, .mm-link:active { color: var(--olive); }
.mm-cta { margin-top: 26px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--sans); font-size: 16px; font-weight: 500; color: var(--bone); background: var(--olive); border-radius: 999px; padding: 16px 26px; text-decoration: none; transition: background 200ms var(--ease); }
.mm-cta:hover { background: var(--olive-deep); }
@media (prefers-reduced-motion: reduce) { .mobile-menu { transition: none; } .nav-burger span { transition: none; } }

/* ============================================================
   STICKY MOBILE "GET THE APP" BAR (injected by atterra-nav.js)
   ============================================================ */
.app-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1900; display: none; align-items: center; gap: 12px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: color-mix(in srgb, var(--bone) 94%, transparent); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -18px rgba(31,42,24,0.4); transform: translateY(100%); transition: transform 320ms var(--ease); }
.app-bar.show { transform: translateY(0); }
@media (max-width: 880px) { .app-bar { display: flex; } }
.app-bar .ab-mark { width: 34px; height: 34px; flex: 0 0 auto; }
.app-bar .ab-txt { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; flex: 1; }
.app-bar .ab-txt b { font-family: var(--serif); font-size: 16px; font-weight: 500; color: var(--ink); }
.app-bar .ab-txt span { font-size: 11.5px; color: var(--ink-mute); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-bar .ab-cta { flex: 0 0 auto; font-family: var(--sans); font-size: 13.5px; font-weight: 500; color: var(--bone); background: var(--olive); border-radius: 999px; padding: 11px 18px; text-decoration: none; transition: background 200ms var(--ease); }
.app-bar .ab-cta:hover { background: var(--olive-deep); }
/* lift the consent banner above the sticky bar when both are visible */
body.has-appbar .atc-bar { bottom: calc(64px + env(safe-area-inset-bottom)); }
@media (prefers-reduced-motion: reduce) { .app-bar { transition: none; } }

/* ============================================================
   JOURNAL / BLOG
   ============================================================ */
/* ============================================================
   ABOUT / AUTHOR PAGE
   ============================================================ */
.abt-hero { position: relative; z-index: 1; padding: 60px 0 8px; }
.abt-grid { display: grid; grid-template-columns: 1fr 0.92fr; gap: 64px; align-items: center; }
@media (max-width: 880px) { .abt-grid { grid-template-columns: 1fr; gap: 36px; } }
.abt-copy h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 5.6vw, 68px); line-height: 1.0; letter-spacing: -0.03em; margin-top: 18px; }
.abt-copy h1 em { font-family: var(--ital); color: var(--olive); }
.abt-lede { margin-top: 22px; font-size: 19px; line-height: 1.62; color: var(--ink-soft); max-width: 32em; }
.abt-cred { margin-top: 22px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; line-height: 1.7; color: var(--ink-mute); text-transform: uppercase; }
.abt-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.abt-portrait { position: relative; }
.abt-portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; border-radius: 22px; background: var(--bone-2); }
.abt-portrait .abt-cap { position: absolute; left: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bone); background: color-mix(in srgb, var(--olive-deep) 80%, transparent); backdrop-filter: blur(4px); padding: 8px 13px; border-radius: 999px; text-decoration: none; }
.abt-portrait .abt-cap:hover { background: var(--olive-deep); }

.abt-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; margin: 0 auto; }
@media (max-width: 720px) { .abt-stats { grid-template-columns: repeat(2, 1fr); } }
.abt-stat { background: var(--paper); padding: 30px 24px; text-align: center; }
.abt-stat b { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 4.4vw, 46px); line-height: 1; letter-spacing: -0.02em; color: var(--olive); }
.abt-stat span { display: block; margin-top: 10px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); line-height: 1.5; }

.abt-prose { max-width: 720px; margin: 0 auto; }
.abt-prose p { font-size: 18px; line-height: 1.78; color: var(--ink-soft); margin: 0 0 24px; }
.abt-prose p:first-of-type { font-size: 21px; line-height: 1.62; color: var(--ink); }
.abt-prose h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 3.6vw, 34px); line-height: 1.12; letter-spacing: -0.015em; color: var(--ink); margin: 50px 0 16px; }
.abt-prose em { font-style: italic; }
.abt-prose strong { color: var(--ink); font-weight: 600; }
.abt-prose a { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; }

.abt-creds { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 920px; margin: 0 auto; }
@media (max-width: 720px) { .abt-creds { grid-template-columns: 1fr; gap: 32px; } }
.abt-creds h3 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--olive); margin: 0 0 18px; font-weight: 500; }
.abt-creds ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.abt-creds li { position: relative; padding-left: 26px; font-size: 16.5px; line-height: 1.5; color: var(--ink-soft); }
.abt-creds li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--olive); }
.abt-pubs { display: flex; flex-wrap: wrap; gap: 10px; }
.abt-pubs .pub { font-family: var(--serif); font-size: 19px; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px; padding: 8px 18px; text-decoration: none; }
.abt-pubs a.pub:hover { color: var(--olive); border-color: var(--olive); }

.blog-hero { position: relative; z-index: 1; padding: 78px 0 14px; text-align: center; }
.blog-hero .eyebrow { justify-content: center; }
.blog-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 6vw, 68px); line-height: 1.02; letter-spacing: -0.025em; margin-top: 18px; }
.blog-hero h1 em { font-family: var(--ital); color: var(--olive); }
.blog-hero p { margin: 20px auto 0; max-width: 34em; font-size: 18px; line-height: 1.6; color: var(--ink-soft); }
.blog-list { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin: 56px auto 0; }
@media (max-width: 720px) { .blog-list { grid-template-columns: 1fr; } }
.bcard { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); overflow: hidden; text-decoration: none; transition: box-shadow 280ms var(--ease), transform 280ms var(--ease); }
.bcard:hover { box-shadow: 0 30px 60px -34px rgba(31,42,24,0.45); transform: translateY(-2px); }
.bcard .bcard-img { width: 100%; aspect-ratio: 16 / 9; background: var(--bone-2); display: block; object-fit: cover; object-position: center 28%; }
.bcard .bcard-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.bcard .bcard-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--olive); }
.bcard h2 { font-family: var(--serif); font-weight: 400; font-size: 26px; line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); }
.bcard p { font-size: 15px; line-height: 1.55; color: var(--ink-soft); }
.bcard .bcard-more { margin-top: auto; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); display: inline-flex; gap: 7px; }

/* text-only card (no photo) — typographic band instead of an image */
.bcard.bcard-text .bcard-band { width: 100%; aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center; background: var(--bone-2); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.bcard.bcard-text .bcard-band::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(61,74,46,0.10) 1px, transparent 0); background-size: 22px 22px; opacity: 0.5; }
.bcard.bcard-text .bcard-band .bg { position: relative; z-index: 1; font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 40px; line-height: 1.05; color: var(--olive); text-align: center; padding: 0 30px; letter-spacing: -0.01em; }
.bcard.bcard-text .bcard-band .bg small { display: block; font-family: var(--mono); font-style: normal; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px; }

/* ---- single post ---- */
.post { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; padding: 0 24px; }
.post-head { padding: 70px 0 8px; }
.post-back { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); text-decoration: none; }
.post-back:hover { color: var(--ink); }
.post-tag { display: inline-block; white-space: nowrap; margin-top: 26px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--olive); }
.post h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 5.2vw, 56px); line-height: 1.04; letter-spacing: -0.025em; margin-top: 14px; }
.post h1 em { font-family: var(--ital); color: var(--olive); }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin-top: 24px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); }
.post-meta .by { display: inline-flex; align-items: center; gap: 9px; }
.post-meta .by img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }
.post-hero-img { width: 100%; aspect-ratio: 3 / 2; border-radius: 18px; margin: 34px 0 8px; background: var(--bone-2); display: block; object-fit: cover; object-position: center 30%; }
.article { padding: 14px 0 8px; }
.article > p:first-of-type { font-size: 21px; line-height: 1.6; color: var(--ink); font-weight: 400; }
.article p { font-size: 18px; line-height: 1.78; color: var(--ink-soft); margin: 0 0 24px; }
.article h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 3.6vw, 34px); line-height: 1.12; letter-spacing: -0.015em; color: var(--ink); margin: 52px 0 16px; }
.article h3 { font-family: var(--sans); font-weight: 600; font-size: 18px; color: var(--ink); margin: 34px 0 10px; }
.article strong { color: var(--ink); font-weight: 600; }
.article em { font-style: italic; }
.article a { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; }
.article ul { margin: 0 0 24px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.article ul li { position: relative; padding-left: 30px; font-size: 17.5px; line-height: 1.6; color: var(--ink-soft); }
.article ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--olive); }
.pullquote { margin: 40px 0; padding: 6px 0 6px 26px; border-left: 3px solid var(--olive); font-family: var(--ital); font-size: clamp(24px, 3.4vw, 31px); line-height: 1.28; color: var(--ink); }
.takeaways { margin: 44px 0; background: var(--bone-2); border: 1px solid var(--line); border-radius: 18px; padding: 28px 30px; }
.takeaways h3 { margin: 0 0 16px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--olive); font-weight: 500; }
.takeaways ul { margin: 0; }
.post-cta { margin: 56px 0 10px; background: var(--olive-deep); border-radius: 22px; padding: 40px 36px; text-align: center; position: relative; overflow: hidden; }
.post-cta img.mk { width: 54px; height: 54px; margin-bottom: 16px; }
.post-cta h2 { font-family: var(--serif); font-weight: 300; color: var(--bone); font-size: clamp(26px, 3.6vw, 36px); line-height: 1.08; margin: 0; }
.post-cta h2 em { font-family: var(--ital); color: var(--lemon); }
.post-cta p { color: color-mix(in srgb, var(--bone) 78%, transparent); font-size: 16px; line-height: 1.55; max-width: 30em; margin: 14px auto 24px; }
.post-disc { margin: 30px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--ink-mute); font-style: italic; }
.post-more { border-top: 1px solid var(--line); margin-top: 46px; padding-top: 30px; }
.post-more .lab { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }
.post-more a { display: block; margin-top: 12px; font-family: var(--serif); font-size: 22px; color: var(--ink); text-decoration: none; }
.post-more a:hover { color: var(--olive); }
/* multi-link related cluster */
.post-more .links { display: flex; flex-direction: column; gap: 2px; }
.post-more .links a { display: flex; align-items: baseline; gap: 12px; margin-top: 0; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 20px; line-height: 1.2; transition: color 200ms var(--ease); }
.post-more .links a:last-child { border-bottom: 0; }
.post-more .links a .rk { flex: 0 0 auto; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive); transform: translateY(-2px); }
.post-more .links a .rt { flex: 1; }
.post-more .links a .ra { flex: 0 0 auto; color: var(--ink-mute); transition: transform 200ms var(--ease); }
.post-more .links a:hover .ra { transform: translateX(3px); color: var(--olive); }

/* ============================================================
   EMAIL SIGNUP BAND (progressive-enhanced by atterra-signup.js)
   ============================================================ */
.signup { margin: 56px 0 8px; background: var(--bone-2); border: 1px solid var(--line); border-radius: 22px; padding: 40px 38px; position: relative; overflow: hidden; }
.signup::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(61,74,46,0.08) 1px, transparent 0); background-size: 24px 24px; opacity: 0.5; pointer-events: none; }
.signup > * { position: relative; z-index: 1; }
.signup .su-eyebrow { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--olive); }
.signup h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 3.4vw, 34px); line-height: 1.1; letter-spacing: -0.015em; color: var(--ink); margin: 12px 0 0; max-width: 16em; }
.signup h2 em { font-family: var(--ital); color: var(--olive); }
.signup .su-sub { margin: 12px 0 0; font-size: 16px; line-height: 1.55; color: var(--ink-soft); max-width: 34em; }
.signup .su-form { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; max-width: 480px; }
.signup .su-form input[type="email"] { flex: 1 1 220px; min-width: 0; font-family: var(--sans); font-size: 16px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 14px 20px; transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease); }
.signup .su-form input[type="email"]::placeholder { color: var(--ink-mute); }
.signup .su-form input[type="email"]:focus { outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px color-mix(in srgb, var(--olive) 18%, transparent); }
.signup .su-form button { flex: 0 0 auto; font-family: var(--sans); font-size: 15px; font-weight: 500; cursor: pointer; color: var(--bone); background: var(--olive); border: 1px solid var(--olive); border-radius: 999px; padding: 14px 26px; transition: background 200ms var(--ease); }
.signup .su-form button:hover { background: var(--olive-deep); }
.signup .su-form button:disabled { opacity: 0.6; cursor: default; }
.signup .su-fine { margin: 14px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--ink-mute); }
.signup .su-msg { margin: 14px 0 0; font-size: 14px; line-height: 1.5; min-height: 0; }
.signup .su-msg.err { color: var(--terracotta); }
.signup.is-done .su-form, .signup.is-done .su-fine { display: none; }
.signup .su-done { display: none; }
.signup.is-done .su-done { display: flex; align-items: flex-start; gap: 14px; margin-top: 22px; }
.signup .su-done .ok-mk { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; background: var(--olive); display: flex; align-items: center; justify-content: center; }
.signup .su-done .ok-mk svg { width: 20px; height: 20px; stroke: var(--bone); }
.signup .su-done .ok-tx b { display: block; font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); line-height: 1.15; }
.signup .su-done .ok-tx span { display: block; margin-top: 4px; font-size: 14.5px; color: var(--ink-soft); }
@media (max-width: 560px) { .signup { padding: 32px 24px; } }
/* signup band — full-width centered block.
   Scoped with :has(.su-form) so it doesn't inherit the inline
   .signup email-row's display:flex / max-width:440px (class collision). */
.signup:has(.su-form) { display: block; max-width: none; text-align: center; }
.signup:has(.su-form) h2,
.signup:has(.su-form) .su-sub { margin-left: auto; margin-right: auto; }
.signup .su-form { margin-left: auto; margin-right: auto; justify-content: center; }
.signup .su-form input[type="email"] { text-align: left; }
.signup.is-done .su-done { justify-content: center; align-items: center; }
.signup .su-done .ok-tx { text-align: left; }

/* ============================================================
   JOURNAL — testimonial strip (social proof in the content funnel)
   ============================================================ */
.jvoices { margin: 64px auto 0; }
.jvoices .jv-head { text-align: center; }
.jvoices .jv-head .eyebrow { justify-content: center; }
.jvoices .jv-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 4vw, 42px); line-height: 1.06; letter-spacing: -0.02em; margin-top: 14px; }
.jvoices .jv-head h2 em { font-family: var(--ital); color: var(--olive); }
.jvoices .jv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 820px) { .jvoices .jv-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; } }
.jv-card { margin: 0; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 28px 26px; display: flex; flex-direction: column; }
.jv-card .stars { display: flex; gap: 2px; color: var(--lemon); margin-bottom: 14px; }
.jv-card .stars svg { width: 15px; height: 15px; }
.jv-card p { font-family: var(--serif); font-size: 21px; line-height: 1.34; color: var(--ink); letter-spacing: -0.005em; }
.jv-card p em { font-family: var(--ital); color: var(--olive); font-style: normal; }
.jv-card .jv-by { margin-top: auto; padding-top: 18px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-mute); }
.jv-card .jv-by b { color: var(--ink-soft); font-weight: 500; }
.jvoices .jv-note { text-align: center; margin: 26px auto 0; font-size: 13px; color: var(--ink-mute); }

/* ============================================================
   LEGAL PAGES — terms / privacy (editorial long-form)
   ============================================================ */
.legal-hero { padding: 120px 0 36px; border-bottom: 1px solid var(--line); }
.legal-hero .wrap { max-width: 720px; }
.legal-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 6vw, 60px); line-height: 1.04; letter-spacing: -0.02em; margin: 12px 0 0; }
.legal-hero .legal-updated { margin: 18px 0 0; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
.legal-hero .legal-intro { margin: 22px 0 0; font-size: 17px; line-height: 1.65; color: var(--ink-soft); }
.legal-note { margin: 22px 0 0; padding: 14px 18px; background: var(--bone-2); border-radius: 12px; font-size: 13.5px; line-height: 1.55; color: var(--ink-mute); }
.legal-note a { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; }

.legal-body { max-width: 720px; margin: 0 auto; padding: 8px var(--pad) 96px; }
.legal-sec { padding: 40px 0 0; }
.legal-sec + .legal-sec { border-top: 1px solid var(--line); margin-top: 40px; }
.legal-sec > h2 { font-family: var(--serif); font-weight: 400; font-size: 27px; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 18px; }
.legal-sec h3 { font-family: var(--sans); font-weight: 600; font-size: 16px; letter-spacing: 0.01em; color: var(--ink); margin: 26px 0 10px; }
.legal-sec p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 14px; }
.legal-sec p.lead { font-weight: 500; color: var(--ink); }
.legal-sec ul { margin: 0 0 14px; padding: 0; list-style: none; }
.legal-sec ul li { position: relative; padding-left: 22px; font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 10px; }
.legal-sec ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 5px; height: 5px; border-radius: 50%; background: var(--olive); opacity: 0.55; }
.legal-sec a { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; }
.legal-sec a:hover { color: var(--ink); }
.legal-sec strong { color: var(--ink); font-weight: 600; }
.legal-caps { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); }

.legal-table { width: 100%; border-collapse: collapse; margin: 6px 0 14px; font-size: 15px; }
.legal-table-wrap { overflow-x: auto; margin: 6px 0 14px; -webkit-overflow-scrolling: touch; }
.legal-table-wrap .legal-table { margin: 0; min-width: 540px; }
.legal-table-wrap .legal-table td, .legal-table-wrap .legal-table th { padding-right: 18px; vertical-align: top; }
.legal-table th { text-align: left; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); font-weight: 500; padding: 0 0 10px; border-bottom: 1px solid var(--line); }
.legal-table td { padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.legal-table td:first-child { color: var(--ink); font-weight: 500; }

.legal-toc { margin: 30px 0 0; padding: 22px 26px; background: var(--bone-2, #efe9dc); border-radius: 14px; }
.legal-toc h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 14px; font-weight: 500; }
.legal-toc ol { margin: 0; padding: 0 0 0 0; list-style: none; columns: 2; column-gap: 32px; }
.legal-toc ol li { font-size: 14px; line-height: 1.5; margin: 0 0 8px; break-inside: avoid; }
.legal-toc ol li a { color: var(--ink-soft); text-decoration: none; }
.legal-toc ol li a:hover { color: var(--olive); }
@media (max-width: 640px) { .legal-toc ol { columns: 1; } .legal-hero { padding: 100px 0 28px; } }

.legal-cross { max-width: 720px; margin: 8px auto 0; padding: 0 var(--pad) 96px; }
.legal-cross-inner { display: flex; flex-wrap: wrap; gap: 8px 24px; padding-top: 28px; border-top: 1px solid var(--line); }
.legal-cross-inner a { font-family: var(--sans); font-size: 14px; color: var(--olive); text-decoration: none; }
.legal-cross-inner a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   Polish pass — depth + type rendering (impeccable sweep)
   Journal & legal surfaces lift off the cream like home cards.
   Hairline-first, brand-quiet — same resting shadow the home
   cards already use; no heavy drops.
   ============================================================ */

/* journal post cards + testimonial cards were flat at rest:
   give them the same two-layer resting elevation as .plan/.channel,
   and animate the lift on hover (transform was not transitioned). */
.bcard, .jv-card {
  box-shadow: 0 1px 2px rgba(31,42,24,0.05), 0 16px 32px -26px rgba(31,42,24,0.30);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
}
.bcard:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(31,42,24,0.06), 0 30px 60px -34px rgba(31,42,24,0.45); }
.jv-card:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(31,42,24,0.06), 0 26px 52px -32px rgba(31,42,24,0.40); }

/* crisp seam where the cover photo meets the card body */
.bcard .bcard-img { box-shadow: inset 0 -1px 0 var(--line-soft); }

/* informational panels read carved-in, not pasted-on */
.takeaways, .legal-toc { box-shadow: inset 0 1px 3px rgba(31,42,24,0.06); }

/* light-on-dark micro-compensation on the dark CTA panel */
.post-cta p { letter-spacing: 0.006em; }
