/* ============================================================================
   CryptoCardVault — Order-Book Ledger
   Direction: the compare table and every card review read like the trading
   screen this audience already stares at daily — monospace tabular figures,
   ruled ledger rows, dense information, minimal chrome. One committed accent
   (a cool signal teal, not gold, not the generic bright-green crypto default)
   carries every highlight, active state and primary action. Dark ground only.
   No gradients or glass anywhere except the accent itself; state changes are
   hard binary inversions, not soft transitions (donated from the one-bit
   desktop world). Generous negative space around every data block so density
   reads as precision, not a cramped spreadsheet (donated from the luxury-
   fashion world). Corners are sharp-to-small — a ledger has ruled lines, not
   pill shapes.
   Fonts: Archivo (self-hosted, variable, latin subset only) carries every
   display/label/UI voice — the one webfont this system spends. All body prose
   stays on the system sans stack. All figures — prices, %, fees, dates, table
   cells — render in the OS's own ui-monospace stack: no imported "coder" font,
   because the point is that this is your own machine's ledger, not a branded
   typeface. Tabular-nums enabled everywhere numbers appear so columns align.
   ========================================================================= */

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url('/assets/fonts/archivo-var.woff2?v=1') format('woff2-variations'),
       url('/assets/fonts/archivo-var.woff2?v=1') format('woff2');
}

:root {
  /* surfaces */
  --bg:          #0A0B0D;
  --bg-raised:   #131417;
  --bg-panel:    #17181C;
  --hairline:    #24262B;
  --hairline-2:  #34373E;

  /* type color */
  --text:        #EDEFF2;
  --text-muted:  #9CA3AD;
  --text-dim:    #7C8390;

  /* the one committed accent — signal teal, carries highlights + primary actions */
  --accent:      #35E1C9;
  --accent-deep: #1FAE99;
  --accent-ink:  #05201C; /* dark text set on accent fills */

  /* sparse negative signal — fees, KYC required, cons. Never decorative. */
  --negative:    #E2665A;

  /* mark tokens (read by logo.njk) */
  --brand-grey:  #9CA3AD;
  --brand-accent: #35E1C9;

  --link:        #35E1C9;
  --link-hover:  #7FEDDC;

  --font-display: 'Archivo', ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono:    ui-monospace, "SF Mono", "Cascadia Mono", "Segoe UI Mono", Consolas, "Roboto Mono", monospace;

  --radius-2xs:  2px;
  --radius-sm:   4px;
  --radius:      6px;
  --max-width:   1120px;
  --pad:         clamp(1rem, 4vw, 2rem);

  /* type ramp — every non-heading font-size in this file resolves to one of
     these seven steps. Headings use clamp() fluid scales instead (hero >
     section h2 > global h2/h3), which are their own deliberate, documented
     progression. */
  --text-3xs:  .72rem;  /* uppercase tracked micro-labels */
  --text-2xs:  .8rem;   /* small data chips / captions */
  --text-xs:   .875rem; /* secondary meta text */
  --text-sm:   .9375rem; /* compact UI text, table cells, buttons */
  --text-md:   1rem;    /* small component headings */
  --text-lg:   1.15rem; /* card titles */
  --text-xl:   1.6rem;  /* single-glyph marks */
}

* { box-sizing: border-box; }
html { color-scheme: dark; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* One ambient wash — the only tonal blend in the system, held as atmosphere
   behind the content, never as UI-chrome fill (donated from the theatrical-
   lighting world). Fixed and pointer-events:none so it never repaints. */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(58rem 38rem at 82% -14%, rgba(53,225,201,.05), transparent 62%);
}

main { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--pad) 5rem;
       position: relative; z-index: 1; }

/* ---------- type ---------- */
h1, h2, h3 {
  font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.025em;
  margin: 0 0 .6em; font-weight: 700;
}
h1 { font-size: clamp(2rem, 5.5vw, 3.1rem); margin-top: 1.6rem; }
h2 { font-size: clamp(1.3rem, 3vw, 1.75rem); margin-top: 2.6rem; }
h3 { font-size: 1.05rem; margin-top: 1.6rem; color: var(--text); }
p  { margin: 0 0 1.1rem; max-width: 72ch; }

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); text-decoration: underline; text-underline-offset: 3px; }

strong { color: #fff; font-weight: 650; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: var(--radius-2xs); }

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

/* tabular alignment everywhere a figure appears */
.num, .stat b, .pcard-line, td, th,
.compare-table, .card-spec-table, .verdict-fit, .badge {
  font-variant-numeric: tabular-nums;
}

.intro { font-size: var(--text-lg); color: var(--text-muted); max-width: 62ch; }
.intro strong { color: var(--text); }
.byline, .table-note, .data-disclaimer, .cap {
  font-size: var(--text-xs); color: var(--text-dim); line-height: 1.6; font-family: var(--font-mono);
}
.data-disclaimer {
  border-top: 1px solid var(--hairline);
  padding-top: 1.1rem; margin-top: 2.6rem;
}
.breadcrumb-trail { font-size: var(--text-xs); color: var(--text-dim); margin: 0 0 .4rem; font-family: var(--font-mono); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  max-width: var(--max-width); margin: 0 auto;
  padding: .9rem var(--pad);
  background: rgba(10,11,13,.9);
  border-bottom: 1px solid var(--hairline);
}
.site-header .logo { display: inline-flex; align-items: center; color: #fff; line-height: 0; }
.site-header .logo:hover { text-decoration: none; }
.brand-mark { display: block; height: 32px; width: auto; }

.site-header nav { display: flex; gap: 1.4rem; align-items: center; }
.site-header nav a {
  font-family: var(--font-mono);
  color: var(--text-muted); font-size: var(--text-xs); font-weight: 500;
  padding: .3rem 0; border-bottom: 1.5px solid transparent;
}
.site-header nav a:hover { color: var(--text); border-bottom-color: var(--accent); text-decoration: none; }

.nav-toggle {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px;
  background: none; border: 0; padding: .5rem; cursor: pointer;
}
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: var(--text); margin: 4px 0; }
.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;
}

/* ---------- answer box (AEO block) ---------- */
.answer-box {
  background: var(--bg-panel);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  margin: 2rem 0;
}
.answer-box h2 {
  margin: 0 0 .8rem; font-size: var(--text-3xs); text-transform: uppercase; letter-spacing: .1em;
  color: var(--accent); font-family: var(--font-mono); font-weight: 600;
}
.answer-box ul { margin: 0; padding-left: 1.1rem; }
.answer-box li { margin: .5rem 0; color: var(--text-muted); }
.answer-box li strong { color: var(--text); }

/* ---------- product cards ---------- */
.card-grid { display: grid; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); margin: 1.2rem 0 0; }
.pcard {
  display: block; padding: 1.2rem 1.3rem;
  background: var(--bg-raised); color: var(--text);
}
.pcard:hover { background: var(--bg-panel); text-decoration: none; }
.pcard:hover .pcard-cta { color: var(--accent); }
.pcard-issuer { font-size: var(--text-3xs); text-transform: uppercase; letter-spacing: .1em; color: var(--text-dim); font-family: var(--font-mono); }
.pcard h3 { margin: .35rem 0 .5rem; font-size: var(--text-lg); }
.pcard-line { margin: 0; font-size: var(--text-xs); color: var(--text-muted); font-family: var(--font-mono); }
.pcard-network { color: var(--text-dim); }
.pcard-cta { display: inline-block; margin-top: .9rem; font-size: var(--text-xs); color: var(--text-muted); font-weight: 600; font-family: var(--font-mono); }

/* ---------- tables — the signature component ---------- */
.table-scroll {
  overflow-x: auto; margin: 1rem 0; -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--hairline-2) var(--bg-panel); scrollbar-width: thin;
}
.table-scroll::-webkit-scrollbar { height: 8px; }
.table-scroll::-webkit-scrollbar-track { background: var(--bg-panel); }
.table-scroll::-webkit-scrollbar-thumb { background: var(--hairline-2); border-radius: var(--radius-sm); }
.table-scroll::-webkit-scrollbar-thumb:hover { background: var(--accent-deep); }
.compare-table, .card-spec-table {
  width: 100%; border-collapse: collapse; font-size: var(--text-sm); min-width: 520px;
  font-family: var(--font-mono);
}
.card-spec-table { min-width: 0; }
.compare-table caption {
  text-align: left; font-size: var(--text-2xs); color: var(--text-dim);
  padding-bottom: .6rem; font-family: var(--font-mono);
}
.compare-table th, .compare-table td,
.card-spec-table th, .card-spec-table td {
  border-bottom: 1px solid var(--hairline);
  padding: .7rem .8rem; text-align: left; vertical-align: top;
}
.compare-table thead th {
  font-size: var(--text-3xs); text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-dim); font-weight: 600; border-bottom: 1px solid var(--hairline-2);
}
.card-spec-table th { color: var(--text-dim); font-weight: 500; width: 38%; }
.compare-table tbody th { font-weight: 650; font-family: var(--font-display); letter-spacing: -0.01em; }
.compare-table tr.row-highlight td, .compare-table tr.row-highlight th {
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  box-shadow: inset 0 1px 0 var(--accent), inset 0 -1px 0 var(--accent);
}
.compare-table tbody tr:hover td, .compare-table tbody tr:hover th { background: var(--bg-panel); }

/* ---------- badges ---------- */
.card-badges { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; padding: 0; margin: 1rem 0; }
.badge {
  font-family: var(--font-mono); font-size: var(--text-2xs); padding: .26rem .6rem; border-radius: var(--radius-sm);
  background: var(--bg-panel); border: 1px solid var(--hairline); color: var(--text-muted);
}
.badge--highlight { border-color: var(--accent-deep); color: var(--accent); }

/* ---------- issuer lockup on card pages ---------- */
.issuer-lockup { display: flex; align-items: center; gap: 1.1rem; margin: 1.4rem 0 1rem; }
.issuer-lockup h1 { margin: 0 0 .25rem; }
.issuer-lockup .card-issuer-line { margin: 0; color: var(--text-muted); font-size: var(--text-xs); font-family: var(--font-mono); }
.issuer-mark {
  flex: none; width: 56px; height: 56px; border-radius: var(--radius);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; line-height: 1;
  color: var(--issuer, var(--text-muted));
  background: color-mix(in srgb, var(--issuer, #9CA3AD) 12%, var(--bg-raised));
  border: 1px solid color-mix(in srgb, var(--issuer, #9CA3AD) 34%, transparent);
}
.issuer-mark--logo img { width: 62%; height: 62%; object-fit: contain; }
/* Named exception to the single-accent rule: network identity (Visa vs.
   Mastercard) changes where a card actually works, so it's scannable product
   fact, not decoration — kept off the teal accent so it never reads as an
   editorial highlight. Real official marks (src/assets/logos/) carry each
   network's own color; that's not an invented palette addition, it's the
   network's own trademark and can't be swapped for a site token without
   misstating which network a card runs on. */
.network-mark { display: inline-flex; align-items: center; gap: .45rem; vertical-align: -2px; }
.network-mark-icon { flex: none; display: block; }
.network-mark-icon--visa { height: 11px; width: auto; }
.network-mark-label { color: var(--text); font-weight: 600; font-family: var(--font-mono); font-size: var(--text-sm); }

@media (max-width: 560px) {
  .issuer-mark { width: 44px; height: 44px; font-size: var(--text-lg); }
  .issuer-lockup { gap: .8rem; }
}

/* ---------- review blocks ---------- */
.verdict {
  background: var(--bg-panel); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: 1.4rem 1.6rem; margin: 1.8rem 0;
}
.verdict h2 { margin-top: 0; font-size: var(--text-md); }
.verdict-fit { list-style: none; padding: 0; margin: 1rem 0 0; font-size: var(--text-sm); font-family: var(--font-mono); }
.verdict-fit li { padding: .35rem 0; border-top: 1px solid var(--hairline); color: var(--text-muted); }
.review-block { margin: 2.2rem 0; }
.eligibility-block {
  background: var(--bg-panel);
  border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: 1.2rem 1.4rem;
}
.eligibility-block h2 { margin-top: 0; font-size: var(--text-md); }
.eligibility-block p { margin: 0; color: var(--text-muted); }

.highlight-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; font-family: var(--font-mono); font-size: var(--text-sm); }
.highlight-list li {
  padding-left: 1.5rem; position: relative; color: var(--text-muted);
}
.highlight-list li::before {
  content: "›"; position: absolute; left: 0; top: -.06em; color: var(--accent); font-weight: 700;
}

.proscons-grid { display: grid; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.proscons-grid > div { background: var(--bg); padding: 1.2rem 1.3rem; }
.pros, .cons { list-style: none; padding: 0; margin: .5rem 0 0; }
.pros li, .cons li { padding: .3rem 0 .3rem 1.4rem; position: relative; color: var(--text-muted); font-size: var(--text-sm); }
.pros li::before, .cons li::before {
  position: absolute; left: 0; top: .3rem; font-weight: 700; font-size: var(--text-sm); font-family: var(--font-mono);
}
.pros li::before { content: "+"; color: var(--accent); }
.cons li::before { content: "\2212"; color: var(--negative); }

.steps-list { padding-left: 1.2rem; }
.steps-list li { margin: .55rem 0; color: var(--text-muted); }
.steps-list li strong { color: var(--text); }

/* ---------- CTA ---------- */
.card-cta { margin: 1.8rem 0 .6rem; }
.card-cta a {
  display: inline-block; padding: .78rem 1.5rem;
  background: var(--accent);
  color: var(--accent-ink); font-weight: 700; font-family: var(--font-display); border-radius: var(--radius); font-size: var(--text-sm);
  letter-spacing: -0.01em;
}
.card-cta a:hover { text-decoration: none; background: var(--link-hover); }

/* ---------- figures ---------- */
.post-figure { margin: 2rem 0; }
.post-figure img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius); border: 1px solid var(--hairline);
  background: var(--bg-raised);
}
.post-figure figcaption { font-size: var(--text-xs); color: var(--text-dim); margin-top: .6rem; font-family: var(--font-mono); }

/* ---------- link lists ---------- */
.guide-links, .related-card-list { list-style: none; padding: 0; margin: .8rem 0 0; }
.guide-links li, .related-card-list li {
  padding: .75rem 0; border-top: 1px solid var(--hairline);
}
.related-meta { color: var(--text-dim); font-size: var(--text-xs); font-family: var(--font-mono); }
.post-next, .related-cards, .home-guides { margin-top: 2.8rem; }
.back-link { margin-top: 2.4rem; font-size: var(--text-xs); font-family: var(--font-mono); }

.post-faq h3, .card-faq h3 { font-size: var(--text-md); margin-top: 1.5rem; }
.post-faq p, .card-faq p { color: var(--text-muted); }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 2.4rem var(--pad) 3rem;
  max-width: var(--max-width); margin: 0 auto;
  font-size: var(--text-xs); color: var(--text-dim); line-height: 1.7;
}
.site-footer a { color: var(--text-muted); }
.site-footer a:hover { color: var(--accent); }
.footer-aff { margin-top: 1rem; color: var(--text-dim); }

/* ============================================================================
   LANDING COMPOSITION
   ========================================================================= */

:root { --sec: clamp(3.6rem, 8vw, 6.5rem); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.5rem; border-radius: var(--radius);
  font-family: var(--font-display); font-size: var(--text-sm); font-weight: 650; line-height: 1;
  letter-spacing: -0.01em;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--link-hover); color: var(--accent-ink); }
.btn-ghost { border: 1px solid var(--hairline-2); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- hero ---------- */
.hero {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}
.hero h1 {
  font-size: clamp(2.5rem, 6.6vw, 4.2rem);
  line-height: 1.02; letter-spacing: -.035em; margin: 0 0 1.4rem;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-lede { font-size: var(--text-md); color: var(--text-muted); max-width: 46ch; margin-bottom: 1rem; }
.hero-lede strong { color: var(--text); }
.hero-meta { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--text-dim); margin: 0 0 1.8rem; }
.hero-meta .dot { color: var(--accent); }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* Signature component: a live-feeling ledger preview standing in for a hero
   illustration — real card names and figures, not a decorative credit-card
   graphic. This is the flagship demonstration of the world. */
.hero-ledger {
  background: var(--bg-panel); border: 1px solid var(--hairline); border-radius: var(--radius);
  font-family: var(--font-mono); font-size: var(--text-xs); overflow: hidden;
}
.hero-ledger-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: .7rem .9rem; border-bottom: 1px solid var(--hairline);
  color: var(--text-dim); font-size: var(--text-3xs); text-transform: uppercase; letter-spacing: .08em;
}
.hero-ledger-head .live-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  margin-right: .5rem;
}
.hero-ledger-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: .6rem 1rem; align-items: baseline;
  padding: .75rem .9rem; border-bottom: 1px solid var(--hairline);
}
.hero-ledger-row:last-child { border-bottom: 0; }
.hero-ledger-row .name { color: var(--text); font-weight: 600; }
.hero-ledger-row .issuer { display: block; color: var(--text-dim); font-size: var(--text-2xs); font-weight: 400; }
.hero-ledger-row .cashback { color: var(--accent); font-variant-numeric: tabular-nums; text-align: right; }
.hero-ledger-row .fee { color: var(--text-muted); font-variant-numeric: tabular-nums; text-align: right; }

/* ---------- stat bar ---------- */
.statbar {
  display: flex; flex-wrap: wrap; gap: 1rem clamp(1.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  padding: 1.4rem 0; margin-bottom: var(--sec);
}
.stat { display: flex; align-items: baseline; gap: .6rem; }
.stat b { font-family: var(--font-mono); font-size: clamp(1.4rem, 3.2vw, 1.9rem); font-weight: 700; letter-spacing: -.02em; color: var(--text); }
.stat span { font-size: var(--text-3xs); text-transform: uppercase; letter-spacing: .1em; color: var(--text-dim); }

/* ---------- alternating splits ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center; margin-top: var(--sec);
}
.split-copy h2 { margin-top: 0; font-size: clamp(1.6rem, 3.6vw, 2.3rem); letter-spacing: -.03em; line-height: 1.12; }
.split-copy p { color: var(--text-muted); max-width: 46ch; }
.split-copy .btn { margin-top: .6rem; }
.muted { color: var(--text-muted); }

/* feature rows */
.featrows { list-style: none; padding: 0; margin: 0; display: grid; gap: 1px; background: var(--hairline); }
.featrows li {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.2rem 1.3rem; background: var(--bg);
}
.featrows li.is-raised { background: var(--bg-raised); }
.featrows h3 { margin: 0 0 .3rem; font-size: var(--text-md); }
.featrows p { margin: 0; font-size: var(--text-sm); color: var(--text-muted); }
.ftile {
  flex: none; width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: var(--radius-sm); background: var(--bg-panel); border: 1px solid var(--hairline);
  color: var(--accent);
}
.ftile svg { width: 19px; height: 19px; }

.panelstack { display: grid; gap: 0; }
.ticklist { list-style: none; padding: 0; margin: 1.3rem 0 0; display: grid; gap: .5rem; font-family: var(--font-mono); font-size: var(--text-sm); }
.ticklist li { padding-left: 1.6rem; position: relative; color: var(--text-muted); }
.ticklist li::before {
  content: ""; position: absolute; left: 0; top: .18em; width: 14px; height: 14px;
  background-color: var(--accent);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---------- generic raised panel ---------- */
.panel {
  background: var(--bg-raised); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); margin-top: var(--sec);
}
.panel > h2 { margin-top: 0; font-size: clamp(1.3rem, 3vw, 1.7rem); }
.panel .guide-links li:first-child { border-top: 0; padding-top: 0; }

/* ---------- three-up facts (testimonial rhythm, sourced content, no decorative numbering) ---------- */
.misconceptions { margin-top: var(--sec); }
.misgrid { display: grid; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); margin-top: 2rem; }
.mcard { padding: 1.5rem 1.4rem; background: var(--bg); }
.mcard.is-raised { background: var(--bg-raised); }
.mcard h3 { margin: 0 0 .5rem; font-size: var(--text-md); }
.mcard p { margin: 0; font-size: var(--text-sm); color: var(--text-muted); }

/* ---------- network strip ---------- */
.logostrip {
  margin-top: var(--sec);
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  padding: 2rem 0;
}
.strip-label { text-align: center; font-family: var(--font-mono); font-size: var(--text-3xs); text-transform: uppercase; letter-spacing: .12em; color: var(--text-dim); margin: 0 0 1.4rem; }
.logostrip ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem clamp(1.5rem, 5vw, 3.4rem); }
.logostrip li { font-family: var(--font-display); font-size: clamp(1rem, 2.2vw, 1.3rem); font-weight: 700; letter-spacing: -.01em; color: var(--text-dim); }

/* ---------- CTA panel ---------- */
.ctapanel {
  margin-top: var(--sec);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.8rem;
  background: var(--bg-raised); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 3rem);
}
.ctapanel h2 { margin: 0 0 .5rem; font-size: clamp(1.3rem, 3vw, 1.9rem); letter-spacing: -.03em; }
.ctapanel p { margin: 0; color: var(--text-muted); max-width: 48ch; font-size: var(--text-sm); }
.cta-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ---------- footer grid ---------- */
.footer-grid {
  display: grid; grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 2rem clamp(1.5rem, 4vw, 3rem); padding-bottom: 2.2rem;
}
.footer-brand .brand-mark { height: 28px; margin-bottom: 1rem; color: var(--text); }
.footer-brand p { max-width: 34ch; margin: 0; }
.footer-col h2 { font-family: var(--font-mono); font-size: var(--text-3xs); text-transform: uppercase; letter-spacing: .1em; color: var(--text); margin: 0 0 .9rem; font-weight: 600; }
.footer-col a { display: block; padding: .3rem 0; font-size: var(--text-xs); }
.footer-bar { border-top: 1px solid var(--hairline); padding-top: 1.6rem; }
.footer-bar p { margin: 0 0 .8rem; }
.footer-copy { color: var(--text-dim); font-family: var(--font-mono); }

/* ---------- mobile ---------- */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-ledger { order: -1; }
  .split, .split-reverse { grid-template-columns: 1fr; }
  .split-reverse .panelstack { order: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .site-header { flex-wrap: wrap; }
  .site-header nav {
    display: none; width: 100%; flex-direction: column;
    align-items: flex-start; gap: 0; padding-top: .5rem;
  }
  .site-header nav.is-open { display: flex; }
  .site-header nav a {
    width: 100%; padding: .7rem 0;
    border-bottom: 1px solid var(--hairline);
  }
  .brand-mark { height: 28px; }
  .answer-box, .verdict, .eligibility-block { padding: 1.1rem 1.2rem; }
  .statbar { gap: 1.1rem 2rem; }
  .stat { flex-direction: column; gap: .1rem; align-items: flex-start; min-width: 42%; }
  .ctapanel { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions, .cta-actions { width: 100%; }
}
