/* =====================================================================
   SourceVerdict — Design System
   Tokens derived from approved brand assets (pinned posts + VERDICT carousel).
   Colors sampled from the actual slides:
     royal blue #244BEB (brand notes said #123FC6 — slides are brighter)
     fresh orange #FD6618 + verdict-fill coral #FF6B35 (notes said #FF7A00)
     ink #111827, cream #FFF9F1
   Type: Inter (matches the slides' grotesk) + Newsreader (editorial serif accent)
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand constants (both themes) */
  --blue: #244BEB;
  --blue-deep: #1a37b8;
  --blue-tint: #e9edfe;
  --orange: #FD6618;
  --orange-deep: #e2540c;
  --coral: #FF6B35;
  --ink: #111827;
  --ink-2: #1b2130;
  --cream: #FFF9F1;
  --white: #FFFFFF;
  --go: var(--blue);
  --pass: var(--ink);

  /* Themed surfaces (light default) */
  --bg: #FFF9F1;
  --surface: #FFFFFF;
  --surface-2: #F7F1E7;
  --text: #111827;
  --text-muted: #56607a;
  --text-faint: #808aa0;
  --border: rgba(17, 24, 39, .12);
  --border-strong: rgba(17, 24, 39, .22);
  --on-brand: #FFF9F1;         /* text on blue/ink fields */
  --on-brand-muted: rgba(255, 249, 241, .72);
  --shadow-sm: 0 1px 2px rgba(17, 24, 39, .06), 0 2px 8px rgba(17, 24, 39, .05);
  --shadow-md: 0 10px 30px rgba(17, 24, 39, .10);
  --shadow-lg: 0 24px 60px rgba(17, 24, 39, .16);
  --shadow-blue: 0 18px 44px rgba(36, 75, 235, .28);

  /* Type */
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Newsreader", Georgia, "Times New Roman", serif;

  /* Metrics */
  --container: 1200px;
  --container-narrow: 860px;
  --radius: 6px;
  --radius-lg: 12px;
  --gutter: clamp(16px, 5vw, 40px);
  --section-y: clamp(60px, 9vw, 128px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0c0f16;
    --surface: #141821;
    --surface-2: #1b2130;
    --text: #FFF9F1;
    --text-muted: #aab3c6;
    --text-faint: #8b95aa;
    --border: rgba(255, 255, 255, .14);
    --border-strong: rgba(255, 255, 255, .26);
    --blue-tint: #171f3f;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .5);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, .5);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, .6);
    --shadow-blue: 0 18px 44px rgba(0, 0, 0, .55);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #0c0f16; --surface: #141821; --surface-2: #1b2130;
  --text: #FFF9F1; --text-muted: #aab3c6; --text-faint: #8b95aa;
  --border: rgba(255, 255, 255, .14); --border-strong: rgba(255, 255, 255, .26);
  --blue-tint: #171f3f;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.5); --shadow-md: 0 12px 32px rgba(0,0,0,.5);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.6); --shadow-blue: 0 18px 44px rgba(0,0,0,.55);
  color-scheme: dark;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 3px; }
::selection { background: var(--orange); color: #fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section--paper { background: var(--surface); }
.section--tint { background: var(--surface-2); }
.section--blue { background: var(--blue); color: var(--on-brand); }
.section--ink { background: var(--ink); color: var(--on-brand); }
.section--blue a, .section--ink a { color: #fff; }
.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 6px; transition: top .2s; }
.skip-link:focus { top: 12px; }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange);
}
.eyebrow--blue { color: var(--blue); }
.eyebrow--muted { color: var(--text-muted); }
.eyebrow::before { content: ""; width: 26px; height: 3px; background: currentColor; display: inline-block; }
.eyebrow--nodash::before { display: none; }

h1, h2, h3, h4 { line-height: 1.05; font-weight: 800; letter-spacing: -.02em; }
.display {
  font-weight: 800; letter-spacing: -.028em; line-height: .98;
  font-size: clamp(2.7rem, 7.2vw, 5.4rem); text-transform: uppercase;
}
.h1 { font-size: clamp(2.2rem, 5.2vw, 3.9rem); line-height: 1.02; letter-spacing: -.025em; text-transform: uppercase; }
.h2 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.04; }
.h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.12; letter-spacing: -.015em; }
.lead { font-size: clamp(1.12rem, 1.7vw, 1.4rem); line-height: 1.5; color: var(--text-muted); font-weight: 450; }
.muted { color: var(--text-muted); }
.faint { color: var(--text-faint); }
.serif { font-family: var(--font-serif); }
.balance { text-wrap: balance; }
.measure { max-width: 62ch; }
.underline-accent { position: relative; display: inline-block; }
.underline-accent::after { content: ""; position: absolute; left: 0; right: 0; bottom: -.12em; height: .16em; background: var(--orange); }
.text-blue { color: var(--blue); }
.text-orange { color: var(--orange); }
strong { font-weight: 700; }

/* ---------- Crop-mark frame (signature motif) ---------- */
.cropframe { position: relative; }
.cropframe::before, .cropframe::after {
  content: ""; position: absolute; width: 30px; height: 30px;
  border: 3px solid var(--orange); pointer-events: none;
}
.cropframe::before { top: -10px; left: -10px; border-right: 0; border-bottom: 0; }
.cropframe::after { bottom: -10px; right: -10px; border-left: 0; border-top: 0; }
.cropframe--blue::before, .cropframe--blue::after { border-color: var(--blue); }
.cropframe--sm::before, .cropframe--sm::after { width: 20px; height: 20px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 700; letter-spacing: .01em; font-size: 1rem;
  padding: .92em 1.5em; border: 2px solid var(--btn-bg); border-radius: var(--radius);
  cursor: pointer; transition: transform .15s var(--ease), background .15s, box-shadow .2s, border-color .15s;
  text-align: center; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { --btn-bg: var(--orange); --btn-fg: #1c0d02; border-color: var(--orange); }
.btn--primary:hover { --btn-bg: var(--orange-deep); box-shadow: 0 12px 26px rgba(253, 102, 24, .34); }
.btn--blue { --btn-bg: var(--blue); --btn-fg: #fff; border-color: var(--blue); }
.btn--blue:hover { --btn-bg: var(--blue-deep); box-shadow: var(--shadow-blue); }
.btn--outline { background: transparent; --btn-fg: var(--text); border-color: var(--border-strong); }
.btn--outline:hover { border-color: var(--ink); background: var(--ink); --btn-fg: #fff; }
.btn--on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--on-dark:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--ghost { background: transparent; border-color: transparent; --btn-fg: var(--blue); padding-inline: .4em; }
.btn--ghost:hover { transform: none; text-decoration: underline; text-underline-offset: 4px; }
.btn--lg { font-size: 1.08rem; padding: 1.05em 1.8em; }
.btn--block { display: flex; width: 100%; }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Chips / tags ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px 10px; align-items: center; }
.chip {
  display: inline-flex; align-items: center; gap: .45em;
  font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  padding: .4em .8em; border-radius: 999px; border: 1px solid var(--border-strong);
  color: var(--text-muted); background: var(--surface);
}
.section--blue .chip, .section--ink .chip { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); color: #fff; }
.chip__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

/* ---------- Progress dashes (from carousel footer) ---------- */
.dashes { display: inline-flex; gap: 7px; align-items: center; }
.dashes i { width: 22px; height: 4px; border-radius: 2px; background: var(--border-strong); display: block; }
.dashes i.on { background: var(--orange); }
.section--blue .dashes i, .section--ink .dashes i { background: rgba(255,255,255,.3); }
.section--blue .dashes i.on, .section--ink .dashes i.on { background: var(--orange); }

/* ---------- Header / Nav ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.28rem; letter-spacing: -.02em; color: var(--text); }
.brand__mark { width: 18px; height: 18px; background: var(--orange); border-radius: 3px; flex: none; }
.brand em { font-style: normal; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a { padding: 8px 14px; border-radius: 6px; font-weight: 600; font-size: .96rem; color: var(--text-muted); transition: color .15s, background .15s; }
.nav__links a:hover { color: var(--text); background: var(--surface-2); }
.nav__links a[aria-current="page"] { color: var(--text); }
.nav__links a[aria-current="page"]::after { content: ""; display: block; height: 2px; background: var(--orange); margin-top: 3px; border-radius: 2px; }
.nav__right { display: flex; align-items: center; gap: 10px; }
.nav__cta-mobile { display: none; } /* only appears inside the mobile dropdown */
.nav__toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border-strong); background: var(--surface); border-radius: 8px; align-items: center; justify-content: center; cursor: pointer; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ""; display: block; width: 20px; height: 2px; background: var(--text); position: relative; transition: transform .2s, opacity .2s; }
.nav__toggle span::before { position: absolute; top: -6px; } .nav__toggle span::after { position: absolute; top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__links { position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px; background: var(--surface); border-bottom: 1px solid var(--border); padding: 14px var(--gutter) 22px; box-shadow: var(--shadow-md); transform: translateY(-140%); transition: transform .28s var(--ease); z-index: 90; }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 14px; font-size: 1.05rem; border-radius: 8px; }
  .nav__links a[aria-current="page"]::after { display: none; }
  .nav__links .nav__cta-mobile { display: flex; margin-top: 10px; }
  .nav__right .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(36px, 6vw, 72px); padding-bottom: var(--section-y); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 68px); align-items: center; }
.hero__title { margin-top: 18px; }
.hero__title .l1 { color: var(--text); display: block; }
.hero__title .l2 { color: var(--blue); display: block; }
.hero__sub { margin-top: 22px; max-width: 30ch; }
.hero__cta-row { margin-top: 30px; }
.hero__chips { margin-top: 26px; }
.specimen { position: relative; }
.specimen__frame { position: relative; background: var(--surface-2); border-radius: var(--radius-lg); padding: clamp(18px, 3vw, 30px); box-shadow: var(--shadow-md); }
.specimen__img { border-radius: 8px; width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: 46% 42%; background: #eae3d6; }
.specimen__tag { position: absolute; z-index: 3; left: -14px; bottom: 26px; background: var(--blue); color: #fff; font-weight: 800; letter-spacing: .02em; padding: 12px 18px; border-radius: 8px; box-shadow: var(--shadow-blue); display: flex; align-items: center; gap: 12px; }
.specimen__tag b { font-size: 1.4rem; letter-spacing: .04em; }
.specimen__tag small { display: block; font-weight: 600; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.specimen__meta { position: absolute; top: 20px; right: 20px; z-index: 3; background: rgba(17,24,39,.72); color: #fff; backdrop-filter: blur(4px); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 7px 11px; border-radius: 6px; }
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .specimen { order: -1; max-width: 460px; }
  .hero__sub { max-width: 46ch; }
}

/* ---------- Equation (the problem) ---------- */
.equation { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 18px; align-items: stretch; margin-top: 8px; }
.eq-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; text-align: center; box-shadow: var(--shadow-sm); }
.eq-card .k { font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); }
.eq-card .v { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -.02em; margin-top: 8px; line-height: 1; }
.eq-card--good { background: var(--ink); color: #fff; border-color: var(--ink); }
.eq-op { align-self: center; font-size: 2.2rem; font-weight: 800; color: var(--orange); }
@media (max-width: 760px) {
  .equation { grid-template-columns: 1fr; }
  .eq-op { padding: 2px 0; }
}
.overlooked { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.overlooked span { display: inline-flex; align-items: center; gap: .5em; padding: .5em .9em; border-radius: 8px; background: var(--surface); border: 1px solid var(--border); font-weight: 600; font-size: .92rem; }
.overlooked span::before { content: "✕"; color: var(--orange); font-weight: 800; }

/* ---------- Investigation checklist (from "What SourceVerdict checks") ---------- */
.checks { margin-top: 12px; border-top: 1px solid var(--border); }
.check { display: grid; grid-template-columns: 64px 1fr auto; gap: 18px; align-items: center; padding: 22px 8px; border-bottom: 1px solid var(--border); transition: background .15s, padding-left .2s; }
.check:hover { background: var(--surface-2); padding-left: 16px; }
.check__n { font-weight: 800; color: var(--orange); font-size: 1.05rem; font-variant-numeric: tabular-nums; }
.check__t { font-size: clamp(1.15rem, 2.3vw, 1.7rem); font-weight: 700; letter-spacing: -.01em; }
.check__d { color: var(--text-muted); font-size: .95rem; max-width: 42ch; text-align: right; }
.check--feature { background: var(--blue-tint); border-radius: 8px; border-bottom-color: transparent; padding-left: 16px; padding-right: 16px; }
.check--feature .check__t { color: var(--blue); }
@media (max-width: 720px) {
  .check { grid-template-columns: 44px 1fr; }
  .check__d { grid-column: 1 / -1; text-align: left; margin-left: 62px; }
}

/* ---------- Cards ---------- */
.grid-cards { display: grid; gap: 20px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); height: 100%; }
.card__num { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 500; color: var(--orange); line-height: 1; }
.card h3 { margin-top: 14px; }
.card p { margin-top: 10px; color: var(--text-muted); }

/* ---------- Verdict blocks (GO / PASS) ---------- */
.verdicts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 620px) { .verdicts { grid-template-columns: 1fr; } }
.verdict { position: relative; border-radius: var(--radius-lg); padding: 32px; color: #fff; overflow: hidden; }
.verdict--go { background: var(--blue); }
.verdict--pass { background: var(--ink); }
.verdict__label { font-size: clamp(3rem, 8vw, 4.6rem); font-weight: 800; line-height: .9; letter-spacing: -.02em; }
.verdict__desc { margin-top: 10px; font-size: 1.15rem; font-weight: 500; color: rgba(255,255,255,.9); }
.verdict .corner { position: absolute; top: 20px; right: 20px; width: 26px; height: 26px; border: 3px solid var(--orange); border-left: 0; border-bottom: 0; }
.verdict .corner.br { top: auto; right: auto; bottom: 20px; left: 20px; border: 3px solid var(--orange); border-right: 0; border-top: 0; }

/* ---------- Case study ---------- */
.case { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(24px, 4vw, 52px); align-items: center; }
@media (max-width: 860px) { .case { grid-template-columns: 1fr; } }
.case__media { position: relative; background: var(--surface-2); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-md); }
.case__media img { border-radius: 8px; width: 100%; }
.flow { display: grid; gap: 14px; }
.flow__row { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.flow__row:last-child { border-bottom: 0; }
.flow__k { font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); padding-top: 3px; }
.flow__v { color: var(--text); }
.flow__v .muted { display: block; margin-top: 4px; font-size: .92rem; }
@media (max-width: 520px) { .flow__row { grid-template-columns: 1fr; gap: 4px; } }

/* ---------- Bad reviews = intelligence (bridge) ---------- */
.bridge { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 16px; align-items: stretch; }
.bridge .arrow-col { align-self: center; color: var(--orange); font-size: 1.8rem; font-weight: 800; }
.bridge-card { border-radius: var(--radius-lg); padding: 24px; height: 100%; border: 1px solid var(--border); background: var(--surface); }
.bridge-card .k { font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.bridge-card.is-complaint { border-left: 4px solid var(--orange); }
.bridge-card.is-need { border-left: 4px solid var(--text-muted); }
.bridge-card.is-idea { background: var(--ink); color: #fff; border-color: var(--ink); }
.bridge-card.is-idea .k { color: var(--coral); }
@media (max-width: 860px) { .bridge { grid-template-columns: 1fr; } .bridge .arrow-col { transform: rotate(90deg); justify-self: center; } }

/* ---------- Make it sellable ---------- */
.sellable { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; }
@media (max-width: 860px) { .sellable { grid-template-columns: 1fr; } }
.sellable__img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); background: var(--cream); }
.feat-list { display: grid; gap: 14px; margin-top: 22px; }
.feat-list li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; list-style: none; }
.feat-list .ico { width: 34px; height: 34px; border-radius: 8px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; font-weight: 800; flex: none; }
:root[data-theme="dark"] .feat-list .ico { background: rgba(36,75,235,.25); }
.feat-list b { font-weight: 700; }
.feat-list p { color: var(--text-muted); margin-top: 2px; font-size: .95rem; }

/* ---------- Steps (how it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 28px 22px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.step__n { font-size: .8rem; font-weight: 800; letter-spacing: .1em; color: var(--orange); }
.step h3 { margin-top: 10px; font-size: 1.2rem; text-transform: uppercase; letter-spacing: -.01em; }
.step p { margin-top: 8px; color: var(--text-muted); font-size: .96rem; }

/* ---------- Report deliverables ---------- */
.deliverables { columns: 2; column-gap: 40px; margin-top: 10px; }
@media (max-width: 700px) { .deliverables { columns: 1; } }
.deliverables li { break-inside: avoid; display: grid; grid-template-columns: auto 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); list-style: none; }
.deliverables .tick { color: var(--blue); font-weight: 800; }
.section--ink .deliverables .tick, .section--blue .deliverables .tick { color: var(--coral); }
.section--ink .deliverables li, .section--blue .deliverables li { border-bottom-color: rgba(255,255,255,.16); }

/* ---------- Gallery (verdict carousel) ---------- */
.gallery { position: relative; }
.gallery__track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 30%); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scrollbar-width: thin; }
.gallery__track > figure { scroll-snap-align: start; margin: 0; }
.gallery__track img { border-radius: 10px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); width: 100%; }
.gallery__track figcaption { margin-top: 8px; font-size: .82rem; color: var(--text-muted); }
.gallery__nav { display: flex; gap: 10px; margin-top: 14px; }
.gallery__nav button { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border-strong); background: var(--surface); cursor: pointer; font-size: 1.2rem; display: grid; place-items: center; }
.gallery__nav button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
@media (max-width: 700px) { .gallery__track { grid-auto-columns: 78%; } }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
@media (max-width: 860px) { .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.plan { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.plan--featured { border: 2px solid var(--blue); box-shadow: var(--shadow-md); }
.plan__flag { position: absolute; top: -13px; left: 30px; background: var(--blue); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.plan__name { font-weight: 700; font-size: 1.1rem; }
.plan__price { font-size: 3rem; font-weight: 800; letter-spacing: -.03em; margin-top: 12px; line-height: 1; }
.plan__price sup { font-size: 1.2rem; font-weight: 700; vertical-align: super; }
.plan__per { color: var(--text-muted); font-size: .92rem; margin-top: 6px; }
.plan ul { list-style: none; margin: 22px 0; display: grid; gap: 10px; }
.plan li { display: grid; grid-template-columns: auto 1fr; gap: 10px; color: var(--text-muted); font-size: .96rem; }
.plan li .tick { color: var(--blue); font-weight: 800; }
.plan .btn { margin-top: auto; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .display { color: #fff; }
.cta-band .split { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
@media (max-width: 800px) { .cta-band .split { grid-template-columns: 1fr; } }
/* generic 2-col split that stacks on mobile (used outside the CTA band too) */
.split-2 { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
@media (max-width: 760px) { .split-2 { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--border); padding: 6px 0; }
.faq summary { cursor: pointer; list-style: none; padding: 20px 44px 20px 0; position: relative; font-weight: 700; font-size: 1.12rem; letter-spacing: -.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; font-weight: 400; color: var(--orange); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq__body { padding: 0 44px 22px 0; color: var(--text-muted); }
.faq .faq__body p + p { margin-top: 12px; }

/* ---------- Forms ---------- */
.form-shell { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
@media (max-width: 900px) { .form-shell { grid-template-columns: 1fr; } }
.form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 38px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; }
.field > label { display: block; font-weight: 600; margin-bottom: 8px; }
.req { color: var(--orange); }
.opt { color: var(--text-faint); font-weight: 500; font-size: .85em; }
.input, .select, .textarea {
  width: 100%; padding: 13px 14px; background: var(--bg); color: var(--text);
  border: 1.5px solid var(--border-strong); border-radius: 8px; transition: border-color .15s, box-shadow .15s;
}
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(36,75,235,.18); }
.textarea { min-height: 120px; resize: vertical; }
.help { font-size: .86rem; color: var(--text-muted); margin-top: 7px; }
.field-error { color: #c62828; font-size: .86rem; margin-top: 7px; display: none; }
:root[data-theme="dark"] .field-error { color: #ff8a80; }
.field.invalid .input, .field.invalid .select, .field.invalid .textarea { border-color: #c62828; }
.field.invalid .field-error { display: block; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .two-col { grid-template-columns: 1fr; } }
.file-drop { border: 1.5px dashed var(--border-strong); border-radius: 8px; padding: 22px; text-align: center; color: var(--text-muted); cursor: pointer; transition: border-color .15s, background .15s; }
.file-drop:hover, .file-drop.drag { border-color: var(--blue); background: var(--blue-tint); }
.file-drop input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.file-name { margin-top: 8px; font-weight: 600; color: var(--text); }
.radio-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 560px) { .radio-cards { grid-template-columns: 1fr; } }
.radio-card { position: relative; border: 1.5px solid var(--border-strong); border-radius: 10px; padding: 16px; cursor: pointer; transition: border-color .15s, background .15s; }
.radio-card input { position: absolute; opacity: 0; }
.radio-card:hover { border-color: var(--blue); }
.radio-card:has(input:checked) { border-color: var(--blue); background: var(--blue-tint); box-shadow: 0 0 0 3px rgba(36,75,235,.15); }
.radio-card:has(input:focus-visible) { outline: 3px solid var(--orange); outline-offset: 2px; }
.radio-card .rc-name { font-weight: 700; }
.radio-card .rc-price { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; margin-top: 4px; }
.radio-card .rc-note { font-size: .82rem; color: var(--text-muted); margin-top: 2px; }
.form-aside { position: sticky; top: 96px; display: grid; gap: 18px; }
.aside-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.aside-card h3 { font-size: 1.05rem; }
.aside-card ul { margin: 12px 0 0; padding-left: 0; list-style: none; display: grid; gap: 10px; }
.aside-card li { display: grid; grid-template-columns: auto 1fr; gap: 10px; color: var(--text-muted); font-size: .94rem; }
.aside-card li .tick { color: var(--blue); font-weight: 800; }
.form-status { border-radius: 10px; padding: 16px; margin-bottom: 20px; font-weight: 600; display: none; }
.form-status.ok { display: block; background: var(--blue-tint); color: var(--blue); border: 1px solid var(--blue); }
.form-status.err { display: block; background: #fdecec; color: #c62828; border: 1px solid #f1b0b0; }

/* ---------- Note / disclaimer ---------- */
.note { border-left: 3px solid var(--orange); padding: 14px 18px; background: var(--surface-2); border-radius: 0 8px 8px 0; color: var(--text-muted); font-size: .94rem; }
.callout { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--on-brand); padding-block: clamp(48px, 7vw, 80px) 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: #fff; }
.footer-tag { font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; color: #fff; margin-top: 16px; }
.footer-col h4 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--coral); margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,249,241,.72); padding: 6px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; color: rgba(255,249,241,.6); font-size: .86rem; }
.footer-disclaimer { max-width: 70ch; color: rgba(255,249,241,.55); font-size: .82rem; margin-top: 16px; line-height: 1.6; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding-top: clamp(40px, 6vw, 76px); padding-bottom: clamp(30px, 4vw, 48px); }
.page-hero .lead { margin-top: 18px; }
.breadcrumb { font-size: .84rem; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--text); }

/* ---------- Misc ---------- */
.hr { height: 1px; background: var(--border); border: 0; margin-block: var(--section-y); }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 14px; } .mt-2 { margin-top: 26px; } .mt-3 { margin-top: 40px; }
.maxw { max-width: 720px; }
.text-center { text-align: center; } .mx-auto { margin-inline: auto; }

/* =====================================================================
   COMMERCIAL MODEL — offers, catalog, report detail, packs, partner
   ===================================================================== */

/* ---- Outcome banner ---- */
.outcome { display: inline-flex; align-items: center; gap: .6em; font-family: var(--font-serif); font-style: italic; font-size: clamp(1.15rem, 2vw, 1.5rem); color: var(--text); }

/* ---- Value bundle (decision, true-cost, suppliers, improvements, plan) ---- */
.bundle { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 900px) { .bundle { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .bundle { grid-template-columns: 1fr; } }
.bundle__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.bundle__item .ico { width: 34px; height: 34px; border-radius: 8px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; font-weight: 800; margin-bottom: 12px; }
:root[data-theme="dark"] .bundle__item .ico { background: rgba(36,75,235,.25); }
.bundle__item b { display: block; font-weight: 700; }
.bundle__item p { color: var(--text-muted); font-size: .92rem; margin-top: 4px; }

/* ---- Three research-offer cards (Full is highlighted, not "popular") ---- */
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 900px) { .offers { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
.offer { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.offer--highlight { border: 2px solid var(--blue); box-shadow: var(--shadow-md); }
.offer__flag { position: absolute; top: -13px; left: 28px; background: var(--blue); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.offer__eyebrow { font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--text-muted); }
.offer__name { font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; margin-top: 6px; }
.offer__price { font-size: 2.4rem; font-weight: 800; letter-spacing: -.03em; margin-top: 12px; line-height: 1; }
.offer__price small { font-size: .95rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0; }
.offer__scope { color: var(--text-muted); margin-top: 12px; font-size: .96rem; }
.offer__list { list-style: none; margin: 18px 0; padding: 0; display: grid; gap: 9px; }
.offer__list li { display: grid; grid-template-columns: auto 1fr; gap: 10px; color: var(--text-muted); font-size: .94rem; }
.offer__list .tick { color: var(--blue); font-weight: 800; }
.offer__list .no { color: var(--text-faint); }
.offer__list .no::before { content: "—"; }
.offer .btn { margin-top: auto; }
.offer__note { font-size: .8rem; color: var(--text-faint); margin-top: 12px; }

/* ---- Supplier-validation strip (separate from the cards) ---- */
.supplier-strip { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; background: var(--ink); color: var(--on-brand); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); }
.supplier-strip h3 { color: #fff; }
.supplier-strip p { color: var(--on-brand-muted); margin-top: 8px; max-width: 60ch; }
.supplier-strip .price { font-weight: 800; color: var(--coral); font-size: 1.05rem; letter-spacing: .02em; margin-top: 10px; display: inline-block; }
@media (max-width: 720px) { .supplier-strip { grid-template-columns: 1fr; } }

/* ---- Scope comparison table ---- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--border); border-radius: var(--radius-lg); }
.scope-table { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--surface); }
.scope-table th, .scope-table td { text-align: left; padding: 15px 18px; border-bottom: 1px solid var(--border); vertical-align: top; }
.scope-table thead th { font-size: .82rem; letter-spacing: .04em; background: var(--surface-2); position: sticky; top: 0; }
.scope-table thead th.is-featured { color: var(--blue); }
.scope-table td:first-child, .scope-table th:first-child { font-weight: 600; }
.scope-table td { color: var(--text-muted); font-size: .93rem; }
.scope-table .yes { color: var(--blue); font-weight: 800; }
.scope-table .no { color: var(--text-faint); }
.scope-table tbody tr:last-child td { border-bottom: 0; }
.scope-table .price-row td { font-weight: 800; color: var(--text); font-size: 1rem; }

/* ---- Catalog ---- */
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .catalog-grid { grid-template-columns: 1fr; } }
.report-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.report-card__thumb { aspect-ratio: 16/10; background: var(--surface-2); position: relative; overflow: hidden; }
.report-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.report-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.report-card__title { font-size: 1.2rem; font-weight: 800; letter-spacing: -.01em; }
.report-card__meta { color: var(--text-muted); font-size: .86rem; margin-top: 8px; display: flex; flex-wrap: wrap; gap: 6px 12px; }
.report-card__meta span { display: inline-flex; align-items: center; gap: .35em; }
.report-card .btn { margin-top: 18px; }
.report-card--soon { border-style: dashed; }
.report-card--soon .report-card__thumb { display: grid; place-items: center; color: var(--text-faint); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .8rem; }

/* Availability + verdict badges */
.badge { display: inline-flex; align-items: center; gap: .4em; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.badge--sample { background: var(--blue-tint); color: var(--blue); }
:root[data-theme="dark"] .badge--sample { background: rgba(36,75,235,.25); }
.badge--available { background: #e6f5ec; color: #1a7f43; }
:root[data-theme="dark"] .badge--available { background: rgba(37,163,94,.2); color: #6fdca0; }
.badge--soon { background: var(--surface-2); color: var(--text-muted); }
.badge--go { background: var(--blue); color: #fff; }
.badge--pass { background: var(--ink); color: #fff; }
.report-card__thumb .badge { position: absolute; top: 12px; left: 12px; z-index: 2; box-shadow: var(--shadow-sm); }

/* ---- Report detail ---- */
.report-hero { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,48px); align-items: start; }
@media (max-width: 820px) { .report-hero { grid-template-columns: 1fr; } }
.report-facts { list-style: none; padding: 0; margin: 18px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.report-facts li { background: var(--surface); padding: 14px 16px; }
.report-facts .k { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.report-facts .v { font-weight: 600; margin-top: 3px; }
.preview-panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 700px) { .preview-panels { grid-template-columns: 1fr; } }
.preview-panels figure { margin: 0; }
.preview-panels img { border-radius: 10px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.preview-panels figcaption { font-size: .82rem; color: var(--text-muted); margin-top: 8px; }

/* ---- Pack selector ---- */
.pack { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(20px,3vw,30px); }
.pack__options { display: flex; gap: 12px; flex-wrap: wrap; }
.pack__option { border: 1.5px solid var(--border-strong); border-radius: 10px; padding: 12px 18px; cursor: pointer; font-weight: 700; }
.pack__option:has(input:checked) { border-color: var(--blue); background: var(--blue-tint); }
.pack__option input { position: absolute; opacity: 0; }
.pack__picks { display: grid; gap: 10px; margin-top: 18px; }
.pick { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; }
.pack__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.pack__total .amount { font-size: 1.8rem; font-weight: 800; letter-spacing: -.02em; }

/* ---- Availability / inquiry note ---- */
.avail-note { font-size: .86rem; color: var(--text-muted); margin-top: 10px; }
.soon-panel { text-align: center; border: 1.5px dashed var(--border-strong); border-radius: var(--radius-lg); padding: clamp(28px,5vw,52px); background: var(--surface); }

/* ---- Consent (separate from transactional submit) ---- */
.consent { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; margin-top: 4px; padding: 14px; background: var(--surface-2); border-radius: 10px; }
.consent input { margin-top: 4px; }
.consent label { font-size: .88rem; color: var(--text-muted); }

/* ---- Partner module (INACTIVE by default: renders nothing) ---- */
.partner-module { display: none; }
.partner-module.is-active { display: block; }
