/* =====================================================================
   Sam ADHD Coach — 6-Week Program page
   ---------------------------------------------------------------------
   ALL COLORS ARE VARIABLES. Change them in :root below.
   ===================================================================== */

:root {
  /* --- Brand (fixed) --- */
  --bg:            #f4ede1;   /* page background */
  --text:         #313131;   /* body text */

  /* --- Accent: deep plum / mulberry (premium / calm). Change freely. --- */
  --accent:        #6f3a5b;
  --accent-deep:   #4d2840;   /* hover / headings on accent */
  --accent-tint:   #ead8e1;   /* soft fill behind accent areas */

  /* --- Founding / scarcity warm pop. Used ONLY for founding offer. --- */
  --amber:         #c2853a;
  --amber-deep:    #9c6826;
  --amber-tint:    #f0e2cb;

  /* --- Neutral surfaces derived from the cream --- */
  --surface:       #faf5ec;   /* lifted cards */
  --surface-alt:   #efe6d6;   /* alternating bands */
  --muted:         #6f6a61;   /* secondary text */
  --line:          rgba(49, 49, 49, 0.14);  /* hairlines */
  --line-soft:     rgba(49, 49, 49, 0.08);

  /* --- Type --- */
  --font: "Nunito", system-ui, -apple-system, sans-serif;

  /* --- Layout --- */
  --maxw: 1080px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 16px;
}

/* ───────────────────────── RESET ───────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  font-weight: 500;
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p { margin: 0; }
a { color: inherit; text-decoration: none; }
ol, ul { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }

/* ───────────────────────── TYPE SCALE ───────────────────────── */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow--accent { color: var(--accent); }

.h2 {
  font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.h2--invert { color: var(--bg); max-width: 22ch; }

.ink { color: var(--accent); }

/* ───────────────────────── LAYOUT PRIMITIVES ───────────────────────── */
.section,
.band {
  padding-block: clamp(56px, 9vw, 110px);
  padding-inline: var(--gutter);
}
.section { max-width: var(--maxw); margin-inline: auto; }
.band { background: var(--surface-alt); }
.band > * { max-width: var(--maxw); margin-inline: auto; }
.band--alt { background: var(--surface); }

.section__head { margin-bottom: clamp(36px, 5vw, 56px); }
.section__head .eyebrow { margin-bottom: 14px; }

/* ───────────────────────── NAV ───────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 14px var(--gutter);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 900; letter-spacing: -0.02em; font-size: 1.05rem;
  white-space: nowrap; margin-right: auto;
}
.nav__brand-light { font-weight: 600; color: var(--muted); }
.nav__brand-mark {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 3px var(--bg), 0 0 0 1.5px var(--accent);
}
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a {
  font-weight: 700; font-size: 0.92rem; color: var(--muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--accent); }

/* ───────────────────────── BUTTONS ───────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 24px; border-radius: 999px;
  background: var(--accent); color: var(--bg);
  font-weight: 800; font-size: 0.95rem; letter-spacing: 0.01em;
  border: 1.5px solid var(--accent);
  transition: transform 0.18s ease, background 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--accent); }
.btn--ghost:hover { background: var(--accent-tint); color: var(--accent-deep); transform: translateY(-2px); }
.btn--small { padding: 9px 18px; font-size: 0.85rem; margin-left: 0; }

/* ───────────────────────── HERO ───────────────────────── */
.hero {
  max-width: var(--maxw); margin-inline: auto;
  padding: clamp(64px, 11vw, 130px) var(--gutter) clamp(40px, 7vw, 80px);
}
.hero .eyebrow { margin-bottom: 22px; }
.hero__title {
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  max-width: 16ch;
}
.hero__lead {
  max-width: 46ch; font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--text);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__note { margin-top: 22px; font-size: 0.95rem; color: var(--muted); }

/* ───────────────────────── THE LOOP ───────────────────────── */
.loop {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.loop__head .eyebrow { margin-bottom: 14px; }
.loop__body { display: grid; gap: 20px; font-size: 1.12rem; }

/* ───────────────────────── PRINCIPLES ───────────────────────── */
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.principle {
  padding: 30px 28px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--surface);
}
.principle__num {
  display: block; font-weight: 900; font-size: 0.95rem;
  color: var(--accent); letter-spacing: 0.1em; margin-bottom: 18px;
}
.principle h3 { font-weight: 800; font-size: 1.25rem; margin-bottom: 10px; letter-spacing: -0.01em; }
.principle p { color: var(--muted); font-size: 1rem; }

/* ───────────────────────── STAGES ───────────────────────── */
.stages { display: grid; gap: 4px; max-width: 760px; margin-bottom: clamp(48px, 7vw, 80px); }
.stage {
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.stage:last-child { border-bottom: 1px solid var(--line); }
.stage__num {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent-tint); color: var(--accent-deep);
  font-weight: 900; font-size: 1.2rem;
}
.stage h3 { font-weight: 800; font-size: 1.3rem; margin-bottom: 8px; letter-spacing: -0.01em; }
.stage p { color: var(--muted); }

/* ───────────────────────── SIGNATURE: HANDOFF GRAPH ───────────────────────── */
.handoff {
  margin: 0; padding: clamp(28px, 4vw, 44px);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
}
.handoff__cap {
  max-width: 52ch; margin-bottom: 24px; color: var(--muted); font-size: 1.02rem;
}
.handoff__cap-title {
  display: block; color: var(--text); font-weight: 800;
  font-size: 1.15rem; letter-spacing: -0.01em; margin-bottom: 6px;
}
.handoff__svg { width: 100%; height: auto; overflow: visible; }

.hx-axis { stroke: var(--line); stroke-width: 1.5; }
.hx-grid line { stroke: var(--line-soft); stroke-width: 1; }
.hx-grid text {
  fill: var(--muted); font-family: var(--font); font-weight: 800;
  font-size: 15px; text-anchor: middle; letter-spacing: 0.04em;
}

.h-area { opacity: 0; }
.h-area--me  { fill: var(--accent); opacity: 0.10; }
.h-area--you { fill: var(--amber);  opacity: 0.12; }

.h-line { fill: none; stroke-width: 4; stroke-linecap: round; }
.h-line--me  { stroke: var(--accent); }
.h-line--you { stroke: var(--amber); }

.h-dot--me  { fill: var(--accent); stroke: var(--bg); stroke-width: 3; }
.h-dot--you { fill: var(--amber);  stroke: var(--bg); stroke-width: 3; }

.h-label { font-family: var(--font); font-weight: 800; font-size: 16px; }
.h-label--me  { fill: var(--accent-deep); }
.h-label--you { fill: var(--amber-deep); text-anchor: end; }

/* draw-in animation (added via JS class) */
.h-line { stroke-dasharray: var(--len, 1200); stroke-dashoffset: var(--len, 1200); }
.handoff.is-drawn .h-line { animation: draw 1.4s cubic-bezier(0.5, 0, 0.2, 1) forwards; }
.handoff.is-drawn .h-line--you { animation-delay: 0.25s; }
.handoff.is-drawn .h-area { animation: fadeArea 1s ease 0.9s forwards; }
.handoff.is-drawn .h-dot { animation: pop 0.4s ease 1.4s forwards; transform-box: fill-box; transform-origin: center; }
.h-dot { opacity: 0; }

@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadeArea { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
.h-area--me.kept  { opacity: 0.10; }
.h-area--you.kept { opacity: 0.12; }

/* ───────────────────────── OUTCOMES ───────────────────────── */
.outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  padding: 30px 28px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(49,49,49,0.07); }
.card h3 { font-weight: 800; font-size: 1.18rem; margin-bottom: 10px; letter-spacing: -0.01em; }
.card p { color: var(--muted); font-size: 1rem; }

/* ───────────────────────── SUPPORT ───────────────────────── */
.support { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.support__head .eyebrow { margin-bottom: 14px; }
.support__lead { margin-top: 20px; color: var(--muted); font-size: 1.08rem; max-width: 42ch; }
.support__modes { display: grid; gap: 2px; }
.support__modes li {
  display: flex; align-items: baseline; gap: 14px;
  padding: 16px 4px; border-bottom: 1px solid var(--line);
  font-weight: 700; font-size: 1.1rem;
}
.support__modes li em { margin-left: auto; font-style: normal; font-weight: 600; color: var(--muted); font-size: 0.95rem; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex: none; transform: translateY(-2px); }

/* ───────────────────────── CALLOUT (fall behind) ───────────────────────── */
.callout {
  padding: clamp(34px, 5vw, 56px); border-radius: var(--radius);
  background: var(--accent-tint); border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
}
.callout .eyebrow { margin-bottom: 14px; }
.callout .h2 { margin-bottom: 18px; }
.callout p { max-width: 60ch; color: var(--text); font-size: 1.1rem; }

/* ───────────────────────── WHAT IT'S NOT ───────────────────────── */
.nots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.not { padding-top: 22px; border-top: 2px solid var(--text); }
.not h3 { font-weight: 800; font-size: 1.15rem; margin-bottom: 10px; letter-spacing: -0.01em; }
.not p { color: var(--muted); font-size: 1rem; }

/* ───────────────────────── MEET YOUR COACH ───────────────────────── */
.coach {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 72px); align-items: center;
}
.coach__photo {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, var(--accent-tint), var(--surface));
  border: 1px solid var(--line); aspect-ratio: 13 / 14;
}
.coach__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.coach__body .eyebrow { margin-bottom: 12px; }
.coach__body .h2 { margin-bottom: 20px; }
.coach__body > p { margin-bottom: 16px; color: var(--text); }
.coach__body strong { font-weight: 800; }
.coach__lead { font-weight: 800; font-size: 1.15rem; margin-top: 26px; margin-bottom: 14px; }

.checks { display: grid; gap: 10px; margin-bottom: 22px; }
.checks li { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 1.08rem; }
.check {
  position: relative; flex: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent-tint);
  border: 1.5px solid color-mix(in srgb, var(--accent) 45%, transparent);
}
.check::after {
  content: ""; position: absolute; left: 8px; top: 4px;
  width: 5px; height: 10px;
  border: solid var(--accent); border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.coach__note {
  margin-top: 8px; padding-left: 18px;
  border-left: 3px solid var(--accent);
  color: var(--muted); font-style: italic; font-size: 0.98rem;
}


.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.plan {
  display: flex; flex-direction: column;
  padding: 34px 32px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
}
.plan--founding { background: var(--amber-tint); border-color: color-mix(in srgb, var(--amber) 40%, transparent); }
.plan__tag {
  font-weight: 800; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
}
.plan__tag--founding { color: var(--amber-deep); }
.plan__rows { display: grid; gap: 2px; margin-bottom: 28px; }
.plan__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.plan__row span { color: var(--muted); font-weight: 600; font-size: 0.98rem; }
.plan__row strong { font-weight: 900; font-size: 1.6rem; letter-spacing: -0.02em; }
.plan__cta { margin-top: auto; align-self: flex-start; }
.plan--founding .plan__cta { background: var(--amber); border-color: var(--amber); }
.plan--founding .plan__cta:hover { background: var(--amber-deep); border-color: var(--amber-deep); }

.pricing__note { margin-top: 22px; color: var(--muted); font-size: 0.98rem; max-width: 60ch; }

.facts { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.fact {
  flex: 1 1 200px; padding: 20px 22px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--line);
}
.fact span { display: block; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.fact strong { font-weight: 800; font-size: 1.05rem; }

/* ───────────────────────── PERSONAL NOTE (coach) ───────────────────────── */
.pnote {
  max-width: 760px;
  margin-top: clamp(44px, 6vw, 68px);
  padding: clamp(28px, 4vw, 46px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
}
.pnote .eyebrow { margin-bottom: 18px; }
.pnote p { font-size: 1.08rem; color: var(--text); max-width: 64ch; }
.pnote p + p { margin-top: 16px; }

.pnote__sign {
  margin-top: 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.4;
}
.pnote__sign span {
  display: block;
  margin-top: 6px;
  color: var(--accent);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.01em;
}

/* ───────────────────────── START ───────────────────────── */
.start { background: var(--accent-deep); color: var(--bg); padding-inline: var(--gutter); }
.start__inner { max-width: var(--maxw); margin-inline: auto; padding-block: clamp(64px, 9vw, 110px); }
.start .eyebrow { color: color-mix(in srgb, var(--bg) 75%, var(--accent)); margin-bottom: 16px; }
.start__lead { margin-top: 18px; color: color-mix(in srgb, var(--bg) 82%, transparent); font-size: 1.1rem; }
.start__contacts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.contact {
  padding: 24px; border-radius: 12px;
  background: color-mix(in srgb, var(--bg) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--bg) 22%, transparent);
  transition: background 0.2s, transform 0.2s;
}
.contact:hover { background: color-mix(in srgb, var(--bg) 16%, transparent); transform: translateY(-3px); }
.contact__label { display: block; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: color-mix(in srgb, var(--bg) 65%, var(--accent)); margin-bottom: 8px; }
.contact__value { font-weight: 800; font-size: 1.05rem; }

/* ───────────────────────── FOOTER ───────────────────────── */
.footer {
  max-width: var(--maxw); margin-inline: auto;
  padding: 40px var(--gutter); display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
}
.footer__brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; }
.footer__meta { color: var(--muted); font-size: 0.9rem; }

/* ───────────────────────── REVEAL ANIMATION ───────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ───────────────────────── RESPONSIVE ───────────────────────── */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .loop, .support { grid-template-columns: 1fr; }
  .coach { grid-template-columns: 1fr; }
  .coach__photo { max-width: 360px; }
  .principles, .outcomes, .nots { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .start__contacts { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .h-label { font-size: 13px; }
  .hx-grid text { font-size: 13px; }
}

/* ───────────────────────── ACCESSIBILITY ───────────────────────── */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.start :focus-visible { outline-color: var(--bg); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .h-line { stroke-dashoffset: 0; }
  .h-area, .h-dot { opacity: 1; }
  .h-area--me { opacity: 0.10; }
  .h-area--you { opacity: 0.12; }
}

/* ───────────────────────── WEEK BY WEEK ───────────────────────── */
.plan-toggle { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }

.plan-toggle__btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 24px; border-radius: 999px;
  background: var(--accent); color: var(--bg);
  font-family: var(--font); font-weight: 800; font-size: 0.98rem;
  border: 1.5px solid var(--accent); cursor: pointer;
  transition: background 0.2s, transform 0.18s ease;
}
.plan-toggle__btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-2px); }
.plan-toggle__icon {
  width: 9px; height: 9px; margin-top: -4px;
  border-right: 2.5px solid currentColor; border-bottom: 2.5px solid currentColor;
  transform: rotate(45deg); transition: transform 0.3s ease;
}
.plan-toggle__btn[aria-expanded="true"] .plan-toggle__icon { transform: rotate(-135deg); margin-top: 3px; }
.plan-toggle__hint { color: var(--muted); font-size: 0.92rem; max-width: 52ch; }

/* collapsible panel (smooth height via grid-rows trick) */
.weekly {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s ease;
}
.weekly.is-open { grid-template-rows: 1fr; }
.weekly__inner { min-height: 0; overflow: hidden; }

.weeks { max-width: 780px; padding-top: 36px; }
.weekrow {
  position: relative;
  display: grid; grid-template-columns: 48px 1fr; gap: 22px;
  padding-bottom: 28px;
}
.weekrow:not(:last-child)::before {
  content: ""; position: absolute; left: 23px; top: 46px; bottom: 0;
  width: 2px; background: var(--line);
}
.weekrow__num {
  z-index: 1;
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent-tint); color: var(--accent-deep);
  font-weight: 900; font-size: 0.95rem; letter-spacing: 0.02em;
}
.weekrow__body h3 { font-weight: 800; font-size: 1.18rem; margin-bottom: 7px; letter-spacing: -0.01em; }
.weekrow__body p { color: var(--muted); font-size: 1rem; }

/* ───────────────────────── THE ONE THING ───────────────────────── */
.onething__lead {
  font-size: clamp(1.1rem, 1.9vw, 1.3rem);
  max-width: 56ch;
  margin-bottom: clamp(24px, 3.5vw, 36px);
}

.chips {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.chips li {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  font-weight: 700; font-size: 0.95rem;
}
.chips li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex: none;
}

.onething__cols {
  display: grid; grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(28px, 4vw, 52px); align-items: start;
}
.onething__main p { font-size: 1.12rem; max-width: 60ch; }
.onething__main strong { font-weight: 800; color: var(--accent); }

.focus { margin-top: 34px; }
.focus__dots { display: flex; align-items: center; gap: 18px; padding: 4px 0; }
.focus__dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--accent) 38%, transparent);
  background: transparent; flex: none;
}
.focus__dot--on {
  width: 22px; height: 22px;
  background: var(--accent); border-color: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-tint);
}
.focus__cap { display: block; margin-top: 18px; color: var(--muted); font-size: 0.9rem; }

.onething__note {
  padding: clamp(26px, 4vw, 36px); border-radius: var(--radius);
  background: var(--accent-tint);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
}
.onething__note h3 { font-weight: 800; font-size: 1.2rem; margin-bottom: 12px; letter-spacing: -0.01em; }
.onething__note p { color: var(--text); }

@media (max-width: 860px) {
  .onething__cols { grid-template-columns: 1fr; }
}


/* ====== Results: proof bar + testimonials carousel ====== */
.proofbar { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: clamp(36px, 5vw, 52px); }
.proofbar .stat { flex: 1 1 180px; padding: 20px 22px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); }
.proofbar .stat strong { display: block; font-weight: 900; font-size: 1.7rem; letter-spacing: -0.02em; }
.proofbar .stat span { color: var(--muted); font-size: 0.92rem; font-weight: 700; }

.tcarousel { position: relative; }
.tcarousel__viewport {
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
}
.tcarousel__viewport::-webkit-scrollbar { display: none; }

.tcarousel__track {
  display: flex; gap: 22px; list-style: none; margin: 0;
  padding-inline: 0;
  padding-block: 6px;
}
.tcarousel__item { flex: 0 0 100%; scroll-snap-align: center; }

.tcarousel__item .tcard {
  width: 100%; max-width: 640px; margin-inline: auto;
  height: 100%; display: flex; flex-direction: column; justify-content: center;
  padding: 30px 28px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
}
.tcard__stars { color: var(--amber); letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 14px; }
.tcard__quote { margin: 0 0 20px; font-size: 1.05rem; line-height: 1.6; color: var(--text); }
.tcard__who { display: flex; align-items: center; gap: 10px; }
.tcard__name { font-weight: 800; font-size: 0.98rem; }
.tcard__loc { color: var(--muted); font-size: 0.9rem; font-weight: 700; }

.tcarousel__controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 26px; }
.tcarousel__btn {
  width: 42px; height: 42px; border-radius: 999px; flex: none;
  display: grid; place-items: center; cursor: pointer;
  background: transparent; color: var(--accent);
  border: 1.5px solid color-mix(in srgb, var(--accent) 45%, transparent);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.tcarousel__btn:hover { background: var(--accent-tint); border-color: var(--accent); transform: translateY(-2px); }
.tcarousel__btn svg { width: 18px; height: 18px; }

.tcarousel__dots { display: flex; align-items: center; gap: 10px; }
.tcarousel__dot {
  width: 9px; height: 9px; border-radius: 999px; cursor: pointer; padding: 0; border: none;
  background: color-mix(in srgb, var(--accent) 24%, transparent);
  transition: background .2s ease, transform .2s ease;
}
.tcarousel__dot:hover { background: color-mix(in srgb, var(--accent) 45%, transparent); }
.tcarousel__dot.is-active { background: var(--accent); transform: scale(1.25); }

@media (max-width: 560px) {
  .tcarousel__track { gap: 14px; }
  .tcarousel__item { flex: 0 0 90%; }
  .tcarousel__item .tcard { padding: 26px 22px; }
  .tcard__quote { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .tcarousel__viewport { scroll-behavior: auto; }
}