/* ==========================================================================
   MyEchoGoals — marketing site stylesheet
   Palette: plum-ink, warm paper, coral→apricot, teal, lavender-grey
   Type: Fraunces (display) + Plus Jakarta Sans (body/UI)
   ========================================================================== */

:root {
  --ink: #241B2F;
  --ink-soft: #574C63;
  --paper: #FBF7F2;
  --paper-warm: #F4EDE4;
  --surface: #FFFFFF;
  --lavender: #E7E0EE;
  --lavender-deep: #D8CEE4;
  --coral: #FF6B57;
  --apricot: #FFA26B;
  --teal: #0E7C7B;
  --teal-deep: #0A5F5E;
  --line: #E9E0D6;
  --shadow-sm: 0 1px 2px rgba(36, 27, 47, 0.04), 0 2px 8px rgba(36, 27, 47, 0.05);
  --shadow-md: 0 8px 30px rgba(36, 27, 47, 0.08);
  --shadow-lg: 0 20px 60px rgba(36, 27, 47, 0.12);
  --grad-warm: linear-gradient(120deg, var(--coral) 0%, var(--apricot) 100%);
  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--teal);
  display: inline-block;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-warm);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 107, 87, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255, 107, 87, 0.36); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--lavender-deep);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--ink); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 242, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 1.12rem; letter-spacing: -0.01em; }
.brand-mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand span b { color: var(--coral); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.96rem; font-weight: 500; color: var(--ink-soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.nav-launch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 600;
}
.nav-links a.nav-launch::after {
  content: "";
  width: 13px; height: 13px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M7 17L17 7M9 7h8v8'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M7 17L17 7M9 7h8v8'/></svg>") center / contain no-repeat;
  transition: transform 0.2s var(--ease);
}
.nav-links a.nav-launch:hover { color: var(--teal-deep); }
.nav-links a.nav-launch:hover::after { transform: translate(2px, -2px); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta-mobile { display: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.3s; border-radius: 2px; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 74px 0 90px; overflow: hidden; }
.hero-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(520px 380px at 82% 12%, rgba(255, 162, 107, 0.22), transparent 65%),
    radial-gradient(560px 420px at 12% 88%, rgba(14, 124, 123, 0.12), transparent 60%);
}
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-copy h1 { font-size: clamp(2.6rem, 5.4vw, 4.15rem); margin: 20px 0 22px; }
.hero-copy h1 em { font-style: italic; color: var(--coral); }
.hero-copy .lede { font-size: 1.22rem; color: var(--ink-soft); max-width: 33ch; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 20px; font-size: 0.9rem; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.hero-note svg { color: var(--teal); flex-shrink: 0; }

/* hero device / rhythm-ring signature */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  width: 300px;
  background: var(--surface);
  border-radius: 42px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.phone-screen {
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  border-radius: 30px;
  padding: 24px 20px 26px;
  overflow: hidden;
}
.ps-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.ps-date { font-size: 0.72rem; color: var(--ink-soft); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.ps-greet { font-family: "Fraunces", serif; font-size: 1.4rem; margin-bottom: 4px; }
.ps-sub { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 20px; }

.ring-wrap { display: flex; justify-content: center; margin: 6px 0 20px; }
.habit-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 13px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
}
.habit-ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-size: 1rem; flex-shrink: 0; }
.habit-meta { flex: 1; min-width: 0; }
.habit-name { font-size: 0.82rem; font-weight: 700; }
.habit-prog { font-size: 0.7rem; color: var(--ink-soft); }
.habit-check { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; }
.dot-week { display: flex; gap: 5px; margin-top: 5px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lavender-deep); }
.dot.on { background: var(--coral); }
.dot.teal { background: var(--teal); }

.hero-badge {
  position: absolute;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  font-size: 0.8rem;
  font-weight: 600;
}
.hero-badge small { display: block; font-weight: 500; color: var(--ink-soft); font-size: 0.72rem; }
.hero-badge.b1 { top: 46px; left: -18px; }
.hero-badge.b2 { bottom: 60px; right: -22px; }
.badge-dot { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }

/* ---------- trust strip ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-warm); padding: 26px 0; }
.trust .wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 11px; font-size: 0.94rem; font-weight: 600; color: var(--ink-soft); }
.trust-item svg { color: var(--teal); flex-shrink: 0; }

/* ---------- section shells ---------- */
.section { padding: 92px 0; }
.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin: 16px 0 16px; }
.section-head p { font-size: 1.1rem; color: var(--ink-soft); }

/* ---------- feature grid ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--lavender-deep); }
.feat-ico {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--paper-warm);
}
.feat-ico svg { width: 24px; height: 24px; }
.feat-card h3 { font-size: 1.28rem; margin-bottom: 9px; }
.feat-card p { font-size: 0.96rem; color: var(--ink-soft); }
.feat-tag {
  display: inline-block; margin-top: 14px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--teal); background: rgba(14, 124, 123, 0.08);
  padding: 4px 10px; border-radius: 999px;
}
.feat-tag.mobile { color: var(--coral); background: rgba(255, 107, 87, 0.09); }
.feat-tag.soon { color: var(--ink-soft); background: var(--lavender); }

/* ---------- pillars (alternating) ---------- */
.pillar { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 46px 0; }
.pillar:nth-child(even) .pillar-media { order: -1; }
.pillar-media {
  border-radius: var(--radius-lg);
  background: var(--paper-warm);
  border: 1px solid var(--line);
  padding: 38px;
  min-height: 340px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.pillar h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 14px 0 16px; }
.pillar p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 20px; }
.pillar ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pillar li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; }
.pillar li svg { color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.pillar li .feat-tag { margin-top: 0; margin-left: 6px; line-height: 14px; vertical-align: 1px; }

/* mini calendar signature block */
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 9px; width: 100%; max-width: 280px; }
.cal-cell { aspect-ratio: 1; border-radius: 9px; background: var(--lavender); display: grid; place-items: center; font-size: 0.72rem; font-weight: 700; color: var(--ink-soft); }
.cal-cell.c1 { background: rgba(255, 107, 87, 0.25); color: var(--coral); }
.cal-cell.c2 { background: rgba(255, 107, 87, 0.55); color: #fff; }
.cal-cell.c3 { background: var(--coral); color: #fff; }
.cal-cell.teal { background: var(--teal); color: #fff; }

/* ---------- stat band ---------- */
.band { background: var(--ink); color: var(--paper); border-radius: var(--radius-lg); padding: 54px; }
.band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.band .num { font-family: "Fraunces", serif; font-size: 2.8rem; color: var(--apricot); line-height: 1; }
.band .lbl { font-size: 0.92rem; color: rgba(251, 247, 242, 0.7); margin-top: 8px; }

/* ---------- audience / ADHD ---------- */
.adhd { background: var(--paper-warm); }
.adhd-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.chip-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  background: var(--surface); border: 1px solid var(--line);
  padding: 12px 18px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}
.chip.hot { background: var(--grad-warm); color: #fff; border-color: transparent; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px 30px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.price-card.featured { border: 2px solid var(--coral); box-shadow: var(--shadow-md); position: relative; }
.price-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-warm); color: #fff; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px;
}
.price-name { font-family: "Fraunces", serif; font-size: 1.5rem; margin-bottom: 6px; }
.price-desc { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 20px; min-height: 40px; }
.price-amt { display: flex; align-items: baseline; gap: 5px; margin-bottom: 4px; }
.price-amt .amt { font-family: "Fraunces", serif; font-size: 3rem; }
.price-amt .per { color: var(--ink-soft); font-size: 0.95rem; }
.price-sub { font-size: 0.84rem; color: var(--ink-soft); margin-bottom: 24px; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; flex: 1; }
.price-card li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.95rem; }
.price-card li svg { color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.price-card li.off { color: var(--ink-soft); }
.price-card li.off svg { color: var(--lavender-deep); }

/* ---------- steps / how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { position: relative; padding-top: 20px; }
.step-num {
  font-family: "Fraunces", serif; font-size: 3.4rem; color: var(--lavender-deep);
  line-height: 1; margin-bottom: 12px;
}
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- CTA ---------- */
.cta-final { text-align: center; }
.cta-box {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 74px 40px;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% -10%, rgba(255, 162, 107, 0.28), transparent 60%);
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { color: var(--paper); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.cta-box p { color: rgba(251, 247, 242, 0.75); font-size: 1.15rem; max-width: 46ch; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--paper); color: var(--ink);
  padding: 13px 22px; border-radius: 14px; font-weight: 600;
  transition: transform 0.25s var(--ease);
}
.store-btn:hover { transform: translateY(-2px); }
.store-btn small { display: block; font-size: 0.68rem; color: var(--ink-soft); font-weight: 500; }
.store-btn b { font-size: 1.02rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--paper-warm); border-top: 1px solid var(--line); padding: 64px 0 30px; margin-top: 0; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.foot-brand p { color: var(--ink-soft); font-size: 0.94rem; margin-top: 14px; max-width: 30ch; }
.foot-col h4 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 16px; font-weight: 700; }
.foot-col a { display: block; color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 11px; transition: color 0.2s; }
.foot-col a:hover { color: var(--coral); }
.foot-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.88rem; color: var(--ink-soft); }
.foot-bottom .disclaimer { max-width: 60ch; }

/* ---------- generic page hero ---------- */
.page-hero { padding: 60px 0 40px; text-align: center; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin: 16px auto 18px; max-width: 16ch; }
.page-hero p { font-size: 1.15rem; color: var(--ink-soft); max-width: 52ch; margin: 0 auto; }

/* ---------- legal two-column (TOC + prose) ---------- */
.legal-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 56px;
  align-items: start;
  padding: 20px 0 40px;
}
.legal-toc {
  position: sticky;
  top: 96px;
  align-self: start;
}
.legal-toc h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
  margin-bottom: 16px;
  padding-left: 15px;
}
.legal-toc ol { list-style: none; padding: 0; margin: 0; border-left: 2px solid var(--line); }
.legal-toc li { margin: 0; }
.legal-toc a {
  display: block;
  padding: 7px 0 7px 15px;
  margin-left: -2px;
  border-left: 2px solid transparent;
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--ink-soft);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.legal-toc a:hover { color: var(--ink); }
.legal-toc a.active {
  color: var(--coral);
  border-left-color: var(--coral);
  font-weight: 600;
}
.legal-toc .toc-back {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 22px; padding-left: 15px;
  font-size: 0.85rem; font-weight: 600; color: var(--teal);
}
.legal-toc .toc-back svg { transition: transform 0.2s; }
.legal-toc .toc-back:hover svg { transform: translateX(-3px); }
.legal-body { max-width: 720px; min-width: 0; }
.legal-body section[id] { scroll-margin-top: 96px; }
.legal-body section[id] h2:first-child { margin-top: 0; }
.legal-body section[id] { margin-bottom: 8px; }

/* ---------- legal / prose ---------- */
.prose { max-width: 760px; margin: 0 auto; padding: 20px 0 40px; }
.prose h2 { font-size: 1.5rem; margin: 38px 0 14px; }
.prose h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.prose p, .prose li { color: var(--ink-soft); margin-bottom: 14px; font-size: 1rem; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 16px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); }
.prose .meta { font-size: 0.9rem; color: var(--ink-soft); font-style: italic; margin-bottom: 30px; }
.callout {
  background: var(--paper-warm); border-left: 3px solid var(--coral);
  padding: 18px 22px; border-radius: 0 12px 12px 0; margin: 24px 0;
}
.callout p { margin: 0; font-size: 0.95rem; }

/* ---------- faq ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 0; font-family: "Fraunces", serif; font-size: 1.25rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-q .ico { flex-shrink: 0; width: 26px; height: 26px; transition: transform 0.3s; color: var(--coral); }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding: 0 0 24px; color: var(--ink-soft); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .legal-layout { grid-template-columns: 1fr; gap: 12px; }
  .legal-toc {
    position: static;
    background: var(--paper-warm);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 22px;
    margin-bottom: 20px;
  }
  .legal-toc h4 { padding-left: 0; }
  .legal-toc ol {
    border-left: none;
    columns: 2;
    column-gap: 24px;
  }
  .legal-toc a { padding: 6px 0; border-left: none; }
  .legal-toc a.active { border-left: none; }
  .legal-toc .toc-back { padding-left: 0; }
  .legal-body { max-width: none; }
}

@media (max-width: 940px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar, .adhd-grid { grid-template-columns: 1fr; gap: 34px; }
  .pillar:nth-child(even) .pillar-media { order: 0; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; }
  .band-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; background: var(--paper); padding: 20px 24px;
    border-bottom: 1px solid var(--line); gap: 6px; box-shadow: var(--shadow-md);
  }
  .nav.open .nav-links a { padding: 10px 0; width: 100%; }
  .nav.open .nav-links a.nav-cta-mobile {
    display: inline-flex; justify-content: center; padding: 12px 0; margin-top: 4px;
  }
  .hero-visual { order: 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 34px; }
  .feat-grid { grid-template-columns: 1fr; }
  .band { padding: 40px 26px; }
  .band-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { padding: 50px 24px; }
  .section { padding: 66px 0; }
  .hero-badge.b1 { left: 4px; }
  .hero-badge.b2 { right: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }
