/* ==========================================================================
   NewBrand — core stylesheet
   Source of truth: /BRAND.md
   1 Fonts · 2 Tokens · 3 Reset · 4 Type · 5 Utilities · 6 Buttons
   7 Ribbon+Nav · 8 Hero · 9 Proof panel · 10 Steps · 11 Engines
   12 Pillars · 13 Bands · 14 Charts · 15 Voices · 16 Q&A · 17 End CTA
   18 Footer · 19 Documents · 20 Fleet page · 21 Ledger page
   22 Market Desk · 23 Contact · 24 Motion · 25 Responsive
   ========================================================================== */

/* ---------- 1 · Fonts (self-hosted variable, latin) ---------- */
@font-face {
  font-family: "Sora";
  src: url("../media/fonts/sora-var.woff2") format("woff2");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../media/fonts/manrope-var.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("../media/fonts/jetbrains-mono-var.woff2") format("woff2");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- 2 · Tokens ---------- */
:root {
  /* CTA — eToro green */
  --go: #00B15D;
  --go-hover: #00C96A;
  --go-press: #00854A;
  --go-soft: #E8F7EF;
  --go-ring: rgba(0, 177, 93, .28);

  /* Neutrals — warm porcelain */
  --canvas: #FAFBF8;
  --surface: #FFFFFF;
  --surface-2: #F1F4EF;
  --line: #E2E7DF;
  --line-strong: #CBD3C6;
  --ink: #0F1A15;
  --ink-2: #3D4A44;
  --ink-3: #6C7A73;

  /* Dark bands */
  --forest: #0B241A;
  --forest-2: #123123;
  --forest-line: #1E4534;
  --on-forest: #E7F0EA;
  --on-forest-2: #9DB4A8;

  /* Engine accents */
  --c-tandem: #0E8F8F;
  --c-ember: #C0740F;
  --c-harbor: #6B4CD6;
  --c-mosaic: #2F62D6;

  /* Market semantics */
  --up: #00854A;
  --down: #C9333A;

  
  --tp-green: #00B67A;
  --tp-ink: #191919;

  /* Type */
  --f-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --f-text: "Manrope", "Segoe UI", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;

  --t-display: clamp(2.5rem, 1.2rem + 4.2vw, 4.25rem);
  --t-h2: clamp(1.75rem, 1.15rem + 2vw, 2.625rem);
  --t-h3: 1.3125rem;
  --t-h4: 1.0625rem;
  --t-lede: clamp(1.05rem, 1rem + .3vw, 1.1875rem);
  --t-body: 1rem;
  --t-small: .875rem;
  --t-fine: .8125rem;
  --t-eyebrow: .6875rem;
  --t-stat: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem);

  /* Layout */
  --wrap: 1200px;
  --gutter: clamp(20px, 4vw, 44px);
  --pad-y: clamp(64px, 8vw, 112px);
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;
  --nav-h: 80px;
  --ribbon-h: 34px;

  /* Elevation */
  --lift-1: 0 1px 2px rgba(15, 26, 21, .04), 0 8px 24px rgba(15, 26, 21, .05);
  --lift-2: 0 2px 4px rgba(15, 26, 21, .05), 0 18px 44px rgba(15, 26, 21, .09);

  --ease: cubic-bezier(.32, .72, 0, 1);
}

/* ---------- 3 · Reset & base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 24px); }

body {
  background: var(--canvas);
  color: var(--ink-2);
  font-family: var(--f-text);
  font-size: var(--t-body);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-wrap: break-word;
}
body.locked { overflow: hidden; }

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

:focus-visible {
  outline: 2px solid var(--go);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: var(--go); color: #fff; }

.offscreen {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--go); color: #fff; font-weight: 700;
  padding: 12px 20px; border-radius: var(--r-pill);
  transition: top .2s;
}
.skip:focus { top: 12px; }

/* ---------- 4 · Type ---------- */
h1, h2, h3, h4, .display {
  font-family: var(--f-display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.025em;
  /* Even the lines out instead of leaving one orphaned word on the last row. */
  text-wrap: balance;
}
h1, .display { font-size: var(--t-display); letter-spacing: -.035em; line-height: 1.03; }
h2 { font-size: var(--t-h2); letter-spacing: -.03em; }
h3 { font-size: var(--t-h3); line-height: 1.3; }
h4 { font-size: var(--t-h4); line-height: 1.35; }

p + p { margin-top: 14px; }
strong { color: var(--ink); font-weight: 700; }

.standfirst { font-size: var(--t-lede); color: var(--ink-2); line-height: 1.6; text-wrap: pretty; }
.smallprint { font-size: var(--t-fine); color: var(--ink-3); line-height: 1.6; }
.figs { font-family: var(--f-mono); font-variant-numeric: tabular-nums; letter-spacing: -.02em; }

.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-mono);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.kicker::before {
  content: ""; width: 7px; height: 7px; flex: none;
  background: var(--go); border-radius: 2px;
}
.kicker--plain::before { display: none; }

/* ---------- 5 · Utilities ---------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 880px; }
.block { padding-block: var(--pad-y); }
.block--tight { padding-block: clamp(44px, 5.5vw, 76px); }
.block--flush-top { padding-top: 0; }
.block--edge { border-top: 1px solid var(--line); }

.head { max-width: 660px; margin-bottom: clamp(36px, 4.5vw, 60px); }
.head .kicker { margin-bottom: 16px; }
.head h2 + .standfirst { margin-top: 18px; }
.head--mid { margin-inline: auto; text-align: center; }
.head--mid .kicker { justify-content: center; }
.head--wide { max-width: 780px; }

.tlink {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--go-press); font-weight: 700; font-size: var(--t-small);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, gap .2s var(--ease);
}
.tlink:hover { border-color: var(--go); gap: 11px; }
.tlink::after { content: "\2192"; font-family: var(--f-mono); }
.tlink--bare::after { content: none; }

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--lift-1);
}
.panel--pad { padding: clamp(22px, 3vw, 34px); }
.panel--rise { transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.panel--rise:hover { transform: translateY(-4px); box-shadow: var(--lift-2); border-color: var(--line-strong); }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono); font-size: var(--t-fine); font-weight: 500;
  padding: 5px 11px; border-radius: var(--r-pill);
  background: var(--surface-2); color: var(--ink-2);
  border: 1px solid var(--line);
}
.tag--go, .tag--live { background: var(--go-soft); color: var(--go-press); border-color: rgba(0,177,93,.22); }
.tag--sample { background: #FFF4E2; color: #8A5712; border-color: #F3DCB6; }

.dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--go); box-shadow: 0 0 0 0 var(--go-ring);
  animation: beat 2.4s var(--ease) infinite;
}
@keyframes beat {
  0% { box-shadow: 0 0 0 0 var(--go-ring); }
  70% { box-shadow: 0 0 0 8px rgba(0,177,93,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,177,93,0); }
}

.plus { color: var(--up); }
.minus { color: var(--down); }

/* ---------- 6 · Buttons ---------- */
.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--f-text); font-size: .9375rem; font-weight: 700;
  line-height: 1; padding: 16px 30px;
  background: var(--go); color: #fff;
  border-radius: var(--r-pill);
  box-shadow: 0 1px 2px rgba(0,133,74,.24);
  transition: background .18s, box-shadow .25s, transform .25s var(--ease);
}
.cta:hover { background: var(--go-hover); box-shadow: 0 8px 26px var(--go-ring); transform: translateY(-2px); }
.cta:active { background: var(--go-press); transform: translateY(0); box-shadow: none; }

.cta--line {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line-strong); box-shadow: none;
}
.cta--line:hover { background: var(--surface); border-color: var(--ink-3); box-shadow: var(--lift-1); }

.cta--onforest {
  background: transparent; color: var(--on-forest);
  border: 1.5px solid var(--forest-line); box-shadow: none;
}
.cta--onforest:hover { background: var(--forest-2); border-color: var(--on-forest-2); box-shadow: none; }

.cta--sm { padding: 11px 21px; font-size: .875rem; }
.cta--lg { padding: 18px 36px; font-size: 1rem; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- 7 · Ribbon + Nav ---------- */
.ribbon {
  height: var(--ribbon-h);
  background: var(--forest);
  color: var(--on-forest-2);
  display: flex; align-items: center;
  overflow: hidden;
  font-family: var(--f-mono); font-size: .75rem;
}
.ribbon-tag {
  display: inline-flex; align-items: center; gap: 8px; flex: none;
  padding: 0 16px; height: 100%;
  color: var(--on-forest); font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; font-size: .6875rem;
  border-right: 1px solid var(--forest-line);
}
.ribbon-view {
  flex: 1; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 40px, #000 calc(100% - 40px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 40px, #000 calc(100% - 40px), transparent);
}
.ribbon-track { display: flex; width: max-content; animation: slide 62s linear infinite; }
.ribbon-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 22px; white-space: nowrap; }
.ribbon-sym { color: var(--on-forest); letter-spacing: .04em; }
.ribbon-px { color: var(--on-forest-2); }
.ribbon-chg { font-weight: 700; }
.ribbon-chg.plus { color: #3BD98A; }
.ribbon-chg.minus { color: #F1777C; }
@keyframes slide { to { transform: translateX(-50%); } }
.ribbon:hover .ribbon-track { animation-play-state: paused; }

.topnav {
  position: sticky; top: 0; z-index: 90;
  height: var(--nav-h);
  background: rgba(250, 251, 248, .84);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.topnav.stuck { border-bottom-color: var(--line); box-shadow: 0 10px 30px rgba(15,26,21,.04); }
.topnav-inner {
  max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter);
  height: 100%; display: flex; align-items: center; gap: 26px;
}

.brand { display: inline-flex; align-items: center; flex: none; }
/* Height is set here and width follows the intrinsic 504x160, so the box is
   reserved from the attributes and nothing shifts while the file loads. */
.brand-logo { height: 52px; width: auto; display: block; }
.foot-brand .brand-logo { height: 62px; }
.drawer .brand-logo { height: 44px; }
.mast-name .brand-ai { color: var(--go-press); }

.menu { display: flex; align-items: center; gap: 2px; }
.menu > li { position: relative; }
.menu a, .menu button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 13px; border-radius: var(--r-pill);
  font-size: .9375rem; font-weight: 600; color: var(--ink-2);
  transition: color .18s, background .18s;
}
.menu a:hover, .menu button:hover { color: var(--ink); background: var(--surface-2); }
.menu a[aria-current="page"] { color: var(--go-press); background: var(--go-soft); }
.caret { font-size: .625rem; transition: transform .2s var(--ease); }
.drop.expanded .caret { transform: rotate(180deg); }

.drop-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 236px; padding: 8px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--lift-2);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s, transform .22s var(--ease), visibility .18s;
}
.drop.expanded .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-menu a { display: block; width: 100%; padding: 9px 12px; border-radius: var(--r-sm); font-weight: 500; }
.drop-menu a.lead { font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--line); border-radius: var(--r-sm) var(--r-sm) 0 0; margin-bottom: 5px; padding-bottom: 12px; }

.topnav-end { margin-left: auto; display: flex; align-items: center; gap: 14px; flex: none; }
.topnav-signin { font-size: .9375rem; font-weight: 600; color: var(--ink-2); transition: color .18s; }
.topnav-signin:hover { color: var(--ink); }

.nav-toggle {
  display: none; width: 42px; height: 42px; flex: none;
  border-radius: var(--r-sm); border: 1px solid var(--line);
  background: var(--surface);
  align-items: center; justify-content: center;
}
.nav-toggle i { display: block; width: 17px; height: 1.5px; background: var(--ink); position: relative; transition: background .18s; }
.nav-toggle i::before, .nav-toggle i::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 1.5px; background: var(--ink);
  transition: transform .28s var(--ease), top .2s;
}
.nav-toggle i::before { top: -5.5px; }
.nav-toggle i::after { top: 5.5px; }
.nav-toggle.sel i { background: transparent; }
.nav-toggle.sel i::before { top: 0; transform: rotate(45deg); }
.nav-toggle.sel i::after { top: 0; transform: rotate(-45deg); }

.drawer {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 89;
  background: var(--canvas);
  padding: 26px var(--gutter) 40px;
  overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .22s, transform .3s var(--ease), visibility .22s;
}
.drawer.expanded { opacity: 1; visibility: visible; transform: translateY(0); }
.drawer nav { display: grid; gap: 2px; }
.drawer nav a {
  font-family: var(--f-display); font-size: 1.375rem; font-weight: 600;
  color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--line);
}
.drawer-sub { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.drawer-sub a { font-size: .9375rem; font-weight: 600; color: var(--ink-2); padding: 11px 14px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); }
.drawer-cta { margin-top: 26px; display: grid; gap: 10px; }
.drawer-cta .cta { width: 100%; }
.drawer .smallprint { margin-top: 20px; }

/* ---------- 8 · Hero ---------- */
.mast { position: relative; padding-block: clamp(56px, 7vw, 96px) clamp(40px, 5vw, 64px); overflow: hidden; }
.mast::before {
  content: ""; position: absolute; inset: -30% -10% auto -10%; height: 640px; z-index: -1;
  background:
    radial-gradient(58% 52% at 22% 24%, rgba(0,177,93,.11), transparent 68%),
    radial-gradient(46% 46% at 84% 8%, rgba(107,76,214,.09), transparent 70%),
    radial-gradient(40% 40% at 60% 62%, rgba(47,98,214,.06), transparent 72%);
  filter: blur(6px);
}
.mast::after {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 78px 78px;
  -webkit-mask-image: radial-gradient(70% 55% at 50% 30%, #000, transparent 78%);
  mask-image: radial-gradient(70% 55% at 50% 30%, #000, transparent 78%);
  opacity: .55;
}
.mast-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 11px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--lift-1);
  font-size: var(--t-fine); font-weight: 600; color: var(--ink-2);
}
.mast h1 { margin-top: 24px; }
.mast h1 em { font-style: normal; color: var(--go-press); }
.mast .standfirst { margin-top: 22px; max-width: 660px; margin-inline: auto; }
.mast .actions { margin-top: 32px; justify-content: center; }
.mast-note { margin-top: 16px; }

.trustbar {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--lift-1);
  text-align: left;
}
.trustbar div { padding: 22px 20px; border-right: 1px solid var(--line); }
.trustbar div:last-child { border-right: 0; }
.trustbar dt { font-family: var(--f-mono); font-size: var(--t-eyebrow); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.trustbar dd { font-family: var(--f-display); font-size: 1.3125rem; font-weight: 700; color: var(--ink); margin-top: 7px; letter-spacing: -.03em; line-height: 1.25; }

/* ---------- 8b · Split hero + instrument ---------- */
.mast--split { padding-block: clamp(44px, 5vw, 78px) clamp(52px, 6vw, 92px); }
.mast-grid {
  display: grid; grid-template-columns: 5.6fr 6.4fr;
  gap: clamp(30px, 4vw, 62px); align-items: center;
}
.mast-grid > .specstrip { grid-column: 1 / -1; }
.mast-name {
  font-size: clamp(2.75rem, 1.5rem + 4.2vw, 4.75rem);
  letter-spacing: -.05em; line-height: 1; margin-top: 22px;
}
.mast-line {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.1875rem, 1rem + 1.1vw, 1.75rem);
  line-height: 1.28; letter-spacing: -.03em; color: var(--ink);
  margin-top: 16px; text-wrap: balance;
}
.mast-line em { font-style: normal; color: var(--go-press); }
.mast--split .standfirst { margin-top: 18px; }
.mast--split .standfirst { margin-inline: 0; max-width: 46ch; }
.mast--split .actions { justify-content: flex-start; }
.mast--split .mast-note { margin-top: 22px; }

.specstrip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(38px, 4.5vw, 60px);
  padding-top: clamp(22px, 2.6vw, 30px);
  border-top: 1px solid var(--line);
}
.specstrip div { padding-inline: clamp(14px, 2.4vw, 34px); }
.specstrip div:first-child { padding-left: 0; }
.specstrip div:last-child { padding-right: 0; }
.specstrip div + div { border-left: 1px solid var(--line); }
.specstrip dt { font-family: var(--f-mono); font-size: .625rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.specstrip dd { font-size: .875rem; font-weight: 700; color: var(--ink); margin-top: 7px; }

/* The one dark object on a light page: a live instrument, not a screenshot. */
.rig {
  position: relative; isolation: isolate; overflow: hidden;
  /* feed rows fade to the panel instead of to white */
  --surface: #0E2C20;
  /* Secondary text on the instrument. Measured, not eyeballed: #A6C4B2 on the
     panel is ~7:1, so 10px mono labels stay legible. */
  --rig-dim: #A6C4B2;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid var(--forest-line); border-radius: var(--r-lg);
  background: linear-gradient(163deg, #0B241A 0%, #103728 52%, #0B2A1E 100%);
  box-shadow: 0 26px 74px rgba(11, 36, 26, .30), inset 0 1px 0 rgba(255, 255, 255, .05);
}
.rig::before, .rig::after {
  content: ""; position: absolute; width: 15px; height: 15px;
  border: 1.5px solid rgba(59, 217, 138, .45); pointer-events: none;
}
.rig::before { top: 11px; left: 11px; border-right: 0; border-bottom: 0; border-radius: 5px 0 0 0; }
.rig::after { bottom: 11px; right: 11px; border-left: 0; border-top: 0; border-radius: 0 0 5px 0; }
.rig-grid {
  position: absolute; inset: 0; z-index: -1; opacity: .55;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(78% 68% at 72% 18%, #000, transparent 76%);
  mask-image: radial-gradient(78% 68% at 72% 18%, #000, transparent 76%);
}

.rig-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: var(--f-mono); font-size: .625rem; letter-spacing: .14em; text-transform: uppercase; }
.rig-id { display: inline-flex; align-items: center; gap: 8px; color: var(--on-forest); }
.rig-dot { width: 7px; height: 7px; border-radius: 50%; background: #3BD98A; animation: beat 2.4s var(--ease) infinite; }
.rig-audit { color: var(--rig-dim); }

.rig-metric { margin-top: clamp(18px, 2.4vw, 26px); }
.rig-label { font-family: var(--f-mono); font-size: .625rem; letter-spacing: .12em; text-transform: uppercase; color: var(--rig-dim); }
.rig-mtd {
  font-family: var(--f-display); font-weight: 700; line-height: 1; margin-top: 11px; color: #fff;
  font-size: clamp(2.25rem, 1.5rem + 2.4vw, 3.25rem); letter-spacing: -.045em;
}
.rig-mtd span { font-family: var(--f-mono); font-size: .6875rem; font-weight: 500; letter-spacing: .16em; color: var(--rig-dim); margin-left: 12px; vertical-align: middle; }

.rig-chart { position: relative; margin-top: 12px; }
.rig-chart svg { width: 100%; height: auto; }
.rig-scan {
  position: absolute; inset: 0 auto 0 0; width: 32%; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(59, 217, 138, .15), transparent);
  animation: scan 6s var(--ease) infinite;
}
@keyframes scan {
  0% { transform: translateX(-45%); opacity: 0; }
  12% { opacity: 1; }
  86% { opacity: 1; }
  100% { transform: translateX(325%); opacity: 0; }
}

.rig-chart { cursor: crosshair; }
.eq-hover { opacity: 0; transition: opacity .16s; pointer-events: none; }
.rig-chart.reading .eq-hover { opacity: 1; }
.eq-tip {
  position: absolute; top: -4px; transform: translate(-50%, -100%);
  padding: 5px 10px; border-radius: var(--r-sm); white-space: nowrap;
  background: #E7F0EA; color: #0B241A;
  font-family: var(--f-mono); font-size: .6875rem; font-weight: 700;
  opacity: 0; transition: opacity .16s; pointer-events: none;
}
.rig-chart.reading .eq-tip { opacity: 1; }

.eq-ring { transform-box: fill-box; transform-origin: center; opacity: 0; pointer-events: none; }
.eq-ring.go { animation: eqring 1.2s var(--ease); }
@keyframes eqring {
  0% { opacity: .85; transform: scale(.35); }
  100% { opacity: 0; transform: scale(3.6); }
}
.rig.hit { animation: righit 1.2s var(--ease); }
@keyframes righit {
  0% { box-shadow: 0 26px 74px rgba(11, 36, 26, .30), inset 0 0 0 1px rgba(59, 217, 138, .55); }
  100% { box-shadow: 0 26px 74px rgba(11, 36, 26, .30), inset 0 0 0 1px rgba(59, 217, 138, 0); }
}

.rig-engines { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.rig-engines span {
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .09); border-radius: var(--r-pill); background: rgba(255, 255, 255, .05);
  font-family: var(--f-mono); font-size: .625rem; letter-spacing: .09em; text-transform: uppercase; color: #D2E4D9;
}
.rig-engines span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--c); flex: none; }

/* Every boxed element on the instrument sits on ONE surface — the panel's own
   green lifted by a flat white overlay. Win/loss is carried by the rail and the
   figure, not by a second green, so the rows sit with the chips and the chart
   instead of competing with them. */
.rig .feed { margin-top: 16px; gap: 6px; }
.rig .feed-row {
  padding: 10px 13px 10px 15px;
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .09);
  transition: background .25s, border-color .25s, transform .25s var(--ease);
}
.rig .feed-row:hover { background: rgba(255, 255, 255, .08); transform: none; }
.rig .feed-row .e { color: #EAF4EE; }
.rig .feed-row .t, .rig .feed-row .m { color: var(--rig-dim); }
.rig .feed-row.win { border-color: rgba(95, 227, 166, .26); }
.rig .feed-row.lose { border-color: rgba(255, 154, 145, .24); }
.rig .feed-row.win::before { background: #5FE3A6; }
.rig .feed-row.lose::before { background: #FF9A91; }
.rig .feed-row .r { font-size: .875rem; letter-spacing: -.01em; }
.rig .feed-row .r.plus { color: #5FE3A6; }   /* 7.1:1 on the row surface */
.rig .feed-row .r.minus { color: #FF9A91; }   /* 5.6:1 on the row surface */

.rig-sessions {
  display: flex; flex-wrap: wrap; gap: 7px 20px; margin-top: 16px; padding-top: 15px;
  border-top: 1px solid var(--forest-line);
  font-family: var(--f-mono); font-size: .625rem; letter-spacing: .1em; text-transform: uppercase; color: var(--rig-dim);
}
.rig-sessions b { color: var(--on-forest); font-weight: 700; margin-left: 7px; }
.rig-sessions b.plus { color: #3BD98A; }

@media (max-width: 980px) {
  .mast-grid { grid-template-columns: 1fr; }
  .rig { max-width: 560px; }
}
@media (max-width: 620px) {
  /* Three across stops being readable well before it stops fitting. */
  .specstrip { grid-template-columns: 1fr; }
  .specstrip div { padding-inline: 0; }
  .specstrip div + div { padding-top: 15px; margin-top: 15px; border-left: 0; border-top: 1px solid var(--line); }
}

/* ---------- 8c · Hero breaker ---------- */
.breaker {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #082017 0%, #0C2C20 50%, #082017 100%);
  border-block: 1px solid var(--forest-line);
}
.breaker::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 46px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}
.breaker::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 26%;
  background: linear-gradient(90deg, transparent, rgba(59, 217, 138, .16) 45%, rgba(59, 217, 138, .05) 60%, transparent);
  animation: sweep 7s linear infinite;
}
@keyframes sweep { from { transform: translateX(-110%); } to { transform: translateX(500%); } }

.breaker-inner {
  position: relative;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px clamp(10px, 1.6vw, 20px);
  padding-block: clamp(20px, 2.6vw, 30px);
  font-family: var(--f-mono); font-size: .6875rem; letter-spacing: .14em; text-transform: uppercase;
}
.breaker-step { color: #D2E4D9; white-space: nowrap; }
.breaker-step:last-child { color: #3BD98A; }
.breaker-arrow { display: inline-flex; align-items: center; gap: 5px; color: rgba(210, 228, 217, .45); }
.breaker-arrow i { display: block; width: clamp(14px, 2vw, 30px); height: 1px; background: currentColor; }
.breaker-arrow::after { content: ""; width: 4px; height: 4px; border-radius: 50%; background: #3BD98A; opacity: .65; }

@media (max-width: 640px) {
  .breaker-inner { font-size: .625rem; letter-spacing: .1em; }
}

/* ---------- 9 · Proof panel ---------- */
.proof { display: grid; grid-template-columns: 7fr 5fr; overflow: hidden; }
.proof-left { padding: clamp(22px, 3vw, 32px); border-right: 1px solid var(--line); }
.proof-right { padding: clamp(22px, 3vw, 32px); background: var(--surface-2); }
.proof-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.proof-title { display: inline-flex; align-items: center; gap: 9px; font-family: var(--f-mono); font-size: .75rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.proof-mtd { font-family: var(--f-display); font-size: clamp(2rem, 1.4rem + 2vw, 3rem); font-weight: 700; letter-spacing: -.04em; color: var(--ink); margin-top: 12px; line-height: 1; }
.proof-mtd span { font-size: .8125rem; font-family: var(--f-mono); font-weight: 500; color: var(--ink-3); letter-spacing: .08em; margin-left: 12px; vertical-align: middle; text-transform: uppercase; }
.proof-chart { margin-top: 16px; }
.proof-chart svg { width: 100%; height: auto; }
.curve-line { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 2.2s var(--ease) .25s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.proof-scale { display: flex; justify-content: space-between; font-family: var(--f-mono); font-size: .6875rem; color: var(--ink-3); margin-top: 8px; }

.feed-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.feed { display: grid; gap: 6px; }
.feed-row {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px;
  padding: 11px 13px 11px 16px; border: 1px solid var(--line); border-radius: var(--r-sm);
  /* --tint is set per row by home.js: "r,g,b,a" scaled to the size of the result. */
  --tint: 0, 177, 93, .07;
  background: linear-gradient(90deg, rgba(var(--tint)) 0%, rgba(var(--tint)) 14%, var(--surface) 88%);
  transition: border-color .25s, transform .25s var(--ease);
}
.feed-row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
}
.feed-row.win { border-color: rgba(0, 177, 93, .26); }
.feed-row.win::before { background: var(--go); }
.feed-row.lose { border-color: rgba(201, 51, 58, .24); }
.feed-row.lose::before { background: var(--down); }
.feed-row:hover { transform: translateX(2px); }
.feed-row .t { font-family: var(--f-mono); font-size: .6875rem; color: var(--ink-3); }
.feed-row .e { display: block; font-weight: 700; color: var(--ink); font-size: .8125rem; }
.feed-row .m { display: block; font-family: var(--f-mono); font-size: .6875rem; color: var(--ink-3); }
.feed-row .r { font-family: var(--f-mono); font-weight: 700; font-size: .8125rem; white-space: nowrap; }
.feed-row.enter { opacity: 0; transform: translateY(-8px); }
.feed-row.enter.shown { opacity: 1; transform: none; transition: opacity .38s, transform .44s var(--ease); }
/* A position lands: a light sweeps along the row, the rail flares, and the
   figure lifts in. Three cheap cues beat one big colour change. */
.feed-row.pulse::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, .16) 42%,
    rgba(255, 255, 255, 0) 78%);
  animation: sweepRow .9s var(--ease) forwards;
}
@keyframes sweepRow {
  0% { opacity: 0; transform: translateX(-62%); }
  18% { opacity: 1; }
  100% { opacity: 0; transform: translateX(62%); }
}
.feed-row.pulse::before { animation: railFlare 1.1s var(--ease); }
@keyframes railFlare {
  0% { box-shadow: 0 0 12px 2px currentColor; filter: brightness(1.6); }
  100% { box-shadow: none; filter: none; }
}
.rig .feed-row.pulse.win::before { color: #5FE3A6; }
.rig .feed-row.pulse.lose::before { color: #FF9A91; }
.feed-row.pulse .r { animation: figureIn .55s var(--ease); }
@keyframes figureIn {
  0% { opacity: 0; transform: translateY(-6px) scale(.94); }
  100% { opacity: 1; transform: none; }
}
.feed-foot { margin-top: 16px; }

/* ---------- 10 · Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); position: relative; }
.steps::before {
  content: ""; position: absolute; top: 27px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 7px, transparent 7px 15px);
}
.step { position: relative; }
.step-n {
  position: relative;
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface); border: 2px solid var(--go);
  font-family: var(--f-display); font-weight: 700; font-size: 1.125rem; color: var(--go-press);
  box-shadow: 0 0 0 7px var(--canvas);
}
.step h3 { margin-top: 20px; }
.step p { margin-top: 10px; font-size: var(--t-small); }
.step .tag { margin-top: 14px; }

/* ---------- 11 · Engines ---------- */
.fleet { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px); }
.engine { position: relative; padding: clamp(22px, 2.6vw, 30px); overflow: hidden; --c: var(--go); }
.engine::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--c); }
.engine::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 190px; height: 190px; border-radius: 50%;
  background: var(--c); opacity: .05; transition: opacity .3s;
}
.engine:hover::after { opacity: .1; }
.engine--tandem { --c: var(--c-tandem); }
.engine--ember { --c: var(--c-ember); }
.engine--harbor { --c: var(--c-harbor); }
.engine--mosaic { --c: var(--c-mosaic); }
.engine > * { position: relative; }

.engine-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.engine-mkt { font-family: var(--f-mono); font-size: var(--t-fine); font-weight: 500; color: var(--c); }
.engine-live { display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-mono); font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.engine h3 { margin-top: 16px; }
.engine h3 .pre { color: var(--ink-3); font-weight: 600; }
.engine-line { margin-top: 12px; font-size: var(--t-small); }
.engine-band { margin-top: 20px; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding-top: 18px; border-top: 1px solid var(--line); }
.engine-band .rv { font-family: var(--f-display); font-size: 1.75rem; font-weight: 700; color: var(--ink); letter-spacing: -.03em; line-height: 1; display: block; }
.engine-band .rl { display: block; font-family: var(--f-mono); font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-top: 8px; }
.engine-spark { width: 108px; height: 40px; flex: none; }
.engine .tlink { margin-top: 20px; color: var(--c); }
.engine .tlink:hover { border-color: var(--c); }

/* ---------- 12 · Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.pillar { padding: clamp(22px, 2.6vw, 30px); }
.pillar-ic {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--go-soft); color: var(--go-press);
}
.pillar-ic svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 { margin-top: 20px; font-size: 1.1875rem; }
.pillar p { margin-top: 10px; font-size: var(--t-small); }

.rules { margin-top: clamp(20px, 2.5vw, 30px); padding: clamp(22px, 3vw, 34px); }
.rules-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(24px, 4vw, 48px); align-items: center; }
.rules-list { display: grid; gap: 18px; }
.rule-row { display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; align-items: center; }
.rule-row .rk { font-size: var(--t-small); font-weight: 600; color: var(--ink); }
.rule-row .rv { font-family: var(--f-mono); font-size: var(--t-small); font-weight: 700; color: var(--ink); }
.rule-bar { grid-column: 1 / -1; height: 6px; border-radius: 3px; background: var(--surface-2); overflow: hidden; }
.rule-bar i { display: block; height: 100%; border-radius: 3px; background: var(--go); width: 0; transition: width 1.1s var(--ease) .15s; }
.enter.shown .rule-bar i { width: var(--w); }

/* ---------- 13 · Bands ---------- */
.band { background: var(--forest); color: var(--on-forest-2); position: relative; overflow: hidden; }
.band::before {
  content: ""; position: absolute; inset: auto -10% -60% -10%; height: 440px;
  background: radial-gradient(50% 60% at 50% 100%, rgba(0,177,93,.22), transparent 70%);
}
.band h2, .band h3 { color: var(--on-forest); }
.band .standfirst, .band .kicker, .band .smallprint { color: var(--on-forest-2); }
.band .wrap { position: relative; }

.audit { display: grid; grid-template-columns: 6fr 6fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.audit-facts { display: grid; gap: 12px; }
.audit-fact {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center;
  padding: 18px 22px; background: var(--forest-2); border: 1px solid var(--forest-line); border-radius: var(--r-md);
}
.audit-fact .rv { font-family: var(--f-display); font-size: 1.75rem; font-weight: 700; color: #3BD98A; letter-spacing: -.03em; line-height: 1; }
.audit-fact .rl { font-size: var(--t-small); color: var(--on-forest-2); }
.audit-names { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.audit-name {
  font-family: var(--f-display); font-weight: 700; font-size: 1.0625rem; letter-spacing: -.02em;
  color: var(--on-forest); padding: 11px 20px; border: 1px solid var(--forest-line);
  border-radius: var(--r-pill); background: rgba(255,255,255,.03);
}
.band .tlink { color: #3BD98A; margin-top: 24px; }
.band .tlink:hover { border-color: #3BD98A; }

/* ---------- 14 · Charts ---------- */
.chartcard { padding: clamp(20px, 2.8vw, 32px); }
.chart-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 22px; }
.chart-title { font-family: var(--f-display); font-weight: 700; font-size: 1.0625rem; color: var(--ink); letter-spacing: -.02em; }
.chart-sub { font-size: var(--t-fine); color: var(--ink-3); margin-top: 4px; }
.legend { display: flex; flex-wrap: wrap; gap: 16px; }
.legend span { display: inline-flex; align-items: center; gap: 8px; font-size: var(--t-fine); color: var(--ink-2); }
.legend i { width: 12px; height: 12px; border-radius: 3px; flex: none; }
.chart-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.chart-scroll svg { min-width: 620px; width: 100%; height: auto; }
.chart-foot { display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.chart-foot .sum { font-size: var(--t-small); }
.chart-foot .big { font-family: var(--f-display); font-weight: 700; font-size: 1.25rem; color: var(--go-press); letter-spacing: -.02em; }
.bar-grow { transform-origin: bottom; transform: scaleY(0); }
.enter.shown .bar-grow { animation: grow .7s var(--ease) forwards; animation-delay: calc(var(--i) * 20ms); }
@keyframes grow { to { transform: scaleY(1); } }

/* ---------- 15 · Voices ---------- */
.voices { display: grid; grid-template-columns: 6fr 6fr; gap: clamp(16px, 2vw, 24px); align-items: start; }
.voices-col { display: grid; gap: clamp(16px, 2vw, 24px); }
.voice { padding: clamp(22px, 2.6vw, 32px); }
.voice-mark { font-family: var(--f-display); font-size: 2.75rem; line-height: .8; color: var(--go); opacity: .28; }
.voice-q { font-size: var(--t-small); color: var(--ink-2); margin-top: 10px; }
.voice--lead .voice-q { font-family: var(--f-display); font-size: clamp(1.125rem, 1rem + .7vw, 1.5rem); font-weight: 600; line-height: 1.42; color: var(--ink); letter-spacing: -.02em; }
.voice-who { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.voice-av {
  width: 38px; height: 38px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--go-soft); color: var(--go-press);
  font-family: var(--f-mono); font-size: .75rem; font-weight: 700;
}
.voice-name { font-size: var(--t-small); font-weight: 700; color: var(--ink); }
.voice-meta { font-size: var(--t-fine); color: var(--ink-3); }

/* ---------- 15b · Review widget (aggregate bar + rated cards) ---------- */
.tp { display: grid; gap: clamp(18px, 2.2vw, 26px); }
.tp-head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 24px;
  padding-bottom: clamp(16px, 2vw, 22px); border-bottom: 1px solid var(--line);
}
.tp-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.tp-word { font-family: var(--f-display); font-size: 1.375rem; font-weight: 700; color: var(--ink); letter-spacing: -.03em; }
.tp-head .rating svg { width: 27px; height: 27px; }
.tp-count { font-size: var(--t-small); color: var(--ink-3); }
.tp-count b { font-family: var(--f-mono); font-weight: 700; color: var(--ink); }
.tp-source { display: inline-flex; align-items: center; gap: 7px; }
.tp-source svg { width: 21px; height: 21px; fill: var(--tp-green); flex: none; }
.tp-source b {
  font-family: var(--f-display); font-size: 1.0625rem; font-weight: 700;
  letter-spacing: -.035em; color: var(--tp-ink);
}

/* review cards */
.rvws { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.rvw { padding: clamp(22px, 2.6vw, 30px); display: flex; flex-direction: column; }
.rvw-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.rating { display: inline-flex; gap: 3px; }
.rating svg { width: 22px; height: 22px; flex: none; }
.rating svg rect { fill: var(--tp-green); }
.rvw-date { font-family: var(--f-mono); font-size: .6875rem; color: var(--ink-3); }
.rvw-title { font-size: 1.0625rem; margin-top: 18px; }
.rvw-body { font-size: var(--t-small); margin-top: 10px; flex: 1; }
.rvw-who { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.rvw-av {
  width: 40px; height: 40px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--go-soft); color: var(--go-press);
  font-family: var(--f-mono); font-size: .8125rem; font-weight: 700;
}
.rvw-name { display: block; font-size: var(--t-small); font-weight: 700; color: var(--ink); }
.rvw-meta { display: inline-flex; align-items: center; gap: 6px; font-size: var(--t-fine); color: var(--ink-3); }
.rvw-check { width: 14px; height: 14px; fill: var(--go); flex: none; }

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

/* ---------- 16 · Q&A ---------- */
.qa { display: grid; gap: 10px; }
.qa-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s, box-shadow .25s; }
.qa-item[open] { border-color: var(--line-strong); box-shadow: var(--lift-1); }
.qa-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 19px 22px; cursor: pointer; list-style: none;
  font-family: var(--f-display); font-size: 1.0625rem; font-weight: 600; color: var(--ink); letter-spacing: -.015em;
}
.qa-item summary::-webkit-details-marker { display: none; }
.qa-item summary::after {
  content: ""; width: 10px; height: 10px; flex: none;
  border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3);
  transform: rotate(45deg) translateY(-2px); transition: transform .25s var(--ease);
}
.qa-item[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.qa-item summary:hover { color: var(--go-press); }
.qa-body { padding: 0 22px 22px; font-size: var(--t-small); }
.qa-body ul { display: grid; gap: 9px; margin-top: 12px; }
.qa-body ul li { position: relative; padding-left: 22px; }
.qa-body ul li::before { content: ""; position: absolute; left: 3px; top: .62em; width: 6px; height: 6px; border-radius: 2px; background: var(--go); }
.qa-body table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: var(--t-fine); }
.qa-body th, .qa-body td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.qa-body th { font-family: var(--f-mono); font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.qa-body td:last-child { font-family: var(--f-mono); font-weight: 700; color: var(--ink); }
.qa-body a { color: var(--go-press); font-weight: 700; }
.qa-flag {
  margin-top: 16px; padding: 13px 16px; border-radius: var(--r-sm);
  background: var(--surface-2); border-left: 3px solid var(--go);
  font-size: var(--t-fine); color: var(--ink-2);
}
.qa-cat { font-family: var(--f-mono); font-size: var(--t-eyebrow); letter-spacing: .14em; text-transform: uppercase; color: var(--go-press); margin-bottom: 14px; }
.qa-group + .qa-group { margin-top: clamp(34px, 4vw, 52px); }
.qa-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.qa-tier { padding: 15px 16px; background: var(--surface-2); border-radius: var(--r-sm); }
.qa-tier .a { font-family: var(--f-mono); font-weight: 700; color: var(--ink); font-size: .9375rem; }
.qa-tier .b { font-size: var(--t-fine); color: var(--ink-3); margin-top: 4px; }

/* ---------- 17 · End CTA ---------- */
.endcta {
  padding: clamp(40px, 6vw, 76px) clamp(24px, 4vw, 56px);
  border-radius: var(--r-lg); text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(168deg, #0B241A 0%, #0E3123 62%, #0B2A1E 100%);
  border: 1px solid var(--forest-line);
}
.endcta::before {
  content: ""; position: absolute; inset: auto -20% -70% -20%; height: 380px;
  background: radial-gradient(50% 60% at 50% 100%, rgba(0,177,93,.3), transparent 70%);
}
.endcta > * { position: relative; }
.endcta h2 { color: var(--on-forest); max-width: 700px; margin-inline: auto; }
.endcta .standfirst { color: var(--on-forest-2); max-width: 620px; margin: 18px auto 0; }
.endcta .actions { justify-content: center; margin-top: 30px; }
.endcta .smallprint { color: var(--on-forest-2); margin-top: 22px; }

/* ---------- 18 · Footer ---------- */
.foot { background: var(--forest); color: var(--on-forest-2); padding-block: clamp(52px, 6vw, 80px) 30px; }
.foot a { transition: color .18s; }
.foot a:hover { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 2.4fr 1fr 1fr 1fr 1.2fr; gap: clamp(24px, 3vw, 44px); }
.foot-brand p { font-size: var(--t-small); margin-top: 18px; max-width: 300px; }
.foot-audit { margin-top: 18px; font-family: var(--f-mono); font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase; color: #3BD98A; }
.foot-col h4 { font-family: var(--f-mono); font-size: var(--t-eyebrow); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--on-forest); margin-bottom: 16px; }
.foot-col ul { display: grid; gap: 10px; }
.foot-col a { font-size: var(--t-small); }
.foot-legal { margin-top: clamp(40px, 5vw, 60px); padding-top: 34px; border-top: 1px solid var(--forest-line); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.foot-legal h5 { font-family: var(--f-mono); font-size: .6875rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--on-forest); margin-bottom: 10px; }
.foot-legal p { font-size: .75rem; line-height: 1.62; }
.foot-bottom { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--forest-line); display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; font-size: var(--t-fine); }
.foot-bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }

/* ---------- 19 · Documents (legal) ---------- */
.doc { padding-block: clamp(44px, 5vw, 72px) clamp(56px, 7vw, 96px); }
.doc-wrap { max-width: 820px; margin-inline: auto; padding-inline: var(--gutter); }
.doc h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); margin-top: 18px; }
.doc-stamp { font-family: var(--f-mono); font-size: var(--t-fine); color: var(--ink-3); margin-top: 16px; }
.doc-intro { font-size: var(--t-lede); color: var(--ink-2); margin-top: 22px; padding: 20px 24px; background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--go); border-radius: var(--r-sm); }
.doc-body { margin-top: clamp(32px, 4vw, 48px); }
.doc-body h2 { font-size: 1.4375rem; margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line); }
.doc-body > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.doc-body h3 { font-size: 1.0625rem; margin-top: 26px; }
.doc-body p, .doc-body ul, .doc-body ol { margin-top: 13px; font-size: .9375rem; }
.doc-body li { position: relative; padding-left: 24px; margin-top: 9px; }
.doc-body ul li::before { content: ""; position: absolute; left: 4px; top: .62em; width: 6px; height: 6px; border-radius: 2px; background: var(--go); }
.doc-body ol { counter-reset: n; }
.doc-body ol li { counter-increment: n; }
.doc-body ol li::before { content: counter(n) "."; position: absolute; left: 0; font-family: var(--f-mono); font-size: .8125rem; font-weight: 700; color: var(--go-press); }
.doc-body a { color: var(--go-press); font-weight: 600; border-bottom: 1px solid rgba(0,177,93,.32); }
.doc-body a:hover { border-color: var(--go); }
.doc-note { margin-top: 16px; padding: 16px 18px; background: var(--surface-2); border-radius: var(--r-sm); font-size: var(--t-fine); }
.doc-note strong { color: var(--ink); }
.doc-nav { margin-top: clamp(40px, 5vw, 60px); padding-top: 26px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 10px; }
.doc-nav a { font-size: var(--t-fine); font-weight: 600; color: var(--ink-2); padding: 9px 15px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); }
.doc-nav a:hover { border-color: var(--go); color: var(--go-press); }

/* ---------- 20 · Fleet page ---------- */
.pagehead { padding-block: clamp(48px, 6vw, 84px) clamp(28px, 3.5vw, 44px); position: relative; overflow: hidden; }
.pagehead::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 100% at 15% 0%, rgba(0,177,93,.08), transparent 62%),
              radial-gradient(50% 90% at 88% 10%, rgba(107,76,214,.07), transparent 68%);
}
.pagehead h1 { margin-top: 20px; }
.pagehead .standfirst { margin-top: 20px; max-width: 640px; }
.pagehead .actions { margin-top: 30px; }
.pagehead .smallprint { margin-top: 18px; }
.pagehead--split { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.pagehead--split h1 { max-width: 15ch; }

.board { padding: 8px; }
.board-row {
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 14px;
  padding: 15px 16px; border-radius: var(--r-sm); transition: background .2s; --c: var(--go);
}
.board-row:hover { background: var(--surface-2); }
.board-row + .board-row { border-top: 1px solid var(--line); }
.board-swatch { width: 9px; height: 34px; border-radius: 3px; background: var(--c); flex: none; }
.board-name { font-family: var(--f-display); font-weight: 700; font-size: .9375rem; color: var(--ink); letter-spacing: -.02em; }
.board-sub { display: block; font-size: var(--t-fine); color: var(--ink-3); font-family: var(--f-text); font-weight: 500; letter-spacing: 0; }
.board-val { font-family: var(--f-mono); font-weight: 700; font-size: .9375rem; color: var(--ink); text-align: right; }
.board-val small { display: block; font-family: var(--f-text); font-weight: 500; font-size: .6875rem; color: var(--ink-3); }
.board-go { color: var(--ink-3); font-family: var(--f-mono); transition: transform .2s var(--ease), color .2s; }
.board-row:hover .board-go { color: var(--c); transform: translateX(3px); }

.rail { position: sticky; top: var(--nav-h); z-index: 60; background: rgba(250,251,248,.92); backdrop-filter: blur(12px); border-block: 1px solid var(--line); }
.rail-inner { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); display: flex; gap: 4px; overflow-x: auto; }
.rail a { padding: 15px 16px; font-size: var(--t-small); font-weight: 600; color: var(--ink-3); white-space: nowrap; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.rail a:hover { color: var(--ink); }
.rail a.sel { color: var(--go-press); border-bottom-color: var(--go); }

.brief { padding-block: clamp(52px, 6vw, 84px); --c: var(--go); }
.brief--tint { background: var(--surface-2); border-block: 1px solid var(--line); }
.brief-strip { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 26px; }
.brief-strip .tag--id { background: var(--c); color: #fff; border-color: transparent; font-weight: 700; }
.brief-grid { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.brief h2 .pre { color: var(--ink-3); font-weight: 600; }
.brief-tag { font-family: var(--f-display); font-size: 1.125rem; font-weight: 600; color: var(--c); margin-top: 14px; letter-spacing: -.02em; }
.brief p.body { margin-top: 18px; }
.specs { margin-top: 26px; border-top: 1px solid var(--line); }
.spec { display: grid; grid-template-columns: 168px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.spec dt { font-family: var(--f-mono); font-size: var(--t-fine); letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.spec dd { font-size: var(--t-small); }
.side-stack { display: grid; gap: clamp(16px, 2vw, 22px); }
.metric { padding: clamp(20px, 2.4vw, 26px); }
.metric-label { font-family: var(--f-mono); font-size: var(--t-eyebrow); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.metric-chart { margin-top: 16px; }
.metric-chart svg { width: 100%; height: auto; }
.metric-cap { font-size: var(--t-fine); color: var(--ink-3); margin-top: 8px; }
.metric-rows { margin-top: 18px; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.metric-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 15px; background: var(--surface); font-size: var(--t-fine); }
.metric-row .rk { color: var(--ink-3); }
.metric-row .rv { font-family: var(--f-mono); font-weight: 700; color: var(--ink); }
.metric .smallprint { margin-top: 14px; }

/* ---------- 21 · Ledger (track record) ---------- */
.readnotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 22px); }
.readnote { padding: clamp(20px, 2.4vw, 28px); display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.readnote-n { font-family: var(--f-mono); font-size: var(--t-fine); font-weight: 700; color: var(--go-press); background: var(--go-soft); width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; }
.readnote h3 { font-size: 1.0625rem; }
.readnote p { margin-top: 9px; font-size: var(--t-small); }

.model-top { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.pills { display: inline-flex; gap: 4px; padding: 4px; background: var(--surface-2); border-radius: var(--r-pill); }
.pills button { padding: 9px 18px; border-radius: var(--r-pill); font-size: var(--t-fine); font-weight: 700; color: var(--ink-3); font-family: var(--f-mono); transition: background .2s, color .2s; }
.pills button.sel { background: var(--go); color: #fff; }
.model-plot { overflow-x: auto; }
.model-plot svg { width: 100%; height: auto; min-width: 560px; }
.model-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; margin-top: 22px; }
.model-stats div { background: var(--surface); padding: 18px 20px; }
.model-stats .rv { font-family: var(--f-display); font-size: 1.5rem; font-weight: 700; color: var(--ink); letter-spacing: -.03em; }
.model-stats .rl { display: block; font-size: var(--t-fine); color: var(--ink-3); margin-top: 5px; }

.accounts { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 22px); }
.account { padding: clamp(20px, 2.4vw, 28px); --c: var(--go); border-top: 3px solid var(--c); }
.account-name { font-family: var(--f-display); font-size: 1.1875rem; font-weight: 700; color: var(--ink); letter-spacing: -.025em; }
.account-meta { font-family: var(--f-mono); font-size: var(--t-fine); color: var(--ink-3); margin-top: 6px; }
.account .metric-rows { margin-top: 18px; }
.account .tlink { margin-top: 18px; color: var(--c); }
.account .tlink:hover { border-color: var(--c); }

/* ---------- 22 · Market Desk ---------- */
.desk { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px); }
.desk .span-2 { grid-column: span 2; }
.widget { overflow: hidden; display: flex; flex-direction: column; }
.widget-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 20px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.widget-name { display: inline-flex; align-items: center; gap: 9px; font-family: var(--f-mono); font-size: .75rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); }
.widget-body { padding: 8px 14px; flex: 1; }
.widget-note { padding: 6px 20px 16px; font-size: var(--t-fine); color: var(--ink-3); }
.widget-open { display: inline-flex; align-items: center; gap: 7px; margin: 0 20px 18px; font-size: var(--t-fine); font-weight: 700; color: var(--go-press); }
.widget-open::after { content: "\2192"; font-family: var(--f-mono); transition: transform .2s var(--ease); }
.widget-open:hover::after { transform: translateX(3px); }

.qline { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 6px; border-bottom: 1px solid var(--line); font-size: var(--t-small); }
.qline:last-child { border-bottom: 0; }
.qline .q-sym { font-weight: 700; color: var(--ink); font-size: .875rem; }
.qline .q-sym .q-sub { display: block; font-weight: 500; font-size: var(--t-fine); color: var(--ink-3); }
.qline .q-right { display: inline-flex; align-items: center; gap: 12px; }
.qline .q-px { font-family: var(--f-mono); font-size: .875rem; color: var(--ink); font-variant-numeric: tabular-nums; }
.qline .q-chg { font-family: var(--f-mono); font-size: var(--t-fine); font-weight: 700; min-width: 70px; text-align: right; }

.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; padding: 12px; }
.tile { border-radius: var(--r-sm); padding: 14px 12px; min-height: 78px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); }
.tile .t-name { font-size: var(--t-fine); font-weight: 600; color: var(--ink); }
.tile .t-pct { font-family: var(--f-mono); font-size: .875rem; font-weight: 700; color: var(--ink); }

.lean { flex: 1; height: 7px; border-radius: 4px; background: var(--surface-2); overflow: hidden; margin-inline: 12px; min-width: 60px; }
.lean i { display: block; height: 100%; background: var(--go); border-radius: 4px; }
.lean i.minus { background: var(--down); }

.verdict { font-family: var(--f-mono); font-size: .6875rem; font-weight: 700; letter-spacing: .06em; padding: 5px 10px; border-radius: var(--r-pill); white-space: nowrap; }
.verdict.s-up { background: var(--go-soft); color: var(--go-press); }
.verdict.s-flat { background: var(--surface-2); color: var(--ink-3); }
.verdict.s-dn { background: #FDECEC; color: #A62A30; }

.impact { font-family: var(--f-mono); font-size: .625rem; font-weight: 700; letter-spacing: .08em; padding: 4px 9px; border-radius: 5px; }
.impact.lvl-high { background: #FDECEC; color: #A62A30; }
.impact.lvl-med { background: #FFF4E2; color: #8A5712; }
.impact.lvl-low { background: var(--surface-2); color: var(--ink-3); }

.story-line { padding: 12px 6px; border-bottom: 1px solid var(--line); }
.story-line:last-child { border-bottom: 0; }
.story-line a { font-size: var(--t-small); font-weight: 600; color: var(--ink); line-height: 1.45; }
.story-line a:hover { color: var(--go-press); }
.story-stamp { font-family: var(--f-mono); font-size: .6875rem; color: var(--ink-3); margin-top: 5px; }
.story-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; padding: 12px 6px; }
.story { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: var(--surface); transition: transform .25s var(--ease), box-shadow .25s; }
.story:hover { transform: translateY(-3px); box-shadow: var(--lift-1); }
.story .story-img { width: 100%; height: 128px; object-fit: cover; }
.story-body { padding: 14px 15px 16px; }
.story-title { display: block; font-size: var(--t-small); font-weight: 700; color: var(--ink); line-height: 1.4; }
.story-stamp2 { display: block; font-family: var(--f-mono); font-size: .6875rem; color: var(--ink-3); margin-top: 8px; }
.story-filter { display: flex; flex-wrap: wrap; gap: 6px; padding: 12px 6px 4px; }
.story-filter button { padding: 8px 16px; border-radius: var(--r-pill); font-size: var(--t-fine); font-weight: 700; color: var(--ink-3); background: var(--surface-2); transition: background .2s, color .2s; }
.story-filter button.sel { background: var(--go); color: #fff; }

.rep-day { font-family: var(--f-mono); font-size: var(--t-eyebrow); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); padding: 16px 6px 8px; }
.rep-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap: 8px; padding: 0 6px; }
.rep-card { padding: 14px 15px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface-2); }
.rep-sym { font-family: var(--f-mono); font-size: 1rem; font-weight: 700; color: var(--ink); }
.rep-est { display: block; font-size: var(--t-fine); color: var(--ink-3); margin-top: 4px; }

.deskjump { display: flex; flex-wrap: wrap; gap: 8px; margin-top: clamp(30px, 4vw, 44px); }
.deskjump a { font-size: var(--t-fine); font-weight: 600; color: var(--ink-2); padding: 9px 15px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); transition: border-color .2s, color .2s; }
.deskjump a:hover { border-color: var(--go); color: var(--go-press); }

.about-tool { margin-top: clamp(32px, 4vw, 48px); padding: clamp(22px, 3vw, 30px); }
.about-tool h2 { font-size: 1.25rem; }
.about-tool p { margin-top: 12px; font-size: .9375rem; }

/* ---------- 23 · Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 6fr 6fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-line { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 26px; }
.contact-mail { font-family: var(--f-mono); font-size: .9375rem; font-weight: 500; color: var(--ink); }
.contact-rows { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.contact-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 18px; background: var(--surface); font-size: var(--t-small); }
.contact-row .rk { color: var(--ink-3); }
.contact-row .rv { font-family: var(--f-mono); font-weight: 600; color: var(--ink); font-size: var(--t-fine); text-align: right; }

.locs { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 22px); }
.loc { overflow: hidden; }
.loc-head { padding: 22px 24px; }
.loc-city { font-family: var(--f-display); font-size: 1.25rem; font-weight: 700; color: var(--ink); letter-spacing: -.025em; }
.loc-region { font-family: var(--f-mono); font-size: var(--t-fine); color: var(--go-press); margin-top: 4px; letter-spacing: .06em; text-transform: uppercase; }
.loc-addr { font-size: var(--t-small); color: var(--ink-2); margin-top: 12px; }
.loc-map { width: 100%; height: 200px; border: 0; border-top: 1px solid var(--line); filter: grayscale(.35) contrast(1.03); }

/* ---------- 23b · Page figures (inner-page hero, right column) ---------- */
.fig { padding: 6px; overflow: hidden; }
.fig-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 16px 13px 14px;
}
.fig-head .widget-name { font-size: .6875rem; }
.fig > :not(.fig-head):not(.fig-foot) { margin-inline: 8px; }
.fig-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-top: 12px; padding: 14px 16px; border-top: 1px solid var(--line);
  font-size: var(--t-fine); color: var(--ink-3);
}
.fig-foot b { font-family: var(--f-mono); font-weight: 700; color: var(--ink); }
.fig-foot b.plus { color: var(--up); }
.fig-foot b.minus { color: var(--down); }

/* shared row list */
.fig-rows { display: grid; gap: 6px; }
.fig-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface-2);
}
.fig-row .rk { font-weight: 700; color: var(--ink); font-size: .875rem; min-width: 74px; }
.fig-row .q-px { font-family: var(--f-mono); font-size: .875rem; color: var(--ink-2); margin-left: auto; }
.fig-row .q-chg { font-family: var(--f-mono); font-size: var(--t-fine); font-weight: 700; min-width: 62px; text-align: right; }

/* 1 · audit trail chain */
.chain { display: grid; gap: 2px; position: relative; }
.chain li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; padding: 10px 6px; position: relative; }
.chain li:not(:last-child)::before {
  content: ""; position: absolute; left: 15px; top: 40px; bottom: -2px; width: 2px;
  background: repeating-linear-gradient(var(--line-strong) 0 4px, transparent 4px 9px);
}
.chain-node {
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  background: var(--surface-2); border: 1.5px solid var(--line-strong);
  font-family: var(--f-mono); font-size: .75rem; font-weight: 700; color: var(--ink-3);
}
.chain-node--seal { background: var(--go); border-color: var(--go); color: #fff; }
.chain-copy b { display: block; font-size: .875rem; color: var(--ink); font-weight: 700; }
.chain-copy span { display: block; font-size: var(--t-fine); color: var(--ink-3); margin-top: 3px; }

/* 2 · access scope */
.scope { display: grid; gap: 0; }
.scope-node { padding: 15px 16px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface-2); }
.scope-node--ours { border-color: rgba(0,177,93,.3); background: var(--go-soft); }
.scope-node b { display: block; font-size: .9375rem; color: var(--ink); }
.scope-node span { display: block; font-size: var(--t-fine); color: var(--ink-3); margin-top: 3px; }
.scope-wire { display: grid; gap: 6px; padding: 12px 0 12px 16px; }
.scope-lane { display: inline-flex; align-items: center; gap: 9px; font-size: var(--t-fine); font-weight: 600; }
.scope-lane svg { width: 17px; height: 17px; flex: none; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.scope-lane--go { color: var(--go-press); }
.scope-lane--go svg { stroke: var(--go); }
.scope-lane--stop { color: var(--ink-3); }
.scope-lane--stop svg { stroke: var(--down); }

/* 3 · most asked */
.asked { display: grid; gap: 6px; }
.asked li {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface-2);
  font-size: .875rem;
}
.asked li span { color: var(--ink-2); }
.asked li b { font-family: var(--f-mono); font-size: var(--t-fine); color: var(--go-press); white-space: nowrap; }

/* 4 · desk quad */
.fig-quad { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.quad { padding: 13px 14px 15px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface-2); }
.quad-label { display: block; font-family: var(--f-mono); font-size: .625rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.quad-spark, .quad-arc { width: 100%; height: auto; }
.quad-heat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.quad-heat i { display: block; height: 15px; border-radius: 3px; }
.quad-lines { display: grid; gap: 6px; }
.quad-lines i { display: block; height: 7px; border-radius: 4px; background: var(--line-strong); }
.quad-lines i:nth-child(2) { width: 78%; }
.quad-lines i:nth-child(3) { width: 56%; }

/* 6 · sector grid */
.fig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; }
.fig-grid .cell {
  display: grid; place-items: center; min-height: 52px; border-radius: var(--r-sm);
  border: 1px solid var(--line);
  font-size: .6875rem; font-weight: 700; color: var(--ink);
}

/* 7 · trend segments */
.segs { display: inline-flex; gap: 3px; margin-left: auto; }
.segs i { display: block; width: 9px; height: 16px; border-radius: 2px; background: var(--line); }
.segs i.sel { background: var(--go); }
.fig-row .verdict { min-width: 96px; text-align: center; }

/* 8 · mood dial */
.dial { padding: 8px 6px 4px; text-align: center; }
.dial svg { width: 100%; height: auto; }
.dial-read { margin-top: -14px; }
.dial-read b { font-family: var(--f-display); font-size: 2.5rem; font-weight: 700; color: var(--ink); letter-spacing: -.04em; display: block; line-height: 1; }
.dial-read span { display: block; font-size: var(--t-fine); color: var(--go-press); font-weight: 700; margin-top: 6px; }
.dial-ends { display: flex; justify-content: space-between; margin-top: 14px; font-family: var(--f-mono); font-size: .625rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }

/* 9 · wire stack */
.wire { display: grid; gap: 7px; }
.wire-card { padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface-2); }
.wire-card p { font-size: .875rem; font-weight: 600; color: var(--ink); line-height: 1.4; }
.wire-meta { display: block; font-family: var(--f-mono); font-size: .625rem; color: var(--ink-3); margin-top: 7px; }

/* 10 · earnings week */
.week { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; }
.day { min-height: 104px; padding: 10px 7px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface-2); display: grid; gap: 5px; align-content: start; }
.day-name { font-family: var(--f-mono); font-size: .625rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); text-align: center; }
.day-pill { display: block; padding: 5px 4px; border-radius: 5px; background: var(--go-soft); color: var(--go-press); font-family: var(--f-mono); font-size: .625rem; font-weight: 700; text-align: center; }

/* 11 · macro agenda */
.agenda { display: grid; gap: 6px; }
.agenda li {
  display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface-2);
}
.agenda .when { font-family: var(--f-mono); font-size: var(--t-fine); color: var(--ink-3); }
.agenda .tier-what { font-size: .875rem; font-weight: 600; color: var(--ink); }

@media (max-width: 900px) {
  .fig { max-width: 520px; }
}

/* ---------- 24 · Motion ---------- */
.lift { opacity: 0; transform: translateY(16px); animation: rise .7s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes rise { to { opacity: 1; transform: none; } }
.enter { opacity: 0; transform: translateY(18px); }
.enter.shown { opacity: 1; transform: none; transition: opacity .6s var(--ease) var(--d, 0s), transform .7s var(--ease) var(--d, 0s); }

/* ---------- 25 · Responsive ---------- */
@media (max-width: 1120px) {
  .menu, .topnav-signin { display: none; }
  :root { --nav-h: 72px; }
  .brand-logo { height: 46px; }
  .nav-toggle { display: inline-flex; }
  .topnav-end { gap: 10px; }
  .foot-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .proof { grid-template-columns: 1fr; }
  .proof-left { border-right: 0; border-bottom: 1px solid var(--line); }
  .rules-grid, .audit, .brief-grid, .contact-grid, .pagehead--split, .voices, .pillars { grid-template-columns: 1fr; }
  .foot-legal { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: repeat(3, 1fr); }
  .desk { grid-template-columns: 1fr; }
  .desk .span-2 { grid-column: auto; }
  .spec { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 720px) {
  .trustbar { grid-template-columns: 1fr 1fr; }
  .trustbar div:nth-child(2) { border-right: 0; }
  .trustbar div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .steps::before { display: none; }
  .fleet, .readnotes, .accounts, .locs { grid-template-columns: 1fr; }
  .model-stats, .qa-tiers { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .drawer-sub { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  /* Smallest phones: the display scale's own floor is still too wide for a
     280px content column, so step the headline and eyebrow down explicitly. */
  :root { --t-display: 2.125rem; --t-h2: 1.625rem; }
  .mast-chip { font-size: .75rem; }
}
@media (max-width: 480px) {
  .trustbar { grid-template-columns: 1fr; }
  .trustbar div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trustbar div:last-child { border-bottom: 0; }
  .actions .cta { width: 100%; }
  .ribbon-tag { display: none; }
  .feed-row { grid-template-columns: 1fr auto; }
  .feed-row .t { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .lift, .enter { opacity: 1; transform: none; }
  .bar-grow { transform: none; }
  .curve-line { stroke-dasharray: none; stroke-dashoffset: 0; }
}
