/* faststreaming.es — Design System v2 "Data Field" (see DESIGN.md)
   Shared across all pages. Light, structured, instrument-grade. */

@font-face {
  font-family: 'Archivo';
  src: url('/assets/fonts/archivo-var.woff2') format('woff2');
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}
@font-face {
  font-family: 'Fira Code';
  src: url('/assets/fonts/fira-code-var.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --paper: #FCFCFD;
  --surface: #FFFFFF;
  --ink: #0F2A47;
  --body: #41506A;
  --hairline: #E4E8EF;
  --hairline-strong: #C9D2DE;
  --talos: #4F46E5;
  --agro: #5E9B26;
  --grid: #1F8A99;
  --public: #1F4E8C;
  --ease-expo: cubic-bezier(.16, 1, .3, 1);
  --z-dropdown: 40;
  --z-sticky: 50;
  --z-badge: 60;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.still { scroll-behavior: auto; }
body {
  /* engineering grid over REAL whitish-blue gradients (owner: never plain white) */
  background:
    linear-gradient(rgba(15,42,71,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,42,71,0.05) 1px, transparent 1px),
    linear-gradient(rgba(15,42,71,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,42,71,0.025) 1px, transparent 1px),
    radial-gradient(1300px 850px at 85% -10%, #C7DDFB 0%, rgba(199,221,251,0) 65%),
    radial-gradient(1100px 800px at -12% 32%, #DCE9FB 0%, rgba(220,233,251,0) 60%),
    radial-gradient(1200px 850px at 60% 115%, #CFE0F9 0%, rgba(207,224,249,0) 58%),
    linear-gradient(180deg, #F4F8FE 0%, #E9F1FC 50%, #F2F7FE 100%);
  background-size: 144px 144px, 144px 144px, 36px 36px, 36px 36px, auto, auto, auto, auto;
  color: var(--body);
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* gradient display words — the company's brand language: the gradient IS the
   four domains (indigo→green→teal→blue). Large display text only (AA). */
.grad {
  background: linear-gradient(92deg, var(--talos) 0%, var(--agro) 36%, var(--grid) 64%, var(--public) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--public);
}
/* domain-keyword accents for section headings (large text only) */
.acc-t { color: var(--talos); } .acc-g { color: var(--grid); }
.acc-a { color: var(--agro); } .acc-p { color: var(--public); }

img { max-width: 100%; height: auto; }
:focus-visible { outline: 2px solid var(--talos); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: 1320px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); width: 100%; }
.mono { font-family: 'Fira Code', monospace; }

.above { position: relative; z-index: 1; }

/* per-section generative math pieces — small, fluid, looping; a new one on
   every screen. Sized/positioned per-canvas via inline style. */
.mathbg { position: absolute; pointer-events: none; z-index: 0; }
.sect > .wrap, .hero > .wrap { position: relative; z-index: 1; }

/* unified attractor field — ONE fixed full-viewport WebGL canvas behind
   main.above; clouds are anchored in document space, camera tracks scroll */
#attractor-field {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* ---------- header ---------- */
.hdr {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: rgba(252,252,253,.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.hdr-in { display: flex; align-items: center; gap: 36px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand img { width: 32px; height: 32px; }
.brand b { font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav-link {
  position: relative; text-decoration: none; color: var(--ink);
  font-weight: 520; font-size: 15px; padding: 6px 0;
  background: none; border: 0; cursor: pointer; font-family: inherit;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-expo);
}
.nav-link:hover::after, .nav-link:focus-visible::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1); }
/* language switcher */
.lang {
  display: flex; align-items: center; gap: 7px;
  font-family: 'Fira Code', monospace; font-size: 12.5px; font-weight: 600;
}
.lang a { text-decoration: none; color: var(--body); padding: 4px 2px; }
.lang a:hover { color: var(--ink); }
.lang a[aria-current="page"] { color: var(--ink); border-bottom: 2px solid var(--ink); }
.lang span { color: var(--hairline-strong); }

.nav-cta {
  text-decoration: none; color: var(--paper); background: var(--ink);
  font-weight: 600; font-size: 14.5px; padding: 10px 18px; border-radius: 6px;
  transition: background .25s var(--ease-expo);
}
.nav-cta:hover { background: #1A3D63; }

/* platform dropdown — hover (desktop) + click/keyboard (JS toggles aria-expanded) */
.dd { position: relative; }
.dd-panel {
  position: absolute; top: calc(100% + 10px); left: -16px; min-width: 340px;
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: 10px; box-shadow: 0 18px 40px -18px rgba(15,42,71,.22);
  padding: 8px; opacity: 0; visibility: hidden; translate: 0 6px;
  z-index: var(--z-dropdown);
  transition: opacity .3s var(--ease-expo), translate .3s var(--ease-expo), visibility 0s .3s;
}
.dd:hover .dd-panel, .dd:focus-within .dd-panel,
.dd > [aria-expanded="true"] + .dd-panel {
  opacity: 1; visibility: visible; translate: 0 0; transition-delay: 0s;
}
.dd-item {
  display: grid; grid-template-columns: 10px 1fr auto; align-items: baseline; gap: 10px;
  padding: 10px 12px; border-radius: 7px; text-decoration: none;
}
.dd-item:hover { background: #F3F6FA; }
.dd-dot { width: 8px; height: 8px; border-radius: 50%; align-self: center; }
.dd-dot.t { background: var(--talos); } .dd-dot.a { background: var(--agro); }
.dd-dot.g { background: var(--grid); } .dd-dot.p { background: var(--public); }
.dd-name { color: var(--ink); font-weight: 620; font-size: 14.5px; }
.dd-name small { color: var(--body); font-weight: 460; font-size: 12.5px; display: block; }
.dd-trl {
  font-family: 'Fira Code', monospace; font-size: 10.5px; font-weight: 600;
  color: var(--ink); border: 1px solid var(--hairline-strong); border-radius: 4px;
  padding: 2px 7px; white-space: nowrap;
}

/* breadcrumb (sub-pages) */
.crumb {
  font-family: 'Fira Code', monospace; font-size: 12px; font-weight: 540;
  padding: 14px 0 0;
}
.crumb a { color: var(--body); text-decoration: none; }
.crumb a:hover { color: var(--ink); text-decoration: underline; }

/* ---------- hero (fills the monitor) ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(100svh - 68px);
  display: flex; flex-direction: column;
  padding-top: clamp(16px, 3vh, 40px);
  background: linear-gradient(168deg, rgba(255,255,255,.25) 0%, rgba(199,221,251,.55) 100%);
}
.hero > .wrap { flex: 1; display: flex; flex-direction: column; }
.hero-grid {
  flex: 1;
  display: grid; grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
  gap: clamp(28px, 4.5vw, 64px); align-items: center;
  padding-bottom: clamp(12px, 2.5vh, 32px);
}
h1 {
  font-size: clamp(2.5rem, 4.6vw + 0.8rem, 4.9rem);
  font-stretch: 116%;
  font-weight: 750;
  line-height: 1.03;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}
.display {
  font-stretch: 114%; font-weight: 730; line-height: 1.08;
  letter-spacing: -0.022em; color: var(--ink); text-wrap: balance;
}
h2.display { font-size: clamp(1.8rem, 2.8vw, 2.6rem); }
h3.display { font-size: clamp(1.25rem, 1.7vw, 1.55rem); }
.sub {
  margin-top: 26px; font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65; max-width: 56ch; text-wrap: pretty;
}
.sub b, p b { color: var(--ink); font-weight: 640; }
.ctas { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.btn-prime {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  background: var(--ink); color: var(--paper); font-weight: 620; font-size: 16px;
  padding: 14px 24px; border-radius: 7px; transition: background .25s var(--ease-expo);
}
.btn-prime:hover { background: #1A3D63; }
.btn-prime .arr { transition: translate .35s var(--ease-expo); }
.btn-prime:hover .arr { translate: 4px 0; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  color: var(--ink); font-weight: 600; font-size: 16px;
  padding: 14px 24px; border-radius: 7px; border: 1px solid var(--hairline-strong);
  background: rgba(255,255,255,.6);
  transition: border-color .25s var(--ease-expo), background .25s var(--ease-expo);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--surface); }

/* ---------- partner ribbon: white logo cards riding a deep blue band ---------- */
.ribbon {
  overflow: hidden;
  padding: clamp(28px, 4vh, 44px) 0;
  background: linear-gradient(135deg, #0F2A47 0%, #173A61 55%, #0F2A47 100%);
}
.ribbon-track {
  display: flex; align-items: center; gap: clamp(36px, 4.5vw, 72px);
  width: max-content;
  animation: ribbon 30s linear infinite;
}
.ribbon-track img {
  height: 78px; width: auto;
  background: #fff; padding: 16px 28px; border-radius: 12px;
  box-shadow: 0 12px 26px -16px rgba(0,0,0,.45);
}
@keyframes ribbon { to { transform: translateX(-50%); } }

/* ---------- telemetry strip: full-bleed, part of the hero, no floating card ---------- */
.telemetry {
  border-top: 1px solid rgba(15,42,71,.14);
  padding: 17px 0 19px;
  background: linear-gradient(180deg, rgba(255,255,255,.34), rgba(214,230,250,.4));
}
.tele-row {
  display: flex; flex-wrap: wrap; gap: 12px 0;
  font-family: 'Fira Code', monospace; font-size: 13.5px; font-weight: 540;
  color: var(--ink);
}
.tele-row span { display: inline-flex; align-items: center; }
.tele-row span + span::before {
  content: ''; width: 1px; height: 14px; background: var(--hairline-strong);
  margin: 0 18px;
}
.tele-row em { font-style: normal; color: var(--body); font-weight: 460; margin-left: 7px; }

/* ---------- sections ---------- */
.sect { position: relative; overflow: hidden; padding: clamp(56px, 9vh, 104px) 0; }
.sect + .sect { border-top: 1px solid var(--hairline); }
.band { background: linear-gradient(180deg, rgba(214,230,250,.6), rgba(236,244,253,.15) 75%); }
/* agro keeps a clear bottom strip where the ferns grow without touching copy */
#agro { padding-bottom: clamp(170px, 26vh, 280px); }
.sect-grid { display: grid; grid-template-columns: minmax(0,5fr) minmax(0,7fr); gap: clamp(28px, 4vw, 64px); }
.sect p { max-width: 62ch; text-wrap: pretty; }
.sect p + p { margin-top: 14px; }
.lede { font-size: clamp(1.02rem, 1.3vw, 1.15rem); }

/* domain band: full-width section with an accent edge treatment */
.band { position: relative; }
.band-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 10px; }
.trl-chip {
  font-family: 'Fira Code', monospace; font-size: 11px; font-weight: 650;
  letter-spacing: .05em; color: var(--ink);
  border: 1px solid var(--hairline-strong); border-radius: 4px; padding: 3px 9px;
  white-space: nowrap; background: var(--surface);
}
.trl-chip .dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 7px; }

/* instrument panel (surface card with cap row) */
.panel { background: var(--surface); border: 1px solid var(--hairline-strong); border-radius: 10px; overflow: hidden; }
.panel-cap {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 13px 20px; border-bottom: 1px solid var(--hairline);
  background: rgba(231,240,252,.55);
  font-family: 'Fira Code', monospace; font-size: 12.5px; font-weight: 600;
  letter-spacing: .07em; color: var(--public);
}
.panel-body { padding: 18px; }

/* ledger table (production record) */
.ledger { width: 100%; border-collapse: collapse; }
.ledger tr { border-top: 1px solid var(--hairline); }
.ledger tr:last-child { border-bottom: 1px solid var(--hairline); }
.ledger th { text-align: left; font-weight: 560; color: var(--ink); font-size: 15.5px; padding: 15px 16px 15px 0; width: 42%; }
.ledger td { font-family: 'Fira Code', monospace; font-weight: 600; font-size: 16px; color: var(--public); padding: 15px 0; font-variant-numeric: tabular-nums; }
.ledger td small { font-family: 'Archivo', sans-serif; font-weight: 460; font-size: 13.5px; color: var(--body); margin-left: 10px; }

/* pipeline strip (TALOS 4 beats, static-first) */
.pipe { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--hairline-strong); border-radius: 10px; overflow: hidden; background: var(--surface); }
.pipe-cell { padding: 18px 16px 16px; border-left: 1px solid var(--hairline); }
.pipe-cell:first-child { border-left: 0; }
.pipe-k { font-family: 'Fira Code', monospace; font-size: 12.5px; font-weight: 650; letter-spacing: .06em; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.pipe-k .dot { width: 7px; height: 7px; border-radius: 50%; }
.pipe-cell p { font-size: 14.5px; line-height: 1.5; margin-top: 8px; color: var(--body); }

/* timeline (agro signed project) */
.tline { list-style: none; border-left: 2px solid var(--hairline-strong); padding-left: 24px; display: grid; gap: 18px; }
.tline li { position: relative; }
.tline li::before {
  content: ''; position: absolute; left: -28.5px; top: 6px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--surface); border: 2.5px solid var(--agro);
}
.tline .tl-k { font-family: 'Fira Code', monospace; font-size: 13.5px; font-weight: 650; color: var(--public); display: block; }
.tline p { font-size: 15.5px; margin-top: 3px; }

/* compliance checklist (public sector) — verified rows, not loose chips */
.check-list { list-style: none; }
.check-list li {
  display: grid; grid-template-columns: 20px auto 1fr; align-items: baseline; gap: 10px;
  padding: 13px 0; border-bottom: 1px solid var(--hairline);
}
.check-list li:last-child { border-bottom: none; }
.check-list svg {
  width: 15px; height: 15px; align-self: center;
  fill: none; stroke: var(--public); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}
.check-list b { font-weight: 640; color: var(--ink); font-size: 15.5px; white-space: nowrap; }
.check-list span { font-size: 14.5px; color: var(--body); }

/* engineering facts — framed rows when standalone; FLAT divided rows when
   inside a .panel (cards inside cards are always wrong) */
.facts { display: grid; gap: 10px; }
.fact {
  display: grid; grid-template-columns: minmax(170px, 215px) 1fr; gap: 20px;
  align-items: baseline;
  padding: 14px 18px;
  border: 1px solid var(--hairline); border-radius: 8px;
  background: rgba(255,255,255,.65);
}
.fact b { font-family: 'Fira Code', monospace; font-size: 14px; font-weight: 600; color: var(--public); letter-spacing: .04em; display: flex; align-items: center; gap: 10px; }
.fact-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.fact p { font-size: 15.5px; line-height: 1.55; }
.panel .facts { gap: 0; }
.panel .fact {
  border: 0; border-radius: 0; background: none;
  padding: 15px 0; border-bottom: 1px solid var(--hairline);
}
.panel .fact:last-child { border-bottom: 0; }

/* partner row */
.partners { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(28px, 4vw, 56px); }
.partners img { height: 44px; width: auto; filter: grayscale(1) contrast(.9); opacity: .75; transition: filter .3s var(--ease-expo), opacity .3s var(--ease-expo); }
.partners img:hover { filter: none; opacity: 1; }

/* contact + footer */
.contact-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.footer { border-top: 1px solid var(--hairline-strong); padding: 36px 0 44px; background: rgba(252,252,253,.8); }
.foot-grid { display: flex; flex-wrap: wrap; gap: 24px 48px; justify-content: space-between; align-items: flex-start; }
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.foot-links a { color: var(--body); text-decoration: none; font-size: 14px; }
.foot-links a:hover { color: var(--ink); text-decoration: underline; }
.foot-legal { font-size: 13px; color: var(--body); margin-top: 18px; }

/* ---------- reveals (additive; gated on html.anim) ---------- */
.rv { opacity: 1; transform: none; }
.anim .rv { opacity: 0; transform: translateY(15px); transition: opacity .6s var(--ease-expo), transform .6s var(--ease-expo); }
.anim .rv.in { opacity: 1; transform: none; }
.anim .rise { animation: rise .8s var(--ease-expo) both; }
.anim .rise.d1 { animation-delay: .07s; } .anim .rise.d2 { animation-delay: .16s; }
.anim .rise.d3 { animation-delay: .25s; } .anim .rise.d4 { animation-delay: .34s; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ---------- diagram (shared) ---------- */
.diagram { width: 100%; height: auto; display: block; }
.diagram text { font-family: 'Fira Code', monospace; }
.dg-label { font-size: 13px; font-weight: 650; fill: var(--ink); letter-spacing: .03em; }
.dg-note  { font-size: 11px; font-weight: 500; fill: var(--body); }
.dg-src   { font-size: 11px; font-weight: 600; fill: var(--ink); letter-spacing: .04em; }
.dg-wire  { fill: none; stroke: var(--hairline-strong); stroke-width: 1.5; }
.dg-box   { fill: var(--surface); stroke: var(--ink); stroke-width: 1.5; }
.dg-node  { fill: var(--surface); stroke-width: 1.5; }
.anim .draw { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1.2s var(--ease-expo) forwards; }
.anim .draw.w1 { animation-delay: .3s; } .anim .draw.w2 { animation-delay: .8s; }
.anim .draw.w3 { animation-delay: 1.15s; } .anim .draw.w4 { animation-delay: 1.27s; }
.anim .draw.w5 { animation-delay: 1.39s; } .anim .draw.w6 { animation-delay: 1.51s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.anim .fadein { opacity: 0; animation: fade .6s var(--ease-expo) forwards; }
.anim .fadein.f1 { animation-delay: 1.05s; } .anim .fadein.f2 { animation-delay: 1.7s; }
.anim .fadein.f3 { animation-delay: 1.82s; } .anim .fadein.f4 { animation-delay: 1.94s; }
.anim .fadein.f5 { animation-delay: 2.06s; }
@keyframes fade { to { opacity: 1; } }

/* source threads: constant ingestion — data flows forever, never goes still */
.in-solid { fill: none; stroke: var(--ink); stroke-opacity: .35; stroke-width: 1.4; stroke-linecap: round; }
.in-dash { fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-linecap: round; stroke-dasharray: 5 9; display: none; }
.pkt { display: none; }
.anim .in-dash { display: block; animation: flowdash 1.1s linear infinite; }
.anim .in-dash.d2 { animation-delay: .25s; }
.anim .in-dash.d3 { animation-delay: .5s; }
.anim .in-dash.d4 { animation-delay: .75s; }
.anim .pkt { display: block; }
@keyframes flowdash { to { stroke-dashoffset: -56; } }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .hero-grid, .sect-grid { grid-template-columns: 1fr; }
  .diagram-col { max-width: 520px; }
  .pipe { grid-template-columns: 1fr 1fr; }
  .pipe-cell:nth-child(3) { border-left: 0; }
  .pipe-cell:nth-child(n+3) { border-top: 1px solid var(--hairline); }
  .fact { grid-template-columns: 1fr; gap: 4px; }
  .hdr-in { gap: 12px; height: 60px; }
  .brand { gap: 8px; }
  .brand img { width: 26px; height: 26px; }
  .brand b { font-size: 16px; }
  .nav { gap: 14px; }
  .nav .hide-m { display: none; }
  .nav-cta { padding: 9px 14px; font-size: 13.5px; }
  .dd-panel { left: auto; right: -70px; min-width: 300px; }
  .hero { min-height: auto; padding-top: 28px; }
  .hero-grid { padding-top: 16px; padding-bottom: 28px; }
  .mathbg { display: none; }
  #attractor-field { display: none; }
}

/* two-column capability rows inside wide panels */
.facts-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 44px; }
@media (max-width: 880px) { .facts-2col { grid-template-columns: 1fr; } }

/* pricing tiers: equal cards, CTA pinned to the bottom */
.tier { display: flex; flex-direction: column; }
.tier .panel-body { flex: 1; display: flex; flex-direction: column; }
.tier .check-list { flex: 1; }
.tier .ctas { margin-top: auto; padding-top: 22px; }

/* plan comparison matrix */
.cmp { width: 100%; border-collapse: collapse; }
.cmp thead th {
  font-family: 'Fira Code', monospace; font-size: 12.5px; font-weight: 650;
  letter-spacing: .04em; color: var(--public); text-align: center;
  padding: 14px 10px; border-bottom: 2px solid var(--hairline-strong);
}
.cmp thead th:first-child { text-align: left; }
.cmp thead th small { display: block; font-weight: 460; color: var(--body); letter-spacing: 0; margin-top: 2px; }
.cmp tbody th {
  text-align: left; font-weight: 540; color: var(--ink); font-size: 15px;
  padding: 13px 10px 13px 0;
}
.cmp tbody td { text-align: center; padding: 13px 10px; min-width: 110px; }
.cmp tbody tr { border-bottom: 1px solid var(--hairline); }
.cmp tbody tr:last-child { border-bottom: 0; }
.cmp tbody tr:nth-child(odd) { background: rgba(231,240,252,.35); }
.cmp .ck { width: 16px; height: 16px; fill: none; stroke: var(--talos); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.cmp .no { color: var(--hairline-strong); font-weight: 600; }

/* ---------- small screens: stack data rows, full-width actions ---------- */
@media (max-width: 640px) {
  .ledger tr { display: block; padding: 13px 0; }
  .ledger th, .ledger td { display: block; width: 100%; padding: 0; }
  .ledger th { font-size: 13px; color: var(--body); font-weight: 540; }
  .ledger td { padding-top: 4px; }
  .ctas { gap: 10px; }
  .ctas .btn-prime, .ctas .btn-ghost, .contact-cta .btn-prime, .contact-cta .btn-ghost {
    flex: 1 1 100%; justify-content: center;
  }
  .tele-row span + span::before { margin: 0 12px; }
  .fact { grid-template-columns: 1fr; gap: 6px; padding: 13px 15px; }
  .panel .fact { padding: 13px 0; }
  .panel-cap { flex-wrap: wrap; row-gap: 2px; }
}

/* ---------- reduced motion: everything reads as a fixed page ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ribbon-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  #field, #attractor-field { display: none; }
  .anim .rv, .anim .rise, .anim .draw, .anim .fadein, .anim .in-solid {
    animation: none !important; transition: none !important;
    opacity: 1 !important; transform: none !important; stroke-dashoffset: 0 !important;
  }
  .anim .in-dash, .anim .pkt { display: none !important; }
  .nav-link::after, .btn-prime .arr, .dd-panel { transition: none !important; }
}
