/* ==========================================================================
   fluxxy landing v2 — ONE SOURCE, ONE FRAME, NO PROJECTION
   Dark fintech, ops-terminal. fluxxy blue family only: #475BFF fills,
   #5D8BFF links, #84B5FF quiet brand text on dark (never #475BFF as text).
   Glass: borderless + inset white hairline + two soft black drops.
   No inline styles anywhere: numbers go in as text, geometry through CSSOM.
   ========================================================================== */

/* ---------- fonts (self-hosted, existing routes) ---------- */
@font-face {
  font-family: 'Aeonik Pro';
  src: url('/fonts/AeonikPro-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Aeonik Pro';
  src: url('/fonts/AeonikPro-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('/fonts/IBMPlexMono-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('/fonts/IBMPlexMono-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  --pad: #000000;
  --deck: #131417;
  --deck-2: #1B1C1F;
  --field: #1D1E21;
  --glass: rgba(24, 25, 28, 0.72);
  --grid: rgba(237, 238, 240, 0.045);

  --ink: #F9F9F9;
  --ink-2: #C9CACD;
  --muted: #94969B;
  --faint: #6B6D72;

  --hairline: rgba(237, 238, 240, 0.08);
  --hairline-2: rgba(237, 238, 240, 0.16);

  /* fluxxy blue family — one hue, three jobs */
  --signal: #475BFF;            /* fills only */
  --signal-link: #5D8BFF;       /* links / quiet accents */
  --signal-ink: #84B5FF;        /* quiet brand text on dark */
  --signal-dim: rgba(71, 91, 255, 0.14);
  --halo: rgba(71, 91, 255, 0.22);

  --go: #35D08E;
  --hold: #F5A83C;
  --abort: #F2655C;

  --cta-face: #475BFF;
  --cta-ink: #FFFFFF;
  --sim: #94969B;

  /* glass: borderless, inset white seam, two soft black drops */
  --seam: rgba(249, 249, 249, 0.07);
  --seam-strong: rgba(249, 249, 249, 0.11);
  --drop-lg: 0 24px 48px rgba(0, 0, 0, 0.35);
  --drop-sm: 0 8px 16px rgba(0, 0, 0, 0.25);

  --font-display: 'Aeonik Pro', 'Inter', system-ui, sans-serif;
  --font-text: 'Inter', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t1: 160ms;
  --t2: 240ms;
  --t3: 420ms;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--pad);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--signal); color: #FFFFFF; }

a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul, ol, figure, pre { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
svg { display: block; }

:focus-visible { outline: 1px solid var(--signal-ink); outline-offset: 2px; }

.fx-wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ---------- utilities ---------- */
/* mono never carries a sentence: micro-labels, indices, codes, numerals only */
.fx-mono {
  font-family: var(--font-mono);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* units ride every mono numeral at 0.7em.
   .fx-u hugs its numeral (% and /mo); .fx-u-q is a word riding a numeral
   (LOAD, TARGET, ELAPSED) and takes its own gap so it never reads as one token. */
.fx-u {
  font-family: var(--font-mono);
  font-size: 0.7em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.fx-u-q { margin-left: 5px; }

/* micro-label */
.fx-mlabel {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* SIM / POLICY tag — gray means staged */
.fx-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sim);
  border: 1px solid var(--hairline-2);
  border-radius: 4px;
  padding: 2px 7px;
  line-height: 1.5;
  white-space: nowrap;
}
.fx-tag-end { margin-left: auto; }

/* LIVE chip — blue means real */
.fx-livechip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
  color: var(--signal-ink);
  background: var(--signal-dim);
  border-radius: 4px;
  padding: 2px 7px;
  white-space: nowrap;
}

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

.fx-skip {
  position: absolute; left: 16px; top: -48px; z-index: 120;
  background: var(--cta-face); color: var(--cta-ink);
  padding: 8px 14px; border-radius: 6px; font-size: 14px;
  transition: top var(--t2) var(--ease);
}
.fx-skip:focus { top: 8px; }

/* ---------- glass surface ---------- */
.fx-glass {
  background: var(--glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px var(--seam), var(--drop-lg), var(--drop-sm);
  transition: box-shadow var(--t2) var(--ease);
}
.fx-glass:hover {
  box-shadow: inset 0 0 0 1px var(--seam-strong), 0 30px 60px rgba(0, 0, 0, 0.42), 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* ---------- status colours: dot, rule, or mono word only ---------- */
.fx-dot { width: 6px; height: 6px; border-radius: 50%; flex: none; }
.fx-dot-go { background: var(--go); }
.fx-rule { width: 2px; height: 100%; min-height: 18px; flex: none; border-radius: 1px; }
.fx-rule-signal { background: var(--signal); }
.fx-lamp { box-shadow: 0 0 24px var(--halo); } /* the single lit element */

/* ---------- buttons — flat, no translate, no scale ---------- */
.fx-cta, .fx-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  font-family: var(--font-text); font-weight: 500; font-size: 15px;
  padding: 12px 24px;
  transition: background var(--t1) var(--ease), border-color var(--t1) var(--ease), color var(--t1) var(--ease);
}
.fx-cta { background: var(--cta-face); color: var(--cta-ink); }
.fx-cta:hover { background: #5D74FF; }
.fx-ghost { box-shadow: inset 0 0 0 1px var(--hairline-2); color: var(--ink-2); }
.fx-ghost:hover { box-shadow: inset 0 0 0 1px rgba(237, 238, 240, 0.3); color: var(--ink); }
.fx-cta-sm, .fx-ghost-sm { padding: 9px 18px; font-size: 14px; }

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

/* ==========================================================================
   00 ANNOUNCEMENT
   ========================================================================== */
.fx-announce {
  background: #05060A;
  border-bottom: 1px solid var(--hairline);
}
.fx-announce-in {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 40px; padding: 8px 20px;
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  text-align: center; letter-spacing: 0.005em;
  transition: color var(--t1) var(--ease);
}
.fx-announce-in:hover { color: #FFFFFF; }
.fx-announce-in span {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.fx-announce-arrow { width: 15px; height: 15px; flex: none; color: var(--signal-ink); }

/* ==========================================================================
   01 HEADER — extracted from the hero, dark glass
   ========================================================================== */
.fx-hd {
  position: sticky; top: 0; z-index: 60;
  background: var(--glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: inset 0 -1px 0 var(--hairline);
}
.fx-hd-in { height: 60px; display: flex; align-items: center; gap: 30px; }
.fx-hd-brand {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; letter-spacing: -0.02em; color: var(--ink);
}
.fx-hd-links { display: flex; align-items: center; gap: 24px; }
.fx-hd-link {
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color var(--t1) var(--ease);
}
.fx-hd-link:hover { color: var(--ink); }
.fx-hd-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.fx-hd-ghost {
  padding: 9px 17px; border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--hairline-2); color: var(--ink-2);
  font-size: 13.5px; font-weight: 500;
  transition: box-shadow var(--t1) var(--ease), color var(--t1) var(--ease);
}
.fx-hd-ghost:hover { box-shadow: inset 0 0 0 1px rgba(237, 238, 240, 0.3); color: var(--ink); }
.fx-hd-lite {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px;
  background: var(--cta-face); color: var(--cta-ink);
  font-size: 13.5px; font-weight: 600;
  transition: background var(--t1) var(--ease);
}
.fx-hd-lite svg { width: 14px; height: 14px; flex: none; }
.fx-hd-lite:hover { background: #5D74FF; }

/* ==========================================================================
   01b STATUS RAIL — the one live line under the header
   JS paints the leaves; data-state drives the dot and the words.
   ========================================================================== */
.fx-strip {
  display: flex; align-items: center; gap: 18px;
  height: 34px; padding: 0 32px;
  background: var(--pad);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
  overflow: hidden; white-space: nowrap;
}
.fx-strip .fx-dot-go { animation: fx-pulse 2s ease-in-out infinite; }
.fx-strip-live {
  color: var(--ink-2); letter-spacing: 0.14em; text-transform: uppercase;
}
.fx-strip-rule { width: 1px; height: 12px; background: var(--hairline); flex: none; }
.fx-strip-stat { color: var(--faint); }
.fx-strip-stat span { color: var(--ink-2); }
.fx-strip-clock { margin-left: auto; color: var(--muted); }
.fx-strip-src { color: var(--faint); letter-spacing: 0.12em; }
.fx-strip[data-state="live"] { border-bottom-color: var(--signal-dim); }
.fx-strip[data-state="down"] .fx-dot-go { background: var(--abort); animation: none; }
.fx-strip[data-state="down"] .fx-strip-live { color: var(--abort); }
.fx-strip[data-state="down"] .fx-strip-src { opacity: 0.4; }
.fx-strip[data-state="down"] .fx-strip-clock { visibility: hidden; }
.fx-strip[data-state="pending"] .fx-dot-go { background: var(--faint); animation: none; }
.fx-strip[data-state="pending"] .fx-strip-live { color: var(--muted); }

/* ==========================================================================
   02 HERO — near-black, one halo bloom, 22px dot grid, one job
   ========================================================================== */
.fx-sky {
  position: relative; overflow: clip;
  border-bottom: 1px solid var(--hairline);
  background: var(--pad);
}
.fx-sky-beams {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(64% 52% at 14% -6%, var(--halo), transparent 72%),
    radial-gradient(1px 1px at 12% 34%, rgba(237,238,240,0.05), transparent 100%),
    radial-gradient(1px 1px at 28% 68%, rgba(237,238,240,0.04), transparent 100%),
    radial-gradient(1px 1px at 44% 18%, rgba(237,238,240,0.05), transparent 100%),
    radial-gradient(1px 1px at 58% 54%, rgba(237,238,240,0.04), transparent 100%),
    radial-gradient(1px 1px at 72% 28%, rgba(237,238,240,0.05), transparent 100%),
    radial-gradient(1px 1px at 86% 72%, rgba(237,238,240,0.04), transparent 100%),
    radial-gradient(1px 1px at 94% 12%, rgba(237,238,240,0.05), transparent 100%);
}
.fx-sky-beams::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(237, 238, 240, 0.055) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: 0 0;
  -webkit-mask-image: radial-gradient(110% 90% at 22% 0%, #000 14%, transparent 72%);
  mask-image: radial-gradient(110% 90% at 22% 0%, #000 14%, transparent 72%);
}
.fx-sky-in {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: flex-start;
  max-width: 720px;
  padding-top: clamp(56px, 8vh, 104px); padding-bottom: clamp(64px, 9vh, 120px);
}
.fx-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--signal-ink);
  margin-bottom: 24px;
}
.fx-sky-h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(44px, 6.2vw, 78px);
  line-height: 1.02; letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
  margin-bottom: 24px;
}
.fx-sky-lede {
  color: var(--ink-2); font-size: clamp(17px, 1.4vw, 20px); line-height: 1.6;
  max-width: 58ch;
  margin-bottom: 30px;
}
.fx-sky .fx-actions { margin-bottom: 18px; }
.fx-sky-trust {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 26px;
}
.fx-sky-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 30px;
}
.fx-sky-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-2);
  box-shadow: inset 0 0 0 1px var(--hairline-2);
  transition: box-shadow var(--t1) var(--ease), color var(--t1) var(--ease);
}
.fx-sky-chip:hover {
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(132, 181, 255, 0.4);
}

/* segmented control */
.fx-seg {
  display: inline-flex; gap: 4px; padding: 4px;
  background: var(--deck-2);
  box-shadow: inset 0 0 0 1px var(--hairline);
  border-radius: 999px;
}
.fx-seg-btn {
  padding: 8px 20px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600; color: var(--muted);
  transition: background var(--t1) var(--ease), color var(--t1) var(--ease);
}
.fx-seg-btn:hover { color: var(--ink); }
.fx-seg-btn.is-on { background: var(--ink); color: #101114; }

/* the search field — full column width */
.fx-find {
  position: relative; z-index: 30;
  margin-top: 14px; width: 100%; max-width: 720px;
  display: flex; align-items: center; gap: 12px;
  height: 62px; padding: 0 10px 0 20px;
  background: var(--deck);
  box-shadow: inset 0 0 0 1px var(--hairline-2), var(--drop-sm);
  border-radius: 999px;
  transition: box-shadow var(--t2) var(--ease);
}
.fx-find:focus-within {
  box-shadow: inset 0 0 0 1px rgba(132, 181, 255, 0.5), 0 16px 44px rgba(0, 0, 0, 0.45);
}
.fx-find-glass { width: 20px; height: 20px; flex: none; color: var(--muted); }
.fx-find-input {
  flex: 1; min-width: 0; height: 100%;
  background: none; border: 0; outline: 0;
  font: 500 16px/1 var(--font-text); color: var(--ink);
}
.fx-find-input::placeholder { color: var(--faint); }
.fx-find-go {
  flex: none; height: 44px; padding: 0 24px; border-radius: 999px;
  background: var(--cta-face); color: #FFFFFF;
  font-size: 14px; font-weight: 600;
  transition: background var(--t1) var(--ease);
}
.fx-find-go:hover { background: #5D74FF; }

/* results dropdown */
.fx-find-drop {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0;
  padding: 8px;
  background: rgba(19, 20, 23, 0.98);
  box-shadow: inset 0 0 0 1px var(--hairline-2), 0 28px 64px rgba(0, 0, 0, 0.55);
  border-radius: 20px;
  text-align: left;
}
.fx-find-item {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 11px 14px; border-radius: 12px;
  transition: background var(--t1) var(--ease);
}
.fx-find-item:hover, .fx-find-item.is-active { background: rgba(237, 238, 240, 0.06); }
.fx-find-kind {
  flex: none; min-width: 62px; text-align: center;
  padding: 3px 9px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  color: var(--signal-ink); background: var(--signal-dim);
}
.fx-find-txt { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.fx-find-label { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.fx-find-sub {
  font-size: 13px; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fx-find-empty { padding: 14px 16px; font-size: 14px; color: var(--muted); }

/* ==========================================================================
   SECTION SCAFFOLD — sections are rounded slabs on the pad
   ========================================================================== */
.fx-sec {
  width: calc(100% - 40px); max-width: 1264px;
  margin: 20px auto; padding: 88px clamp(24px, 4.5vw, 76px);
  background: var(--deck);
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px var(--seam), var(--drop-sm);
}
.fx-sec-alt { background: #0C0D10; }
.fx-sechead { display: flex; align-items: baseline; gap: 18px; margin-bottom: 18px; }
.fx-sechead-left { align-items: baseline; }
.fx-sechead-center { justify-content: center; text-align: center; }
.fx-secidx { font-size: 11px; letter-spacing: 0.14em; color: var(--signal-ink); }
.fx-secref { margin-left: auto; font-size: 11px; letter-spacing: 0.14em; color: var(--faint); }
.fx-h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.06; letter-spacing: -0.02em;
}
.fx-seclede { color: var(--muted); font-size: 16.5px; max-width: 62ch; margin-bottom: 44px; }
.fx-seclede-center { margin-left: auto; margin-right: auto; text-align: center; }

.fx-panel {
  padding: 20px;
}

/* ==========================================================================
   03 LIVE BAND — the only live numerals on the page
   ========================================================================== */
.fx-railhead {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.fx-railhead-src { font-size: 10.5px; letter-spacing: 0.12em; color: var(--faint); text-transform: uppercase; }
.fx-liverail { padding: 14px; }
.fx-livetiles {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px;
}
.fx-livetile {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 10px;
  padding: 20px 22px;
  background: rgba(237, 238, 240, 0.02);
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px var(--hairline);
}
.fx-livetile-top { display: flex; align-items: center; gap: 8px; }
.fx-livedot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--go); flex: none;
  animation: fx-livepulse 2.2s var(--ease) infinite;
}
@keyframes fx-livepulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(53, 208, 142, 0.16); }
  50% { box-shadow: 0 0 0 6px rgba(53, 208, 142, 0.05); }
}
.fx-livetile-val {
  font-family: var(--font-display); font-weight: 500;
  font-size: 40px; line-height: 1; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums; color: var(--ink);
}
.fx-livetile-lab { font-size: 13px; color: var(--muted); }
/* the uptime clock runs eight characters: it sizes down a step so the tile
   never decides between shrinking and clipping */
.fx-livetile-clock .fx-livetile-val { font-size: 30px; letter-spacing: 0; }
.fx-livetile-hot {
  background: linear-gradient(180deg, rgba(71, 91, 255, 0.14), rgba(71, 91, 255, 0.04));
  box-shadow: inset 0 0 0 1px rgba(71, 91, 255, 0.34);
}
.fx-livetile-hot::after {
  content: ""; position: absolute; inset: -40% -20% auto auto;
  width: 220px; height: 220px; pointer-events: none;
  background: radial-gradient(closest-side, var(--halo), transparent 70%);
}
.fx-livetiles-foot {
  margin-top: 16px;
  font-size: 10.5px; letter-spacing: 0.12em; color: var(--faint);
  text-align: center; text-transform: uppercase;
}

/* ==========================================================================
   04 THE CONSOLE — one enormous frame
   ========================================================================== */
.fx-boardcol { max-width: 1200px; }
.fx-board {
  border-radius: 24px;
  padding: 18px 20px 20px;
  display: flex; flex-direction: column; gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.fx-board-head { display: flex; align-items: center; gap: 12px; }
.fx-chromedots { display: inline-flex; gap: 5px; flex: none; }
.fx-chromedots i {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(237, 238, 240, 0.16);
}
.fx-board-title {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.fx-count {
  margin-left: auto;
  font-size: 13px; font-weight: 500; color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--hairline-2); border-radius: 999px;
  padding: 4px 12px;
  font-variant-numeric: tabular-nums;
}

.fx-board-body {
  display: grid; grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr);
  gap: 18px; align-items: start;
  padding-top: 18px;
  box-shadow: inset 0 1px 0 var(--hairline);
  padding-top: 18px;
}
.fx-vectors { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.fx-vcard {
  display: flex; flex-direction: column; gap: 9px;
  padding: 13px 14px 12px;
  background: rgba(237, 238, 240, 0.018);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px var(--hairline);
  transition: box-shadow var(--t1) var(--ease), background var(--t1) var(--ease);
}
.fx-vcard:hover {
  background: rgba(71, 91, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(71, 91, 255, 0.45);
}
/* the FP chip may drop to its own right-aligned row on a narrow card — it
   never breaks mid-token and never spills past the card edge */
.fx-vcard-top { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.fx-vdot {
  width: 6px; height: 6px; border-radius: 50%; flex: none;
  background: var(--faint);
}
.fx-vcard-hot .fx-vdot { background: var(--go); box-shadow: 0 0 0 3px rgba(53, 208, 142, 0.14); }
.fx-vname { font-size: 12px; color: var(--ink); letter-spacing: 0.02em; }
.fx-vcard:not(.fx-vcard-hot) .fx-vname { color: var(--muted); }
.fx-vfp {
  margin-left: auto; font-size: 9px; letter-spacing: 0.08em;
  color: var(--faint);
  box-shadow: inset 0 0 0 1px var(--hairline);
  border-radius: 999px; padding: 2px 7px;
  white-space: nowrap;
}
.fx-vspark { width: 100%; height: 26px; display: block; }
.fx-vspark polyline {
  fill: none; stroke: var(--signal); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round; opacity: 0.92;
}
.fx-vcard:not(.fx-vcard-hot) .fx-vspark polyline { stroke: var(--faint); opacity: 0.5; }
.fx-vsub { font-size: 11.5px; color: var(--muted); }
.fx-vcard:not(.fx-vcard-hot) .fx-vsub { color: var(--faint); }
.fx-vmore {
  grid-column: 1 / -1; margin: 4px 0 0;
  font-size: 10.5px; letter-spacing: 0.1em; color: var(--faint);
  text-transform: uppercase;
}
.fx-vmore a { color: var(--signal-link); }
.fx-vmore a:hover { color: var(--ink); }

.fx-board-side { display: flex; flex-direction: column; gap: 14px; min-width: 0; }

.fx-gauge { display: flex; flex-direction: column; gap: 8px; }
.fx-gauge-top { display: flex; align-items: baseline; justify-content: space-between; }
.fx-gauge-val { font-size: 13px; color: var(--ink); font-variant-numeric: tabular-nums; }
.fx-gauge-track {
  height: 8px; border-radius: 999px;
  background: var(--field);
  overflow: hidden;
}
.fx-gauge-fill {
  height: 100%;
  width: var(--fill, 0%);
  background: var(--signal);
  border-radius: 999px;
  transition: width var(--t3) var(--ease);
}
.fx-gauge-src { font-size: 9.5px; letter-spacing: 0.12em; color: var(--faint); text-transform: uppercase; }

.fx-regions { display: flex; align-items: center; gap: 18px; }
.fx-region { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.fx-rdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--field);
  box-shadow: inset 0 0 0 1px var(--hairline-2);
}

.fx-spark {
  border-radius: 10px; background: rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 0 0 1px var(--hairline);
  padding: 6px;
}
.fx-spark svg { width: 100%; height: 56px; }
.fx-spark-line {
  fill: none; stroke: var(--signal); stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
  stroke-linejoin: round; stroke-linecap: round;
}

.fx-log {
  display: flex; flex-direction: column; gap: 3px;
  min-height: 84px;
  box-shadow: inset 2px 0 0 var(--hairline-2);
  padding-left: 12px;
  font-size: 11.5px; line-height: 1.45;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  overflow: hidden;
}
.fx-logline { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fx-logline:first-child { color: var(--ink-2); }
.fx-logline.is-new { animation: fx-rise var(--t2) var(--ease) both; }

.fx-spec {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 6px 10px;
  box-shadow: inset 0 1px 0 var(--hairline);
  padding-top: 14px;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
}
.fx-spec-k { color: var(--faint); }
.fx-spec-v { color: var(--ink-2); overflow-wrap: anywhere; }

/* ==========================================================================
   05 ONE INVOCATION
   ========================================================================== */
.fx-inv-grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 28px; align-items: start;
}
.fx-proof {
  padding: 18px 20px 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.fx-proof-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.fx-term {
  font-size: 12.5px; line-height: 1.7;
  color: var(--ink-2);
  min-height: 132px;
  white-space: pre-wrap; word-break: break-word;
  overflow-x: auto;
}
.fx-caret {
  display: inline-block;
  width: 7px; height: 1em;
  background: var(--signal-ink);
  margin-left: 2px;
  vertical-align: -0.15em;
  animation: fx-blink 1.1s steps(1, end) infinite;
}
.fx-runrow {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  box-shadow: inset 0 1px 0 var(--hairline);
  padding-top: 14px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.fx-runrow-idle { opacity: 0.45; }
.fx-runrow[hidden] { display: none; }
.fx-runref { color: var(--ink); }
.fx-runmeth { color: var(--muted); }
.fx-runstate { margin-left: auto; color: var(--go); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.fx-runel { color: var(--muted); }

.fx-ev-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 28px;
}
.fx-ev-chart {
  border-radius: 10px; background: rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 0 1px var(--hairline);
  padding: 14px;
}
.fx-ev-chart svg { width: 100%; height: 150px; }
.fx-ev-gridlines line { stroke: var(--hairline); stroke-width: 1; }
.fx-ev-line {
  fill: none; stroke: var(--signal); stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
  stroke-linejoin: round; stroke-linecap: round;
}
.fx-ev-meta {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 10px;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint);
}
.fx-p99 { color: var(--sim); }
.fx-ev-side { display: flex; flex-direction: column; gap: 22px; min-width: 0; }
.fx-dist { display: flex; height: 8px; border-radius: 999px; overflow: hidden; background: var(--field); margin-top: 10px; }
.fx-seg-go { flex-grow: 91; background: rgba(53, 208, 142, 0.42); }
.fx-seg-hold { flex-grow: 7; background: rgba(245, 168, 60, 0.34); }
.fx-seg-abort { flex-grow: 2; background: rgba(242, 101, 92, 0.30); }
.fx-dist-key { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 10px; font-size: 11px; color: var(--muted); }
/* the square carries the gap, not the row: "2xx 91%" stays one token */
.fx-dist-key span { display: inline-flex; align-items: center; gap: 0; }
.fx-dist-key .fx-sq { margin-right: 7px; }
.fx-sq { width: 7px; height: 7px; border-radius: 2px; flex: none; }
.fx-sq-go { background: var(--go); }
.fx-sq-hold { background: var(--hold); }
.fx-sq-abort { background: var(--abort); }
.fx-evlog {
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px var(--hairline);
  padding: 12px 14px;
  font-size: 11.5px; line-height: 1.75;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  /* the log is proof: every character has to stay readable, so it wraps
     instead of running off the panel edge */
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

/* ==========================================================================
   06 METHOD ARSENAL
   ========================================================================== */
.fx-manifest-strip { margin-bottom: 36px; }
.fx-manifest-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.fx-mchip {
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--muted);
  padding: 5px 11px; border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--hairline);
  white-space: nowrap;
}
.fx-fps { box-shadow: inset 0 1px 0 var(--hairline); }
.fx-fp { box-shadow: inset 0 -1px 0 var(--hairline); }
.fx-fp-head {
  width: 100%;
  display: grid;
  grid-template-columns: 72px 210px minmax(0, 1fr) 24px;
  align-items: center; gap: 20px;
  padding: 24px 0;
  text-align: left;
}
.fx-fpcs { font-size: 12px; color: var(--signal-ink); letter-spacing: 0.1em; }
.fx-fpname {
  font-family: var(--font-display); font-weight: 500;
  font-size: 20px; letter-spacing: -0.01em; color: var(--ink);
}
.fx-fpone { font-size: 14.5px; color: var(--muted); }
.fx-fparrow { position: relative; width: 12px; height: 12px; justify-self: end; }
.fx-fparrow::before, .fx-fparrow::after {
  content: ""; position: absolute; background: var(--faint);
  transition: transform var(--t1) var(--ease), background var(--t1) var(--ease);
}
.fx-fparrow::before { left: 0; right: 0; top: 5.5px; height: 1px; }
.fx-fparrow::after { top: 0; bottom: 0; left: 5.5px; width: 1px; }
.fx-fp-head:hover .fx-fparrow::before, .fx-fp-head:hover .fx-fparrow::after { background: var(--ink-2); }
.fx-fp.open .fx-fparrow::after { transform: rotate(90deg); }
.fx-fp-body { padding: 0 0 26px; max-width: 68ch; }
.fx-fp-body > p { font-size: 15px; color: var(--ink-2); line-height: 1.6; }
.fx-fp-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; }
.fx-fp-chip {
  font-size: 11.5px; letter-spacing: 0.06em;
  color: var(--ink-2);
  padding: 5px 12px; border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--hairline-2);
}
.fx-fpspec {
  margin-top: 16px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  box-shadow: inset 2px 0 0 var(--signal);
  padding-left: 12px;
  overflow-wrap: anywhere;
}
.fx-fp-body[hidden], .fx-faq-body[hidden], .fx-code[hidden], .fx-pair[hidden] { display: none; }

/* FIND jump flash on a family */
@keyframes fx-jump {
  0%, 55% { box-shadow: 0 0 0 3px rgba(71, 91, 255, 0.55); }
  100% { box-shadow: 0 0 0 3px rgba(71, 91, 255, 0); }
}
.fx-fp.fx-fp-flash { animation: fx-jump 1.8s var(--ease) 1; }

/* ==========================================================================
   07 ALLOCATIONS
   ========================================================================== */
.fx-table-wrap { padding: 0; overflow-x: auto; border-radius: 20px; }
.fx-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.fx-table th, .fx-table td { padding: 22px 26px; text-align: left; box-shadow: inset 0 -1px 0 var(--hairline); }
.fx-table thead { background: rgba(237, 238, 240, 0.02); }
.fx-table thead th {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--faint); font-weight: 400;
  white-space: nowrap;
}
.fx-table tbody th {
  font-size: 14px; font-weight: 500; color: var(--ink); white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.fx-table td {
  font-size: 13.5px; color: var(--ink-2); white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.fx-table tbody tr:last-child th, .fx-table tbody tr:last-child td { box-shadow: none; }
.fx-table tbody tr { transition: background var(--t1) var(--ease); }
.fx-table tbody tr:hover { background: rgba(237, 238, 240, 0.02); }
.fx-rec { box-shadow: inset 2px 0 0 var(--signal); }
.fx-rec td, .fx-rec th { background: rgba(71, 91, 255, 0.045); }
.fx-th-price, .fx-price { text-align: right; }
.fx-table td.fx-price { color: var(--ink); font-size: 15px; }
.fx-table td:last-child, .fx-table thead th:last-child { text-align: right; }
.fx-act { white-space: nowrap; }
.fx-foot-note {
  margin-top: 18px;
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--faint);
  overflow-wrap: anywhere;
}

.fx-plans-grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 20px; align-items: start;
  margin-top: 20px;
}
.fx-panel-note { margin-top: 16px; font-size: 13px; color: var(--faint); }
.fx-heat {
  display: grid;
  grid-template-columns: repeat(48, minmax(0, 1fr));
  gap: 2px;
}
.fx-heat i {
  height: 22px; border-radius: 2px;
  background: var(--deck-2);
  transition: background var(--t2) var(--ease);
}
/* availability ladder: 11 steps, deck → signal */
.fx-heat i[data-level="0"], .fx-scale-cells i[data-level="0"] { background: #1B1D21; }
.fx-heat i[data-level="1"], .fx-scale-cells i[data-level="1"] { background: #0E131B; }
.fx-heat i[data-level="2"], .fx-scale-cells i[data-level="2"] { background: #101722; }
.fx-heat i[data-level="3"], .fx-scale-cells i[data-level="3"] { background: #121A26; }
.fx-heat i[data-level="4"], .fx-scale-cells i[data-level="4"] { background: #151E2B; }
.fx-heat i[data-level="5"], .fx-scale-cells i[data-level="5"] { background: #182330; }
.fx-heat i[data-level="6"], .fx-scale-cells i[data-level="6"] { background: #1B2837; }
.fx-heat i[data-level="7"], .fx-scale-cells i[data-level="7"] { background: #1F2E3F; }
.fx-heat i[data-level="8"], .fx-scale-cells i[data-level="8"] { background: #233447; }
.fx-heat i[data-level="9"], .fx-scale-cells i[data-level="9"] { background: var(--signal-dim); }
.fx-heat i[data-level="10"], .fx-scale-cells i[data-level="10"] { background: rgba(71, 91, 255, 0.52); }

.fx-heat-scale {
  display: flex; align-items: center; gap: 12px;
  margin-top: 12px;
  font-size: 10px; letter-spacing: 0.14em; color: var(--faint);
}
.fx-scale-cells { display: inline-flex; gap: 2px; }
.fx-scale-cells i { width: 18px; height: 8px; border-radius: 2px; }

.fx-lanes { margin-top: 20px; box-shadow: inset 0 1px 0 var(--hairline); padding-top: 12px; }
.fx-lanes-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 6px;
}
.fx-lane-cap { font-size: 10px; letter-spacing: 0.14em; color: var(--faint); text-transform: uppercase; }
.fx-lane {
  display: grid; grid-template-columns: 40px 1fr auto;
  align-items: center; gap: 16px;
  padding: 10px 0;
  box-shadow: inset 0 -1px 0 var(--hairline);
}
.fx-lane:last-child { box-shadow: none; }
.fx-lane-name { font-size: 12px; color: var(--ink-2); }
.fx-lane .fx-dot { justify-self: start; }
.fx-lane-word { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }

.fx-policy { display: flex; flex-direction: column; }
.fx-policy li {
  padding: 14px 0;
  font-size: 14.5px; line-height: 1.6; color: var(--ink-2);
  box-shadow: inset 0 -1px 0 var(--hairline);
}
.fx-policy li:last-child { box-shadow: none; }
.fx-policy a { color: var(--signal-link); }
.fx-policy a:hover { color: var(--ink); }

/* ==========================================================================
   08 WHY FLUXXY — categorical, never measured
   ========================================================================== */
.fx-vs { overflow: hidden; }
.fx-vs-row {
  display: grid; grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  box-shadow: inset 0 -1px 0 var(--hairline);
}
.fx-vs-row:last-child { box-shadow: none; }
.fx-vs-attr {
  padding: 20px 22px;
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--faint);
}
.fx-vs-cell { padding: 20px 22px; font-size: 14.5px; line-height: 1.55; }
.fx-vs-head .fx-vs-cell { font-size: 10.5px; letter-spacing: 0.14em; }
.fx-vs-us {
  color: var(--ink);
  box-shadow: inset 2px 0 0 var(--signal);
  background: rgba(71, 91, 255, 0.045);
}
.fx-vs-them { color: var(--muted); }
.fx-vs-foot {
  margin-top: 16px;
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--faint);
  overflow-wrap: anywhere;
}

/* ==========================================================================
   09 API
   ========================================================================== */
.fx-apifacts {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--hairline);
}
.fx-apifact {
  padding: 16px 20px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  box-shadow: inset -1px 0 0 var(--hairline);
}
.fx-apifact:last-child { box-shadow: none; }
.fx-codewin { border-radius: 24px; overflow: hidden; }
.fx-codetabs { display: flex; align-items: center; box-shadow: inset 0 -1px 0 var(--hairline); }
.fx-codetab {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em;
  color: var(--muted);
  padding: 12px 18px;
  box-shadow: inset -1px 0 0 var(--hairline);
  transition: color var(--t1) var(--ease), background var(--t1) var(--ease);
}
.fx-codetab:hover { color: var(--ink); }
.fx-codetab.is-on { color: var(--ink); background: rgba(237, 238, 240, 0.04); }
.fx-copy-end {
  margin-left: auto; margin-top: -12px; margin-bottom: -12px;
  padding: 12px 18px;
  font-size: 10px; letter-spacing: 0.14em; color: var(--muted);
  box-shadow: none;
  transition: color var(--t1) var(--ease);
}
.fx-copy-end:hover { color: var(--ink); }
.fx-code {
  padding: 20px 22px;
  font-size: 12.5px; line-height: 1.7;
  font-variant-numeric: tabular-nums;
  color: var(--ink-2);
  overflow-x: auto;
}
.fx-note { margin-top: 18px; font-size: 14.5px; color: var(--muted); }
/* inline link hit area is padded out to a thumb-sized 40px and pulled back
   with equal negative margin, so the copy never reflows */
.fx-note a {
  color: var(--signal-link);
  padding: 11px 6px; margin: -11px -6px;
}
.fx-note a:hover { color: var(--ink); }

/* ==========================================================================
   10 VEXA
   ========================================================================== */
.fx-vexa-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}
.fx-vexa-copy .fx-seclede { margin-bottom: 30px; }
.fx-vexa-panel { padding: 20px; }
.fx-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.fx-pchip {
  font-size: 13px; color: var(--muted);
  border-radius: 999px;
  padding: 7px 14px;
  box-shadow: inset 0 0 0 1px var(--hairline);
  transition: color var(--t1) var(--ease), box-shadow var(--t1) var(--ease), background var(--t1) var(--ease);
  text-align: left;
}
.fx-pchip:hover { color: var(--ink); box-shadow: inset 0 0 0 1px var(--hairline-2); }
.fx-pchip.is-on { color: var(--signal-ink); box-shadow: inset 0 0 0 1px rgba(71, 91, 255, 0.5); background: var(--signal-dim); }
.fx-qa { box-shadow: inset 0 1px 0 var(--hairline); padding-top: 18px; min-height: 148px; }
.fx-pair { display: flex; flex-direction: column; gap: 12px; }
.fx-q { font-size: 15px; color: var(--ink-2); }
.fx-a { font-size: 13px; line-height: 1.7; color: var(--muted); }
.fx-apre { color: var(--signal-ink); margin-right: 8px; }

/* ==========================================================================
   11 OPS + FAQ
   ========================================================================== */
.fx-ops-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}
.fx-ops-list { display: flex; flex-direction: column; gap: 20px; }
.fx-ops-list li { display: flex; gap: 16px; align-items: flex-start; font-size: 15.5px; color: var(--ink-2); line-height: 1.6; }
.fx-ops-list .fx-rule { margin-top: 6px; height: 14px; }
.fx-legal {
  margin-top: 28px;
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--faint);
  overflow-wrap: anywhere;
}

.fx-faqs { box-shadow: inset 0 1px 0 var(--hairline); }
.fx-faq { box-shadow: inset 0 -1px 0 var(--hairline); }
.fx-faq-head {
  width: 100%;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 24px;
  align-items: center; gap: 18px;
  padding: 20px 0;
  text-align: left;
}
.fx-faqidx { font-size: 11px; letter-spacing: 0.12em; color: var(--faint); }
.fx-faq-q { font-size: 16px; font-weight: 500; color: var(--ink); }
.fx-faq-head:hover .fx-faq-q { color: #FFFFFF; }
.fx-faq-body { padding: 0 0 24px; max-width: 62ch; }
.fx-faq-body p { font-size: 15px; line-height: 1.65; color: var(--muted); }
.fx-faq-body a { color: var(--signal-link); }
.fx-faq-body a:hover { color: var(--ink); }
.fx-faq.open .fx-fparrow::after { transform: rotate(90deg); }
.fx-faq.open .fx-faq-body { animation: fx-rise var(--t2) var(--ease) both; }
.fx-faq.open .fx-fparrow::before, .fx-faq.open .fx-fparrow::after { background: var(--signal-ink); }

/* ==========================================================================
   12 CTA BAND + FOOTER
   ========================================================================== */
.fx-rear { padding: 40px 0 44px; }
.fx-band {
  padding: clamp(44px, 6vw, 76px) clamp(24px, 5vw, 72px);
  text-align: center;
}
.fx-band-h {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(34px, 4.6vw, 58px);
  letter-spacing: -0.022em; color: var(--ink);
}
.fx-band-sub {
  max-width: 48ch; margin: 14px auto 30px;
  font-size: 16.5px; color: var(--ink-2);
}
.fx-band-acts { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.fx-pill {
  padding: 13px 28px; border-radius: 999px;
  background: var(--cta-face); color: #FFFFFF;
  font-size: 15px; font-weight: 600;
  transition: background var(--t1) var(--ease);
}
.fx-pill:hover { background: #5D74FF; }
.fx-pill-ghost {
  padding: 13px 28px; border-radius: 999px;
  background: rgba(237, 238, 240, 0.08); color: var(--ink);
  font-size: 15px; font-weight: 500;
  transition: background var(--t1) var(--ease);
}
.fx-pill-ghost:hover { background: rgba(237, 238, 240, 0.14); }
.fx-band-status {
  margin-top: 28px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.12em; color: var(--muted);
  text-transform: uppercase;
}

.fx-foot-cols {
  display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr; gap: 36px;
  padding: 56px 0 44px;
}
.fx-foot-word {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; letter-spacing: -0.02em; color: var(--ink);
}
.fx-foot-tag { margin-top: 10px; max-width: 30ch; font-size: 14px; color: var(--muted); }
.fx-foot-col { display: flex; flex-direction: column; gap: 0; }
.fx-foot-h { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
/* the padding carries the row pitch: every footer link lands on a 40px hit height */
.fx-foot-link {
  font-size: 14px; color: var(--muted);
  padding: 9px 0;
  transition: color var(--t1) var(--ease); text-align: left;
}
.fx-foot-link:hover { color: var(--ink); }
.fx-foot-base {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 22px 0 4px;
  box-shadow: inset 0 1px 0 var(--hairline);
  font-size: 13px; color: var(--faint);
}
.fx-foot-base .fx-mono { font-size: 11px; letter-spacing: 0.12em; }

/* ==========================================================================
   MOTION — reveal once, then stillness
   ========================================================================== */
@keyframes fx-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes fx-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes fx-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }

/* reveal only when JS is live, so content is never stranded invisible */
.fx-js .fx-rv {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--t3) var(--ease), transform var(--t3) var(--ease);
}
.fx-js .fx-rv[data-d="1"] { transition-delay: 40ms; }
.fx-js .fx-rv[data-d="2"] { transition-delay: 80ms; }
.fx-js .fx-rv[data-d="3"] { transition-delay: 120ms; }
.fx-js .fx-rv[data-d="4"] { transition-delay: 160ms; }
.fx-js .fx-rv[data-d="5"] { transition-delay: 200ms; }
.fx-js .fx-rv.in { opacity: 1; transform: none; }

/* evidence trace draws once on reveal */
.fx-js .fx-ev-line { stroke-dasharray: 900; stroke-dashoffset: 900; transition: stroke-dashoffset 1200ms var(--ease); }
.fx-js .fx-ev.is-in .fx-ev-line { stroke-dashoffset: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .fx-js .fx-rv { opacity: 1; transform: none; }
  .fx-js .fx-ev-line { stroke-dasharray: none; stroke-dashoffset: 0; }
  .fx-caret, .fx-dot-go, .fx-livedot { animation: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1120px) {
  .fx-vexa-wrap, .fx-ops-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .fx-inv-grid { grid-template-columns: minmax(0, 1fr); }
  .fx-livetiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fx-fp-head { grid-template-columns: 60px minmax(0, 1fr) 24px; }
  .fx-fpone { display: none; }
}

@media (max-width: 900px) {
  .fx-board-body { grid-template-columns: minmax(0, 1fr); }
  .fx-vectors { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fx-plans-grid { grid-template-columns: minmax(0, 1fr); }
  .fx-ev-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .fx-foot-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1060px) {
  .fx-hd-links { display: none; }
}

@media (max-width: 640px) {
  .fx-wrap { padding: 0 20px; }
  .fx-hd-in { height: 54px; }
  .fx-hd-brand { font-size: 20px; }
  .fx-hd-ghost, .fx-hd-lite {
    white-space: nowrap;
    padding: 8px 14px; font-size: 13px;
  }
  .fx-hd-lite svg { display: none; }
  .fx-sec, .fx-sec-alt {
    width: calc(100% - 20px); margin: 12px auto;
    padding: 52px 20px; border-radius: 24px;
  }
  .fx-sky-in { padding-top: 48px; padding-bottom: 56px; }
  .fx-sky-lede { font-size: 16px; }
  .fx-find { height: 56px; padding-left: 16px; gap: 8px; }
  .fx-find-go { height: 40px; padding: 0 18px; font-size: 13.5px; }
  .fx-strip {
    height: auto; min-height: 34px;
    padding: 8px 20px;
    flex-wrap: wrap; row-gap: 4px; column-gap: 14px;
    white-space: normal;
  }
  .fx-strip-clock { margin-left: 0; }
  .fx-band { border-radius: 24px; }
  .fx-apifacts { grid-template-columns: minmax(0, 1fr); }
  .fx-apifact { box-shadow: inset -1px 0 0 var(--hairline), inset 0 -1px 0 var(--hairline); }
  .fx-apifact:last-child { box-shadow: none; }
  .fx-foot-cols { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .fx-secref { display: none; }
  .fx-vs-row { grid-template-columns: minmax(0, 1fr); }
  .fx-vs-attr { padding-bottom: 0; }
  .fx-vs-cell { padding-top: 8px; }
  .fx-vs-head { display: none; }
  .fx-vs-us { box-shadow: inset 2px 0 0 var(--signal); }
  .fx-manifest-chips { gap: 6px; }
  .fx-mchip { font-size: 11px; }
  .fx-fp-chips { gap: 6px; }
  /* the announce line carries the whole chaining story — let it wrap instead
     of clipping the ceiling figure */
  .fx-announce-in { align-items: center; }
  .fx-announce-in span { white-space: normal; text-overflow: clip; }
  /* short board title: the console name goes, the function stays. The chrome
     dots are decoration and they cost 28px the title needs, so they go too. */
  .fx-board-head { gap: 8px; }
  .fx-chromedots { display: none; }
  .fx-board-title-pre { display: none; }
  .fx-board-title { font-size: 10px; letter-spacing: 0.1em; }
  /* spec strip stacks one label/value per row so the words stop breaking */
  .fx-spec { grid-template-columns: auto minmax(0, 1fr); row-gap: 7px; }
}

@media (max-width: 620px) {
  /* allocations table flips into stacked cards, labels carried by attr() */
  .fx-table { min-width: 0; }
  .fx-table thead { display: none; }
  .fx-table, .fx-table tbody, .fx-table tr, .fx-table th, .fx-table td { display: block; width: 100%; }
  .fx-table tr {
    padding: 6px 0 14px;
    box-shadow: inset 0 -1px 0 var(--hairline);
  }
  .fx-table th, .fx-table td {
    display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
    padding: 9px 18px;
    white-space: normal;
    box-shadow: none;
    text-align: right;
  }
  .fx-table td::after, .fx-table th::after {
    content: attr(data-l);
    font-family: var(--font-mono);
    font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--faint);
  }
  .fx-table tbody th { font-size: 16px; }
  .fx-table td.fx-price { font-size: 17px; }
  .fx-table td::after, .fx-table th::after { order: -1; text-align: left; }
  .fx-table td.fx-price::before { content: none; }
  .fx-table .fx-act { padding-top: 6px; }
  .fx-table .fx-act .fx-ghost { width: 100%; }
  .fx-table .fx-act::after { content: none; }
  .fx-rec { box-shadow: inset 2px 0 0 var(--signal), inset 0 0 0 1px rgba(71, 91, 255, 0.28); border-radius: 14px; }
}

@media (max-width: 480px) {
  .fx-strip-src { display: none; }
  .fx-livetile { padding: 16px 18px; }
  .fx-livetile-val { font-size: 30px; }
  .fx-livetile-clock .fx-livetile-val { font-size: 24px; }
  .fx-livetiles-foot { font-size: 10px; }
  .fx-fp-head { grid-template-columns: 52px minmax(0, 1fr) 20px; gap: 12px; }
  .fx-fpname { font-size: 17px; }
  .fx-fpspec { font-size: 10px; }
  .fx-faq-head { grid-template-columns: 62px minmax(0, 1fr) 20px; gap: 12px; }
  .fx-vcard { padding: 11px 12px 10px; gap: 7px; }
  .fx-vspark { display: none; }
  .fx-vsub { font-size: 11px; }
}

@media (max-width: 420px) {
  .fx-fp-chips { grid-template-columns: minmax(0, 1fr); display: grid; }
  .fx-fp-chip { text-align: center; }
}

/* ==========================================================================
   SIGN-IN POPUP — the console door opens over the page.
   Dark glass card, hairline seams, one white action.
   ========================================================================== */
.si-scrim {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s var(--ease);
}
.si-scrim[data-open="true"] { opacity: 1; pointer-events: auto; }

.si-modal {
  position: fixed; z-index: 91;
  left: 50%; top: 50%;
  width: min(420px, calc(100vw - 32px));
  transform: translate(-50%, -46%) scale(0.97);
  background: var(--deck);
  border-radius: 28px;
  padding: 34px 30px 26px;
  box-shadow: inset 0 0 0 1px var(--hairline-2), 0 40px 90px rgba(0, 0, 0, 0.6);
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
}
.si-modal[data-open="true"] {
  opacity: 1; pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.si-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(237, 238, 240, 0.08);
  border: none; border-radius: 9999px;
  color: var(--muted); cursor: pointer;
  transition: background var(--t1) var(--ease), color var(--t1) var(--ease);
}
.si-close:hover { background: var(--deck-2); color: var(--ink); }
.si-close svg { width: 16px; height: 16px; }

.si-title {
  margin: 0 0 6px;
  font: 700 26px/1.15 var(--font-display);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.si-sub { margin: 0 0 22px; font-size: 14px; line-height: 1.5; color: var(--muted); }

.si-form { display: flex; flex-direction: column; gap: 12px; }
.si-field {
  display: flex; flex-direction: column; gap: 7px;
}
.si-field span {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--faint);
}
.si-field input {
  height: 48px; padding: 0 16px;
  background: var(--field);
  border: 1px solid var(--hairline);
  border-radius: 9999px;
  color: var(--ink); font: 500 14px/1 'Inter', sans-serif;
  outline: none;
  transition: border-color var(--t1) var(--ease), box-shadow var(--t1) var(--ease);
}
.si-field input::placeholder { color: var(--faint); }
.si-field input:focus {
  border-color: rgba(71, 91, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(71, 91, 255, 0.16);
}

.si-cta {
  height: 48px; margin-top: 6px;
  background: #FFFFFF; color: #252628;
  border: none; border-radius: 9999px;
  font: 700 15px/1 var(--font-display);
  cursor: pointer;
  transition: background var(--t1) var(--ease);
}
.si-cta:hover { background: #EDEEF0; }

.si-token { margin-top: 14px; }
.si-token summary {
  font-size: 12.5px; color: var(--signal-ink); cursor: pointer;
  list-style: none; width: fit-content;
  transition: color var(--t1) var(--ease);
}
.si-token summary::-webkit-details-marker { display: none; }
.si-token summary:hover { color: var(--ink); }
.si-token[open] summary { margin-bottom: 12px; }

.si-ghost {
  width: 100%; height: 46px;
  background: rgba(237, 238, 240, 0.08);
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 9999px;
  font: 600 13.5px/1 'Inter', sans-serif;
  cursor: pointer;
  transition: background var(--t1) var(--ease);
}
.si-ghost:hover { background: var(--deck-2); }

.si-switch {
  margin: 20px 0 0; padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font-size: 13px; color: var(--muted); text-align: center;
}
.si-switch a { color: var(--ink); font-weight: 600; text-decoration: none; }
.si-switch a:hover { color: var(--signal-ink); }

@media (max-width: 480px) {
  .si-modal { border-radius: 22px; padding: 28px 20px 20px; }
}

/* ============ 15 HERO VISTA + DEVICE STAGE (graft) ============ */
.fx-vista {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.fx-vista-veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 10%, rgba(5,8,20,0) 40%, rgba(5,8,20,.55) 100%),
    linear-gradient(180deg, rgba(5,8,20,.25) 0%, rgba(5,8,20,0) 30%, rgba(5,8,20,.72) 100%);
}
.fx-sky-in { max-width: 1200px; }
.fx-sky-in > .fx-split { width: 100%; }
.fx-sky-h1, .fx-sky-lede { text-shadow: 0 2px 40px rgba(2,4,12,.55); }
.fx-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: center; gap: 48px;
}
/* product-render staging: the pad rises out of the fog bank, chrome accents
   floating — our answer to a studio mockup shot, built entirely in vectors */
.fx-stage { position: relative; display: flex; justify-content: center; }
.fx-scene {
  position: relative;
  width: 340px; height: 620px;
  display: flex; align-items: flex-start; justify-content: center;
}
.fx-underglow {
  position: absolute; left: 50%; top: 430px;
  width: 420px; height: 300px; transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(88,106,255,.4), rgba(88,106,255,0) 72%);
  filter: blur(34px);
}
.fx-fogback, .fx-fogfront {
  position: absolute; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
/* fog layers anchor to the phone's lower third by top-offset, so scene-height
   tweaks on small screens can never strand them mid-device */
.fx-fogback {
  top: 404px; width: 520px; height: 240px;
  background:
    radial-gradient(38% 62% at 22% 62%, rgba(186,200,232,.20), transparent 70%),
    radial-gradient(46% 70% at 74% 52%, rgba(168,184,220,.16), transparent 72%),
    radial-gradient(60% 55% at 48% 78%, rgba(200,212,240,.22), transparent 74%);
  filter: blur(14px);
}
.fx-fogfront {
  top: 464px; width: 560px; height: 230px; z-index: 3;
  background:
    radial-gradient(34% 58% at 30% 40%, rgba(214,226,248,.34), transparent 68%),
    radial-gradient(40% 52% at 68% 62%, rgba(196,210,238,.28), transparent 70%),
    radial-gradient(70% 46% at 46% 88%, rgba(224,232,250,.38), transparent 76%);
  filter: blur(10px);
}
.fx-phone {
  position: relative; z-index: 2; width: 300px; border-radius: 46px; padding: 12px; margin-top: 26px;
  background: linear-gradient(160deg, rgba(42,48,70,.95), rgba(10,13,24,.96));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    inset 0 0 0 1px rgba(2,4,12,.6),
    inset -3px 0 6px rgba(255,255,255,.05),
    0 40px 90px rgba(2,4,12,.6), 0 12px 30px rgba(2,4,12,.5);
  transform: rotateY(-14deg) rotateX(3deg) rotate(-2.5deg);
  transform-style: preserve-3d;
}
.fx-sparkle { position: absolute; z-index: 4; filter: drop-shadow(0 4px 14px rgba(160,180,230,.45)); }
.fx-sparkle-a {
  width: 84px; height: 84px; top: -14px; right: -6px;
  transform: rotate(12deg);
}
.fx-sparkle-b {
  width: 36px; height: 36px; top: 108px; left: -22px;
  transform: rotate(-8deg); opacity: .8;
}
.fx-orb {
  position: absolute; z-index: 4;
  width: 64px; height: 64px; left: 14px; top: 514px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fdfdff 0 5%, #b9c3d8 22%, #67718a 50%, #232a3a 74%, #0c101c 100%);
  box-shadow: inset -8px -12px 22px rgba(0,0,0,.55), 0 18px 34px rgba(2,4,12,.55);
}
.fx-orb::after {
  content: ""; position: absolute; left: 20%; top: 14%;
  width: 16%; height: 11%; border-radius: 50%;
  background: rgba(255,255,255,.9); filter: blur(1px);
}
.fx-screen {
  border-radius: 36px; overflow: hidden;
  background: linear-gradient(180deg, #0a0e1c, #070a14 60%);
  border: 1px solid rgba(255,255,255,.07);
  font-family: inherit;
}
.fxp-notch { display: flex; justify-content: space-between; align-items: center; padding: 10px 18px 6px; font-size: 10px; color: rgba(233,238,255,.5); font-weight: 600; }
.fxp-pill { width: 74px; height: 20px; border-radius: 12px; background: #04060c; border: 1px solid rgba(255,255,255,.05); }
.fxp-head { display: flex; align-items: center; gap: 9px; padding: 10px 16px 4px; }
.fxp-glyph { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(140deg, #475bff, #7c5bff); display: grid; place-items: center; font-size: 12px; font-weight: 800; box-shadow: 0 6px 16px rgba(71,91,255,.45); }
.fxp-brand { font-size: 15px; font-weight: 700; letter-spacing: -.01em; }
.fxp-sub { margin-left: auto; font-size: 9px; letter-spacing: .12em; color: rgba(132,181,255,.9); border: 1px solid rgba(132,181,255,.3); padding: 4px 8px; border-radius: 999px; }
.fxp-hero { margin: 12px 14px 0; padding: 14px 16px; border-radius: 18px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.fxp-lab { font-size: 9px; font-weight: 700; letter-spacing: .12em; color: rgba(233,238,255,.55); display: flex; align-items: center; gap: 6px; text-transform: uppercase; }
.fxp-val { font-size: 34px; font-weight: 700; letter-spacing: -.02em; font-variant-numeric: tabular-nums; margin-top: 2px; }
.fxp-sub2 { font-size: 9px; color: rgba(233,238,255,.4); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; margin-top: 2px; }
.fxp-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 10px 14px 0; }
.fxp-stat { padding: 11px 13px; border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.fxp-stat .fxp-n { font-size: 19px; font-weight: 700; font-variant-numeric: tabular-nums; }
.fxp-stat .fxp-l { font-size: 8.5px; letter-spacing: .1em; color: rgba(233,238,255,.5); text-transform: uppercase; margin-top: 2px; }
.fxp-spark { margin: 10px 14px 0; padding: 12px 14px 8px; border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.fxp-spark svg { display: block; width: 100%; height: 44px; }
.fxp-vecs { display: flex; flex-wrap: wrap; gap: 6px; padding: 12px 14px 4px; }
.fxp-vec { font-size: 9px; font-weight: 600; letter-spacing: .06em; padding: 5px 9px; border-radius: 999px; color: #84b5ff; background: rgba(71,91,255,.13); border: 1px solid rgba(132,181,255,.24); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.fxp-dim { color: rgba(233,238,255,.4); }
.fxp-vec.fxp-dim { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
.fxp-lab .fxp-dim { margin-left: auto; color: rgba(233,238,255,.35); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.fxp-cta { margin: 10px 14px 14px; display: flex; gap: 8px; }
.fxp-btn { flex: 1; text-align: center; font-size: 12px; font-weight: 700; padding: 12px; border-radius: 13px; background: #475bff; box-shadow: 0 8px 22px rgba(71,91,255,.4); }
.fxp-btn-g { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); box-shadow: none; }
.fxp-live { width: 7px; height: 7px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 3px rgba(52,211,153,.18); }
.fx-float { animation: fxbob 7s ease-in-out infinite alternate; }
@keyframes fxbob { from { transform: translateY(-5px) rotateY(-14deg) rotateX(3deg) rotate(-2.5deg); } to { transform: translateY(7px) rotateY(-14deg) rotateX(3deg) rotate(-2.5deg); } }
@media (prefers-reduced-motion: reduce) { .fx-float { animation: none; } }
@media (max-width: 900px) {
  .fx-split { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .fx-split > * { min-width: 0; }
  .fx-find-input { min-width: 0; }
  .fx-stage { margin-top: 18px; }
  .fx-scene { transform: scale(.92); transform-origin: top center; }
}
@media (max-width: 640px) {
  .fx-scene { transform: scale(.86); }
}
