/* ==========================================================================
   WantedX — wantedx.co.za
   site.css — design tokens, base, layout, components
   Design language: Cohere-inspired spatial system + WantedX brand
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand constants — identical in both themes */
  --brand-cyan:   #0E7490;
  --brand-violet: #6D28D9;
  --brand-signal: #FF3B30;   /* the X in the wordmark. Nothing else. */

  /* Type */
  --font-display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Layout */
  --maxw: 1220px;
  --maxw-narrow: 820px;
  --gutter: clamp(20px, 4.2vw, 44px);
  --section-y: clamp(62px, 7.4vw, 108px);
  --section-y-tight: clamp(44px, 5vw, 76px);

  /* Motion */
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --dur-fast: .18s;
  --dur: .34s;
  --dur-slow: .7s;

  /* Elevation */
  --z-wire: 0;
  --z-body: 1;
  --z-nav: 60;
  --z-overlay: 80;
  --z-voice: 90;
}

/* ---------- Light theme (default) ---------- */
:root,
[data-theme="light"] {
  color-scheme: light;

  --bg:        #FAF9F7;   /* warm paper */
  --bg-elev:   #FFFFFF;
  --bg-sunk:   #F1EFE9;
  --bg-invert: #0B1220;

  --ink:    #0B1220;
  --ink-2:  #2E3A50;
  --body:   #4E5B70;
  --muted:  #6E7A8C;
  --faint:  #99A2B0;
  --on-invert: #F3F6FA;
  --on-invert-dim: #93A0B4;

  --line:    rgba(11, 18, 32, .11);
  --line-2:  rgba(11, 18, 32, .18);
  --line-3:  rgba(11, 18, 32, .28);

  --accent:      #0E7490;
  --accent-text: #0B6076;
  --accent-2:    #6D28D9;
  --accent-2-text: #5B21B6;
  --accent-wash: rgba(14, 116, 144, .07);
  --accent-line: rgba(14, 116, 144, .30);
  --accent-2-wash: rgba(109, 40, 217, .06);

  --ok:    #047857;
  --ok-wash: #ECFDF5;
  --ok-line: rgba(4, 120, 87, .24);
  --warn:  #B45309;
  --warn-wash: #FFFBEB;
  --warn-line: rgba(180, 83, 9, .24);
  --signal: #FF3B30;

  /* Wireframe field */
  --wire:      rgba(11, 18, 32, .16);
  --wire-hot:  rgba(14, 116, 144, .30);
  --wire-hot2: rgba(109, 40, 217, .24);
  --wire-node: rgba(11, 18, 32, .22);

  --shadow-sm: 0 1px 2px rgba(11, 18, 32, .05);
  --shadow:    0 2px 4px rgba(11, 18, 32, .04), 0 12px 32px -18px rgba(11, 18, 32, .18);
  --shadow-lg: 0 4px 8px rgba(11, 18, 32, .05), 0 28px 64px -28px rgba(11, 18, 32, .26);

  --glass: rgba(250, 249, 247, .82);
}

/* ---------- Dark theme ---------- */
[data-theme="dark"] {
  color-scheme: dark;

  --bg:        #080C14;
  --bg-elev:   #0E1521;
  --bg-sunk:   #05080E;
  --bg-invert: #F3F6FA;

  --ink:    #F4F7FB;
  --ink-2:  #D4DCE8;
  --body:   #9EAABD;
  --muted:  #7E8A9C;
  --faint:  #5E6979;
  --on-invert: #0B1220;
  --on-invert-dim: #46536B;

  --line:    rgba(255, 255, 255, .10);
  --line-2:  rgba(255, 255, 255, .17);
  --line-3:  rgba(255, 255, 255, .28);

  --accent:      #22D3EE;
  --accent-text: #5EE9FF;
  --accent-2:    #A78BFA;
  --accent-2-text: #C4B5FD;
  --accent-wash: rgba(34, 211, 238, .08);
  --accent-line: rgba(34, 211, 238, .28);
  --accent-2-wash: rgba(167, 139, 250, .07);

  --ok:    #34D399;
  --ok-wash: rgba(16, 185, 129, .09);
  --ok-line: rgba(52, 211, 153, .26);
  --warn:  #FBBF24;
  --warn-wash: rgba(251, 191, 36, .08);
  --warn-line: rgba(251, 191, 36, .24);
  --signal: #FF5B52;

  --wire:      rgba(150, 200, 225, .14);
  --wire-hot:  rgba(34, 211, 238, .26);
  --wire-hot2: rgba(167, 139, 250, .22);
  --wire-node: rgba(180, 215, 235, .20);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .5);
  --shadow:    0 2px 4px rgba(0, 0, 0, .4), 0 14px 36px -18px rgba(0, 0, 0, .8);
  --shadow-lg: 0 4px 10px rgba(0, 0, 0, .45), 0 32px 70px -30px rgba(0, 0, 0, .9);

  --glass: rgba(8, 12, 20, .78);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.68;
  font-feature-settings: "cv05" 1, "cv08" 1, "ss03" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}

body.is-locked { overflow: hidden; }

img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

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

.skip {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: var(--r-pill);
  font-weight: 600;
  transform: translateY(calc(-100% - 20px));
  transition: transform var(--dur) var(--ease-out);
}
.skip:focus { transform: none; text-decoration: none; }

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

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 .5em;
  font-weight: 620;
  text-wrap: balance;
}

h1, .h1 {
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -.038em;
  font-weight: 640;
  margin-bottom: .34em;
}

h2, .h2 {
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.06;
  letter-spacing: -.032em;
  margin-bottom: .38em;
}

h3, .h3 {
  font-size: clamp(19px, 1.45vw, 23px);
  line-height: 1.28;
  letter-spacing: -.018em;
  font-weight: 620;
  margin-bottom: .5em;
}

h4, .h4 {
  font-size: 16.5px;
  line-height: 1.4;
  letter-spacing: -.012em;
  font-weight: 640;
  margin-bottom: .45em;
}

p { margin: 0 0 1.05em; color: var(--body); }
p:last-child { margin-bottom: 0; }

strong, b { color: var(--ink); font-weight: 620; }

.lead {
  font-size: clamp(17.5px, 1.4vw, 21px);
  line-height: 1.56;
  color: var(--ink-2);
  letter-spacing: -.011em;
  max-width: 68ch;
}

.lead-sm {
  font-size: clamp(16.5px, 1.15vw, 18.5px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 70ch;
}

.small { font-size: 14.5px; line-height: 1.6; }
.tiny  { font-size: 13px; line-height: 1.55; color: var(--muted); }

.measure   { max-width: 68ch; }
.measure-t { max-width: 56ch; }

/* Mono label / eyebrow — the Cohere signature */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin: 0 0 20px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: .5;
  flex: none;
}
.eyebrow.no-rule::before { display: none; }
.eyebrow.n { color: var(--muted); }

.kicker {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

.num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--accent-text);
  font-weight: 500;
}

/* Gradient ink for a single emphasised phrase.
   inline-block keeps the gradient box continuous across wrapped lines. */
.grad {
  display: inline-block;
  background: linear-gradient(104deg, var(--accent) 0%, var(--accent-2) 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: .06em;   /* stops descenders clipping */
}

.dim { color: var(--muted); }
.mono { font-family: var(--font-mono); }

/* --------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: var(--z-body);
}
.wrap-narrow { max-width: var(--maxw-narrow); }

/* Page bands only — scoped to direct children of <main> so that a <section>
   used inside a component (a form step, say) is not given page padding. */
main > section {
  position: relative;
  padding-block: var(--section-y);
  z-index: var(--z-body);
}
main > section.tight { padding-block: var(--section-y-tight); }
main > section.flush-top { padding-top: 0; }
main > section.ruled { border-top: 1px solid var(--line); }
main > section.sunk { background: var(--bg-sunk); }
main > section.elev { background: var(--bg-elev); }

.stack > * + * { margin-top: var(--gap, 20px); }

.grid { display: grid; gap: clamp(16px, 1.7vw, 24px); }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.g5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(28px, 4.4vw, 72px);
  align-items: start;
}
.split.center { align-items: center; }
.split.narrow-right { grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); }

/* Section header block */
.sec-head { margin-bottom: clamp(32px, 3.6vw, 56px); max-width: 74ch; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head h2 { margin-bottom: .34em; }

/* --------------------------------------------------------------------------
   5. WIREFRAME FIELD — geometry that dissolves into the page
   -------------------------------------------------------------------------- */
.wirefield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-wire);
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.6s var(--ease-out);
  /* Geometry stays legible at the edges and dissolves behind the reading
     column, so it reads as background structure rather than decoration. */
  -webkit-mask-image: radial-gradient(ellipse 52% 46% at 46% 44%, transparent 0%, rgba(0,0,0,.55) 58%, #000 88%);
          mask-image: radial-gradient(ellipse 52% 46% at 46% 44%, transparent 0%, rgba(0,0,0,.55) 58%, #000 88%);
}
.wirefield.ready { opacity: .82; }
[data-theme="dark"] .wirefield.ready { opacity: 1; }

/* Fine isometric lattice, CSS-only, sits under content in feature bands */
.isogrid { position: relative; isolation: isolate; }
.isogrid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(ellipse 78% 62% at 50% 42%, #000 0%, transparent 72%);
          mask-image: radial-gradient(ellipse 78% 62% at 50% 42%, #000 0%, transparent 72%);
  opacity: .8;
}

/* Soft brand aurora behind hero-type sections */
.aura { position: relative; isolation: isolate; }
.aura::after {
  content: "";
  position: absolute;
  inset: -10% 0 auto 0;
  height: 130%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(760px 420px at 84% 6%,  var(--accent-2-wash), transparent 62%),
    radial-gradient(640px 380px at 2% 88%,  var(--accent-wash),   transparent 60%);
}

/* --------------------------------------------------------------------------
   6. NAVIGATION
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: var(--glass);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
          backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
}
.nav.stuck { border-bottom-color: var(--line); }

.nav-in {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  gap: 26px;
  transition: padding var(--dur) var(--ease-out);
}
.nav.stuck .nav-in { padding-block: 8px; }

.brand { display: block; line-height: 0; flex: none; }
.brand:hover { text-decoration: none; }
.brand svg { height: 34px; width: auto; transition: height var(--dur) var(--ease-out); }
.nav.stuck .brand svg { height: 30px; }
.brand .wordmark { fill: var(--ink); transition: fill var(--dur) var(--ease-out); }
.brand .xmark { fill: var(--signal); }

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -.008em;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
}
.nav-links a:hover { color: var(--ink); background: var(--accent-wash); text-decoration: none; }
.nav-links a.on { color: var(--ink); font-weight: 600; }
.nav-links a.on::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.nav-actions { display: flex; align-items: center; gap: 10px; flex: none; }

/* Theme toggle */
.theme-toggle {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  transition: color var(--dur-fast), border-color var(--dur-fast), background-color var(--dur-fast), transform var(--dur-fast);
}
.theme-toggle:hover { color: var(--ink); border-color: var(--line-2); background: var(--bg-elev); }
.theme-toggle:active { transform: scale(.94); }
.theme-toggle svg { width: 17px; height: 17px; }
.theme-toggle .i-sun  { display: none; }
.theme-toggle .i-moon { display: block; }
[data-theme="dark"] .theme-toggle .i-sun  { display: block; }
[data-theme="dark"] .theme-toggle .i-moon { display: none; }

/* Burger */
.burger {
  display: none;
  width: 40px; height: 38px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  place-items: center;
  color: var(--ink);
}
.burger span {
  display: block; width: 17px; height: 1.6px;
  background: currentColor; border-radius: 2px;
  transition: transform var(--dur) var(--ease-out), opacity var(--dur-fast);
}
.burger span + span { margin-top: 4.5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.1px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.1px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: var(--bg);
  padding: 84px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), visibility var(--dur);
  overflow-y: auto;
}
.drawer.open { opacity: 1; visibility: visible; transform: none; }
.drawer a.d-link {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -.03em;
  font-weight: 600;
  color: var(--ink);
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer a.d-link .num { font-size: 11px; color: var(--faint); }
.drawer a.d-link.on { color: var(--accent-text); }
.drawer .drawer-cta { margin-top: 26px; display: grid; gap: 10px; }

/* --------------------------------------------------------------------------
   7. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--bg);
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.011em;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur) var(--ease-out),
              background-color var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast), filter var(--dur-fast);
}
.btn:hover { text-decoration: none; transform: translateY(-1.5px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0) scale(.985); }
.btn svg { width: 15px; height: 15px; flex: none; transition: transform var(--dur) var(--ease-out); }
.btn:hover svg.arrow { transform: translateX(3px); }

.btn-lg { padding: 15px 28px; font-size: 15.5px; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-block { width: 100%; }

.btn-accent {
  --btn-bg: linear-gradient(112deg, var(--accent) 0%, var(--accent-2) 100%);
  --btn-fg: #fff;
  box-shadow: 0 8px 24px -12px rgba(14, 116, 144, .7);
}
[data-theme="dark"] .btn-accent { --btn-fg: #06131A; }
.btn-accent:hover { filter: brightness(1.07) saturate(1.05); }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--line-2);
}
.btn-ghost:hover { --btn-bg: var(--bg-elev); --btn-bd: var(--line-3); }

.btn-quiet {
  --btn-bg: transparent;
  --btn-fg: var(--accent-text);
  --btn-bd: transparent;
  padding-inline: 4px;
}
.btn-quiet:hover { box-shadow: none; --btn-bg: var(--accent-wash); padding-inline: 12px; }

.btn:disabled, .btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }

/* Inline arrow link */
.more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--accent-text);
  text-decoration: none;
  letter-spacing: -.01em;
}
.more::after {
  content: "→";
  font-family: var(--font-mono);
  transition: transform var(--dur) var(--ease-out);
}
.more:hover { text-decoration: none; }
.more:hover::after { transform: translateX(4px); }

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

/* --------------------------------------------------------------------------
   8. CARDS & SURFACES
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.1vw, 30px);
  transition: border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
}
.card.pad-lg { padding: clamp(26px, 2.8vw, 40px); }
.card.flat { background: transparent; }
.card.sunk { background: var(--bg-sunk); }

.card-hover:hover {
  border-color: var(--accent-line);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Card that is entirely a link target */
a.card { color: inherit; display: block; }
a.card:hover { text-decoration: none; }

.card h3 { margin-bottom: .45em; }
.card p { font-size: 15.5px; }

/* Numbered pillar card */
.pillar { position: relative; padding-top: 30px; }
.pillar .pn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--accent-text);
  display: block;
  margin-bottom: 14px;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: clamp(22px, 2.1vw, 30px); right: clamp(22px, 2.1vw, 30px);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transform: scaleX(.25);
  transform-origin: left;
  transition: opacity var(--dur) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.pillar:hover::before { opacity: 1; transform: scaleX(1); }

/* Stat tiles */
.stats { display: flex; flex-wrap: wrap; gap: 12px; }
.stat {
  flex: 1 1 128px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 15px 17px;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: 1.06;
  background: linear-gradient(112deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span {
  display: block;
  margin-top: 5px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--faint);
  line-height: 1.45;
}

/* Feature list with tick markers */
.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 11px;
  color: var(--body);
  font-size: 15.5px;
  line-height: 1.55;
}
.ticks li:last-child { margin-bottom: 0; }
.ticks li::before {
  content: "";
  position: absolute;
  left: 2px; top: .55em;
  width: 11px; height: 6px;
  border-left: 1.8px solid var(--accent);
  border-bottom: 1.8px solid var(--accent);
  transform: rotate(-45deg);
}
.ticks.dash li::before {
  width: 11px; height: 0;
  border-left: 0;
  border-bottom: 1.8px solid var(--line-3);
  transform: none;
  top: .78em;
}

/* Bullet list, plain */
.bullets { margin: 0; padding-left: 20px; color: var(--body); font-size: 15.5px; }
.bullets li { margin-bottom: 8px; }
.bullets li::marker { color: var(--accent); }

/* Tags */
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  color: var(--muted);
  background: var(--bg-elev);
}
.tag.c { color: var(--accent-text); border-color: var(--accent-line); background: var(--accent-wash); }
.tag.v { color: var(--accent-2-text); border-color: rgba(109,40,217,.26); background: var(--accent-2-wash); }
[data-theme="dark"] .tag.v { border-color: rgba(167,139,250,.26); }
.tag.g { color: var(--ok); border-color: var(--ok-line); background: var(--ok-wash); }
.tag.a { color: var(--warn); border-color: var(--warn-line); background: var(--warn-wash); }

/* Notes / callouts */
.note {
  padding: 18px 22px;
  border-radius: var(--r);
  background: var(--ok-wash);
  border: 1px solid var(--ok-line);
}
.note b {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ok);
  margin-bottom: 7px;
}
.note p { margin: 0; font-size: 15.5px; color: var(--ink-2); }
.note.warn { background: var(--warn-wash); border-color: var(--warn-line); }
.note.warn b { color: var(--warn); }
.note.plain { background: var(--bg-sunk); border-color: var(--line); }
.note.plain b { color: var(--muted); }

/* Pull quote */
.pull {
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 24px;
  margin: 0;
}
.pull p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.34;
  letter-spacing: -.026em;
  color: var(--ink);
  font-weight: 550;
}
.pull cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--faint);
  font-style: normal;
}

/* Vision / mission gradient panels */
.vpanel {
  border-radius: var(--r-xl);
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid var(--line-2);
  background:
    linear-gradient(158deg, var(--accent-wash), var(--accent-2-wash) 58%, var(--bg-elev));
}
.vpanel.alt {
  background: linear-gradient(158deg, var(--accent-2-wash), var(--accent-wash) 58%, var(--bg-elev));
}
.vpanel .q {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.85vw, 24px);
  line-height: 1.42;
  letter-spacing: -.024em;
  color: var(--ink);
  font-weight: 550;
  margin: 0;
}

/* --------------------------------------------------------------------------
   9. TABLES
   -------------------------------------------------------------------------- */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-elev);
  -webkit-overflow-scrolling: touch;
}
table.t {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 15px;
}
table.t th, table.t td {
  text-align: left;
  vertical-align: top;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
table.t thead th {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 500;
  background: var(--bg-sunk);
  white-space: nowrap;
  position: sticky; top: 0;
}
table.t tbody tr:last-child td { border-bottom: 0; }
table.t tbody tr { transition: background-color var(--dur-fast); }
table.t tbody tr:hover { background: var(--accent-wash); }
table.t td:first-child { color: var(--ink); font-weight: 600; white-space: nowrap; }
table.t td .sub {
  display: block;
  font-weight: 400;
  font-size: 12.5px;
  color: var(--faint);
  margin-top: 2px;
  white-space: normal;
}
table.t td { color: var(--body); }
table.t.wide td:first-child { white-space: normal; min-width: 190px; }

/* --------------------------------------------------------------------------
   10. FIGURES — architecture diagrams
   -------------------------------------------------------------------------- */
.fig {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--bg-elev);
  padding: clamp(18px, 2vw, 28px);
  position: relative;
  overflow: hidden;
}
.fig::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .45;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000, transparent 78%);
          mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000, transparent 78%);
}
.fig > * { position: relative; }
.fig-cap {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fig-cap::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.fig-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  text-align: center;
}

/* Diagram primitives */
.dg { display: grid; gap: 12px; }
.dbox {
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: var(--bg);
  padding: 14px 16px;
  text-align: center;
  transition: border-color var(--dur), background-color var(--dur), transform var(--dur);
}
.dbox:hover { border-color: var(--accent-line); transform: translateY(-2px); }
.dbox .t {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent-text);
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
.dbox .n {
  font-family: var(--font-display);
  font-weight: 620;
  font-size: 15px;
  letter-spacing: -.018em;
  color: var(--ink);
  display: block;
  line-height: 1.25;
}
.dbox .d {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
  margin-top: 5px;
  display: block;
}
.dbox.hero {
  background: linear-gradient(150deg, var(--accent-wash), var(--accent-2-wash));
  border-color: var(--accent-line);
}
.dbox.ink { background: var(--bg-invert); border-color: transparent; }
.dbox.ink .n { color: var(--on-invert); }
.dbox.ink .d, .dbox.ink .t { color: var(--on-invert-dim); }

.dband {
  border: 1px dashed var(--line-2);
  border-radius: var(--r);
  padding: 14px 18px;
  background: var(--bg);
}
.dband-t {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 10px;
  text-align: center;
  display: block;
}
.drule {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
  text-align: center;
  padding: 12px 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-block: 4px;
}
.dflow {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.dcaret {
  display: grid; place-items: center;
  color: var(--line-3);
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1;
  padding: 2px 0;
}

/* Animated connector line (drawn on scroll) */
.draw path, .draw line, .draw circle, .draw rect, .draw polyline {
  stroke-dasharray: var(--len, 1200);
  stroke-dashoffset: var(--len, 1200);
}
.draw.in path, .draw.in line, .draw.in circle, .draw.in rect, .draw.in polyline {
  animation: dash 1.5s var(--ease-out) forwards;
}
@keyframes dash { to { stroke-dashoffset: 0; } }

/* --------------------------------------------------------------------------
   11. ACCORDION / DISCLOSURE
   -------------------------------------------------------------------------- */
.acc { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-btn {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  padding: 20px 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 550;
  line-height: 1.5;
  letter-spacing: -.012em;
  transition: color var(--dur-fast);
}
.acc-btn:hover { color: var(--accent-text); }
.acc-btn .ico {
  margin-left: auto;
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  position: relative;
  transition: transform var(--dur) var(--ease-out), border-color var(--dur-fast), background-color var(--dur-fast);
  margin-top: 2px;
}
.acc-btn .ico::before, .acc-btn .ico::after {
  content: ""; position: absolute;
  background: currentColor; border-radius: 2px;
}
.acc-btn .ico::before { width: 9px; height: 1.4px; }
.acc-btn .ico::after  { width: 1.4px; height: 9px; transition: transform var(--dur) var(--ease-out); }
.acc-item.open .acc-btn .ico { background: var(--accent-wash); border-color: var(--accent-line); }
.acc-item.open .acc-btn .ico::after { transform: rotate(90deg); }
.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur) var(--ease-out);
}
.acc-item.open .acc-panel { grid-template-rows: 1fr; }
.acc-panel > div { overflow: hidden; }
.acc-panel p {
  font-size: 15px;
  color: var(--muted);
  padding: 0 44px 20px 0;
  margin: 0;
}

/* --------------------------------------------------------------------------
   12. VIDEO — YouTube lite facade
   -------------------------------------------------------------------------- */
.vid {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--bg-sunk);
  cursor: pointer;
  display: block;
  width: 100%;
  isolation: isolate;
}
.vid img.thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out), filter var(--dur);
}
.vid:hover img.thumb { transform: scale(1.035); }
.vid iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vid::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,7,14,.72) 0%, rgba(3,7,14,.12) 46%, transparent 72%);
  pointer-events: none;
  transition: opacity var(--dur);
}
.vid.playing::after, .vid.playing .vid-ui { opacity: 0; pointer-events: none; }

.vid-ui {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  z-index: 2;
  transition: opacity var(--dur);
}
.vid-play {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: #0B1220;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px -6px rgba(0,0,0,.5);
  transition: transform var(--dur) var(--ease-out), background-color var(--dur);
}
.vid:hover .vid-play { transform: scale(1.08); background: #fff; }
.vid-play svg { width: 15px; height: 15px; margin-left: 2px; }
.vid-meta { min-width: 0; }
.vid-meta .vt {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 620;
  font-size: 15.5px;
  letter-spacing: -.018em;
  line-height: 1.25;
  display: block;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.vid-meta .vs {
  color: rgba(255,255,255,.78);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}
/* Placeholder state when no video ID is configured yet */
.vid.pending { cursor: default; border-style: dashed; }
.vid.pending::after { background: linear-gradient(to top, rgba(3,7,14,.35), transparent 60%); }
.vid-holder {
  position: absolute; inset: 0;
  display: grid; place-content: center; justify-items: center; gap: 12px;
  text-align: center; padding: 24px;
  background:
    radial-gradient(420px 240px at 50% 40%, var(--accent-wash), transparent 70%),
    var(--bg-sunk);
}
/* Wireframe lattice so an unfilled slot reads as deliberate, not broken. */
.vid-holder::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000, transparent 76%);
          mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000, transparent 76%);
  pointer-events: none;
}
.vid-holder > * { position: relative; }
.vid-holder .ring {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px dashed var(--line-3);
  display: grid; place-items: center;
  color: var(--faint);
}
.vid-holder .ring svg { width: 15px; height: 15px; margin-left: 2px; }
.vid-holder .vh-t {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted);
}
.vid.pending .vid-ui { display: none; }

/* --------------------------------------------------------------------------
   13. SOLUTION BLOCKS
   -------------------------------------------------------------------------- */
.sol {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--bg-elev);
  overflow: hidden;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.sol:hover { border-color: var(--line-2); box-shadow: var(--shadow); }
.sol-head {
  padding: clamp(24px, 2.6vw, 36px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}
.sol-head .sol-copy .kicker { color: var(--accent-text); }
.sol-head h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -.032em;
  margin-bottom: .4em;
}
.sol-body {
  border-top: 1px solid var(--line);
  padding: clamp(20px, 2.4vw, 30px) clamp(24px, 2.6vw, 36px) clamp(24px, 2.6vw, 36px);
  background: var(--bg-sunk);
}

/* --------------------------------------------------------------------------
   14. MARQUEE (frameworks & standards)
   -------------------------------------------------------------------------- */
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  padding-block: 4px;
}
.marquee-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: slide 46s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee.rev .marquee-track { animation-direction: reverse; }
@keyframes slide { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   15. CTA BANDS
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(34px, 4.4vw, 66px) clamp(26px, 4vw, 60px);
  background: var(--bg-invert);
  color: var(--on-invert);
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(620px 340px at 88% 8%, rgba(109, 40, 217, .34), transparent 62%),
    radial-gradient(520px 300px at 4% 96%, rgba(14, 116, 144, .30), transparent 60%);
}
[data-theme="dark"] .cta-band::before {
  background:
    radial-gradient(620px 340px at 88% 8%, rgba(109, 40, 217, .16), transparent 62%),
    radial-gradient(520px 300px at 4% 96%, rgba(14, 116, 144, .18), transparent 60%);
}
.cta-band h2 { color: var(--on-invert); }
.cta-band p  { color: var(--on-invert-dim); }
.cta-band .eyebrow { color: var(--on-invert-dim); }
.cta-band .btn-ghost { --btn-fg: var(--on-invert); --btn-bd: rgba(255,255,255,.26); }
[data-theme="dark"] .cta-band .btn-ghost { --btn-bd: rgba(11,18,32,.22); }
.cta-band .btn-ghost:hover { --btn-bg: rgba(255,255,255,.09); }
[data-theme="dark"] .cta-band .btn-ghost:hover { --btn-bg: rgba(11,18,32,.07); }
.cta-wire { position: absolute; inset: 0; z-index: -1; opacity: .5; pointer-events: none; }

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.foot {
  border-top: 1px solid var(--line);
  background: var(--bg-sunk);
  padding: clamp(48px, 5vw, 76px) 0 28px;
  position: relative;
  z-index: var(--z-body);
}
.foot-top {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 48px);
  padding-bottom: clamp(30px, 3.4vw, 48px);
  border-bottom: 1px solid var(--line);
}
.foot .brand svg { height: 32px; }
.foot-blurb { font-size: 14.5px; color: var(--muted); max-width: 38ch; margin-top: 16px; }
.foot .foot-h {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 500;
  margin-bottom: 14px;
}
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot ul li { margin-bottom: 9px; }
.foot ul a { color: var(--body); font-size: 14.5px; text-decoration: none; transition: color var(--dur-fast); }
.foot ul a:hover { color: var(--ink); text-decoration: none; }
.foot-bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  font-size: 13px;
  color: var(--faint);
}
.foot-bottom .sep { margin-left: auto; }
.foot-bottom a { color: var(--muted); }

/* --------------------------------------------------------------------------
   17. STICKY MOBILE CTA
   -------------------------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 70;
  display: none;
  gap: 8px;
  padding: 9px;
  border-radius: var(--r-pill);
  background: var(--glass);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
          backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg);
  transform: translateY(140%);
  transition: transform .5s var(--ease-out);
}
.sticky-cta.show { transform: none; }
.sticky-cta .btn { flex: 1; padding-inline: 12px; }

/* --------------------------------------------------------------------------
   18. SCROLL ANIMATION UTILITIES
   -------------------------------------------------------------------------- */
[data-rise] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .78s var(--ease-out), transform .78s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
[data-rise].in { opacity: 1; transform: none; }

[data-fade] {
  opacity: 0;
  transition: opacity .9s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
[data-fade].in { opacity: 1; }

[data-scale] {
  opacity: 0;
  transform: scale(.965);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
[data-scale].in { opacity: 1; transform: none; }

/* Line that draws itself in */
.rule-grow {
  height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease-out);
}
.rule-grow.in { transform: scaleX(1); }

/* Hero word reveal */
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span {
  display: block;
  transform: translateY(105%);
  transition: transform 1s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.reveal-line.in > span { transform: none; }

/* --------------------------------------------------------------------------
   19. SCROLL PROGRESS
   -------------------------------------------------------------------------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 100;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   20. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .g5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 940px) {
  .nav-links { display: none; }
  .burger { display: grid; }
  .split, .split.narrow-right { grid-template-columns: minmax(0, 1fr); }
  .g3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sol-head { grid-template-columns: minmax(0, 1fr); }
  .nav-actions .btn-nav-cta { display: none; }
  .sticky-cta { display: flex; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 80px; }
  .g2, .g3, .g4, .g5 { grid-template-columns: minmax(0, 1fr); }
  .foot-top { grid-template-columns: 1fr; gap: 30px; }
  .stat { flex-basis: calc(50% - 6px); }
  .vpanel { padding: 24px; }
  .pull { padding-left: 18px; }
  .acc-panel p { padding-right: 12px; }
  table.t th, table.t td { padding: 13px 15px; }
}

/* --------------------------------------------------------------------------
   21. MOTION & PRINT PREFERENCES
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-rise], [data-fade], [data-scale] { opacity: 1 !important; transform: none !important; }
  .reveal-line > span { transform: none !important; }
  .rule-grow { transform: scaleX(1) !important; }
  .marquee-track { animation: none; }
  .draw path, .draw line, .draw circle, .draw rect, .draw polyline { stroke-dashoffset: 0 !important; }
}

@media print {
  .nav, .foot, .wirefield, .sticky-cta, .voice-launch, .voice-panel, .progress { display: none !important; }
  body { background: #fff; color: #000; }
  section { padding-block: 18px; page-break-inside: avoid; }
  a { color: #000; text-decoration: underline; }
}
