/* ============================================================
   Sellers Hub — site stylesheet
   Direction: "The Scoreline" (concept D, chosen 02-07-26).
   Ink black + Sellers Hub green. Condensed poster type.
   Khand (display) + Synonym (text). Sharp corners everywhere.

   Accent contrast rules (WCAG):
   - --acc (mint) is a DARK-BACKGROUND accent: 9.3:1 on ink. Never
     use it as text on paper (1.9:1, fails).
   - --acc-deep is the LIGHT-BACKGROUND accent: 5.3:1 on paper as
     text, 5.7:1 with white text when used as a panel background.
   - Buttons: mint background + ink text (9.3:1).
   ============================================================ */

@font-face { font-family: 'Khand'; src: url('/fonts/khand-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Khand'; src: url('/fonts/khand-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Khand'; src: url('/fonts/khand-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Synonym'; src: url('/fonts/synonym-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Synonym'; src: url('/fonts/synonym-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Synonym'; src: url('/fonts/synonym-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }

:root {
  --ink: #0D0D10;
  --ink-2: #17171C;
  --paper: #F5F6F8;
  --acc: #29CB8B;        /* SH green, on ink 9.3:1 */
  --acc-hot: #3BE3A2;    /* hover state */
  --acc-deep: #0E7550;   /* on paper 5.3:1; white on it 5.7:1 */
  --gray: #A7A9B4;       /* on ink, 8:1 */
  --gray-ink: #55565E;   /* on paper, 6.9:1 */
  --line-w: rgba(245, 246, 248, 0.16);
  --line-k: rgba(13, 13, 16, 0.16);
  --d: 'Khand', 'Arial Narrow', sans-serif;
  --t: 'Synonym', system-ui, sans-serif;
  --wrap: 1200px;
  --gut: clamp(1.25rem, 4vw, 2.5rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--t);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--paper);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
section[id] { scroll-margin-top: 5rem; }

.skip { position: absolute; left: -9999px; top: 0; background: var(--acc); color: var(--ink); padding: 0.6rem 1rem; z-index: 100; }
.skip:focus { left: 0; }

::selection { background: var(--acc); color: var(--ink); }

/* ---------- type ---------- */
h1, h2, h3, .brand { text-wrap: balance; }

/* Sentence case: only the H1, ticker, and closing CTA shout. */
.sec-h {
  font-family: var(--d);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 0.95;
}
.sec-lede { max-width: 34rem; margin-top: 1rem; }
.sec-paper .sec-lede { color: var(--gray-ink); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--acc);
  color: var(--ink);
  font-family: var(--t);
  font-weight: 600;
  font-size: 1.1875rem;
  line-height: 1;
  text-decoration: none;
  padding: 1.05rem 1.7rem;
  transition: background 0.18s ease-out;
}
.btn:hover { background: var(--acc-hot); }
.btn:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
.btn-lg { padding: 1.2rem 2.1rem; }
.btn-nav {
  background: transparent;
  border: 2px solid var(--acc);
  color: var(--paper);
  font-size: 1rem;
  padding: 0.55rem 1.1rem;
}
.btn-nav:hover { background: var(--acc); color: var(--ink); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: var(--ink);
  border-bottom: 1px solid var(--line-w);
}
.nav-row { display: flex; align-items: center; gap: 2rem; height: 4.75rem; }
.brand {
  font-family: var(--d); font-weight: 700; font-size: 2rem;
  text-transform: uppercase; letter-spacing: 0.02em;
  text-decoration: none; color: var(--paper);
}
.nav-links { display: flex; gap: 1.75rem; margin-left: auto; }
.nav-links a { text-decoration: none; font-size: 0.95rem; color: var(--gray); transition: color 0.15s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--paper); }
.nav-burger { display: none; }
.m-nav { display: none; }

/* ---------- hero (home) ---------- */
.hero { position: relative; isolation: isolate; border-bottom: 1px solid var(--line-w); }
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 28%;
  filter: grayscale(1) contrast(1.05) brightness(0.92);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(13,13,16,0.86) 0%, rgba(13,13,16,0.7) 42%, rgba(13,13,16,0.58) 72%, rgba(13,13,16,0.82) 100%),
    linear-gradient(180deg, rgba(13,13,16,0.5) 0%, rgba(13,13,16,0.3) 38%, rgba(13,13,16,0.86) 82%, var(--ink) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  align-content: center;
  padding-block: clamp(3rem, 7vh, 5rem) clamp(2.5rem, 6vh, 4.5rem);
  min-height: calc(74svh - 4.75rem - 4.5rem);
}
.hero-h {
  font-family: var(--d);
  font-weight: 600;
  font-size: clamp(4rem, 10.5vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.hero-h .hl { display: block; }
.hl-c { color: var(--acc); }
.hero-side { padding-bottom: 0.5rem; max-width: 30rem; }
.hero-sub { color: var(--paper); opacity: 0.85; font-size: 1.125rem; }
.hero-cta { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.9rem; align-items: flex-start; }
.mini-score {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem 2rem;
  border-top: 1px solid var(--line-w);
  padding-block: 1.7rem 2.6rem;
}
.mini-score div { display: flex; flex-direction: column-reverse; }
.mini-score dd {
  font-family: var(--d); font-weight: 700;
  font-size: clamp(2.1rem, 3vw, 2.6rem); line-height: 1;
  color: var(--acc);
}
.mini-score dt { font-size: 0.9rem; color: var(--gray); margin-top: 0.3rem; }
.hero .mini-score dt { color: var(--paper); opacity: 0.75; }

/* ---------- ticker ---------- */
.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line-w);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.ticker-track { display: flex; width: max-content; }
.ticker p {
  font-family: var(--d); font-weight: 500; font-size: 1.5rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  white-space: nowrap; padding-block: 0.7rem;
  color: var(--paper);
}
.js .ticker-track { animation: tick 36s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes tick { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .js .ticker-track { animation: none; } }

/* ---------- interior page head ---------- */
.page-head { border-bottom: 1px solid var(--line-w); padding-block: clamp(2.8rem, 7vh, 5rem) 0; }
.crumb {
  font-family: var(--d); font-weight: 500; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--gray); margin-bottom: 1.4rem;
}
.crumb a { color: var(--gray); text-decoration: none; }
.crumb a:hover { color: var(--paper); }
.page-h {
  font-family: var(--d); font-weight: 600;
  font-size: clamp(2.9rem, 6.5vw, 4.6rem);
  line-height: 0.92; text-transform: uppercase; letter-spacing: 0.01em;
  max-width: 20ch;
}
.page-lede { margin-top: 1.4rem; max-width: 40rem; color: var(--gray); font-size: 1.125rem; }
.page-act { margin-block: 2.2rem 0; padding-bottom: clamp(2.4rem, 5vh, 3.6rem); display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.page-act p { color: var(--gray); font-size: 0.95rem; }
.page-act p a { color: var(--paper); }
.page-head .mini-score { margin-top: 0; }

/* ---------- generic sections ---------- */
.sec { padding-block: clamp(4rem, 9vh, 7rem); }
.sec-paper { background: var(--paper); color: var(--ink); }
.sec-tight { padding-block: clamp(3rem, 7vh, 5rem); }

/* two-column rule list (roles, sectors) */
.cols { list-style: none; margin-top: 2.2rem; columns: 2; column-gap: clamp(2rem, 5vw, 4rem); }
.cols li { break-inside: avoid; border-top: 1px solid var(--line-k); padding-block: 0.72rem; font-weight: 500; }
.cols-note { margin-top: 1.6rem; color: var(--gray-ink); }
.on-ink .cols li { border-color: var(--line-w); }
.on-ink .cols-note { color: var(--gray); }

/* ledger rows: heading + explanation, no cards */
.ledger { margin-top: 2.5rem; border-bottom: 1px solid var(--line-k); }
.ledger > div {
  display: grid;
  grid-template-columns: minmax(200px, 340px) 1fr;
  gap: 1.5rem;
  border-top: 1px solid var(--line-k);
  padding-block: 1.35rem;
}
.ledger h3 { font-family: var(--d); font-weight: 600; font-size: 1.5rem; line-height: 1.05; }
.ledger p { color: var(--gray-ink); max-width: 58ch; }
/* ledgers and lists sitting on ink sections pick up the dark-bg grays */
.sec:not(.sec-paper) .ledger, .on-ink .ledger { border-color: var(--line-w); }
.sec:not(.sec-paper) .ledger > div, .on-ink .ledger > div { border-color: var(--line-w); }
.sec:not(.sec-paper) .ledger p, .sec:not(.sec-paper) .ledger ul li, .on-ink .ledger p { color: var(--gray); }
.sec:not(.sec-paper) .cols li { border-color: var(--line-w); }
.sec:not(.sec-paper) .cols-note { color: var(--gray); }

.ledger ul { list-style: none; margin-top: 0.6rem; }
.ledger ul li { color: var(--gray-ink); padding-block: 0.15rem; }
.ledger p a, .cols-note a { color: inherit; }

/* pricing rows (find-talent, verticals) */
.price-rows { margin-top: 2.5rem; border-bottom: 1px solid var(--line-w); }
.price {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.9fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  padding-block: 2.2rem;
  border-top: 1px solid var(--line-w);
}
.price h3 { font-family: var(--d); font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 0.98; }
.price ul { list-style: none; }
.price li { color: var(--gray); padding-block: 0.2rem; }
.price-fee { font-family: var(--d); font-weight: 500; font-size: 1.4rem; text-transform: uppercase; line-height: 1.15; justify-self: end; text-align: right; }
.price-fee span { font-family: var(--t); font-weight: 400; font-size: 0.9rem; text-transform: none; color: var(--gray); display: block; margin-top: 0.35rem; }

/* photo + text split */
.split { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: center; margin-top: 3rem; }
.split figure img { width: 100%; height: auto; filter: grayscale(1) contrast(1.05); }
.split figcaption { margin-top: 0.6rem; font-family: var(--d); font-weight: 500; font-size: 0.98rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-ink); }
.on-ink .split figcaption { color: var(--gray); }

/* ---------- record ---------- */
.record { background: var(--paper); color: var(--ink); padding-block: clamp(4rem, 9vh, 7rem); }
.score-rows { margin-top: 2.5rem; border-bottom: 1px solid var(--line-k); }
.score {
  display: grid;
  grid-template-columns: minmax(210px, 380px) 1fr;
  gap: 1.5rem;
  align-items: baseline;
  border-top: 1px solid var(--line-k);
  padding-block: 1.1rem;
}
.score em {
  font-style: normal;
  font-family: var(--d);
  font-weight: 700;
  font-size: clamp(2.8rem, 5.6vw, 4.2rem);
  line-height: 0.95;
}
.score span { color: var(--gray-ink); font-size: 1.0625rem; }

/* ---------- band ---------- */
.band { position: relative; }
.band img { width: 100%; height: clamp(380px, 60vh, 620px); object-fit: cover; object-position: 50% 32%; filter: grayscale(1) contrast(1.05); }
.band figcaption {
  padding: 0.8rem var(--gut);
  font-family: var(--d); font-weight: 500; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--gray);
  border-bottom: 1px solid var(--line-w);
}

/* ---------- markets ---------- */
.markets { padding-top: clamp(4rem, 9vh, 7rem); }
.mkt-list { margin-top: 3rem; border-bottom: 1px solid var(--line-w); }
.mkt {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.9fr) minmax(0, 0.8fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 2.4rem var(--gut);
  border-top: 1px solid var(--line-w);
  text-decoration: none;
  transition: background 0.18s ease-out;
}
.mkt:hover { background: var(--ink-2); }
.mkt h3 {
  font-family: var(--d); font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  line-height: 0.95;
  transition: color 0.18s ease-out;
}
.mkt:hover h3 { color: var(--acc); }
.mkt-body p { color: var(--gray); }
.mkt-roles { margin-top: 0.9rem; font-size: 0.92rem; color: var(--gray); opacity: 0.75; }
.mkt-fee {
  font-family: var(--d); font-weight: 500; font-size: 1.4rem;
  text-transform: uppercase; line-height: 1.15;
  justify-self: end; text-align: right;
}
.mkt-fee span { font-family: var(--t); font-weight: 400; font-size: 0.9rem; text-transform: none; color: var(--gray); display: block; margin-top: 0.35rem; }

/* ---------- method ---------- */
.method { background: var(--paper); color: var(--ink); margin-top: clamp(4rem, 9vh, 7rem); padding-block: clamp(4rem, 9vh, 7rem); }
.method-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr); gap: clamp(2.5rem, 6vw, 5rem); }
.method-head .sec-lede { color: var(--gray-ink); }
.method-proof { margin-top: 1.5rem; font-family: var(--d); font-weight: 600; font-size: 1.3rem; }
.steps { list-style: none; counter-reset: step; }
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 3.6rem 1fr;
  column-gap: 1.2rem;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line-k);
}
.steps li:last-child { border-bottom: 1px solid var(--line-k); }
.steps li::before {
  content: counter(step);
  grid-row: 1 / span 2;
  font-family: var(--d); font-weight: 700; font-size: 2.1rem; line-height: 1;
  color: var(--acc-deep);
}
.steps h3 { font-family: var(--d); font-weight: 600; font-size: 1.45rem; line-height: 1.1; }
.steps p { grid-column: 2; color: var(--gray-ink); margin-top: 0.3rem; }

/* ---------- SELLER ---------- */
.seller { padding-block: clamp(4rem, 9vh, 7rem); }
.seller-row {
  list-style: none;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-block: 1px solid var(--line-w);
}
.seller-row li { padding: 1.6rem 1.2rem 1.8rem; border-inline-start: 1px solid var(--line-w); }
.seller-row li:first-child { border-inline-start: none; padding-inline-start: 0; }
.seller-row b {
  display: grid; place-items: center;
  width: 4.6rem; height: 4.6rem;
  border: 2px solid var(--acc);
  font-family: var(--d); font-weight: 700;
  font-size: 2.9rem;
  line-height: 0.9;
  color: var(--acc);
}
.seller-row .meter { display: flex; gap: 5px; margin-top: 0.9rem; }
.seller-row .meter u { width: 12px; height: 12px; border: 1px solid var(--line-w); }
.seller-row .meter u.on { background: var(--acc); border-color: var(--acc); }
.seller-row strong { display: block; margin-top: 0.8rem; font-weight: 600; font-size: 1.02rem; }
.seller-row span { display: block; margin-top: 0.3rem; font-size: 0.9rem; color: var(--gray); }
.seller-note { margin-top: 1.6rem; color: var(--gray); max-width: 40rem; }

/* ---------- quote + guarantee ---------- */
.quote-sec { background: var(--paper); color: var(--ink); padding-block: clamp(4rem, 9vh, 7rem); }
.quote-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.quote p {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.45;
  font-weight: 500;
  text-wrap: pretty;
}
.quote::before {
  content: "\201C";
  display: block;
  font-family: var(--d); font-weight: 700;
  font-size: 5rem; line-height: 0.5;
  color: var(--acc-deep);
  margin-bottom: 1.4rem;
}
.on-ink .quote::before { color: var(--acc); }
.quote footer { margin-top: 1.6rem; }
.quote strong { display: block; font-weight: 600; }
.quote footer span { color: var(--gray-ink); font-size: 0.95rem; }
.on-ink .quote footer span { color: var(--gray); }
.bet { background: var(--acc-deep); color: #fff; padding: 2.4rem 2.2rem 2.6rem; }
.bet h3 { font-family: var(--d); font-weight: 600; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.02em; }
.bet-fig { font-family: var(--d); font-weight: 700; font-size: clamp(4rem, 7vw, 5.5rem); line-height: 1; margin-block: 0.6rem 0.8rem; }
.bet p:last-child { font-size: 1rem; }

/* ---------- bench / team ---------- */
.bench { padding-block: clamp(4rem, 9vh, 7rem) 0; }
.bench-head { margin-bottom: 2.5rem; }
.bench-head .sec-lede { color: var(--gray); }
.bench-strip {
  display: flex;
  gap: 1px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-inline: var(--gut);
  padding-inline: var(--gut);
  padding-bottom: 3rem;
}
.bench-strip figure { flex: 0 0 200px; scroll-snap-align: start; }
.bench-strip img { width: 200px; height: 200px; object-fit: cover; }
.bench-strip figcaption { padding-top: 0.7rem; font-weight: 600; font-size: 0.98rem; line-height: 1.3; }
.bench-strip figcaption span { display: block; font-weight: 400; font-size: 0.85rem; color: var(--gray); }
.bench-strip:focus-visible { outline: 2px solid var(--acc); outline-offset: 2px; }

/* wrapped grid variant for the about page */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2rem 1.5rem;
  margin-top: 2.5rem;
}
.team-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.team-grid figcaption { padding-top: 0.7rem; font-weight: 600; font-size: 0.98rem; line-height: 1.3; }
.team-grid figcaption span { display: block; font-weight: 400; font-size: 0.85rem; color: var(--gray-ink); }

/* founder story */
.founder-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: start; margin-top: 3rem; }
.founder-fig img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.founder-fig figcaption { padding-top: 0.7rem; font-weight: 600; }
.founder-fig figcaption span { display: block; font-weight: 400; font-size: 0.9rem; color: var(--gray-ink); }
.story p { margin-top: 1.1rem; max-width: 65ch; }
.story p:first-child { margin-top: 0; }
.story .story-close { font-family: var(--d); font-weight: 600; font-size: 1.3rem; }

/* case study */
.case-block { max-width: 62rem; margin-top: 3rem; }
.case-block + .case-block { margin-top: 4rem; border-top: 1px solid var(--line-k); padding-top: 3.5rem; }
.case-kick { font-family: var(--d); font-weight: 500; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--acc-deep); }
.case-block h2 { font-family: var(--d); font-weight: 600; font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 0.98; margin-top: 0.5rem; }
.case-block p { margin-top: 1.1rem; max-width: 65ch; color: var(--ink); }
.case-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem 2rem; margin-top: 2rem; border-top: 1px solid var(--line-k); padding-top: 1.5rem; }
.case-facts div { display: flex; flex-direction: column-reverse; }
.case-facts dd { font-family: var(--d); font-weight: 700; font-size: clamp(1.9rem, 2.6vw, 2.4rem); line-height: 1; }
.case-facts dt { font-size: 0.9rem; color: var(--gray-ink); margin-top: 0.3rem; }

/* ---------- clients ---------- */
.clients { background: var(--paper); color: var(--ink); padding-block: 3.5rem; }
.clients-lede { font-family: var(--d); font-weight: 500; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-ink); }
.logos { display: flex; flex-wrap: wrap; gap: 1rem 2.4rem; margin-top: 1.4rem; }
.client { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 600; font-size: 1rem; }
.client img { width: 36px; height: 36px; object-fit: cover; filter: grayscale(1) contrast(1.05); }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); color: var(--ink); padding-block: clamp(4rem, 9vh, 7rem); border-top: 1px solid var(--line-k); }
.faq-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.faq-head .sec-lede { color: var(--gray-ink); }
.faq-list { border-bottom: 1px solid var(--line-k); }
.faq-list details { border-top: 1px solid var(--line-k); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem;
  padding-block: 1.15rem;
  font-weight: 600; font-size: 1.1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--d); font-weight: 600; font-size: 1.6rem; line-height: 0.8;
  color: var(--acc-deep);
  transition: transform 0.18s ease-out;
  flex-shrink: 0;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding-bottom: 1.3rem; color: var(--gray-ink); max-width: 60ch; }

/* ---------- CTA ---------- */
.cta { padding-block: clamp(5rem, 13vh, 9rem); }
.cta-h {
  font-family: var(--d); font-weight: 600;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.92; text-transform: uppercase;
}
.cta-h span { display: block; }
.cta-act { margin-top: 2.5rem; display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }
.cta-act p { color: var(--gray); font-size: 0.98rem; }
.cta-act p a { color: var(--paper); }
.cta-alt { margin-top: 1.4rem; color: var(--gray); font-size: 0.98rem; max-width: 44rem; }
.cta-alt a { color: var(--paper); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: start; margin-top: 3rem; }
.contact-main h2 { font-family: var(--d); font-weight: 600; font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 0.98; }
.contact-main p { margin-top: 1rem; color: var(--gray); max-width: 55ch; }
.contact-main .btn { margin-top: 1.8rem; }
.contact-ways { border-top: 1px solid var(--line-w); margin-top: 2.6rem; }
.contact-ways div { border-bottom: 1px solid var(--line-w); padding-block: 1.2rem; display: grid; grid-template-columns: minmax(140px, 220px) 1fr; gap: 1.5rem; }
.contact-ways h3 { font-family: var(--d); font-weight: 600; font-size: 1.3rem; text-transform: uppercase; }
.contact-ways p { color: var(--gray); margin: 0; }
.contact-ways a { color: var(--paper); }

/* ---------- legal prose ---------- */
.legal { max-width: 72ch; }
.legal h2 { font-family: var(--d); font-weight: 600; font-size: 1.7rem; line-height: 1; margin-top: 2.6rem; }
.legal h2:first-child { margin-top: 0; }
.legal p { margin-top: 1rem; color: var(--ink); }
.legal ul { margin-top: 0.8rem; padding-left: 1.2rem; }
.legal li { margin-top: 0.4rem; color: var(--gray-ink); }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--line-w); padding-block: 2.5rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 2rem; align-items: start; }
.foot-brand { font-size: 1.4rem; }
.foot-line { color: var(--gray); font-size: 0.95rem; margin-top: 0.3rem; }
.foot-nav { display: flex; flex-direction: column; gap: 0.45rem; }
.foot-nav a { text-decoration: none; color: var(--gray); font-size: 0.95rem; }
.foot-nav a:hover { color: var(--paper); }
.foot-meta { color: var(--gray); font-size: 0.9rem; text-align: right; }
.foot-meta a { color: var(--paper); text-decoration: none; }

/* ---------- reveal (enhancement only) ---------- */
.js .rv { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease-out, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.js .rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .rv { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-row .btn-nav { display: none; }
  .nav-burger {
    display: flex; flex-direction: column; gap: 6px; justify-content: center;
    margin-left: auto; background: none; border: 0; padding: 0.5rem; cursor: pointer;
  }
  .nav-burger span { width: 26px; height: 2px; background: var(--paper); transition: transform 0.2s; }
  .nav-burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .m-nav { border-top: 1px solid var(--line-w); }
  .m-nav.open { display: flex; flex-direction: column; gap: 1.1rem; padding: 1.5rem var(--gut) 2rem; background: var(--ink); }
  .m-nav a { text-decoration: none; font-size: 1.1rem; color: var(--paper); }
  .m-nav .btn { align-self: flex-start; margin-top: 0.5rem; }

  .hero-grid { grid-template-columns: 1fr; align-items: start; min-height: 0; padding-block: 3.5rem 3rem; }
  .hero-h { font-size: clamp(3.4rem, 13.5vw, 5.2rem); }
  .mini-score { grid-template-columns: 1fr 1fr; }
  .method-grid, .quote-grid, .faq-grid, .founder-grid, .contact-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .seller-row { grid-template-columns: repeat(3, 1fr); border-block: none; }
  .seller-row li { border-block-start: 1px solid var(--line-w); }
  .seller-row li:nth-child(3n + 1) { border-inline-start: none; padding-inline-start: 0; }
  .mkt, .price { grid-template-columns: 1fr; gap: 0.9rem; }
  .mkt-fee, .price-fee { justify-self: start; text-align: left; }
  .ledger > div { grid-template-columns: 1fr; gap: 0.4rem; }
  .case-facts { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-meta { text-align: left; }
}

@media (max-width: 640px) {
  .cols { columns: 1; }
}

@media (max-width: 560px) {
  .score { grid-template-columns: 1fr; gap: 0.15rem; }
  .seller-row { grid-template-columns: repeat(2, 1fr); }
  .seller-row li:nth-child(3n + 1) { border-inline-start: 1px solid var(--line-w); }
  .seller-row li:nth-child(2n + 1) { border-inline-start: none; padding-inline-start: 0; }
  .seller-row li:nth-child(-n + 2) { border-block-start: none; }
  .cta-act { align-items: flex-start; flex-direction: column; }
  .contact-ways div { grid-template-columns: 1fr; gap: 0.3rem; }
  .brand { font-size: 1.7rem; }
}
