:root {
  color-scheme: dark;
  --ink: #10110e;
  --ink-2: #171914;
  --ink-3: #20221c;
  --paper: #eeeade;
  --paper-2: #ded9cb;
  --muted: #979b8e;
  --line: rgba(238, 234, 222, 0.14);
  --line-light: rgba(16, 17, 14, 0.14);
  --acid: #c9f45b;
  --acid-dim: #8fae3f;
  --amber: #f0a24a;
  --blue: #75a6ff;
  --radius: 2px;
  --sans: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: "Arial Black", "Avenir Next", "Helvetica Neue", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

.noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  position: relative;
  z-index: 10;
  height: 82px;
  padding: 0 clamp(20px, 4.2vw, 72px);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 13px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.brand-mark {
  width: 30px;
  height: 29px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  transform: skewX(-12deg);
}

.brand-mark i { display: block; width: 8px; background: var(--acid); }
.brand-mark i:nth-child(1) { height: 11px; }
.brand-mark i:nth-child(2) { height: 20px; }
.brand-mark i:nth-child(3) { height: 29px; }
.brand-mark.small { width: 23px; height: 22px; gap: 2px; }
.brand-mark.small i { width: 6px; }
.brand-mark.small i:nth-child(1) { height: 9px; }
.brand-mark.small i:nth-child(2) { height: 15px; }
.brand-mark.small i:nth-child(3) { height: 22px; }

.site-header nav { display: flex; align-items: center; gap: 34px; }
.site-header nav a {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 160ms ease;
}
.site-header nav a:hover { color: var(--paper); }

.wallet-button {
  justify-self: end;
  height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--paper-2);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 160ms ease, border-color 160ms ease;
}
.wallet-button:hover { background: rgba(255,255,255,.04); border-color: rgba(238,234,222,.3); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #6e7168; box-shadow: 0 0 0 3px rgba(110,113,104,.14); }
.wallet-button.connected .status-dot { background: var(--acid); box-shadow: 0 0 0 3px rgba(201,244,91,.12); }

.hero {
  min-height: 730px;
  padding: 88px clamp(20px, 4.2vw, 72px) 84px;
  display: grid;
  grid-template-columns: minmax(440px, .94fr) minmax(500px, 1.06fr);
  gap: clamp(48px, 7vw, 118px);
  align-items: center;
}

.hero-copy { max-width: 700px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 31px; }
.eyebrow span, .section-index, .app-kicker, .card-label-text {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow span { color: var(--muted); }
.eyebrow b {
  padding: 5px 7px 4px;
  border: 1px solid rgba(201,244,91,.34);
  color: var(--acid);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--display);
  font-size: clamp(62px, 7.4vw, 118px);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.hero h1 em { color: var(--acid); font-style: normal; }
.hero-copy > p { max-width: 610px; margin: 38px 0 0; color: #b7b8af; font-size: 18px; line-height: 1.58; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }

.primary-button {
  height: 52px;
  min-width: 206px;
  padding: 0 18px 0 20px;
  border: 0;
  border-radius: var(--radius);
  background: var(--acid);
  color: #11130d;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}
.primary-button:hover { transform: translateY(-2px); background: #d8ff70; }
.primary-button span { font-size: 17px; font-weight: 400; }
.text-link { color: #b7b8af; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.text-link span { color: var(--acid); margin-left: 8px; }
.hero-copy .microcopy { margin-top: 17px; color: #74786d; font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }

.hero-instrument {
  min-width: 0;
  border: 1px solid var(--line);
  background: #141612;
  box-shadow: 0 28px 80px rgba(0,0,0,.25);
}
.instrument-head { height: 49px; padding: 0 17px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; color: #7e8178; font-family: var(--mono); font-size: 9px; letter-spacing: .09em; }
.live-pill { color: var(--acid); }
.instrument-chart { position: relative; height: 326px; padding: 18px 14px 0; overflow: hidden; }
.instrument-chart svg { width: 100%; height: 100%; overflow: visible; }
.grid-lines line { stroke: rgba(238,234,222,.08); stroke-width: 1; stroke-dasharray: 2 4; }
.raw-line, .agent-line { fill: none; vector-effect: non-scaling-stroke; stroke-width: 2; }
.raw-line { stroke: #6c7067; }
.agent-line { stroke: var(--acid); filter: drop-shadow(0 0 8px rgba(201,244,91,.17)); }
.decision-node { fill: var(--ink); stroke: var(--acid); stroke-width: 2; }
.decision-guide { stroke: rgba(201,244,91,.4); stroke-width: 1; stroke-dasharray: 3 4; }
.decision-label { position: absolute; left: 35%; bottom: 20px; width: 190px; padding-left: 10px; border-left: 2px solid var(--acid); }
.decision-label b, .decision-label span { display: block; }
.decision-label b { color: var(--acid); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; }
.decision-label span { margin-top: 4px; color: #8e9187; font-size: 10px; line-height: 1.35; }
.instrument-summary { min-height: 83px; padding: 17px 19px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); }
.instrument-summary > div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.instrument-summary span, .instrument-summary strong { display: block; }
.instrument-summary span { color: #7f8279; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; }
.instrument-summary strong { margin-top: 8px; font-family: var(--mono); font-size: 19px; font-weight: 500; }
.positive { color: var(--acid) !important; }
.hero-instrument > p { margin: 0; padding: 12px 19px; border-top: 1px solid var(--line); color: #6e7168; font-family: var(--mono); font-size: 8px; text-transform: uppercase; letter-spacing: .06em; }

.principles-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 0 clamp(20px, 4.2vw, 72px); display: grid; grid-template-columns: repeat(3, 1fr); }
.principles-strip > div { min-height: 132px; padding: 28px 28px 24px 0; display: grid; grid-template-columns: 34px 1fr; gap: 10px; }
.principles-strip > div + div { border-left: 1px solid var(--line); padding-left: 32px; }
.principles-strip span { color: var(--acid); font-family: var(--mono); font-size: 9px; }
.principles-strip p { margin: 0; color: #91948a; font-size: 13px; line-height: 1.55; }
.principles-strip b { display: block; margin-bottom: 3px; color: var(--paper-2); font-weight: 600; }

.copy-section { padding: 130px clamp(20px, 4.2vw, 72px) 140px; background: var(--paper); color: var(--ink); }
.section-heading { display: grid; grid-template-columns: 1fr minmax(300px, 460px); align-items: end; gap: 60px; margin-bottom: 67px; }
.section-index { color: #65695f; }
.section-heading h2 { margin: 15px 0 0; font-family: var(--display); font-size: clamp(48px, 5.5vw, 84px); line-height: .93; letter-spacing: -.065em; text-transform: uppercase; }
.section-heading > p { margin: 0 0 8px; color: #60645b; font-size: 16px; line-height: 1.65; }

.app-shell { max-width: 1480px; min-height: 830px; margin: 0 auto; border: 1px solid #30332c; background: #151713; color: var(--paper); display: grid; grid-template-columns: 62px 1fr; box-shadow: 0 35px 80px rgba(24,25,21,.17); }
.app-rail { border-right: 1px solid var(--line); padding: 14px 10px; display: flex; flex-direction: column; align-items: center; gap: 9px; }
.rail-logo { height: 47px; display: flex; align-items: center; margin-bottom: 9px; }
.rail-button { width: 40px; height: 40px; border: 1px solid transparent; background: transparent; color: #777b70; cursor: pointer; font-family: var(--mono); font-size: 18px; }
.rail-button:hover, .rail-button.active { border-color: var(--line); background: #20231c; color: var(--acid); }
.rail-spacer { flex: 1; }
.app-main { min-width: 0; }
.app-topbar { min-height: 72px; padding: 0 23px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.app-kicker { display: block; color: #777b70; font-size: 8px; }
.app-topbar h3 { margin: 4px 0 0; font-size: 17px; font-weight: 500; letter-spacing: -.02em; }
.network-chip { height: 31px; padding: 0 11px; border: 1px solid var(--line); display: flex; align-items: center; gap: 8px; color: #95988e; font-family: var(--mono); font-size: 8px; text-transform: uppercase; letter-spacing: .07em; }
.network-chip span { width: 6px; height: 6px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 9px rgba(201,244,91,.45); }
.console-grid { display: grid; grid-template-columns: minmax(0, 1fr) 332px; min-height: 757px; }
.console-primary { padding: 22px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 15px; }
.source-card, .runs-card, .controls-card { border: 1px solid var(--line); background: #191b16; }
.card-label { height: 38px; padding: 0 13px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; color: #777b70; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; }
.card-label button { border: 0; background: none; color: #777b70; cursor: pointer; font-family: var(--mono); font-size: 8px; letter-spacing: .08em; }
.source-identity { min-height: 88px; padding: 14px 16px; display: grid; grid-template-columns: 47px 1fr auto; align-items: center; gap: 13px; }
.wallet-avatar { width: 47px; height: 47px; border: 1px solid rgba(201,244,91,.35); background: #20251a; display: grid; place-items: center; color: var(--acid); font-family: var(--mono); font-size: 11px; }
.source-identity strong, .source-identity span { display: block; }
.source-identity strong { font-family: var(--mono); font-size: 13px; font-weight: 500; }
.source-identity span { margin-top: 5px; color: #777b70; font-size: 10px; }
.source-score { text-align: center; }
.source-score b { color: var(--acid); font-family: var(--mono); font-size: 20px; font-weight: 500; }
.source-score span { margin-top: 2px; font-family: var(--mono); font-size: 7px; letter-spacing: .08em; }
.source-metrics { min-height: 63px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); }
.source-metrics > div { padding: 12px 15px; }
.source-metrics > div + div { border-left: 1px solid var(--line); }
.source-metrics span, .source-metrics b { display: block; }
.source-metrics span { color: #74786d; font-family: var(--mono); font-size: 7px; letter-spacing: .1em; }
.source-metrics b { margin-top: 8px; font-family: var(--mono); font-size: 13px; font-weight: 500; }

.runs-header { min-height: 66px; padding: 12px 14px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.runs-header .card-label-text { color: #74786d; font-size: 7px; }
.runs-header h4 { margin: 5px 0 0; font-size: 14px; font-weight: 500; }
.runs-header h4 i { color: #777b70; font-family: var(--mono); font-size: 9px; font-style: normal; text-transform: uppercase; }
.run-status, .state-pill { font-family: var(--mono); font-size: 7px; letter-spacing: .08em; }
.run-status { display: flex; align-items: center; gap: 7px; color: #898d82; }
.run-status span { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.path-row { min-height: 55px; padding: 0 14px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 2fr repeat(4, minmax(70px, .8fr)); align-items: center; gap: 10px; color: #bbbcb4; font-family: var(--mono); font-size: 10px; }
.path-head { min-height: 30px; color: #696d63; font-size: 7px; letter-spacing: .08em; }
.path-name { display: grid; grid-template-columns: 8px 1fr; column-gap: 9px; align-items: center; }
.path-name b { font-size: 10px; font-weight: 500; }
.path-name small { grid-column: 2; margin-top: 3px; color: #686c62; font-size: 7px; }
.path-swatch { grid-row: 1 / 3; width: 7px; height: 22px; }
.path-swatch.raw { background: #5f635a; }
.path-swatch.agent { background: var(--acid); }
.state-pill { width: max-content; padding: 5px 7px; border: 1px solid var(--line); color: #8a8e83; }
.state-pill.accent { border-color: rgba(201,244,91,.28); color: var(--acid); }
.latest-decision { min-height: 84px; padding: 13px 14px; display: grid; grid-template-columns: 35px 1fr auto; align-items: center; gap: 12px; }
.decision-icon { width: 35px; height: 35px; border: 1px solid rgba(240,162,74,.28); background: rgba(240,162,74,.06); display: grid; place-items: center; color: var(--amber); font-family: var(--mono); font-size: 16px; }
.latest-decision span, .latest-decision b, .latest-decision p { display: block; }
.latest-decision span { color: #6e7267; font-family: var(--mono); font-size: 7px; letter-spacing: .08em; }
.latest-decision b { margin-top: 5px; font-size: 10px; font-weight: 600; }
.latest-decision p { margin: 4px 0 0; color: #777b70; font-size: 9px; }
.confidence { text-align: right; }
.confidence b { color: var(--amber); font-family: var(--mono); font-size: 16px; font-weight: 500; }
.confidence span { margin-top: 4px; }

.controls-card { flex: 1; min-height: 204px; }
.control-row { min-height: 56px; padding: 0 14px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 20px; }
.control-row label span, .control-row label b { display: block; }
.control-row label span { color: #777b70; font-size: 9px; }
.control-row label b { margin-top: 4px; font-family: var(--mono); font-size: 10px; font-weight: 500; }
.segmented { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.segmented button { height: 30px; border: 0; border-right: 1px solid var(--line); background: transparent; color: #777b70; cursor: pointer; font-family: var(--mono); font-size: 8px; }
.segmented button:last-child { border-right: 0; }
.segmented button.selected { background: var(--acid); color: var(--ink); }
.range-track { position: relative; height: 2px; background: #3a3d35; }
.range-track i { position: absolute; left: 0; top: 0; height: 2px; background: var(--acid); }
.range-track span { position: absolute; top: 50%; width: 10px; height: 10px; border-radius: 50%; background: var(--acid); transform: translate(-50%,-50%); }
.guardrail-row { min-height: 39px; padding: 0 14px; display: flex; align-items: center; gap: 24px; color: #7e8277; font-size: 8px; }
.guardrail-row i { color: var(--acid); font-style: normal; margin-right: 4px; }
.activate-button { width: calc(100% - 28px); height: 42px; margin: 7px 14px 13px; padding: 0 13px; border: 0; background: var(--acid); color: var(--ink); display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-family: var(--mono); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.activate-button:disabled { background: #30332c; color: #70746a; cursor: not-allowed; }
.monitor-form { padding-bottom: 8px; }
.monitor-form .card-label > button { border: 0; background: transparent; color: #6d7167; font-family: var(--mono); font-size: 7px; }
.monitor-form input { width: 100%; height: 34px; padding: 0 10px; border: 1px solid var(--line); border-radius: 0; outline: 0; background: #11130f; color: var(--paper); font-family: var(--mono); font-size: 9px; }
.monitor-form input:focus { border-color: rgba(201,244,91,.45); }
.monitor-form input:disabled { color: #62665d; opacity: .7; }
.monitor-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.monitor-fields label span { margin-bottom: 5px; color: #666a60; font-family: var(--mono); font-size: 6px; letter-spacing: .08em; }
.monitor-status { min-height: 20px; margin: -4px 14px 5px; color: #6e7267; font-family: var(--mono); font-size: 7px; line-height: 1.45; }

.commons-panel { padding: 24px 20px; background: #121410; }
.commons-heading { display: flex; justify-content: space-between; align-items: center; color: #73776c; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; }
.commons-heading i { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 4px rgba(201,244,91,.08); }
.commons-heading i.pulse { animation: pulse 1.3s ease-in-out infinite; }
.commons-panel > h4 { margin: 19px 0 0; font-family: var(--display); font-size: 34px; line-height: .94; letter-spacing: -.05em; text-transform: uppercase; }
.commons-panel > p { margin: 17px 0 0; color: #7e8277; font-size: 11px; line-height: 1.55; }
.policy-card { margin-top: 23px; padding: 14px; border: 1px solid var(--line); background: #181a15; }
.policy-card > div:first-child { display: flex; justify-content: space-between; align-items: center; }
.policy-card > div:first-child span, .policy-card > div:first-child b { font-family: var(--mono); font-size: 7px; letter-spacing: .08em; }
.policy-card > div:first-child span { color: #70746a; }
.policy-card > div:first-child b { color: #b9bbb3; font-weight: 500; }
.policy-status { display: inline-block; margin-top: 11px; padding: 5px 7px; border: 1px solid rgba(240,162,74,.3); color: var(--amber); font-family: var(--mono); font-size: 7px; letter-spacing: .08em; }
.progress-meta { margin-top: 18px; display: flex; justify-content: space-between; color: #84887d; font-size: 8px; }
.progress-meta b { font-family: var(--mono); font-weight: 500; }
.progress { height: 4px; margin-top: 8px; background: #30332c; overflow: hidden; }
.progress i { display: block; height: 100%; background: var(--acid); transition: width 400ms ease; }
.gate-list { margin-top: 14px; display: grid; gap: 8px; color: #74786d; font-size: 8px; }
.gate-list span { display: flex; align-items: center; gap: 8px; }
.gate-list i { width: 6px; height: 6px; border: 1px solid #4d5148; }
.commons-stats { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.commons-stats > div { padding: 13px; }
.commons-stats > div + div { border-left: 1px solid var(--line); }
.commons-stats b, .commons-stats span { display: block; }
.commons-stats b { font-family: var(--mono); font-size: 17px; font-weight: 500; }
.commons-stats span { margin-top: 5px; color: #6e7267; font-family: var(--mono); font-size: 6px; letter-spacing: .08em; }
.contribution-form { margin-top: 14px; padding: 14px; border: 1px solid var(--line); }
.form-head { display: flex; justify-content: space-between; color: #73776c; font-family: var(--mono); font-size: 7px; letter-spacing: .08em; }
.form-head b { color: var(--acid-dim); font-weight: 500; }
.contribution-form label { display: block; margin-top: 13px; color: #787c71; font-size: 8px; }
.contribution-form input, .contribution-form textarea { width: 100%; margin-top: 6px; padding: 9px; border: 1px solid var(--line); border-radius: 0; background: #11130f; color: var(--paper); font-size: 9px; resize: vertical; outline: 0; }
.contribution-form input:focus, .contribution-form textarea:focus { border-color: rgba(201,244,91,.45); }
.contribution-form input:disabled, .contribution-form textarea:disabled { opacity: .48; }
.contribution-form button { width: 100%; min-height: 36px; margin-top: 10px; border: 1px solid var(--line); background: transparent; color: #777b70; font-family: var(--mono); font-size: 7px; text-transform: uppercase; letter-spacing: .05em; }
.contribution-form button:not(:disabled) { background: var(--acid); color: var(--ink); cursor: pointer; }
.contribution-form > p { min-height: 22px; margin: 9px 0 0; color: #676b61; font-size: 7px; line-height: 1.45; }
.preview-caption { max-width: 1480px; margin: 14px auto 0; color: #74786d; font-family: var(--mono); font-size: 8px; letter-spacing: .05em; text-transform: uppercase; }

.economics-section { padding: 130px clamp(20px, 4.2vw, 72px) 140px; }
.section-heading.light .section-index { color: #777b70; }
.section-heading.light > p { color: #999c92; }
.allocation-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: minmax(320px, .8fr) 1.2fr; gap: 80px; align-items: center; }
.allocation-ring { display: grid; place-items: center; }
.ring { width: min(390px, 80vw); aspect-ratio: 1; padding: 42px; border-radius: 50%; background: conic-gradient(var(--acid) 0 40%, var(--amber) 40% 50%, var(--blue) 50% 80%, #555a50 80% 100%); transform: rotate(-90deg); }
.ring > div { width: 100%; height: 100%; border-radius: 50%; background: var(--ink); display: grid; place-content: center; text-align: center; transform: rotate(90deg); }
.ring b, .ring span { display: block; }
.ring b { font-family: var(--display); font-size: 52px; letter-spacing: -.06em; }
.ring span { margin-top: 8px; color: #777b70; font-family: var(--mono); font-size: 8px; line-height: 1.5; letter-spacing: .08em; }
.allocation-list { border-top: 1px solid var(--line); }
.allocation-list > div { min-height: 112px; padding: 24px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 10px 78px 150px 1fr; align-items: start; gap: 15px; }
.allocation-list i { width: 8px; height: 36px; }
.allocation-list i.compute { background: var(--acid); }
.allocation-list i.rewards { background: var(--amber); }
.allocation-list i.founder { background: var(--blue); }
.allocation-list i.reserve { background: #555a50; }
.allocation-list b { font-family: var(--mono); font-size: 25px; font-weight: 500; }
.allocation-list span { padding-top: 8px; color: #a5a79e; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; }
.allocation-list p { margin: 4px 0 0; color: #7f8378; font-size: 12px; line-height: 1.55; }

.fee-calculator { max-width: 1300px; margin: 90px auto 0; padding: 31px; border: 1px solid var(--line); background: #141612; }
.calculator-head { display: flex; justify-content: space-between; align-items: flex-start; }
.calculator-head span { color: #777b70; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; }
.calculator-head h3 { margin: 9px 0 0; font-size: 24px; font-weight: 500; letter-spacing: -.03em; }
.volume-input { text-align: right; }
.volume-input b { display: block; margin-top: 6px; color: var(--acid); font-family: var(--mono); font-size: 27px; font-weight: 500; }
.fee-calculator input[type="range"] { width: 100%; margin: 38px 0 28px; accent-color: var(--acid); }
.calculator-output { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(5, 1fr); }
.calculator-output > div { padding: 20px 15px; }
.calculator-output > div + div { border-left: 1px solid var(--line); }
.calculator-output span, .calculator-output b { display: block; }
.calculator-output span { color: #74786d; font-family: var(--mono); font-size: 7px; letter-spacing: .08em; }
.calculator-output b { margin-top: 9px; font-family: var(--mono); font-size: 17px; font-weight: 500; }
.fee-calculator > p { margin: 14px 0 0; color: #696d63; font-family: var(--mono); font-size: 7px; letter-spacing: .04em; }

.closing-section { min-height: 570px; padding: 110px clamp(20px, 4.2vw, 72px); border-top: 1px solid var(--line); display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr); grid-template-rows: auto 1fr; column-gap: 70px; }
.closing-section > .section-index { grid-column: 1 / -1; }
.closing-section blockquote { margin: 55px 0 0; font-family: var(--display); font-size: clamp(47px, 6vw, 92px); line-height: .94; letter-spacing: -.065em; text-transform: uppercase; }
.closing-section > div { align-self: end; padding-bottom: 10px; }
.closing-section > div p { margin: 0 0 28px; color: #92958b; font-size: 15px; line-height: 1.65; }
.primary-button.inverse { background: var(--paper); }

footer { min-height: 90px; padding: 0 clamp(20px, 4.2vw, 72px); border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 2fr auto 1fr; align-items: center; gap: 30px; }
footer p { margin: 0; color: #666a60; font-family: var(--mono); font-size: 7px; text-align: center; text-transform: uppercase; letter-spacing: .05em; }
footer > span { justify-self: end; color: #666a60; font-family: var(--mono); font-size: 7px; letter-spacing: .08em; }
.revoke-button { border: 0; border-bottom: 1px solid #666a60; background: transparent; color: #777b70; cursor: pointer; font-family: var(--mono); font-size: 7px; text-transform: uppercase; letter-spacing: .05em; }
.revoke-button:disabled { cursor: wait; opacity: .55; }
[hidden] { display: none !important; }

.consent-dialog { width: min(620px, calc(100vw - 32px)); max-height: calc(100vh - 32px); padding: 37px; border: 1px solid rgba(238,234,222,.22); border-radius: 0; background: #171914; color: var(--paper); box-shadow: 0 30px 100px rgba(0,0,0,.65); }
.consent-dialog::backdrop { background: rgba(8,9,7,.82); backdrop-filter: blur(5px); }
.dialog-close { position: absolute; top: 15px; right: 17px; width: 30px; height: 30px; border: 1px solid var(--line); background: transparent; color: #8b8e85; cursor: pointer; font-family: var(--mono); font-size: 18px; }
.dialog-index { color: var(--acid); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; }
.consent-dialog h2 { margin: 20px 0 0; font-family: var(--display); font-size: clamp(32px, 5vw, 47px); line-height: 1.04; letter-spacing: -.045em; text-transform: uppercase; }
.consent-dialog h2 span { display: block; text-wrap: balance; }
.consent-dialog h2 span + span { margin-top: .12em; }
.consent-dialog > p { margin: 18px 0 0; color: #8d9087; font-size: 13px; line-height: 1.55; }
.consent-dialog ul { margin: 25px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.consent-dialog li { min-height: 66px; padding: 13px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: start; }
.consent-dialog li > span { color: var(--acid); font-family: var(--mono); font-size: 8px; }
.consent-dialog li p { margin: 0; color: #898c83; font-size: 11px; line-height: 1.5; }
.consent-dialog li b { color: #c7c7c0; font-weight: 600; }
.acknowledgement { margin-top: 19px; display: flex; align-items: center; gap: 10px; color: #a4a69e; font-size: 11px; cursor: pointer; }
.acknowledgement input { width: 16px; height: 16px; accent-color: var(--acid); }
.dialog-action { width: 100%; height: 48px; margin-top: 17px; padding: 0 15px; border: 0; background: var(--acid); color: var(--ink); display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-family: var(--mono); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.dialog-action:disabled { background: #30332c; color: #6f7369; cursor: not-allowed; }
.preview-button { width: 100%; height: 39px; margin-top: 8px; border: 1px solid var(--line); background: transparent; color: #878a81; cursor: pointer; font-family: var(--mono); font-size: 8px; text-transform: uppercase; letter-spacing: .05em; }
.consent-dialog .dialog-status { min-height: 18px; margin-top: 12px; color: #696d63; font-family: var(--mono); font-size: 7px; text-align: center; text-transform: uppercase; letter-spacing: .04em; }
.consent-dialog .dialog-status.error { color: #f07964; }
.consent-dialog .dialog-status.success { color: var(--acid); }

@keyframes pulse { 0%,100% { opacity: .45; transform: scale(.9); } 50% { opacity: 1; transform: scale(1.12); } }

@media (max-width: 1120px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 860px; }
  .hero-instrument { max-width: 800px; }
  .console-grid { grid-template-columns: 1fr; }
  .console-primary { border-right: 0; }
  .commons-panel { border-top: 1px solid var(--line); }
  .app-shell { min-height: 0; }
  .allocation-grid { gap: 35px; }
}

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { padding-top: 64px; }
  .hero h1 { font-size: clamp(54px, 15vw, 92px); }
  .principles-strip { grid-template-columns: 1fr; }
  .principles-strip > div { min-height: 90px; }
  .principles-strip > div + div { border-top: 1px solid var(--line); border-left: 0; padding-left: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .app-shell { grid-template-columns: 1fr; }
  .app-rail { display: none; }
  .path-row { grid-template-columns: 1.7fr repeat(2, 1fr); }
  .path-row > *:nth-child(4), .path-row > *:nth-child(5) { display: none; }
  .allocation-grid { grid-template-columns: 1fr; }
  .allocation-list > div { grid-template-columns: 9px 58px 120px 1fr; }
  .calculator-output { grid-template-columns: repeat(2, 1fr); }
  .calculator-output > div { border-bottom: 1px solid var(--line); }
  .calculator-output > div:nth-child(odd) { border-left: 0; }
  .closing-section { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  .closing-section > div { margin-top: 45px; }
  footer { grid-template-columns: 1fr; padding-top: 28px; padding-bottom: 28px; }
  footer > *, footer > span { justify-self: start; text-align: left; }
}

@media (max-width: 560px) {
  .site-header { height: 68px; padding-inline: 16px; }
  .brand { font-size: 10px; }
  .wallet-button { padding-inline: 10px; }
  .hero { min-height: 0; padding: 54px 16px 66px; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 19px; }
  .hero-instrument { display: none; }
  .principles-strip { padding-inline: 16px; }
  .copy-section, .economics-section { padding: 90px 16px; }
  .section-heading h2 { font-size: 45px; }
  .app-topbar { padding-inline: 14px; }
  .network-chip { display: none; }
  .console-primary { padding: 12px; }
  .source-metrics { grid-template-columns: repeat(2, 1fr); }
  .source-metrics > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .source-metrics > div:nth-child(4) { border-top: 1px solid var(--line); }
  .latest-decision { grid-template-columns: 35px 1fr; }
  .confidence { display: none; }
  .control-row { grid-template-columns: 1fr; padding-block: 10px; }
  .guardrail-row { align-items: flex-start; flex-direction: column; padding-block: 12px; gap: 8px; }
  .allocation-list > div { grid-template-columns: 8px 50px 1fr; }
  .allocation-list p { grid-column: 2 / -1; }
  .calculator-head { flex-direction: column; gap: 22px; }
  .volume-input { text-align: left; }
  .calculator-output { grid-template-columns: 1fr; }
  .calculator-output > div + div { border-left: 0; }
  .closing-section { min-height: 0; padding: 90px 16px; }
  .consent-dialog { padding: 30px 21px; }
}

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