@font-face {
  font-family: "Geist";
  src: url("/fonts/Geist-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("/fonts/GeistMono-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #080a09;
  --ink-deep: #050606;
  --panel: #0d100e;
  --panel-high: #111510;
  --paper: #edf0e9;
  --paper-dim: #c2c8be;
  --muted: #7f887d;
  --muted-low: #596158;
  --line: rgba(232, 239, 227, 0.12);
  --line-strong: rgba(232, 239, 227, 0.22);
  --signal: #b9f675;
  --signal-soft: rgba(185, 246, 117, 0.12);
  --signal-dim: #7fa952;
  --amber: #efc46c;
  --red: #f07c66;
  --cyan: #7cd7cc;
  --font-sans: "Geist", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  --shell: min(1280px, calc(100vw - 80px));
  --radius: 2px;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 30px);
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    var(--ink);
  background-size: 64px 64px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
svg { display: block; }

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

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

.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;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--signal);
  transform: translateY(-300%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.ambient {
  position: fixed;
  z-index: -1;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  opacity: .055;
}
.ambient-a { top: -25vw; right: -15vw; background: var(--signal); }
.ambient-b { top: 58vh; left: -34vw; background: #6fc0ac; }

.section-shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding-block: 150px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(8, 10, 9, .72);
  backdrop-filter: blur(18px) saturate(120%);
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(8, 10, 9, .92); }

.nav-shell {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 580;
  letter-spacing: -.035em;
}
.brand-mark { width: 31px; height: 20px; }
.brand-mark path, .brand-mark circle {
  fill: none;
  stroke: var(--signal);
  stroke-width: 1.35;
  vector-effect: non-scaling-stroke;
}
.brand-mark circle { fill: var(--signal); stroke: none; }

.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
  position: relative;
  padding-block: 7px;
  color: var(--paper-dim);
  font-size: 13px;
  letter-spacing: .01em;
  transition: color .2s ease;
}
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-nav a:hover { color: var(--paper); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { justify-self: end; }
.nav-toggle { display: none; }

.button {
  min-height: 51px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--paper);
  background: transparent;
  font-size: 13px;
  font-weight: 570;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #0a0c09; border-color: var(--signal); background: var(--signal); }
.button-primary:hover { background: #c6ff84; border-color: #c6ff84; }
.button-primary:disabled { color: #32372f; background: #778467; border-color: #778467; cursor: wait; transform: none; }
.button-quiet { background: rgba(255,255,255,.02); }
.button-quiet:hover { border-color: var(--paper-dim); }
.button-compact { min-height: 39px; padding-inline: 16px; gap: 18px; font-size: 12px; }
.button-full { width: 100%; }

.eyebrow, .overline, .kpi-code, .module-head, .micro-disclosure, .data-state {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .105em;
}
.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--signal);
  font-size: 11px;
  font-weight: 600;
}
.eyebrow-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px var(--signal-soft);
  animation: pulse 2.5s ease-out infinite;
}

.hero {
  min-height: calc(100svh - var(--header-h));
  padding-block: 11vh 46px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
  grid-template-rows: 1fr auto;
  column-gap: clamp(70px, 8vw, 140px);
  align-items: center;
}
.hero-copy { padding-bottom: 4vh; }
.hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--paper);
  font-size: clamp(64px, 7.2vw, 118px);
  font-weight: 485;
  line-height: .86;
  letter-spacing: -.078em;
}
.hero h1 span { color: rgba(237, 240, 233, .72); }
.hero-description {
  max-width: 600px;
  margin: 40px 0 0;
  color: var(--paper-dim);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.45;
  letter-spacing: -.025em;
}
.hero-actions { margin-top: 35px; display: flex; align-items: center; gap: 10px; }
.micro-disclosure { margin: 17px 0 0; color: var(--muted); font-size: 9px; }

.vault-console {
  position: relative;
  min-height: 478px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(145deg, rgba(185, 246, 117, .04), transparent 35%),
    rgba(13, 16, 14, .9);
  box-shadow: 0 34px 90px rgba(0,0,0,.34);
}
.vault-console::before, .vault-console::after {
  position: absolute;
  width: 15px;
  height: 15px;
  content: "";
  pointer-events: none;
}
.vault-console::before { top: -1px; left: -1px; border-top: 1px solid var(--signal); border-left: 1px solid var(--signal); }
.vault-console::after { right: -1px; bottom: -1px; border-right: 1px solid var(--signal); border-bottom: 1px solid var(--signal); }
.console-head, .console-foot {
  position: relative;
  z-index: 2;
  padding: 21px 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.overline { margin: 0; color: var(--muted); font-size: 9px; }
.console-title { margin: 6px 0 0; font-size: 16px; font-weight: 580; letter-spacing: -.02em; }
.console-title span { margin-left: 7px; color: var(--muted); font-family: var(--font-mono); font-size: 10px; }
.status-chip {
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(185, 246, 117, .24);
  color: var(--signal);
  background: var(--signal-soft);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.status-chip i, .signal-dot, .data-state i {
  width: 5px;
  height: 5px;
  display: inline-block;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}
.console-core {
  min-height: 339px;
  padding: 39px 27px 30px;
  display: grid;
  grid-template-columns: 1fr 135px;
  gap: 22px;
  align-items: center;
}
.console-apy { align-self: center; }
.metric-label { display: block; color: var(--muted); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.console-apy strong {
  max-width: 230px;
  margin-top: 15px;
  display: block;
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: clamp(29px, 3vw, 48px);
  font-weight: 430;
  line-height: 1.05;
  letter-spacing: -.055em;
}
.console-apy strong.is-value { color: var(--signal); font-size: clamp(52px, 5vw, 75px); }
.console-apy small { margin-top: 10px; display: block; color: var(--muted-low); font-family: var(--font-mono); font-size: 9px; }
.info-dot {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  font-family: var(--font-mono);
  font-size: 9px;
  cursor: help;
}
.info-dot::after {
  position: absolute;
  z-index: 20;
  width: 250px;
  padding: 11px 12px;
  display: none;
  content: attr(data-tooltip);
  color: var(--paper-dim);
  background: #161a16;
  border: 1px solid var(--line-strong);
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.45;
  text-align: left;
  transform: translate(-48%, 10px);
}
.info-dot:hover::after, .info-dot:focus::after { display: block; }
.delta-orbit { position: relative; width: 135px; height: 135px; display: grid; place-items: center; text-align: center; }
.delta-orbit svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.delta-orbit circle, .delta-orbit path { fill: none; stroke: var(--line-strong); stroke-width: 1; }
.delta-orbit .orbit-value { stroke: var(--signal); stroke-width: 2; stroke-dasharray: 302; stroke-dashoffset: 302; transition: stroke-dashoffset .8s ease; }
.delta-orbit > span { margin-top: -13px; color: var(--muted); font-family: var(--font-mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.delta-orbit > strong { position: absolute; top: 67px; font-family: var(--font-mono); font-size: 17px; font-weight: 500; }
.console-foot { min-height: 58px; border-top: 1px solid var(--line); border-bottom: 0; color: var(--muted); font-family: var(--font-mono); font-size: 9px; }
.console-foot span { display: inline-flex; align-items: center; gap: 8px; }
.console-foot b { color: var(--paper-dim); font-weight: 500; }
.kpi-rail { border-block: 1px solid var(--line); background: rgba(5,6,6,.55); }
.rail-heading { min-height: 62px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.rail-heading h2 { margin: 0; font-size: 13px; font-weight: 530; }
.data-state { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 8px; }
.data-state.live { color: var(--signal); }
.data-state.stale { color: var(--amber); }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.kpi { min-height: 174px; padding: 25px 26px; border-right: 1px solid var(--line); }
.kpi:first-child { padding-left: 0; }
.kpi:last-child { border-right: 0; }
.kpi-code { color: var(--muted-low); font-size: 8px; }
.kpi strong { min-height: 50px; margin-top: 21px; display: flex; align-items: flex-end; color: var(--paper-dim); font-family: var(--font-mono); font-size: 16px; font-weight: 440; line-height: 1.15; }
.kpi strong.is-value { color: var(--paper); font-size: clamp(28px, 2.6vw, 42px); letter-spacing: -.05em; }
.kpi p { margin: 9px 0 0; color: var(--muted); font-size: 11px; }
.data-method { margin: 0; padding: 13px 0; border-top: 1px solid var(--line); color: var(--muted-low); font-size: 9px; }

.section-heading { max-width: 790px; margin-bottom: 75px; }
.section-heading h2 {
  margin: 0;
  font-size: clamp(48px, 5.6vw, 86px);
  font-weight: 470;
  line-height: .98;
  letter-spacing: -.065em;
}
.section-heading > p:last-child { max-width: 590px; margin: 28px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.section-heading-row { max-width: none; display: grid; grid-template-columns: 1.15fr .65fr; gap: 100px; align-items: end; }
.section-heading-row > p:last-child { margin: 0 0 4px; }

.topology { position: relative; display: grid; grid-template-columns: 1fr 116px 1fr; gap: 30px; }
.topology-axis {
  position: absolute;
  top: -30px;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  color: var(--muted-low);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .1em;
}
.topology-axis span:nth-child(2) { justify-self: center; }
.topology-axis span:last-child { justify-self: end; }
.venue { min-height: 420px; border: 1px solid var(--line-strong); background: rgba(13,16,14,.76); }
.venue-head { min-height: 104px; padding: 22px; display: grid; grid-template-columns: 38px 1fr 44px; gap: 16px; align-items: center; border-bottom: 1px solid var(--line); }
.venue-number { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line-strong); color: var(--signal); font-family: var(--font-mono); font-size: 11px; }
.venue-head p { margin: 0 0 4px; color: var(--muted); font-family: var(--font-mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.venue-head h3 { margin: 0; font-size: 20px; font-weight: 520; letter-spacing: -.025em; }
.venue-head svg path { fill: none; stroke: var(--paper-dim); stroke-width: 1; }
.venue-flow { min-height: 220px; padding: 45px 34px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; }
.venue-flow > div { padding: 20px; border-left: 1px solid var(--signal); background: linear-gradient(90deg, var(--signal-soft), transparent); }
.venue-flow span, .short-visual span { color: var(--muted); font-family: var(--font-mono); font-size: 8px; letter-spacing: .09em; }
.venue-flow strong, .short-visual strong { margin-top: 7px; display: block; font-family: var(--font-mono); font-size: 22px; font-weight: 500; }
.venue-flow small, .short-visual small { margin-top: 6px; display: block; color: var(--muted-low); font-size: 9px; }
.venue-flow > i { color: var(--muted); font-style: normal; }
.venue-yield { min-height: 94px; padding: 21px 24px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); }
.venue-yield span { color: var(--muted); font-size: 10px; }
.venue-yield strong { color: var(--signal); font-family: var(--font-mono); font-size: 11px; font-weight: 500; text-align: right; }
.topology-link { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; color: var(--muted-low); font-family: var(--font-mono); font-size: 7px; letter-spacing: .08em; text-align: center; }
.topology-link i { width: 100%; height: 1px; display: block; background: linear-gradient(90deg, transparent, var(--signal), transparent); }
.topology-link i:nth-of-type(2) { opacity: .5; }
.topology-link i:nth-of-type(3) { opacity: .2; }
.topology-link b { color: var(--signal-dim); font-weight: 500; }
.short-visual { min-height: 220px; padding: 33px 28px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 24px; }
.short-visual > div { padding-left: 20px; border-left: 1px solid var(--red); }
.short-visual svg { width: 100%; }
.short-visual .short-grid { fill: none; stroke: var(--line); stroke-width: .6; }
.short-visual .short-line { fill: none; stroke: var(--red); stroke-width: 1.4; }
.carry-equation {
  grid-column: 1 / -1;
  min-height: 82px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
}
.carry-equation b { color: var(--muted-low); font-weight: 400; }
.carry-equation strong { color: var(--signal); font-size: 12px; font-weight: 550; }

.performance { border-block: 1px solid var(--line); background: var(--ink-deep); }
.performance-frame { border: 1px solid var(--line-strong); background: rgba(13,16,14,.62); }
.performance-toolbar { min-height: 101px; padding: 19px 23px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.performance-toolbar strong { margin-top: 8px; display: block; font-family: var(--font-mono); font-size: 24px; font-weight: 470; }
.performance-toolbar strong.is-value { color: var(--signal); font-size: 34px; letter-spacing: -.04em; }
.range-switcher { display: flex; border: 1px solid var(--line); }
.range-switcher button { width: 52px; height: 35px; border: 0; border-right: 1px solid var(--line); color: var(--muted); background: transparent; font-family: var(--font-mono); font-size: 9px; cursor: pointer; }
.range-switcher button:last-child { border-right: 0; }
.range-switcher button[aria-pressed="true"] { color: var(--ink); background: var(--signal); }
.performance-grid { display: grid; grid-template-columns: minmax(0, 1fr) 260px; }
.chart-panel { position: relative; min-height: 440px; padding: 28px 24px 18px; border-right: 1px solid var(--line); overflow: hidden; }
.public-chart { width: 100%; height: 350px; }
.public-chart .uplot { font-family: var(--font-mono); }
.public-chart .u-legend { display: none; }
.chart-empty { position: absolute; inset: 28px 24px 60px; display: grid; place-items: center; color: var(--muted); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.chart-empty[hidden] { display: none; }
.chart-empty svg { position: absolute; width: 80%; opacity: .4; }
.chart-empty svg path { fill: none; stroke: var(--line-strong); stroke-width: 1; stroke-dasharray: 5 7; }
.chart-empty span { position: relative; padding: 9px 11px; background: var(--panel); }
.chart-legend { position: absolute; right: 24px; bottom: 18px; display: flex; gap: 22px; color: var(--muted); font-family: var(--font-mono); font-size: 8px; text-transform: uppercase; }
.chart-legend span { display: flex; align-items: center; gap: 7px; }
.chart-legend i { width: 16px; height: 2px; display: inline-block; }
.legend-carry { background: var(--signal); }
.legend-capital { background: var(--cyan); }
.carry-components { padding: 30px 24px; }
.carry-components > div { margin-top: 29px; display: grid; grid-template-columns: 1fr auto; gap: 7px; align-items: end; }
.carry-components > div span { color: var(--paper-dim); font-size: 11px; }
.carry-components > div strong { font-family: var(--font-mono); font-size: 11px; font-weight: 500; }
.carry-components > div > i { grid-column: 1 / -1; height: 2px; display: block; overflow: hidden; background: var(--line); }
.carry-components > div > i b { width: 0; height: 100%; display: block; background: var(--signal-dim); transition: width .5s ease; }
.carry-components > div.is-cost > i b { background: var(--red); }
.carry-components > p:last-child { margin: 35px 0 0; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted-low); font-size: 9px; line-height: 1.6; }

.transparency { display: grid; grid-template-columns: .55fr 1.45fr; gap: 90px; align-items: start; }
.transparency > .section-heading { position: sticky; top: calc(var(--header-h) + 60px); }
.transparency-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.module { border: 1px solid var(--line-strong); background: rgba(13,16,14,.72); }
.module-head { min-height: 54px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 8px; }
.module-head b { color: var(--paper-dim); font-weight: 500; }
.allocation-module, .neutrality-module { min-height: 390px; }
.allocation-orbit { position: relative; width: 205px; height: 205px; margin: 25px auto 10px; display: grid; place-items: center; }
.allocation-orbit svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.allocation-orbit circle { fill: none; stroke-width: 10; }
.allocation-track { stroke: rgba(124,215,204,.55); }
.allocation-monad { stroke: var(--signal); stroke-dasharray: 490; stroke-dashoffset: 490; transition: stroke-dashoffset .8s ease; }
.allocation-inner { stroke: var(--line); stroke-width: 1 !important; stroke-dasharray: 2 5; }
.allocation-orbit > div { text-align: center; }
.allocation-orbit strong { display: block; font-family: var(--font-mono); font-size: 27px; font-weight: 450; }
.allocation-orbit span { color: var(--muted); font-size: 9px; }
.allocation-list { padding: 0 20px 20px; }
.allocation-list div { padding: 8px 0; display: grid; grid-template-columns: 8px 1fr auto; gap: 9px; align-items: center; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; }
.allocation-list i { width: 5px; height: 5px; border-radius: 50%; }
.swatch-monad { background: var(--signal); }
.swatch-hl { background: var(--cyan); }
.allocation-list strong { color: var(--paper-dim); font-family: var(--font-mono); font-size: 10px; font-weight: 500; }
.neutrality-scale { padding: 80px 28px 28px; display: grid; grid-template-columns: repeat(3, 1fr); color: var(--muted-low); font-family: var(--font-mono); font-size: 7px; letter-spacing: .08em; text-align: center; }
.neutrality-scale > span:first-child { text-align: left; }
.neutrality-scale > span:nth-child(3) { text-align: right; }
.scale-track { position: relative; grid-column: 1 / -1; height: 25px; margin-top: 12px; border-block: 1px solid var(--line); }
.scale-track::before { position: absolute; top: 11px; right: 0; left: 0; height: 1px; content: ""; background: var(--line-strong); }
.scale-track i { position: absolute; top: 7px; width: 1px; height: 9px; background: var(--muted); }
.scale-track i:first-child { left: 0; }
.scale-track i:nth-child(2) { left: 50%; }
.scale-track i:nth-child(3) { right: 0; }
.scale-track b { position: absolute; top: 4px; left: 50%; width: 3px; height: 17px; display: block; background: var(--signal); box-shadow: 0 0 14px rgba(185,246,117,.8); transform: translateX(-50%); transition: left .6s ease; }
.neutrality-scale > strong { grid-column: 1 / -1; margin-top: 28px; color: var(--paper); font-size: 36px; font-weight: 450; }
.neutrality-scale > p { grid-column: 1 / -1; margin: 17px 0 0; color: var(--muted); font-family: var(--font-sans); font-size: 10px; line-height: 1.6; letter-spacing: 0; text-transform: none; }
.boundaries-module { grid-column: 1 / -1; min-height: 388px; }
.boundary-axis { min-height: 247px; padding: 43px 35px 22px; display: grid; grid-template-columns: 1fr 92px 1fr; align-items: center; }
.boundary { display: grid; grid-template-columns: 1fr auto; gap: 9px; color: var(--muted); font-size: 10px; }
.boundary > strong { color: var(--paper); font-family: var(--font-mono); font-size: 23px; font-weight: 460; }
.boundary > i { grid-column: 1 / -1; position: relative; height: 5px; display: block; background: var(--line); }
.boundary > i b { position: absolute; width: 0; height: 100%; background: var(--signal); transition: width .7s ease; }
.boundary-down > i b { right: 0; }
.boundary-up > i b { left: 0; }
.boundary small { grid-column: 1 / -1; color: var(--muted-low); font-family: var(--font-mono); font-size: 8px; }
.boundary-center { height: 110px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; color: var(--muted-low); font-family: var(--font-mono); font-size: 7px; }
.boundary-center i { width: 1px; height: 52px; background: linear-gradient(var(--signal), transparent); }
.boundary-center b { color: var(--signal); font-size: 8px; }
.module-note { margin: 0; padding: 16px 20px; border-top: 1px solid var(--line); color: var(--muted-low); font-size: 9px; line-height: 1.55; }

.automation { border-block: 1px solid var(--line); background: var(--ink-deep); }
.automation-track { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border: 1px solid var(--line-strong); }
.automation-track li { position: relative; min-height: 315px; padding: 19px 21px 28px; border-right: 1px solid var(--line); }
.automation-track li:last-child { border-right: 0; }
.automation-track li > span { color: var(--muted-low); font-family: var(--font-mono); font-size: 8px; }
.automation-track li > div { margin-top: 47px; }
.automation-track svg { width: 40px; height: 40px; }
.automation-track svg * { fill: none; stroke: var(--signal); stroke-width: 1; }
.automation-track h3 { margin: 31px 0 11px; font-size: 17px; font-weight: 520; }
.automation-track p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.automation-track li::after { position: absolute; top: 50%; right: -4px; z-index: 2; width: 7px; height: 7px; content: ""; border: 1px solid var(--signal-dim); background: var(--ink-deep); transform: rotate(45deg); }
.automation-track li:last-child::after { display: none; }

.risk-ledger { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); }
.risk-ledger article { min-height: 255px; padding: 24px 25px; border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); transition: background .25s ease; }
.risk-ledger article:hover { background: rgba(185,246,117,.025); }
.risk-ledger span { color: var(--muted-low); font-family: var(--font-mono); font-size: 8px; }
.risk-ledger h3 { margin: 55px 0 13px; font-size: 19px; font-weight: 510; }
.risk-ledger p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.join-panel { position: relative; overflow: hidden; margin-bottom: 80px; border: 1px solid var(--line-strong); background: linear-gradient(115deg, rgba(185,246,117,.09), transparent 55%), var(--panel); }
.join-panel::before { position: absolute; right: -120px; bottom: -230px; width: 500px; height: 500px; content: ""; border: 1px solid rgba(185,246,117,.15); border-radius: 50%; box-shadow: 0 0 0 55px rgba(185,246,117,.02), 0 0 0 115px rgba(185,246,117,.015); }
.join-grid { position: relative; z-index: 1; min-height: 490px; padding: 66px; display: grid; grid-template-columns: 1fr .7fr; gap: 100px; align-items: center; }
.join-grid h2 { margin: 0; font-size: clamp(48px, 5.5vw, 78px); font-weight: 470; line-height: .98; letter-spacing: -.06em; }
.join-copy > p { margin: 0 0 29px; color: var(--paper-dim); font-size: 16px; line-height: 1.6; }
.inline-waitlist label, .waitlist-modal label { margin-bottom: 9px; display: block; color: var(--muted); font-family: var(--font-mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.inline-waitlist > div { display: grid; grid-template-columns: 1fr auto; }
.inline-waitlist input, .waitlist-modal input {
  min-width: 0;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--paper);
  background: rgba(5,6,6,.55);
  outline: none;
  font-size: 13px;
}
.inline-waitlist input:focus, .waitlist-modal input:focus { border-color: var(--signal); box-shadow: inset 0 0 0 1px var(--signal); }
.inline-waitlist input[aria-invalid="true"], .waitlist-modal input[aria-invalid="true"] { border-color: var(--red); }
.inline-waitlist .button { min-height: 54px; }
.inline-waitlist small, .waitlist-modal small { margin-top: 11px; display: block; color: var(--muted-low); font-size: 9px; }
.form-status { min-height: 18px; margin: 10px 0 0; color: var(--muted); font-size: 11px; }
.form-status.success { color: var(--signal); }
.form-status.error { color: var(--red); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; }
.site-footer { border-top: 1px solid var(--line); background: var(--ink-deep); }
.footer-main { min-height: 180px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; }
.footer-main > p { justify-self: center; color: var(--muted); font-size: 11px; }
.footer-main nav { justify-self: end; display: flex; gap: 24px; color: var(--muted); font-size: 10px; }
.footer-main nav a:hover { color: var(--paper); }
.footer-legal { min-height: 48px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; border-top: 1px solid var(--line); color: var(--muted); font-family: var(--font-mono); font-size: 8px; letter-spacing: .06em; }
.footer-legal span:nth-child(2) { justify-self: center; }
.footer-legal span:last-child { justify-self: end; }

.modal-backdrop {
  position: fixed;
  z-index: 150;
  inset: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(3,4,3,.82);
  backdrop-filter: blur(14px);
}
.modal-backdrop[hidden] { display: none; }
.waitlist-modal {
  position: relative;
  width: min(540px, 100%);
  padding: 44px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(185,246,117,.055), transparent 40%), #0d100e;
  box-shadow: 0 35px 120px rgba(0,0,0,.7);
}
.waitlist-modal::before { position: absolute; top: -1px; left: -1px; width: 25px; height: 25px; content: ""; border-top: 1px solid var(--signal); border-left: 1px solid var(--signal); }
.modal-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border: 1px solid var(--line); color: var(--muted); background: transparent; font-size: 21px; cursor: pointer; }
.modal-close:hover { color: var(--paper); border-color: var(--line-strong); }
.waitlist-modal h2 { max-width: 410px; margin: 0; font-size: 42px; font-weight: 490; line-height: 1.04; letter-spacing: -.055em; }
.waitlist-modal > p:not(.eyebrow) { margin: 20px 0 29px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.waitlist-modal input { width: 100%; margin-bottom: 10px; }
.modal-security { margin-top: 28px; padding-top: 18px; display: flex; justify-content: space-between; gap: 10px; border-top: 1px solid var(--line); color: var(--muted-low); font-family: var(--font-mono); font-size: 7px; letter-spacing: .07em; }
.noscript-banner { position: fixed; z-index: 190; right: 12px; bottom: 12px; left: 12px; padding: 12px; border: 1px solid var(--amber); color: var(--paper); background: #18140c; font-size: 12px; text-align: center; }
.development-badge { position: fixed; z-index: 120; right: 12px; bottom: 12px; padding: 7px 9px; border: 1px solid var(--amber); color: var(--amber); background: rgba(8,10,9,.94); font-family: var(--font-mono); font-size: 8px; letter-spacing: .08em; }
html[data-risk="watch"] .signal-dot, html[data-risk="watch"] .data-state i { color: var(--amber); }
html[data-risk="defensive"] .signal-dot, html[data-risk="defensive"] .data-state i { color: var(--red); }
html[data-risk="data-unavailable"] .signal-dot { color: var(--muted); box-shadow: none; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(185,246,117,.45); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(185,246,117,0); }
}

@media (max-width: 1120px) {
  :root { --shell: min(calc(100% - 48px), 1040px); }
  .site-nav { gap: 20px; }
  .hero { grid-template-columns: minmax(0, 1fr) 390px; column-gap: 48px; }
  .console-core { grid-template-columns: 1fr 110px; padding-inline: 22px; }
  .delta-orbit { width: 110px; height: 110px; }
  .delta-orbit > strong { top: 55px; font-size: 14px; }
  .topology { grid-template-columns: 1fr 72px 1fr; gap: 18px; }
  .venue-flow { padding-inline: 20px; }
  .short-visual { grid-template-columns: 1fr; }
  .transparency { grid-template-columns: .48fr 1.52fr; gap: 48px; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .nav-toggle {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    padding: 0;
    display: block;
    justify-self: end;
    border: 1px solid var(--line);
    color: var(--paper);
    background: transparent;
  }
  .nav-toggle span:not(.sr-only) { position: absolute; left: 11px; width: 18px; height: 1px; background: currentColor; transition: transform .2s ease, top .2s ease; }
  .nav-toggle span:nth-child(2) { top: 16px; }
  .nav-toggle span:nth-child(3) { top: 24px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { top: 20px; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 20px; transform: rotate(-45deg); }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    padding: 23px 24px 30px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line-strong);
    background: rgba(8,10,9,.98);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
  .nav-cta { display: none; }
  .hero { min-height: auto; padding-top: 95px; grid-template-columns: 1fr; gap: 75px; }
  .hero-copy { max-width: 760px; }
  .hero h1 { font-size: clamp(62px, 11.5vw, 96px); }
  .vault-console { width: min(620px, 100%); justify-self: end; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi { border-bottom: 1px solid var(--line); }
  .kpi:nth-child(2) { border-right: 0; }
  .kpi:nth-child(3), .kpi:nth-child(4) { border-bottom: 0; }
  .kpi:nth-child(3) { padding-left: 0; }
  .section-heading-row { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .topology { grid-template-columns: 1fr; gap: 15px; }
  .topology-axis { display: none; }
  .topology-link { min-height: 58px; }
  .topology-link i { width: 60%; }
  .carry-equation { gap: 14px; flex-wrap: wrap; justify-content: center; padding-block: 22px; }
  .performance-grid { grid-template-columns: 1fr; }
  .chart-panel { border-right: 0; border-bottom: 1px solid var(--line); }
  .carry-components { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 34px; }
  .carry-components > .overline, .carry-components > p:last-child { grid-column: 1 / -1; }
  .transparency { grid-template-columns: 1fr; }
  .transparency > .section-heading { position: static; }
  .automation-track { grid-template-columns: repeat(2, 1fr); }
  .automation-track li:nth-child(2) { border-right: 0; }
  .automation-track li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .risk-ledger { grid-template-columns: repeat(2, 1fr); }
  .join-grid { grid-template-columns: 1fr; gap: 55px; padding: 55px; }
  .join-copy { max-width: 580px; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 32px); }
  body { background-size: 40px 40px; }
  .section-pad { padding-block: 98px; }
  .hero { padding-top: 70px; gap: 55px; }
  .hero h1 { font-size: clamp(50px, 16vw, 70px); line-height: .9; }
  .hero-description { margin-top: 28px; font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; justify-content: space-between; }
  .vault-console { min-height: 425px; }
  .console-core { min-height: 283px; grid-template-columns: 1fr; }
  .delta-orbit { position: absolute; right: 22px; bottom: 71px; width: 102px; height: 102px; opacity: .85; }
  .delta-orbit > strong { top: 51px; }
  .console-apy { max-width: 64%; }
  .console-foot { align-items: flex-start; flex-direction: column; gap: 7px; }
  .kpi-grid { grid-template-columns: 1fr; }
  .kpi, .kpi:nth-child(3) { min-height: 130px; padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .kpi:last-child { border-bottom: 0; }
  .kpi strong { min-height: 36px; margin-top: 13px; }
  .rail-heading { min-height: 55px; }
  .data-method { line-height: 1.6; }
  .section-heading { margin-bottom: 52px; }
  .section-heading h2 { font-size: clamp(45px, 14vw, 62px); }
  .section-heading > p:last-child { font-size: 15px; }
  .venue { min-height: 0; }
  .venue-head { grid-template-columns: 38px 1fr 35px; padding: 17px; }
  .venue-flow { min-height: 190px; padding: 30px 17px; gap: 10px; }
  .venue-flow > div { padding: 14px 11px; }
  .venue-flow strong, .short-visual strong { font-size: 17px; }
  .venue-yield { padding-inline: 17px; }
  .short-visual { padding: 28px 20px; }
  .carry-equation { font-size: 7px; }
  .performance-toolbar { align-items: flex-start; flex-direction: column; gap: 18px; }
  .range-switcher { width: 100%; }
  .range-switcher button { width: auto; flex: 1; }
  .chart-panel { min-height: 345px; padding-inline: 12px; }
  .public-chart { height: 270px; }
  .chart-empty { inset-inline: 12px; }
  .chart-legend { right: 12px; gap: 13px; }
  .carry-components { grid-template-columns: 1fr; }
  .carry-components > .overline, .carry-components > p:last-child { grid-column: auto; }
  .transparency-grid { grid-template-columns: 1fr; }
  .allocation-module, .neutrality-module, .boundaries-module { grid-column: 1; }
  .boundary-axis { padding-inline: 18px; grid-template-columns: 1fr 55px 1fr; }
  .boundary { grid-template-columns: 1fr; }
  .boundary > strong { font-size: 19px; }
  .automation-track { grid-template-columns: 1fr; }
  .automation-track li { min-height: 250px; border-right: 0; border-bottom: 1px solid var(--line); }
  .automation-track li:last-child { border-bottom: 0; }
  .automation-track li > div { margin-top: 35px; }
  .automation-track li::after { top: auto; right: 50%; bottom: -4px; }
  .risk-ledger { grid-template-columns: 1fr; }
  .risk-ledger article { min-height: 220px; }
  .risk-ledger h3 { margin-top: 42px; }
  .join-panel { width: 100%; margin-bottom: 0; border-inline: 0; }
  .join-grid { min-height: 0; padding: 56px 16px; }
  .join-grid h2 { font-size: 48px; }
  .inline-waitlist > div { grid-template-columns: 1fr; gap: 8px; }
  .inline-waitlist .button { justify-content: space-between; }
  .footer-main { padding-block: 45px; grid-template-columns: 1fr; gap: 25px; align-items: start; }
  .footer-main > p, .footer-main nav { justify-self: start; }
  .footer-main nav { flex-wrap: wrap; }
  .footer-legal { padding-block: 18px; grid-template-columns: 1fr; gap: 8px; }
  .footer-legal span:nth-child(2), .footer-legal span:last-child { justify-self: start; }
  .waitlist-modal { padding: 38px 22px 25px; }
  .waitlist-modal h2 { font-size: 35px; }
  .modal-security { flex-direction: column; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
