/* ============================================================
   Campus Carats — Qoves-faithful landing page
   Mirrors qoves.com's structure & visual language:
   floating pill nav, full-bleed atmospheric hero, thin oversized
   two-tone type, horizontal step timelines, tabbed card grids with
   citations, tilted device mockup, framed grid lines.
   Palette is Campus Carats (warm cream / chocolate / sage / rose).
   Recolor everything from the :root tokens below.
   ============================================================ */

/* ---------- 1. TOKENS ---------- */
:root {
  --bg-primary:   #F7F2EB;
  --bg-secondary: #FBF8F3;
  --bg-tertiary:  #EFE7DA;

  --text-primary:   #3D2E26;
  --text-secondary: #75665C;
  --text-muted:     #75665C;

  --accent-sage:      #A8B5A0;
  --accent-sage-deep: #5F755B;
  --accent-sage-tint: #E8EFE6;
  --accent-gold:      #C9A66B;

  --cta-bg:    #D4A5A5;
  --cta-text:  #3D2E26;
  --cta-hover: #C08D8D;

  --hairline:        #E6DDD0;
  --hairline-soft:   #EFE8DD;
  --hairline-strong: #A8B5A0;

  --container: 1180px;
  --gutter: 40px;
  --nav-h: 76px;
  --radius-card: 18px;
  --radius-img: 14px;

  --font-head: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-mono: 'Inter', ui-monospace, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);   /* gentle decel for natural reveals */

  /* warm atmospheric hero wash (the qoves "moody gradient", in brand tones) */
  --hero-wash:
    radial-gradient(55% 70% at 78% 22%, rgba(168,181,160,0.40), transparent 62%),
    radial-gradient(48% 60% at 16% 72%, rgba(212,165,165,0.34), transparent 60%),
    radial-gradient(70% 80% at 50% 116%, rgba(201,166,107,0.20), transparent 60%),
    linear-gradient(165deg, #FCFAF6 0%, #F1E9DC 60%, #ECE2D2 100%);
  --band-wash: linear-gradient(168deg, var(--bg-secondary), var(--accent-sage-tint));
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--accent-sage-deep); outline-offset: 3px; border-radius: 4px; }

/* ---------- 3. LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 96px 0; position: relative; }
section[id], #top { scroll-margin-top: 92px; }   /* anchor offset for the fixed nav */
.section--band { background: var(--bg-secondary); }
.center { text-align: center; }
.measure { max-width: 640px; margin-left: auto; margin-right: auto; }

.section > .container, .hero__inner, .nav__inner { position: relative; z-index: 1; }

.section-head { margin-bottom: 64px; }
.section-head.center .eyebrow { margin-left: auto; margin-right: auto; }
.section-head .h2 { margin-top: 6px; }
.section-head p { margin-top: 22px; }

/* ---------- 4. TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--text-primary); font-weight: 400; }

.h1 { font-weight: 300; font-size: clamp(40px, 5.2vw, 72px); line-height: 1.0; letter-spacing: -0.035em; }
.h2 { font-weight: 300; font-size: clamp(24px, 4.4vw, 54px); line-height: 1.07; letter-spacing: -0.028em; }
.h3 { font-weight: 500; font-size: clamp(18px, 2.3vw, 22px); line-height: 1.3; letter-spacing: -0.01em; }

/* two-tone: muted colour for the secondary line OR inline continuation (the qoves move) */
.tt-2, .soft { color: var(--text-secondary); }
.tt-2 { display: block; }
.sage { color: var(--accent-sage-deep); }

.body-lg { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.6; color: var(--text-secondary); }
.body { font-size: 16px; line-height: 1.62; }
.muted { color: var(--text-secondary); }

/* eyebrow — tiny uppercase tracked label in a hairline pill */
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 600;
  font-size: 11px; line-height: 1; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-secondary); padding: 8px 15px; border: 1px solid var(--hairline);
  border-radius: 999px; background: color-mix(in srgb, var(--bg-secondary) 60%, transparent);
}
.eyebrow--plain { border: none; padding: 0 0 0 2px; background: none; color: var(--accent-sage-deep); }
.eyebrow--gold { color: var(--accent-gold); border-color: color-mix(in srgb, var(--accent-gold) 40%, var(--hairline)); }

/* ---------- 5. BUTTONS (pills) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  padding: 15px 30px; border-radius: 999px;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--cta-bg); color: var(--cta-text); box-shadow: 0 6px 20px rgba(212,165,165,.32); }
.btn--primary:hover { background: var(--cta-hover); box-shadow: 0 8px 26px rgba(192,141,141,.4); }
.btn--ghost {
  background: color-mix(in srgb, var(--bg-primary) 55%, transparent); color: var(--text-primary);
  border: 1px solid var(--hairline); backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--accent-sage); background: color-mix(in srgb, var(--bg-secondary) 80%, transparent); }
.btn--lg { padding: 17px 36px; font-size: 16px; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- 6. FLOATING PILL NAV ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 14px 0; transition: padding .3s var(--ease); }
.nav__inner {
  max-width: var(--container); margin: 0 auto; padding: 12px 14px 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  border-radius: 999px; border: 1px solid transparent;
  transition: max-width .4s var(--ease), background .3s, box-shadow .3s, border-color .3s, color .3s, border-radius .35s var(--ease-out);
}
.nav.is-scrolled { padding: 10px 0; }
.nav.is-scrolled .nav__inner {
  max-width: 1000px; background: rgba(61,46,38,0.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 44px rgba(61,46,38,0.20); border-color: rgba(255,255,255,0.06); color: var(--bg-primary);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark { width: 28px; height: 28px; color: currentColor; }
.brand__mark img { width: 100%; height: 100%; object-fit: contain; transition: filter .35s var(--ease); }
.brand__name { font-family: var(--font-serif); font-weight: 600; font-size: 21px; letter-spacing: 0.13em; text-transform: uppercase; color: currentColor; line-height: 1; white-space: nowrap; }
.nav.is-scrolled .brand__mark { color: var(--bg-primary); }
.nav.is-scrolled .brand__mark img { filter: brightness(0) invert(1); }   /* diamond → white inside the dark pill */
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: 14px; color: currentColor; opacity: .82; transition: opacity .2s; }
.nav.is-scrolled .nav__links a { opacity: .85; }
.nav__links a:hover { opacity: 1; }
.menu { display: contents; }
.nav__right { display: flex; align-items: center; gap: 18px; }
.nav .btn { padding: 11px 22px; font-size: 14px; box-shadow: none; }
.nav__toggle { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; color: currentColor; border-radius: 50%; transition: transform .35s var(--ease-out), background-color .3s ease; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content:""; display:block; width: 20px; height: 1.5px; background: currentColor; position: relative; }
.nav__toggle span { transition: background-color .12s ease .12s; }
.nav__toggle span::before { position: absolute; top: -6px; transition: top .16s ease .16s, transform .16s var(--ease-out); }
.nav__toggle span::after { position: absolute; top: 6px; transition: top .16s ease .16s, transform .16s var(--ease-out); }
/* Open: outer lines glide to the middle, THEN rotate into an X, while the whole
   button spins 180° and gains a soft chip so it reads as a close button.
   Closing runs the same dance in reverse (the delays swap automatically). */
.nav.is-open .nav__toggle { transform: rotate(180deg); background-color: rgba(255,255,255,0.14); }
.nav.is-open .nav__toggle span { background-color: transparent; }
.nav.is-open .nav__toggle span::before { top: 0; transform: rotate(45deg); transition: top .16s ease, transform .16s var(--ease-out) .16s; }
.nav.is-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); transition: top .16s ease, transform .16s var(--ease-out) .16s; }

/* ---------- 7. HERO (full-bleed video + left cream fade, qoves-style) ---------- */
.hero { position: relative; min-height: 90vh; display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 52px) 0 56px; background: var(--bg-tertiary); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; background: url('assets/hero-poster.jpg') center 40% / cover no-repeat; }
.hero__video { position: absolute; top: 0; left: 0; width: 138%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }
.hero__fade { position: absolute; inset: 0; pointer-events: none; background:
  linear-gradient(90deg, var(--bg-primary) 0%, var(--bg-primary) 30%, rgba(247,242,235,0.88) 45%, rgba(247,242,235,0.32) 58%, rgba(247,242,235,0) 70%),
  linear-gradient(0deg, rgba(247,242,235,0.5) 0%, rgba(247,242,235,0) 26%); }
.hero__inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); width: 100%; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.hero__copy { max-width: 38rem; }
.hero__eyebrow { font-size: 14px; color: var(--text-secondary); margin-bottom: 26px; display: flex; align-items: center; gap: 10px; }
.hero__eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-sage-deep); }
.hero .h1 { max-width: 16ch; }
.hero__sub { margin: 24px 0 28px; max-width: 48ch; font-size: clamp(15px,1.5vw,19px); color: var(--text-secondary); line-height: 1.55; }
.hero__sub-short { display: none; }
.hero__cta { margin-bottom: 8px; }

/* 3-up value strip with divider rules (qoves hero bottom) */
.hero__strip { margin-top: 64px; padding-top: 30px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); max-width: 760px; gap: 0; border-top: 1px solid var(--hairline); }
.vstat { padding: 4px 28px; border-left: 1px solid var(--hairline); }
.vstat:first-child { border-left: none; padding-left: 0; }
.vstat b { display: block; font-family: var(--font-head); font-weight: 500; font-size: 16px; color: var(--text-primary); letter-spacing: -0.01em; }
.vstat span { display: block; font-size: 13.5px; color: var(--text-secondary); margin-top: 5px; line-height: 1.4; }

/* ---------- 8. CHAPTERS STRIP — infinite scrolling marquee (qoves "As Seen In" analogue) ---------- */
.chapters-strip { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: var(--bg-secondary); padding: 22px 0; position: relative; z-index: 1; }
.chapters-strip .label { display: block; text-align: center; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 14px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 60s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.mono { flex: none; padding: 0 30px; font-family: var(--font-serif); font-size: 27px; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.05em; opacity: .85; transition: color .2s, opacity .2s; white-space: nowrap; cursor: default; }
.mono:hover { color: var(--accent-sage-deep); opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- 9. OPERATIONAL PROOF ---------- */
.proof-band { padding: 82px 0; }
.proof-head { display: grid; grid-template-columns: .7fr 1.3fr; gap: 64px; align-items: start; margin-bottom: 48px; }
.proof-head .eyebrow { justify-self: start; }
.proof-head .h2 { max-width: 760px; }
.proof-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.proof-item { padding: 26px 24px 28px; border-left: 1px solid var(--hairline); }
.proof-item:first-child { border-left: 0; padding-left: 0; }
.proof-item > span { display: block; font-size: 10px; letter-spacing: .16em; color: var(--accent-sage-deep); margin-bottom: 18px; }
.proof-item h3 { font-size: 16px; font-weight: 600; }
.proof-item p { margin-top: 8px; font-size: 14px; line-height: 1.55; color: var(--text-secondary); }

/* ---------- 10. ALTERNATING BLOCK + RENDER CARDS ---------- */
.alt { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.alt--rev .alt__copy { order: 2; }
.alt__copy .eyebrow { margin-bottom: 22px; }
.alt__copy .h2 { margin-bottom: 22px; }
.numlist { margin-top: 30px; display: grid; gap: 2px; }
.numlist li { display: flex; gap: 16px; padding: 14px 0; border-top: 1px solid var(--hairline); font-size: 15.5px; color: var(--text-primary); }
.numlist li:first-child { border-top: none; }
.numlist .n { font-family: var(--font-mono); font-size: 12px; color: var(--text-secondary); padding-top: 3px; flex: none; }
.numlist .n::before { content: "["; } .numlist .n::after { content: "]"; }

.render-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; transform: translate3d(0, var(--py, 0px), 0); will-change: transform; }

/* ---------- 10. THE NUMBERS — one stat row (swipeable on mobile) ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.rcard { background: var(--bg-secondary); border: 1px solid var(--hairline); border-radius: var(--radius-card); padding: 30px; display: flex; flex-direction: column; min-height: 210px; transition: border-color .2s, transform .2s; }
.rcard:hover { border-color: var(--accent-sage); transform: translateY(-3px); }
.rcard .rstat { font-family: var(--font-head); font-weight: 300; font-size: clamp(30px,3vw,40px); letter-spacing: -0.02em; color: var(--text-primary); }
.rcard h3 { font-weight: 500; font-size: 16px; margin: 14px 0 8px; }
.rcard p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.5; }

/* ---------- 11. HORIZONTAL STEP TIMELINES (old way / new way) ---------- */
.timeline { border-radius: var(--radius-card); border: 1px solid var(--hairline); padding: 32px 34px; margin-bottom: 20px; }
.timeline--old { background: var(--bg-secondary); }
.timeline--new { background: linear-gradient(135deg, var(--bg-secondary), var(--accent-sage-tint)); border-color: var(--accent-sage); }
.timeline__grid { display: grid; grid-template-columns: 168px repeat(3, 1fr); gap: 0; align-items: start; }
.timeline__grid--three { grid-template-columns: 168px repeat(3, 1fr); }
.timeline__label { font-family: var(--font-head); font-weight: 400; font-size: clamp(18px,2vw,24px); color: var(--text-primary); padding-right: 20px; align-self: center; }
.timeline--old .timeline__label { color: var(--text-secondary); }
.tstep { position: relative; padding: 0 14px; }
.tstep__node { width: 16px; height: 16px; border-radius: 50%; background: var(--bg-primary); border: 1.5px solid var(--text-muted); position: relative; z-index: 1; margin-bottom: 22px; }
.timeline--new .tstep__node { border-color: var(--accent-sage-deep); background: var(--accent-sage-tint); }
.tstep:not(:last-child) .tstep__node::after { content: ""; position: absolute; top: 50%; left: 16px; width: calc(100% + 28px - 16px); height: 1px; background: var(--hairline); }
.timeline--new .tstep:not(:last-child) .tstep__node::after { background: var(--accent-sage); }
.tstep .stp { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 6px; }
.tstep .txt { font-size: 14.5px; color: var(--text-primary); line-height: 1.35; }
.timeline--old .tstep .txt { color: var(--text-secondary); }
/* collapsed "old way" — label + one line, no step circles */
.timeline__grid--flat { grid-template-columns: 168px 1fr; align-items: center; }
.timeline__flat { font-size: 15px; color: var(--text-secondary); line-height: 1.5; }

.operations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.operations-grid > div { padding: 24px; border: 1px solid var(--hairline); border-radius: 14px; background: var(--bg-secondary); }
.operations-grid span { display: block; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-sage-deep); }
.operations-grid p { margin-top: 10px; font-size: 14.5px; line-height: 1.55; color: var(--text-secondary); }

/* ---------- 12. FOUNDER QUOTE CARD ---------- */
.founder__solo { max-width: 720px; margin: 0 auto; }
.qcard .glyph { font-family: var(--font-serif); font-style: italic; font-size: 60px; line-height: .3; color: var(--accent-sage); }
.qcard blockquote { font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: clamp(24px,3.2vw,34px); line-height: 1.32; color: var(--text-primary); margin: 18px 0 26px; }
.qcard .who { display: flex; align-items: center; gap: 14px; }
.avatar { flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--bg-tertiary); color: var(--text-primary); font-family: var(--font-serif); font-weight: 600; border: 1px solid var(--hairline); overflow: hidden; }
.avatar--56 { width: 54px; height: 54px; font-size: 18px; }
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.qcard .who .nm { font-weight: 600; font-size: 14px; color: var(--text-primary); }
.qcard .who .cr { font-size: 13px; color: var(--text-secondary); margin-top: 3px; }

/* ---------- 13. DROP-PAGE DEVICE MOCKUP ---------- */
.mock { border-radius: 16px; border: 1px solid var(--hairline); background: var(--bg-secondary); box-shadow: 0 30px 80px rgba(61,46,38,.16); overflow: hidden; transform: perspective(1400px) rotateY(-9deg) translate3d(0, var(--py, 0px), 0); transform-origin: left center; will-change: transform; }
.mock__bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--hairline); background: var(--bg-primary); }
.mock__bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--hairline); display: block; }
.mock__bar .url { margin-left: 12px; font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); }
.mock__body { padding: 26px; }
.mock__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mock__chapter { font-family: var(--font-serif); font-weight: 600; font-size: 19px; color: var(--text-primary); }
.mock__live { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-sage-deep); display: flex; align-items: center; gap: 6px; }
.mock__live::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-sage-deep); }
.mock__render { aspect-ratio: 16/9; border-radius: 12px; background: linear-gradient(150deg, var(--accent-sage-tint), var(--bg-tertiary)); display: grid; place-items: center; margin-bottom: 20px; }
.mock__render .mk { width: 74px; color: var(--text-primary); }
.mock__row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 14px; }
.mock__row .k { font-size: 12px; color: var(--text-secondary); }
.mock__row .v { font-family: var(--font-head); font-weight: 300; font-size: 30px; color: var(--text-primary); letter-spacing: -.02em; }
.mock__bar2 { height: 8px; border-radius: 999px; background: var(--bg-tertiary); overflow: hidden; margin-bottom: 8px; }
.mock__bar2 i { display: block; height: 100%; width: 68%; border-radius: 999px; background: linear-gradient(90deg, var(--accent-sage), var(--accent-sage-deep)); }
.mock__cap { font-size: 11.5px; color: var(--text-muted); margin-bottom: 20px; }
.mock__btn { width: 100%; text-align: center; padding: 12px; border-radius: 999px; background: var(--cta-bg); color: var(--cta-text); font-family: var(--font-head); font-weight: 600; font-size: 14px; }

/* ---------- 14. FEATURE ROWS LIST ---------- */
.frows { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--hairline); }
.frow { display: flex; align-items: center; gap: 22px; padding: 22px 8px; border-bottom: 1px solid var(--hairline); transition: background .2s; }
.frow:hover { background: var(--bg-secondary); }
.frow__thumb { flex: none; width: 66px; height: 66px; border-radius: 12px; background: linear-gradient(150deg, var(--bg-tertiary), var(--accent-sage-tint)); display: grid; place-items: center; }
.frow__thumb .mk { width: 30px; color: var(--text-primary); }
.frow__txt h3 { font-weight: 500; font-size: 17px; }
.frow__txt p { font-size: 14.5px; color: var(--text-secondary); margin-top: 4px; }

/* ---------- 15. CALCULATOR ---------- */
.calc { max-width: 860px; margin: 0 auto; background: var(--bg-secondary); border: 1px solid var(--hairline); border-radius: var(--radius-card); padding: 50px; }
/* Fixed result column + reserved line heights: the payout text changes while the
   user is mid-drag on the slider — nothing here may resize, or the slider moves
   under their finger and the thumb remaps. */
.calc__top { display: grid; grid-template-columns: 1fr 250px; gap: 48px; align-items: center; }
.calc__result-label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 8px; }
.calc__result-num { font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: clamp(40px,8vw,72px); line-height: 1; color: var(--text-primary); min-width: 5.5ch; }
.calc__tier { font-size: 14px; color: var(--accent-sage-deep); margin-top: 12px; min-height: 3.4em; }
.calc__orders { font-size: 15px; color: var(--text-secondary); margin-bottom: 8px; }
.calc__orders b { color: var(--text-primary); font-size: 22px; font-weight: 600; }
.calc__slider { width: 100%; margin: 16px 0 10px; }
.calc__micro { font-size: 13px; color: var(--text-muted); }
.calc__cta { margin-top: 34px; text-align: center; }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 38px; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.tier-grid > div { padding: 22px 18px; text-align: center; border-left: 1px solid var(--hairline); }
.tier-grid > div:first-child { border-left: 0; }
.tier-grid span, .tier-grid small { display: block; font-size: 11px; letter-spacing: .08em; color: var(--text-secondary); }
.tier-grid b { display: block; margin: 8px 0 2px; font-family: var(--font-head); font-size: 27px; font-weight: 400; color: var(--text-primary); }
.calc__note { margin-top: 18px; text-align: center; font-size: 13px; color: var(--text-secondary); }
input[type=range].range { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 4px; background: linear-gradient(to right, var(--accent-sage) var(--fill,40%), var(--hairline) var(--fill,40%)); outline: none; }
input[type=range].range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--cta-bg); border: 3px solid var(--bg-secondary); box-shadow: 0 2px 10px rgba(61,46,38,.22); cursor: pointer; }
input[type=range].range::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: var(--cta-bg); border: 3px solid var(--bg-secondary); cursor: pointer; }

/* ---------- 16. COHORT ---------- */
.perks { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; max-width: 900px; margin: 0 auto 44px; }
.perk { text-align: center; padding: 0 10px; }
.perk__mk { display: block; width: 30px; height: 30px; margin: 0 auto 16px; color: var(--accent-sage-deep); }
/* the logo-mark SVG has no intrinsic size — always constrain it to its container */
.perk__mk img, .frow__thumb .mk img, .mock__render .mk img { width: 100%; height: 100%; object-fit: contain; display: block; }
.frow__thumb .mk, .mock__render .mk { display: block; }
.perk h3 { font-weight: 500; font-size: 17px; }
.perk p { font-size: 14.5px; color: var(--text-secondary); margin-top: 8px; }

/* ---------- 17. RISK ---------- */
.risk-list { max-width: 780px; margin: 0 auto; }
.risk-list li { display: flex; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--hairline); font-size: clamp(17px,2vw,20px); line-height: 1.5; font-weight: 300; }
.risk-list li:last-child { border-bottom: none; }
.risk-list .num { font-family: var(--font-serif); font-style: italic; font-size: 32px; color: var(--accent-sage-deep); line-height: 1; flex: none; width: 38px; }
.out-earn { max-width: 780px; margin: 34px auto 0; padding: 26px 28px; border-radius: 14px; background: var(--accent-sage-tint); border: 1px solid var(--accent-sage); }
.out-earn b { display: block; font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--text-primary); }
.out-earn p { margin-top: 8px; font-size: 14.5px; line-height: 1.6; color: var(--text-secondary); }
.disclosure { max-width: 780px; margin: 38px auto 0; padding: 24px 28px; border-radius: 14px; background: var(--bg-primary); border: 1px solid var(--hairline); font-size: 13.5px; line-height: 1.6; color: var(--text-secondary); }
.disclosure b { color: var(--text-primary); font-weight: 600; }
.disclosure summary { cursor: pointer; color: var(--text-primary); font-weight: 600; list-style-position: outside; }
.disclosure p { margin-top: 16px; }

/* ---------- 19. PRICING / OFFER CARD ---------- */
.offer { max-width: 560px; margin: 0 auto; background: var(--bg-secondary); border: 1px solid var(--hairline); border-radius: var(--radius-card); padding: 44px; text-align: center; box-shadow: 0 24px 70px rgba(61,46,38,.10); }
.offer__tag { display: inline-block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-gold); margin-bottom: 18px; }
.offer__price { font-family: var(--font-head); font-weight: 300; font-size: clamp(42px, 9vw, 64px); letter-spacing: -.03em; color: var(--text-primary); line-height: 1; }
.offer__price span { font-size: 17px; color: var(--text-secondary); font-weight: 400; }
.offer__sub { font-size: 15px; color: var(--text-secondary); margin: 12px 0 28px; }
.offer__list { text-align: left; max-width: 380px; margin: 0 auto 30px; display: grid; gap: 14px; }
.offer__list li { display: flex; gap: 12px; font-size: 15px; color: var(--text-primary); }
.offer__list .ck { color: var(--accent-sage-deep); flex: none; font-weight: 700; }
.offer__note { font-size: 12.5px; color: var(--text-muted); margin-top: 18px; }

/* ---------- 20. FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--bg-secondary); border: 1px solid var(--hairline); border-radius: 14px; transition: border-color .2s; }
.faq__item.is-open { border-color: var(--accent-sage); }
.faq__q { width: 100%; display: flex; justify-content: space-between; gap: 20px; align-items: baseline; padding: 24px 28px; text-align: left; font-family: var(--font-serif); font-style: italic; font-size: clamp(19px,2.3vw,23px); color: var(--text-primary); }
.faq__sign { font-family: var(--font-body); font-style: normal; font-size: 22px; color: var(--accent-sage-deep); flex: none; line-height: 1; transition: transform .25s; }
.faq__item.is-open .faq__sign { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq__a > div { padding: 0 28px 26px; font-size: 16px; line-height: 1.62; color: var(--text-primary); }

/* ---------- 21. FORM ---------- */
.apply-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.apply-title { margin-top: 14px; }
.apply-copy { margin-top: 20px; }
.founder-card { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding: 18px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.founder-card b, .founder-card span { display: block; }
.founder-card b { font-size: 14px; }
.founder-card span { margin-top: 3px; font-size: 13px; color: var(--text-secondary); }
.apply-facts { display: grid; gap: 10px; margin-top: 24px; }
.apply-facts li { position: relative; padding-left: 22px; font-size: 14.5px; color: var(--text-secondary); }
.apply-facts li::before { content: "\2713"; position: absolute; left: 0; color: var(--accent-sage-deep); font-weight: 700; }
.form { display: grid; gap: 28px; }
.field label { display: block; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 9px; }
.field input, .field select { width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--text-primary); background: transparent; border: none; border-bottom: 1px solid var(--hairline); padding: 11px 0; transition: border-color .2s; }
.field input::placeholder { color: var(--text-muted); }
.field input:focus, .field select:focus { outline: none; border-bottom: 2px solid var(--cta-bg); }
.field:focus-within label { color: var(--accent-sage-deep); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2375665C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 2px center; }
.form__help { font-size: 13px; color: var(--text-muted); margin-top: 14px; }
.form__error { font-size: 13.5px; color: #b9756b; margin-top: 12px; }
.form__help a { color: var(--accent-sage-deep); text-decoration: underline; text-underline-offset: 3px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-success { display: none; background: var(--bg-secondary); border: 1px solid var(--accent-sage); border-radius: var(--radius-card); padding: 44px; }
.form-success.is-visible { display: block; }
.form-success h3 { margin-bottom: 14px; }
.form-success p { color: var(--text-secondary); margin-bottom: 14px; }
.form.is-hidden { display: none; }

/* ---------- 23. FOOTER ---------- */
.footer { background: var(--bg-primary); border-top: 1px solid var(--hairline); padding: 72px 0 40px; position: relative; z-index: 1; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 52px; }
.footer__brand .brand { margin-bottom: 16px; color: var(--text-primary); }
.footer__brand p { font-size: 14px; color: var(--text-secondary); max-width: 26em; }
.footer__status { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 13px; color: var(--text-secondary); }
.footer__status::before { content:""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-sage-deep); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-sage) 30%, transparent); }
.footer__col h4 { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
.footer__col ul { display: grid; gap: 12px; }
.footer__col a { font-size: 14.5px; color: var(--text-secondary); transition: color .2s; }
.footer__col a:hover { color: var(--text-primary); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--hairline); }
.footer__bottom p { font-size: 13px; color: var(--text-muted); }

/* ---------- 24. REVEAL ----------
   Hidden-until-scrolled states only apply under html.js (set by an inline
   script in <head>) — if JS never runs, the page stays fully visible.
   :where() keeps the gate at ZERO extra specificity: these hiding rules must
   stay weaker than .reveal.is-in / .stagger.is-in, or nothing ever fades in. */
:where(html.js) .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }

/* staggered cascade — parent gets .stagger, children fade up in sequence */
:where(html.js) .stagger > * { opacity: 0; transform: translateY(16px); transition: opacity .55s var(--ease-out), transform .55s var(--ease-out); }
.stagger.is-in > * { opacity: 1; transform: none; }
.stagger.is-in > *:nth-child(1){ transition-delay: .03s; }
.stagger.is-in > *:nth-child(2){ transition-delay: .08s; }
.stagger.is-in > *:nth-child(3){ transition-delay: .13s; }
.stagger.is-in > *:nth-child(4){ transition-delay: .18s; }
.stagger.is-in > *:nth-child(5){ transition-delay: .23s; }
.stagger.is-in > *:nth-child(6){ transition-delay: .28s; }
.stagger.is-in > *:nth-child(7){ transition-delay: .33s; }
.stagger.is-in > *:nth-child(8){ transition-delay: .38s; }
.stagger.is-in > *:nth-child(9){ transition-delay: .43s; }

/* hero entrance — plays on LOAD (not scroll-triggered) so above-the-fold never sits blank */
@keyframes heroIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.hero__copy  { animation: heroIn .6s var(--ease-out) both; }
.hero__media { animation: heroIn 1s var(--ease-out) both; }
.hero__strip { animation: heroIn .6s var(--ease-out) .16s both; }

@keyframes navItem { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .nav.is-open .nav__links a, .nav.is-open .nav__right > * { animation: none !important; }
  .nav__toggle, .nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { transition: none !important; }
  .marquee__track { animation: none !important; }
  .marquee { overflow-x: auto; }
  .hero__copy, .hero__media, .hero__strip { animation: none !important; }
  .hero__video { display: none; }
  html { scroll-behavior: auto; }
  .mock, .render-pair { transform: none !important; }
}

/* ---------- 26. PHOTO INTEGRATION ---------- */
/* hero photo replaced by full-bleed hero video — see section 7 */
.photo-card { border-radius: var(--radius-img); overflow: hidden; border: 1px solid var(--hairline); background: var(--bg-secondary); }
.photo-card img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; display: block; object-position: center 50%; }
.photo-card--detail img { object-position: center 50%; }
.photo-card--worn img { object-position: center 48%; }
.photo-card figcaption { padding: 13px 15px; font-size: 13px; color: var(--text-secondary); border-top: 1px solid var(--hairline); }
.mock__render img { width: 100%; height: 100%; object-fit: cover; display: block; object-position: center 50%; }

/* ============================================================
   25. RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  :root { --gutter: 28px; }
  .alt { grid-template-columns: 1fr; gap: 44px; }
  .alt--rev .alt__copy { order: 0; }
  /* Hero → full-bleed, bottom-anchored, video-forward (qoves-style) on mobile */
  .hero { min-height: 92vh; min-height: 92svh; padding: 0; justify-content: flex-end; background: #221a15; }
  .hero__inner { order: 0; flex: 1; justify-content: flex-end; padding-top: calc(var(--nav-h) + 8px); padding-bottom: calc(22px + env(safe-area-inset-bottom)); }
  .hero__copy { max-width: none; }
  .hero__media { order: 0; position: absolute; inset: 0; width: 100%; max-width: none; margin: 0; aspect-ratio: auto; border-radius: 0; overflow: hidden; }
  .hero__media { background-position: center 26%; }
  .hero__video { position: absolute; inset: 0; left: 0; width: 100%; height: 100%; object-position: center 26%; }
  .hero__fade { display: block; inset: 0; background:
    linear-gradient(0deg, rgba(34,26,21,0.97) 0%, rgba(34,26,21,0.92) 30%, rgba(34,26,21,0.72) 55%, rgba(34,26,21,0.34) 76%, rgba(34,26,21,0) 100%),
    linear-gradient(180deg, rgba(34,26,21,0.5) 0%, rgba(34,26,21,0) 15%); }
  .hero__eyebrow { color: rgba(255,255,255,0.85); }
  .hero .h1 { color: #fff; }
  .hero .h1 .tt-2 { color: rgba(255,255,255,0.72); }
  .hero__sub { color: rgba(255,255,255,0.82); }
  .hero__sub-full { display: none; }
  .hero__sub-short { display: inline; }
  .hero__cta { flex-direction: row; gap: 10px; align-items: stretch; flex-wrap: nowrap; }
  .hero__cta .btn { flex: 1; min-width: 0; white-space: nowrap; padding: 14px 8px; font-size: 13.5px; }
  .hero__cta .btn--ghost { border-color: rgba(255,255,255,0.45); color: #fff; background: rgba(255,255,255,0.10); }
  .hero__strip { display: none; }
  .nav:not(.is-scrolled) .brand__name { color: #fff; }
  .nav:not(.is-scrolled) .brand__mark img { filter: brightness(0) invert(1); }
  .nav:not(.is-scrolled):not(.is-open) .nav__toggle span,
  .nav:not(.is-scrolled) .nav__toggle span::before,
  .nav:not(.is-scrolled) .nav__toggle span::after { background: #fff; }   /* middle line excluded when open — it must fade for the X */
  .apply-grid { grid-template-columns: 1fr; gap: 44px; }
  .mock { transform: none; max-width: 520px; margin: 0 auto; }
  .cards { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-item:nth-child(3) { border-left: 0; }
  .proof-item:nth-child(n+3) { border-top: 1px solid var(--hairline); }
}

@media (max-width: 860px) {
  .section { padding: 46px 0; }
  .proof-band { padding: 56px 0; }
  .proof-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 34px; }
  section[id], #top { scroll-margin-top: 72px; }
  .nav { padding: 6px 12px; }
  .nav__inner { padding: 5px 8px 5px 16px; }
  .brand__mark { width: 24px; height: 24px; }
  .brand__name { font-size: 17px; letter-spacing: 0.09em; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; width: 40px; height: 40px; }   /* ≥44px-ish tap target incl. padding */
  .nav .nav__right .btn { display: none; }
  .nav.is-open .nav__inner { border-radius: 22px; flex-wrap: wrap;
    background: rgba(61,46,38,0.97); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 50px rgba(61,46,38,0.28); border-color: rgba(255,255,255,0.06); color: var(--bg-primary); }
  .nav.is-open .brand__mark { color: var(--bg-primary); }
  .nav.is-open .brand__mark img { filter: brightness(0) invert(1); }
  .nav.is-open .menu { display: flex; flex-direction: column; width: 100%; gap: 0; padding-top: 10px; margin-top: 6px; border-top: 1px solid var(--hairline); order: 2; }   /* menu below; brand + close button share the top row */
  .nav.is-open .nav__links { display: flex; flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav.is-open .nav__links a { padding: 14px 4px; font-size: 16px; opacity: 1; }
  .nav.is-open .nav__right { display: flex; flex-direction: column; align-items: stretch; width: 100%; gap: 12px; padding-top: 8px; }
  .nav.is-open .nav__right .btn { display: flex; width: 100%; }
  /* menu items cascade in as the pill opens — display:none→flex can't transition,
     so the unfold feel comes from the children arriving in sequence */
  .nav.is-open .nav__links a, .nav.is-open .nav__right > * { animation: navItem .3s var(--ease-out) both; }
  .nav.is-open .nav__links a:nth-child(1) { animation-delay: .04s; }
  .nav.is-open .nav__links a:nth-child(2) { animation-delay: .08s; }
  .nav.is-open .nav__links a:nth-child(3) { animation-delay: .12s; }
  .nav.is-open .nav__links a:nth-child(4) { animation-delay: .16s; }
  .nav.is-open .nav__links a:nth-child(5) { animation-delay: .20s; }
  .nav.is-open .nav__right > * { animation-delay: .22s; }

  .hero { min-height: 92vh; min-height: 92svh; padding: 0; }
  .hero__media { max-width: none; margin-top: 0; }

  .mono { font-size: 22px; padding: 0 20px; }

  /* timelines → vertical, dense */
  .timeline { padding: 20px 18px; }
  .timeline__grid { grid-template-columns: 1fr; gap: 0; }
  .timeline__grid--three { grid-template-columns: 1fr; }
  .timeline__label { padding: 0 0 12px; border-bottom: 1px solid var(--hairline); margin-bottom: 16px; }
  .timeline__grid--flat .timeline__label { border-bottom: none; padding-bottom: 0; margin-bottom: 8px; }
  .tstep { padding: 0 0 0 28px; margin-bottom: 11px; }
  .tstep__node { position: absolute; left: 0; top: 2px; margin: 0; }
  .tstep:not(:last-child) .tstep__node::after { top: 16px; left: 50%; width: 1px; height: 22px; transform: translateX(-50%); }
  .tstep .stp { margin-bottom: 2px; }

  /* stat cards → one swipeable row, card 2 peeking to invite the swipe */
  .cards--row { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: min(78%, 300px);
    gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    margin: 0 calc(-1 * var(--gutter)); padding: 4px var(--gutter) 16px; scrollbar-width: none; }
  .cards--row::-webkit-scrollbar { display: none; }
  .cards--row > * { scroll-snap-align: center; }
  .rcard { min-height: 0; }

  .perks { grid-template-columns: 1fr; max-width: 340px; gap: 22px; }

  /* list sections get real phone rhythm (previously no mobile rules at all) */
  .frow { gap: 14px; padding: 16px 4px; }
  .frow__thumb { width: 46px; height: 46px; border-radius: 10px; }
  .frow__thumb .mk { width: 22px; }
  .frow__txt h3 { font-size: 15.5px; }
  .frow__txt p { font-size: 13.5px; }
  .faq__q { padding: 18px 20px; font-size: 15.5px; min-height: 44px; }
  .faq__a > div { padding: 0 20px 18px; font-size: 14px; }
  .risk-list li { padding: 18px 0; gap: 14px; }
  .risk-list .num { font-size: 24px; width: 28px; }
  .disclosure { padding: 18px 18px; margin-top: 26px; }
  /* Mobile: stack the two photos as wide landscape banners (not tall portraits) */
  .render-pair { grid-template-columns: 1fr; gap: 14px; }
  .photo-card img { aspect-ratio: 3 / 2; }
  .photo-card--worn img { object-position: center 50%; }
  .photo-card--detail img { object-position: center 50%; }
  .calc { padding: 26px 20px; }
  .calc__top { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .operations-grid { grid-template-columns: 1fr; gap: 12px; }
  .footer__grid { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 30px; }
  .hero__sub { margin: 10px 0 16px; }
  .hero__eyebrow { margin-bottom: 8px; font-size: 12.5px; }
  .eyebrow { margin-bottom: 14px; }
  .apply-grid { gap: 32px; }
  .btn { padding: 10px 18px; font-size: 13.5px; min-height: 44px; }   /* iOS tap floor */
  .btn--lg { padding: 12px 21px; font-size: 14px; }
  .rcard { padding: 22px; }
  .rcard .rstat { font-size: 29px; }
  .qcard blockquote { font-size: 20px; }
  .offer { padding: 30px 22px; }
}

@media (max-width: 460px) {
  :root { --gutter: 20px; }
  .h1 { font-size: 40px; }
  .h2 { font-size: 30px; }
  .brand__name { font-size: 16px; }
  .btn--lg { padding: 11px 19px; font-size: 13.5px; }
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 26px; }
  .hero .h1 { max-width: 13ch; }
  .hero__sub { font-size: 15px; line-height: 1.5; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; flex: none; }
  .body-lg { font-size: 16px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item, .proof-item:first-child { padding: 22px 0; border-left: 0; }
  .proof-item:nth-child(n+2) { border-top: 1px solid var(--hairline); }
  .tier-grid { grid-template-columns: 1fr; }
  .tier-grid > div { border-left: 0; border-top: 1px solid var(--hairline); }
  .tier-grid > div:first-child { border-top: 0; }
  .offer { padding: 26px 18px; }
  .calc, .form-success { padding: 24px 16px; }
  .mono { font-size: 18px; padding: 0 15px; }
}

/* ---------- 24. THE COMPARISON (vs. the t-shirt fundraiser) ----------
   Same quiet system as the rest of the page: light type weights, flat fills,
   hairline baselines. The data is the drama — the chrome never is. */
.cmp { padding: 110px 0; background: linear-gradient(168deg, var(--bg-secondary), var(--accent-sage-tint)); }
.cmp .h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 1.08em; }
.cmp-lede { margin-top: 20px; max-width: 560px; font-size: 17px; line-height: 1.65; color: var(--text-secondary); }

.cmpA-wrap { margin-top: 64px; }
.cmpA-wrap h3 { font-weight: 500; font-size: 17px; }
.cmpA-wrap .sub { margin-top: 8px; font-size: 14.5px; line-height: 1.6; color: var(--text-secondary); max-width: 640px; }

/* A — payout by fundraiser size (each group stands on its own hairline baseline) */
.cmpA-chart { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; height: 320px; margin-top: 46px; padding-top: 56px; }
.cmpA-group { display: flex; flex-direction: column; align-items: center; flex: 1; height: 100%; justify-content: flex-end; }
.cmpA-bars { display: flex; align-items: flex-end; gap: 6px; height: 100%; }
.cmpA-bar { width: 44px; border-radius: 3px 3px 0 0; position: relative; height: 0; transition: height 1.1s var(--ease); }
.cmpA-bar--tee { background: var(--bg-tertiary); border: 1px solid var(--hairline); border-bottom: none; }
.cmpA-bar--cc { background: var(--accent-sage-deep); }
.cmpA-val { position: absolute; top: -26px; left: 50%; transform: translateX(-50%); font-family: var(--font-head); font-weight: 300; font-size: 15px; letter-spacing: -.01em; white-space: nowrap; opacity: 0; transition: opacity .5s .8s; }
.cmpA-bar--tee .cmpA-val { color: var(--text-muted); font-size: 13px; }
.cmpA-bar--cc .cmpA-val { color: var(--text-primary); }
.cmpA-mult { position: absolute; top: -52px; left: 50%; transform: translateX(-50%); font-family: var(--font-serif); font-style: italic; font-size: 18px; color: var(--accent-sage-deep); opacity: 0; transition: opacity .5s 1.05s; white-space: nowrap; }
.cmpA-x { width: 100%; text-align: center; border-top: 1px solid var(--hairline); padding-top: 12px; font-size: 12px; letter-spacing: .04em; font-weight: 500; color: var(--text-muted); }
.cmp-legend { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 26px; font-size: 13px; color: var(--text-secondary); }
.cmp-legend span { display: flex; align-items: center; gap: 9px; }
.cmp-dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.cmp-dot--tee { background: var(--bg-tertiary); border: 1px solid var(--hairline); }
.cmp-dot--cc { background: var(--accent-sage-deep); }

/* stat blocks distributed through the page — same quiet flat system everywhere */
.stat-kicker { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 500; color: var(--text-muted); }
.how-race { max-width: 620px; margin: 72px auto 0; padding-top: 44px; border-top: 1px solid var(--hairline); }
.how-race__sub { margin-top: 8px; font-size: 14.5px; line-height: 1.6; color: var(--text-secondary); }
.how-race .cmpB-rows { margin-top: 30px; }
.earn-pool { max-width: 620px; margin: 72px auto 0; padding-top: 44px; border-top: 1px solid var(--hairline); }
.earn-pool__row { display: flex; gap: 34px; align-items: center; flex-wrap: wrap; margin-top: 24px; }
.earn-pool__hero { flex-shrink: 0; }
.earn-pool__viz { flex: 1; min-width: 216px; }

/* B — the race to $1,000 (thin quiet tracks, light numerals — rendered inside #how .how-race) */
.cmpB-rows { margin-top: 38px; display: flex; flex-direction: column; gap: 30px; }
.cmpB-label { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.cmpB-label span { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 500; color: var(--text-muted); }
.cmpB-label b { font-family: var(--font-head); font-size: 26px; font-weight: 300; letter-spacing: -.01em; color: var(--text-primary); }
.cmpB-track { height: 8px; background: var(--bg-tertiary); border-radius: 999px; overflow: hidden; }
.cmpB-fill { height: 100%; border-radius: 999px; width: 0; transition: width 1.3s var(--ease); }
.cmpB-fill--tee { background: var(--text-muted); }
.cmpB-fill--cc { background: var(--accent-sage-deep); }
.cmpB-note { margin-top: 24px; font-family: var(--font-serif); font-style: italic; font-size: 19px; color: var(--accent-sage-deep); }

/* buyer-pool pieces — rendered inside #earnings .earn-pool: 1 active (rose) : 15 alumnae (sage) */
.cmpC-big { font-family: var(--font-serif); font-size: 72px; line-height: .9; color: var(--accent-sage-deep); }
.cmpC-cap { margin-top: 8px; font-size: 12px; line-height: 1.5; letter-spacing: .02em; color: var(--text-muted); }
.cmpC-dots { display: grid; grid-template-columns: repeat(8, 20px); gap: 9px; }
.cmpC-dots .d { width: 20px; height: 20px; border-radius: 50%; background: var(--accent-sage-tint); border: 1px solid var(--accent-sage); }
.cmpC-dots .d--active { background: var(--cta-bg); border-color: var(--cta-hover); }
.cmpC-legend { display: flex; gap: 8px 18px; margin-top: 14px; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; }
.cmpC-legend span { display: inline-flex; align-items: center; gap: 6px; }
.cmpC-legend i { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-sage-tint); border: 1px solid var(--accent-sage); flex: none; }
.cmpC-legend i.i--active { background: var(--cta-bg); border-color: var(--cta-hover); }
.cmpC-note { margin-top: 22px; font-size: 14.5px; line-height: 1.65; color: var(--text-secondary); }
.cmpC-note b { color: var(--text-primary); }


@media (max-width: 860px) {
  .cmp { padding: 72px 0; }
  .cmpA-wrap { margin-top: 40px; }
  .how-race, .earn-pool { margin-top: 56px; padding-top: 36px; }
  .cmpA-bar { width: 26px; }
  .cmpA-chart { height: 340px; gap: 4px; padding-top: 52px; }
  .cmpA-val { font-size: 11px; top: -22px; }
  .cmpA-bar--tee .cmpA-val { font-size: 10px; }
  .cmpA-mult { font-size: 13px; top: -44px; }
  .cmpA-x { font-size: 11px; }
  .cmpB-label b { font-size: 22px; }
  .cmpC-big { font-size: 56px; }
}
