/* ============================================================
   Profile Pros — shared stylesheet
   Framework-free. Drops into public/styles.css
   Design tokens first, then base, then components, then responsive.
   ============================================================ */

:root {
  /* ---- Color ---- */
  --bg:            #F4EFE5;  /* page background (warm cream) */
  --bg-alt:        #EDE7D9;  /* alternating section band */
  --panel:         #FBF8F0;  /* inset panel / quote background */
  --card:          #ffffff;  /* card surface */
  --ink:           #211F1A;  /* primary text (near-black warm) */
  --ink-2:         #2b2823;  /* body on light cards */
  --muted:         #5a564c;  /* secondary body text */
  --muted-2:       #6f695b;  /* fine print / low-key labels (AA-tuned) */
  --muted-3:       #7c7364;  /* faint mono labels (AA-tuned) */
  --green:         #1F4A3D;  /* brand primary (deep green) */
  --green-2:       #5E8071;  /* mid green (point of view) */
  --green-3:       #A7C3B4;  /* light green (availability) */
  --on-dark:       #F4EFE5;  /* text on dark sections */
  --on-dark-mute:  #b6b1a3;  /* muted text on #211F1A */
  --on-green-mute: #9DBBA9;  /* muted text on #1F4A3D */
  --on-green-body: #cdd9d1;  /* body text on #1F4A3D */
  --hair:          rgba(33,31,26,0.10); /* hairline border */
  --hair-strong:   rgba(33,31,26,0.16);

  /* ---- Type ---- */
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;   /* display + editorial */
  --sans:  'IBM Plex Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif; /* body + UI */
  --mono:  'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace; /* labels + data */
  --brand: 'Zilla Slab', var(--serif); /* wordmark only */

  /* ---- Type scale (fluid-ish, px baseline) ---- */
  --fs-hero:   66px;
  --fs-h2:     42px;
  --fs-h2-sm:  40px;
  --fs-h3:     28px;
  --fs-lead:   19px;
  --fs-body:   16px;
  --fs-sm:     14px;
  --fs-label:  12px;  /* mono eyebrow */

  /* ---- Spacing ---- */
  --section-y: 56px;    /* vertical padding per section */
  --pad-x:     48px;    /* horizontal page padding (desktop) */
  --maxw:      1180px;  /* content max width */
  --radius:    16px;
  --radius-sm: 10px;

  --shadow-card: 0 40px 80px -50px rgba(33,31,26,0.45);
  --shadow-cta:  0 14px 30px -14px rgba(31,74,61,0.6);
}

/* ---- Reset / base ---- */
*{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--sans);
  font-size:var(--fs-body);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
h1,h2,h3{ font-family:var(--serif); font-weight:500; letter-spacing:-0.02em; margin:0; }
::selection{ background:var(--green); color:#F6F2EA; }

.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }
.wrap{ max-width:var(--maxw); margin:0 auto; padding:var(--section-y) var(--pad-x); }
.wrap--narrow{ max-width:1080px; }
.wrap--tight{ max-width:900px; }
.eyebrow{
  font-family:var(--mono); font-size:var(--fs-label); font-weight:500;
  letter-spacing:0.12em; text-transform:uppercase; color:var(--green);
  margin:0 0 16px;
}
.section-band{ background:var(--bg-alt); border-top:1px solid var(--hair); }
.section-dark{ background:var(--ink); color:var(--on-dark); }
.section-green{ background:var(--green); color:var(--on-dark); }

/* ---- Buttons / links ---- */
.btn-primary{
  display:inline-flex; align-items:center; gap:9px;
  background:var(--green); color:#F6F2EA; font-weight:600; font-size:16px;
  padding:15px 28px; border-radius:9px; text-decoration:none; border:0; cursor:pointer;
  box-shadow:var(--shadow-cta);
  transition:transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s cubic-bezier(.22,1,.36,1);
}
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 26px 46px -22px rgba(31,74,61,0.55); }
.btn-primary:active{ transform:translateY(-1px); }
.btn-primary:disabled,.btn-primary[aria-disabled="true"]{ opacity:.55; cursor:not-allowed; transform:none; box-shadow:none; }
.btn-primary[data-loading="true"]{ opacity:.8; cursor:progress; }

.link-underline{
  display:inline-flex; align-items:center; gap:8px;
  color:var(--ink); font-weight:600; font-size:16px; text-decoration:none;
  border-bottom:1.5px solid var(--green); padding-bottom:3px;
}
.link-underline--onDark{ color:#F6F2EA; border-bottom-color:rgba(246,242,234,0.5); }

/* ---- Nav ---- */
.nav{
  position:sticky; top:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:18px var(--pad-x);
  background:rgba(244,239,229,0.85); backdrop-filter:blur(14px);
  border-bottom:1px solid var(--hair);
}
.nav__brand{ display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--green); }
.nav__brand-mark{ height:30px; width:auto; display:block; }
.nav__brand-name{ font-family:var(--brand); font-weight:500; font-size:20px; line-height:1; }
.nav__links{ display:flex; align-items:center; gap:30px; font-size:14px; }
.nav__links a:not(.nav__cta){ color:var(--muted); text-decoration:none; position:relative; }
.nav__links a:not(.nav__cta):hover{ color:var(--ink); }
.nav__cta{
  display:inline-flex; align-items:center; background:var(--green); color:#F6F2EA;
  font-weight:500; font-size:13.5px; padding:11px 18px; border-radius:7px; text-decoration:none;
}
.nav__toggle{ display:none; }

/* ---- Hero ---- */
.hero__eyebrow{
  font-family:var(--mono); font-size:13.5px; letter-spacing:0.11em;
  text-transform:uppercase; color:var(--green); margin:0 0 28px;
}
.hero h1{ font-size:var(--fs-hero); line-height:1.05; margin:0 0 30px; max-width:940px; text-wrap:balance; }
.hero__grid{ display:grid; grid-template-columns:1fr 0.82fr; gap:48px; align-items:center; }
.hero__lead{ font-size:var(--fs-lead); line-height:1.6; color:#4c4940; max-width:48ch; margin:0 0 32px; }
.hero__actions{ display:flex; flex-wrap:wrap; gap:14px; align-items:center; }
.hero__finemono{ margin-top:22px; font-family:var(--mono); font-size:12.5px; color:var(--muted-2); line-height:1.7; }

/* ---- Post card (hero peek + delivery) ---- */
.postcard{ background:var(--card); border:1px solid var(--hair); border-radius:var(--radius); box-shadow:var(--shadow-card); padding:22px 24px; }
.postcard__meta{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:14px; }
.postcard__tag{ font-family:var(--mono); font-size:10.5px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; color:var(--muted-3); }
.postcard__who{ font-family:var(--mono); font-size:10px; letter-spacing:0.04em; text-transform:uppercase; color:var(--muted-3); white-space:nowrap; }
.postquote{ background:var(--panel); border-left:3px solid var(--green); border-radius:0 var(--radius-sm) var(--radius-sm) 0; padding:16px 18px; }
.postquote p{ margin:0; font-size:15.5px; line-height:1.6; color:var(--ink-2); }

/* ---- Mechanism band ---- */
.mech p{ font-family:var(--serif); font-weight:400; font-size:38px; line-height:1.28; letter-spacing:-0.01em; margin:0; }
.mech em{ color:var(--on-green-mute); font-style:italic; }

/* ---- How it works ---- */
.how__head{ display:grid; grid-template-columns:0.8fr 1.2fr; gap:48px; align-items:end; margin-bottom:34px; }
.how__head h2{ font-size:var(--fs-h2); line-height:1.08; }
.how__head p{ font-size:16px; color:#7a7062; margin:0; max-width:50ch; }
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--hair); border:1px solid var(--hair); border-radius:var(--radius); overflow:hidden; }
.step{ background:var(--bg); padding:34px 30px; }
.step__num{ font-family:var(--mono); font-size:13px; color:var(--green); margin-bottom:22px; }
.step h3{ font-size:24px; margin:0 0 12px; letter-spacing:-0.01em; }
.step p{ font-size:15px; line-height:1.62; color:var(--muted); margin:0; }

/* ---- Section intros ---- */
.intro{ max-width:60ch; margin-bottom:30px; }
.intro h2{ font-size:var(--fs-h2); line-height:1.08; margin:0 0 14px; }
.intro p{ font-size:16px; color:#7a7062; line-height:1.62; margin:0; }

/* ---- 70/20/10 mix bar ---- */
.mixcard{ background:var(--card); border:1px solid var(--hair); border-radius:20px; padding:34px 34px 30px; box-shadow:0 34px 70px -52px rgba(33,31,26,0.55); }
.mixcard__label{ font-family:var(--mono); font-size:var(--fs-label); letter-spacing:0.12em; text-transform:uppercase; color:var(--green); margin-bottom:9px; }
.mixcard__hint{ font-size:15.5px; color:var(--muted); line-height:1.5; margin:0 0 22px; max-width:54ch; }
.mixbar{ display:flex; gap:6px; height:72px; }
.mixseg{
  display:flex; align-items:center; height:100%; padding:0 18px; border-radius:11px;
  cursor:pointer; border:0; text-align:left; transition:transform .25s ease, filter .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.mixseg span{ font-family:var(--mono); font-size:13px; font-weight:500; letter-spacing:0.05em; white-space:nowrap; }
.mixseg--exp{ flex:70 1 0; min-width:0; background:var(--green); }
.mixseg--exp span{ color:#F6F2EA; }
.mixseg--pov{ flex:20 1 0; min-width:190px; background:var(--green-2); }
.mixseg--pov span{ color:#F6F2EA; }
.mixseg--avl{ flex:10 1 0; min-width:168px; background:var(--green-3); }
.mixseg--avl span{ color:var(--green); }
.mixseg:hover,.mixseg:focus-visible{ transform:translateY(-3px); filter:brightness(1.06); box-shadow:0 16px 30px -18px rgba(33,31,26,0.5); outline:none; }
.mixseg[aria-selected="false"]{ opacity:.5; }
.mixseg[aria-selected="true"]{ opacity:1; box-shadow:inset 0 0 0 2px rgba(246,242,234,0.92), 0 16px 30px -18px rgba(33,31,26,0.5); }
.mixseg--avl[aria-selected="true"]{ box-shadow:inset 0 0 0 2px rgba(33,31,26,0.45), 0 16px 30px -18px rgba(33,31,26,0.4); }
.mixdesc{ margin-top:20px; background:var(--panel); border:1px solid var(--hair); border-left:4px solid var(--green); border-radius:0 12px 12px 0; padding:18px 22px; min-height:70px; }
.mixdesc__label{ font-family:var(--mono); font-size:12.5px; letter-spacing:0.06em; text-transform:uppercase; color:var(--green); margin-bottom:7px; }
.mixdesc p{ margin:0; font-size:16px; line-height:1.62; color:#3a372f; }

/* ---- Bridge line ---- */
.bridge{ max-width:800px; margin:34px 0 20px; }
.bridge p{ font-family:var(--serif); font-weight:500; font-size:23px; line-height:1.3; letter-spacing:-0.01em; color:var(--ink); margin:0; }
.bridge u{ text-decoration:underline; text-decoration-color:var(--green); text-decoration-thickness:2px; text-underline-offset:3px; }

/* ---- Voice tabs ---- */
.tabs{ display:flex; gap:10px; }
.tab{
  flex:1 1 0; min-width:0; cursor:pointer; text-align:left; padding:14px 20px; border-radius:12px;
  border:1px solid rgba(33,31,26,0.2); display:flex; flex-direction:column; gap:5px;
  font-family:inherit; background:#FCFAF4; box-shadow:0 1px 2px rgba(33,31,26,0.05);
}
.tab[aria-selected="true"]{ border-color:var(--green); background:var(--green); box-shadow:0 12px 24px -12px rgba(31,74,61,0.6); }
.tab__label{ font-family:var(--mono); font-size:13px; font-weight:600; letter-spacing:0.05em; text-transform:uppercase; line-height:1.2; color:var(--ink-2); }
.tab__sub{ font-family:var(--mono); font-size:10.5px; font-weight:500; letter-spacing:0.05em; text-transform:uppercase; white-space:nowrap; color:var(--muted-3); }
.tab[aria-selected="true"] .tab__label{ color:#F6F2EA; }
.tab[aria-selected="true"] .tab__sub{ color:rgba(246,242,234,0.75); }

.panel{ background:var(--card); border:1px solid var(--hair); border-radius:var(--radius); box-shadow:var(--shadow-card); padding:26px 28px 28px; margin-top:14px; }
.panel[hidden]{ display:none; }
.panel__head{ display:flex; justify-content:space-between; align-items:flex-start; gap:18px; flex-wrap:wrap; margin-bottom:18px; padding-bottom:18px; border-bottom:1px solid var(--hair); }
.panel__forlabel{ font-family:var(--mono); font-size:12px; font-weight:500; letter-spacing:0.08em; text-transform:uppercase; color:var(--muted-3); margin-bottom:6px; }
.panel__for{ font-family:var(--serif); font-weight:500; font-size:19px; line-height:1.25; color:var(--ink); }
.panel__meta{ display:flex; flex-direction:column; align-items:flex-end; gap:8px; flex-shrink:0; }
.badge{ display:inline-flex; align-items:center; gap:8px; font-family:var(--mono); font-size:11px; font-weight:600; letter-spacing:0.05em; text-transform:uppercase; color:var(--green); }
.badge__dot{ width:9px; height:9px; border-radius:2px; display:inline-block; flex-shrink:0; }
.panel__when{ font-family:var(--mono); font-size:11px; letter-spacing:0.04em; text-transform:uppercase; color:var(--muted-3); white-space:nowrap; }
.panel__body{ background:var(--panel); border-left:3px solid var(--green); border-radius:0 var(--radius-sm) var(--radius-sm) 0; padding:20px 26px; margin-bottom:18px; }
.panel__body p{ margin:0; font-size:15px; line-height:1.64; color:var(--ink-2); }

/* ---- Rating row ---- */
.rate{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; border-top:1px solid var(--hair); padding-top:18px; }
.rate__label{ font-size:14px; color:var(--muted); }
.rate__stars{ display:flex; gap:7px; }
.rate__btn{ font-family:var(--mono); font-size:14px; font-weight:600; color:var(--ink-2); background:var(--bg); border:1px solid rgba(33,31,26,0.12); border-radius:8px; width:38px; height:38px; cursor:pointer; transition:background .2s, color .2s, border-color .2s; }
.rate__btn:hover,.rate__btn:focus-visible{ background:var(--green); color:#F6F2EA; border-color:var(--green); outline:none; }
.rate__hint{ font-size:13px; color:var(--muted-3); }

/* ---- Delivery preview ---- */
.delivery{ margin-top:42px; padding-top:38px; border-top:1px solid var(--hair-strong); }
.delivery__intro{ max-width:60ch; margin-bottom:24px; }
.delivery__intro .eyebrow{ margin-bottom:14px; }
.delivery__intro p{ font-family:var(--serif); font-weight:500; font-size:23px; line-height:1.3; letter-spacing:-0.01em; color:var(--ink); margin:0; }
.delivery__intro u{ text-decoration:underline; text-decoration-color:var(--green); text-decoration-thickness:2px; text-underline-offset:3px; }
.email{ max-width:680px; background:var(--card); border:1px solid var(--hair); border-radius:var(--radius); box-shadow:var(--shadow-card); overflow:hidden; }
.email__chrome{ display:flex; align-items:center; gap:12px; padding:15px 24px; border-bottom:1px solid var(--hair); background:var(--panel); }
.email__avatar{ width:34px; height:34px; border-radius:8px; background:var(--green); color:#F6F2EA; display:flex; align-items:center; justify-content:center; font-family:var(--serif); font-weight:600; font-size:16px; flex-shrink:0; }
.email__from{ font-size:14px; font-weight:600; color:var(--ink); line-height:1.3; }
.email__subj{ font-family:var(--mono); font-size:11.5px; color:var(--muted-2); }
.email__when{ margin-left:auto; font-family:var(--mono); font-size:11px; letter-spacing:0.04em; text-transform:uppercase; color:var(--muted-3); white-space:nowrap; }
.email__body{ padding:26px 28px 28px; }
.why{ background:rgba(31,74,61,0.05); border:1px solid rgba(31,74,61,0.2); border-radius:var(--radius-sm); padding:17px 22px; margin-bottom:20px; }
.why__label{ font-family:var(--mono); font-size:11px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; color:var(--green); margin-bottom:8px; }
.why p{ margin:0; font-size:14.5px; line-height:1.6; color:#3a372f; }

/* ---- Proof (two column) ---- */
.proof__head{ margin:0 0 40px; }
.proof__head h2{ font-size:var(--fs-h2); line-height:1.1; }
.cols2{ display:grid; grid-template-columns:1fr 1fr; gap:44px; max-width:960px; margin:0 auto; }
.col__label{ font-family:var(--mono); font-size:11px; letter-spacing:0.06em; text-transform:uppercase; color:var(--green); margin-bottom:10px; }
.col p{ font-size:15px; line-height:1.62; color:var(--muted); margin:0; }
.col a{ color:var(--green); font-weight:600; text-decoration:none; border-bottom:1px solid rgba(31,74,61,0.3); }

/* ---- Control (two tiles) ---- */
.control__lead{ font-family:var(--serif); font-weight:500; font-size:24px; line-height:1.3; letter-spacing:-0.01em; color:var(--ink); margin:0 0 24px; }
.tiles{ display:grid; grid-template-columns:1.15fr 0.85fr; gap:22px; align-items:stretch; }
.tile{ border-radius:18px; padding:38px 40px; display:flex; flex-direction:column; }
.tile--active{ background:var(--green); color:#F4EFE5; }
.tile--passive{ background:var(--card); border:1px solid var(--hair); }
.tile__label{ font-family:var(--mono); font-size:12px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:16px; }
.tile--active .tile__label{ color:var(--on-green-mute); }
.tile--passive .tile__label{ color:var(--green); }
.tile h3{ font-size:var(--fs-h3); letter-spacing:-0.01em; margin:0 0 14px; line-height:1.14; }
.tile--active p{ font-size:15.5px; line-height:1.62; color:var(--on-green-body); margin:0 0 26px; }
.tile--passive p{ font-size:15.5px; line-height:1.62; color:var(--muted); margin:0 0 26px; }
.emailmock{ margin-top:auto; background:#F6F2EA; color:var(--ink); border-radius:12px; overflow:hidden; box-shadow:0 24px 44px -30px rgba(0,0,0,0.6); }
.emailmock__to{ display:flex; align-items:center; gap:10px; padding:13px 18px; border-bottom:1px solid var(--hair); font-family:var(--mono); font-size:12px; color:var(--muted-2); }
.emailmock__to b{ color:var(--green); font-weight:500; }
.emailmock__b{ padding:16px 18px 18px; }
.emailmock__b p{ margin:0 0 12px; font-size:14.5px; line-height:1.55; color:var(--ink-2); }
.emailmock__turn{ display:flex; align-items:center; gap:8px; font-family:var(--mono); font-size:12px; color:var(--green); }
.control__foot{ font-size:16.5px; color:#3a372f; line-height:1.6; margin:30px 0 0; max-width:92ch; }

/* ---- Comparison table ---- */
.cmp__head{ margin-bottom:28px; max-width:900px; }
.cmp__head h2{ font-size:var(--fs-h2-sm); line-height:1.1; margin:0 0 14px; white-space:nowrap; }
.cmp__head p{ font-size:16.5px; color:#dfe7e0; line-height:1.55; margin:0; font-weight:500; max-width:52ch; }
.cmp__scroll{ overflow-x:auto; }
.cmp__table{ width:100%; min-width:660px; border-collapse:collapse; font-size:14px; }
.cmp__table th{ text-align:left; font-weight:600; padding:0 14px 16px; color:var(--on-green-mute); }
.cmp__table th.is-other{ color:#8f897c; font-weight:500; }
.cmp__table th:first-child{ padding-left:0; }
.cmp__table td{ padding:16px 14px; border-top:1px solid rgba(244,239,229,0.12); color:#9a9489; }
.cmp__table td:first-child{ padding-left:0; color:var(--on-dark-mute); }
.cmp__table td.is-us{ color:#F4EFE5; font-weight:600; background:rgba(157,187,169,0.08); }

/* ---- Makeover ---- */
.makeover{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.makeover h2{ font-size:var(--fs-h2-sm); line-height:1.12; margin:0 0 16px; }
.makeover__body{ font-size:16px; color:var(--muted); line-height:1.62; margin:0 0 14px; }
.makeover__body strong{ color:var(--ink); font-weight:600; }
.makeover__note{ font-size:13.5px; color:var(--muted-2); line-height:1.6; margin:0; }
.makeover__card{ background:var(--card); border:1px solid var(--hair); border-radius:var(--radius); padding:10px; box-shadow:0 30px 60px -40px rgba(33,31,26,0.35); }
.makeover__grid{ display:grid; grid-template-columns:1fr 1fr; gap:1px; background:rgba(33,31,26,0.08); border-radius:var(--radius-sm); overflow:hidden; }
.makeover__item{ background:var(--card); padding:20px 18px; }
.makeover__item b{ font-family:var(--serif); font-weight:600; font-size:16px; color:var(--green); display:block; margin-bottom:5px; }
.makeover__item span{ font-size:12.5px; color:#7a7062; line-height:1.45; }

/* ---- Pricing ---- */
.pricing__head{ text-align:center; margin-bottom:30px; }
.pricing__head h2{ font-size:44px; }
.pricegrid{ display:grid; grid-template-columns:1fr; gap:24px; max-width:560px; margin:0 auto; }
.plan{ position:relative; border:1.5px solid var(--green); border-radius:18px; padding:40px; background:var(--card); box-shadow:0 40px 80px -50px rgba(31,74,61,0.5); }
.plan__label{ font-family:var(--mono); font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:var(--green); margin-bottom:18px; }
.plan__price{ display:flex; align-items:baseline; gap:14px; margin-bottom:6px; }
.plan__price b{ font-family:var(--serif); font-weight:500; font-size:60px; line-height:1; }
.plan__price span{ font-size:17px; color:var(--muted); }
.plan__terms{ font-size:14px; color:var(--muted-2); margin-bottom:26px; }
.plan__features{ list-style:none; padding:0; margin:0 0 28px; display:flex; flex-direction:column; gap:13px; }
.plan__features li{ display:flex; gap:12px; font-size:15px; color:var(--ink-2); line-height:1.45; }
.plan__features li::before{ content:"\2713"; color:var(--green); flex-shrink:0; font-weight:600; }
.plan__cta{ display:block; text-align:center; width:100%; }
.plan__fine{ text-align:center; font-family:var(--mono); font-size:11.5px; color:var(--muted-2); margin-top:14px; line-height:1.6; }
.plan__skip{ text-align:center; margin-top:16px; font-size:13.5px; color:var(--muted); line-height:1.55; }
.plan__skip a{ color:var(--green); font-weight:600; text-decoration:none; border-bottom:1.5px solid rgba(31,74,61,0.3); }

/* ---- FAQ ---- */
.faq__head{ font-size:var(--fs-h2-sm); text-align:center; margin:0 0 36px; }
.faq__item{ border-bottom:1px solid var(--hair-strong); padding:22px 0; }
.faq__item > summary{ cursor:pointer; list-style:none; display:flex; justify-content:space-between; gap:16px; align-items:baseline; }
.faq__item > summary::-webkit-details-marker{ display:none; }
.faq__q{ font-family:var(--serif); font-weight:500; font-size:21px; color:var(--ink); letter-spacing:-0.01em; margin:0; }
.faq__sign{ color:var(--green); font-weight:400; font-family:var(--sans); flex-shrink:0; font-size:22px; line-height:1; }
.faq__item[open] .faq__sign{ transform:rotate(45deg); }
.faq__a{ margin:14px 0 0; font-size:15px; line-height:1.7; color:var(--muted); }

/* ---- Final CTA ---- */
.final{ text-align:center; }
.final h2{ font-size:56px; line-height:1.04; margin:0 0 20px; }
.final p{ font-size:18px; color:var(--on-green-body); line-height:1.6; max-width:50ch; margin:0 auto 36px; }
.final__actions{ display:flex; flex-wrap:wrap; gap:16px; justify-content:center; align-items:center; }
.final .btn-primary{ background:#F6F2EA; color:var(--green); }

/* ---- Footer ---- */
.footer{ background:var(--bg-alt); border-top:1px solid var(--hair); }
.footer__grid{ max-width:var(--maxw); margin:0 auto; padding:60px var(--pad-x) 36px; display:grid; grid-template-columns:1.7fr 1fr 1fr; gap:36px; }
.footer__brand{ display:flex; align-items:center; gap:9px; margin-bottom:16px; color:var(--green); }
.footer__brand svg{ height:27px; width:auto; display:block; }
.footer__brand-name{ font-family:var(--brand); font-weight:500; font-size:18px; line-height:1; }
.footer__tag{ font-size:14px; color:#7a7062; line-height:1.6; max-width:36ch; margin:0; }
.footer__col-label{ font-family:var(--mono); font-size:11px; letter-spacing:0.06em; text-transform:uppercase; color:var(--muted-3); margin-bottom:16px; }
.footer__links{ display:flex; flex-direction:column; gap:10px; font-size:14px; }
.footer__links a{ color:var(--muted); text-decoration:none; }
.footer__legal{ max-width:var(--maxw); margin:0 auto; padding:18px var(--pad-x) 40px; border-top:1px solid var(--hair); display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:12px; color:var(--muted-3); }

/* ---- Reveal animation (progressive; safe without JS) ---- */
@media (prefers-reduced-motion:no-preference){
  .reveal{ opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1); }
  .reveal.is-in{ opacity:1; transform:none; }
}

/* ============================================================
   RESPONSIVE
   Breakpoints: <=880px (tablet/stack), <=560px (phone fine-tune)
   Mobile is first class: single column, stacked mix bar + tabs.
   ============================================================ */
@media (max-width:880px){
  :root{ --pad-x:24px; --fs-hero:46px; --fs-h2:34px; --fs-h2-sm:32px; --section-y:44px; }
  .nav__links{ display:none; }           /* replace with menu button (see app.js note) */
  .nav__toggle{ display:inline-flex; }
  .hero__grid{ grid-template-columns:1fr; gap:32px; }
  .how__head{ grid-template-columns:1fr; gap:16px; }
  .steps{ grid-template-columns:1fr; }
  .cols2{ grid-template-columns:1fr; gap:28px; }
  .tiles{ grid-template-columns:1fr; }
  .makeover{ grid-template-columns:1fr; gap:32px; }
  .cmp__head h2{ white-space:normal; }
  /* mix bar + voice tabs stack vertically on small screens */
  .mixbar{ flex-direction:column; height:auto; }
  .mixseg{ min-width:0 !important; height:52px; opacity:1 !important; }
  .tabs{ flex-direction:column; }
  .final h2{ font-size:40px; }
  .footer__grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .makeover__grid{ grid-template-columns:1fr; }
  .footer__grid{ grid-template-columns:1fr; gap:28px; }
  .plan{ padding:28px 24px; }
}

/* ============================================================
   Added by Claude Code build (Phase 1 wiring)
   ============================================================ */
/* Mobile nav drawer — shown when JS toggles .nav.is-open (<=880px) */
@media (max-width: 880px){
  .nav.is-open{ flex-wrap: wrap; }
  .nav.is-open .nav__links{
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 14px; width: 100%; order: 3; padding: 18px 0 4px;
  }
  .nav.is-open .nav__links a{ font-size: 18px; }
  .nav.is-open .nav__cta{ margin-top: 4px; }
}
/* Inline checkout error (shown below a CTA on failure; keeps user on-page) */
.cta-error{ color: var(--green); font-family: var(--mono); font-size: 13px;
  letter-spacing: .02em; margin: 10px 0 0; min-height: 1em; }
.section-green .cta-error, .section-dark .cta-error{ color: var(--on-dark, #F4EFE5); }
