:root {
  --ink: #0b0c0a;
  --ink-soft: #181a16;
  --paper: #f2efe6;
  --paper-bright: #fffdf4;
  --signal: #ff4b12;
  --signal-dark: #c72d00;
  --reward: #d7ff43;
  --reward-dark: #89aa00;
  --muted: #77786f;
  --line: rgba(11, 12, 10, 0.2);
  --line-dark: rgba(255, 253, 244, 0.19);
  --shell: min(1240px, calc(100% - 56px));
  --header-height: 72px;
  --font-display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --font-body: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-mono: "Cascadia Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  color-scheme: light;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

:focus-visible {
  outline: 3px solid var(--reward);
  outline-offset: 4px;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--reward);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding-inline: max(28px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgba(255, 253, 244, 0.18);
  background: rgba(11, 12, 10, 0.91);
  color: var(--paper-bright);
  backdrop-filter: blur(14px);
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 950;
  letter-spacing: -0.09em;
}

.mini-brand i {
  position: relative;
  width: 0.92em;
  height: 0.92em;
  margin: 0 0.03em;
  border: 0.18em solid var(--signal);
  border-radius: 50%;
}

.mini-brand i::after {
  content: "";
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: var(--reward);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-header nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--reward);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.header-state i,
.hero-chain i,
.receipt-label i,
.proof-status span i,
.pool-readiness span i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--reward);
  box-shadow: 0 0 0 4px rgba(215, 255, 67, 0.14);
}

.header-state[data-state="unavailable"] i,
.header-state[data-state="stale"] i {
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(255, 75, 18, 0.16);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
  padding: 0 20px;
  border: 2px solid var(--ink);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--ink);
}

.button-small {
  min-height: 42px;
  padding-inline: 15px;
  border-width: 1px;
  font-size: 0.67rem;
}

.button-reward {
  border-color: var(--reward);
  background: var(--reward);
  color: var(--ink);
}

.button-reward:hover {
  box-shadow: 4px 4px 0 var(--signal);
}

.button-ink {
  background: var(--ink);
  color: var(--paper-bright);
}

.button-ghost {
  background: transparent;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.kicker span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.kicker-dark {
  color: var(--paper-bright);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 28px);
  overflow: clip;
  background: var(--ink);
  color: var(--paper-bright);
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  z-index: -3;
  inset: var(--header-height) 0 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 253, 244, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 244, 0.14) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 72%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 6%;
  right: -10%;
  width: min(68vw, 960px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 253, 244, 0.14);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 14%;
  right: -2%;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 253, 244, 0.14);
  border-radius: 50%;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background: var(--signal);
}

.orbit-a {
  top: 27%;
  right: 6%;
  width: 13px;
  height: 13px;
}

.orbit-b {
  top: 55%;
  right: 28%;
  width: 8px;
  height: 8px;
  background: var(--reward);
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(18px, 2vw, 34px);
}

.hero-chain {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
}

.hero-chain i {
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(255, 75, 18, 0.14);
}

.hero-wordmark-wrap {
  position: relative;
  z-index: 2;
}

.hero-wordmark {
  display: flex;
  align-items: center;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(7.6rem, 20.2vw, 19.2rem);
  font-weight: 950;
  line-height: 0.77;
  letter-spacing: -0.095em;
  white-space: nowrap;
  color: var(--paper-bright);
}

.wordmark-wheel {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 0.77em;
  height: 0.77em;
  margin: 0 0.015em 0 -0.005em;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  vertical-align: -0.03em;
}

.wordmark-wheel:focus-visible {
  outline-color: var(--reward);
}

.wheel-ring {
  position: absolute;
  inset: 0;
  border: 0.105em solid var(--paper-bright);
  border-radius: 50%;
}

.wheel-ring::before,
.wheel-ring::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 77%;
  height: 0.055em;
  background: var(--paper-bright);
  transform: translate(-50%, -50%);
}

.wheel-ring::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.wheel-spoke {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74%;
  height: 0.035em;
  background: var(--paper-bright);
  transform: translate(-50%, -50%);
}

.spoke-a {
  transform: translate(-50%, -50%) rotate(45deg);
}

.spoke-b {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.spoke-c {
  transform: translate(-50%, -50%) rotate(22.5deg);
}

.spoke-d {
  transform: translate(-50%, -50%) rotate(-22.5deg);
}

.wheel-hub {
  position: absolute;
  z-index: 2;
  inset: 37%;
  border: 0.035em solid var(--signal);
  border-radius: 50%;
  background: var(--ink);
}

.wheel-token {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  min-width: 0;
  width: 10%;
  height: 10%;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper-bright);
  font-family: var(--font-mono);
  font-size: 0;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  opacity: 0;
  transform-origin: center;
}

.token-burn {
  background: var(--signal);
  color: var(--ink);
}

.token-reward {
  background: var(--reward);
}

.hero.machine-running .wheel-ring {
  animation: hero-wheel-spin 3.4s cubic-bezier(0.58, 0.02, 0.16, 1) both;
}

.hero.machine-running .token-burn {
  animation: hero-token-burn 3.4s cubic-bezier(0.58, 0.02, 0.16, 1) both;
}

.hero.machine-running .token-reward {
  animation: hero-token-reward 3.4s cubic-bezier(0.58, 0.02, 0.16, 1) both;
}

@keyframes hero-wheel-spin {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(70deg); }
  100% { transform: rotate(360deg); }
}

@keyframes hero-token-burn {
  0%, 20% { opacity: 0; transform: translate(-50%, -50%) rotate(0deg) translateX(0.29em) rotate(0deg); }
  31% { opacity: 1; }
  72% { opacity: 1; transform: translate(-50%, -50%) rotate(150deg) translateX(0.29em) rotate(-150deg); }
  100% { opacity: 0; transform: translate(-50%, -50%) rotate(218deg) translateX(0.43em) rotate(-218deg); }
}

@keyframes hero-token-reward {
  0%, 36% { opacity: 0; transform: translate(-50%, -50%) rotate(0deg) translateX(0.31em) rotate(0deg); }
  46% { opacity: 1; }
  80% { opacity: 1; transform: translate(-50%, -50%) rotate(-155deg) translateX(0.31em) rotate(155deg); }
  100% { opacity: 0; transform: translate(-50%, -50%) rotate(-235deg) translateX(0.44em) rotate(235deg); }
}

.hero-bottom {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(330px, 0.76fr);
  gap: 60px;
  align-items: end;
  padding: clamp(30px, 4vw, 62px) 0 clamp(42px, 5vw, 74px);
}

.hero-thesis {
  align-self: center;
}

.display-line {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.1vw, 5.1rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.display-line-offset {
  color: transparent;
  -webkit-text-stroke: 2px var(--signal);
}

.hero-copy {
  padding-left: 26px;
  border-left: 2px solid rgba(255, 253, 244, 0.55);
}

.hero-copy > p:first-child {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.55;
}

.hero-copy strong {
  font-weight: 950;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.hero .button-ink {
  border-color: var(--paper-bright);
  background: var(--paper-bright);
  color: var(--ink);
}

.hero .button-ghost {
  border-color: var(--paper-bright);
  color: var(--paper-bright);
}

.hero .button:hover {
  box-shadow: 5px 5px 0 var(--reward);
}

.hero-promise {
  margin: 17px 0 0;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b8bab0;
}

.hero-receipt {
  position: relative;
  z-index: 5;
  background: var(--ink);
  color: var(--paper-bright);
  border-top: 1px solid var(--line-dark);
}

.hero-receipt-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  min-height: 74px;
}

.receipt-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-receipt strong {
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-receipt a {
  color: var(--reward);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* Machine */

.machine-section {
  position: relative;
  overflow: clip;
  padding: 100px 0 110px;
  background: var(--ink);
  color: var(--paper-bright);
}

.machine-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -20vw;
  width: 70vw;
  height: 70vw;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.machine-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.32fr 1fr 0.62fr;
  gap: 44px;
  align-items: end;
  padding-bottom: 64px;
}

.machine-intro h2,
.proof-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 7.8vw, 8rem);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.machine-intro h2 em {
  color: var(--reward);
  font-style: normal;
}

.machine-intro h2 {
  font-size: clamp(3.5rem, 5.7vw, 5.8rem);
}

.machine-intro > p:last-child {
  margin: 0;
  color: #b8bab0;
  font-size: 1rem;
  line-height: 1.6;
}

.machine-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(44px, 5vw, 72px);
  align-items: center;
}

.machine-visual {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 0;
  padding: 0;
}

.machine-board {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(rgba(255, 253, 244, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 244, 0.045) 1px, transparent 1px),
    var(--ink-soft);
  background-size: 32px 32px;
  box-shadow: 16px 16px 0 var(--signal);
}

.board-meta {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 20px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.59rem;
  letter-spacing: 0.04em;
}

.board-meta span {
  color: #8d8f86;
}

.board-meta i {
  color: var(--reward);
  font-style: normal;
}

.machine-svg {
  width: 100%;
  aspect-ratio: 1;
  overflow: visible;
}

.machine-guides circle,
.machine-guides line {
  fill: none;
  stroke: rgba(255, 253, 244, 0.09);
  stroke-width: 1;
}

.machine-rotor {
  transform-origin: 380px 380px;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.rotor-outer,
.rotor-inner,
.machine-rotor line {
  fill: rgba(11, 12, 10, 0.72);
  stroke: var(--paper-bright);
  stroke-width: 4;
}

.rotor-inner {
  stroke: var(--signal);
  stroke-width: 8;
}

.machine-rotor line {
  stroke-width: 2;
}

.rotor-hub {
  fill: var(--reward);
  stroke: var(--ink);
  stroke-width: 7;
}

.machine-section[data-machine-step="2"] .machine-rotor {
  transform: rotate(70deg);
}

.machine-section[data-machine-step="3"] .machine-rotor {
  transform: rotate(170deg);
}

.machine-section[data-machine-step="4"] .machine-rotor {
  transform: rotate(290deg);
}

.route {
  fill: none;
  stroke: rgba(255, 253, 244, 0.21);
  stroke-linecap: square;
  stroke-width: 8;
  transition: stroke 350ms ease, opacity 350ms ease, stroke-width 350ms ease;
}

.route-weth,
.route-payout {
  marker-end: url(#arrowReward);
}

.route-burn {
  marker-end: url(#arrowBurn);
}

#arrowReward path {
  fill: var(--reward);
}

#arrowBurn path {
  fill: var(--signal);
}

.machine-section[data-machine-step="1"] .route-trade,
.machine-section[data-machine-step="2"] .route-trade,
.machine-section[data-machine-step="2"] .route-weth,
.machine-section[data-machine-step="2"] .route-burn,
.machine-section[data-machine-step="3"] .route-weth,
.machine-section[data-machine-step="3"] .route-burn,
.machine-section[data-machine-step="4"] .route-weth,
.machine-section[data-machine-step="4"] .route-payout {
  stroke-width: 11;
  opacity: 1;
}

.machine-section[data-machine-step="1"] .route-trade {
  stroke: var(--paper-bright);
}

.machine-section[data-machine-step="2"] .route-weth,
.machine-section[data-machine-step="3"] .route-weth,
.machine-section[data-machine-step="4"] .route-weth,
.machine-section[data-machine-step="4"] .route-payout {
  stroke: var(--reward);
}

.machine-section[data-machine-step="2"] .route-burn,
.machine-section[data-machine-step="3"] .route-burn {
  stroke: var(--signal);
}

.machine-node rect {
  fill: var(--ink);
  stroke: rgba(255, 253, 244, 0.3);
  stroke-width: 2;
  transition: fill 280ms ease, stroke 280ms ease, transform 280ms ease;
}

.machine-node text {
  fill: #92958b;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.machine-node .node-main {
  fill: var(--paper-bright);
  font-family: var(--font-display);
  font-size: 25px;
  letter-spacing: -0.05em;
}

.machine-section[data-machine-step="1"] .node-trade rect,
.machine-section[data-machine-step="2"] .node-weth rect,
.machine-section[data-machine-step="2"] .node-burn rect,
.machine-section[data-machine-step="3"] .node-weth rect,
.machine-section[data-machine-step="3"] .node-burn rect,
.machine-section[data-machine-step="4"] .node-holders rect {
  stroke: var(--reward);
  stroke-width: 4;
}

.machine-section[data-machine-step="2"] .node-burn rect,
.machine-section[data-machine-step="3"] .node-burn rect {
  stroke: var(--signal);
}

.route-token {
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.route-token circle {
  fill: var(--paper-bright);
  filter: url(#machineGlow);
}

.route-token text {
  fill: var(--paper-bright);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
}

.route-token-weth circle,
.route-token-payout circle {
  fill: var(--reward);
}

.route-token-burn circle {
  fill: var(--signal);
}

.machine-section[data-machine-step="1"] .route-token-trade,
.machine-section[data-machine-step="2"] .route-token-weth,
.machine-section[data-machine-step="2"] .route-token-burn,
.machine-section[data-machine-step="3"] .route-token-weth,
.machine-section[data-machine-step="3"] .route-token-burn,
.machine-section[data-machine-step="4"] .route-token-payout {
  opacity: 1;
}

.board-output {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 58px;
  padding: 12px 16px;
  border-top: 1px solid var(--line-dark);
  background: rgba(11, 12, 10, 0.86);
}

.board-output span {
  color: var(--reward);
  font-family: var(--font-mono);
  font-size: 0.57rem;
  letter-spacing: 0.04em;
}

.board-output strong {
  font-size: 0.76rem;
  text-align: right;
}

.machine-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
  padding: 0;
}

.machine-step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 26px 22px 24px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  opacity: 0.62;
  transition: background-color 220ms ease, opacity 220ms ease;
}

.machine-step:nth-child(2n) {
  border-right: 0;
}

.machine-step:nth-child(n + 3) {
  border-bottom: 0;
}

.machine-section[data-machine-step="1"] .machine-step[data-step="1"],
.machine-section[data-machine-step="2"] .machine-step[data-step="2"],
.machine-section[data-machine-step="3"] .machine-step[data-step="3"],
.machine-section[data-machine-step="4"] .machine-step[data-step="4"] {
  opacity: 1;
  background: rgba(255, 253, 244, 0.055);
}

.step-index {
  margin-bottom: 12px;
  color: var(--reward);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.step-command {
  margin: 0 0 9px;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.machine-step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.4vw, 2.65rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.machine-step > p:not(.step-command) {
  max-width: 520px;
  margin: 14px 0 0;
  color: #c7c9c0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.machine-step small {
  margin-top: 15px;
  color: #8c8e84;
  font-family: var(--font-mono);
  font-size: 0.66rem;
}

/* Proof */

.proof-section {
  position: relative;
  padding: 100px 0 110px;
  overflow: clip;
  background: var(--paper);
}

.proof-section::before {
  content: "VERIFIED";
  position: absolute;
  top: 70px;
  right: -0.07em;
  color: rgba(11, 12, 10, 0.04);
  font-family: var(--font-display);
  font-size: 17vw;
  line-height: 1;
  letter-spacing: -0.09em;
}

.proof-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.proof-heading .kicker {
  margin-bottom: 34px;
}

.proof-heading h2 em {
  color: var(--signal);
  font-style: normal;
  -webkit-text-stroke: 2px var(--ink);
}

.proof-status {
  padding: 24px 0 6px 24px;
  border-left: 2px solid var(--ink);
}

.proof-status span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.proof-status p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.proof-primary {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr 240px;
  gap: 34px;
  align-items: center;
  min-height: 280px;
  padding: 28px 34px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.pool-orbit {
  position: relative;
  display: grid;
  place-items: center;
}

.pool-orbit svg {
  width: 184px;
  animation: none;
}

.pool-orbit circle {
  fill: none;
  stroke: var(--line);
  stroke-width: 1;
}

.pool-orbit path {
  fill: none;
  stroke: var(--signal);
  stroke-linecap: square;
  stroke-width: 8;
}

.pool-orbit span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--reward);
  font-family: var(--font-display);
  font-size: 1.16rem;
}

.pool-copy > span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pool-copy > div {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-top: 10px;
}

.pool-copy strong {
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 8.2vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.pool-copy b {
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.pool-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.pool-readiness {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 24px;
  border: 1px solid var(--ink);
  background: var(--paper-bright);
  box-shadow: 7px 7px 0 var(--ink);
}

.pool-readiness span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.pool-readiness > strong {
  font-size: 0.86rem;
}

.pool-readiness small {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  line-height: 1.4;
}

.proof-metrics {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.8fr;
  border-bottom: 2px solid var(--ink);
}

.proof-metrics article {
  min-width: 0;
  padding: 28px 26px 32px;
  border-right: 1px solid var(--line);
}

.proof-metrics article:last-child {
  border-right: 0;
}

.proof-metrics span,
.proof-metrics small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.64rem;
}

.proof-metrics span {
  font-weight: 800;
  text-transform: uppercase;
}

.proof-metrics strong {
  display: block;
  overflow: hidden;
  margin: 18px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  text-overflow: ellipsis;
}

.proof-metrics small {
  color: var(--muted);
  line-height: 1.45;
}

.chart-panel {
  margin: 58px 0 0;
  border: 2px solid var(--ink);
  background: var(--paper-bright);
  box-shadow: 12px 12px 0 var(--signal);
}

.chart-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 34px 24px;
  border-bottom: 1px solid var(--line);
}

.chart-kicker {
  margin: 0 0 10px;
  color: var(--signal-dark);
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 900;
}

.chart-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.period-switch {
  display: flex;
  border: 1px solid var(--ink);
}

.period-switch button {
  min-width: 58px;
  min-height: 42px;
  padding: 0 12px;
  border-right: 1px solid var(--ink);
  background: transparent;
  font-family: var(--font-mono);
  font-size: 0.67rem;
  font-weight: 900;
  cursor: pointer;
}

.period-switch button:last-child {
  border-right: 0;
}

.period-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--reward);
}

.chart-current {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 24px 34px 0;
}

.chart-current > strong {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3.2vw, 3.25rem);
}

.chart-current > span {
  color: var(--reward-dark);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 900;
}

.chart-current > span[data-direction="down"] {
  color: var(--signal);
}

.chart-legend {
  display: flex;
  gap: 20px;
  margin-left: auto;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.6rem;
}

.chart-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.legend-line {
  width: 23px;
  height: 3px;
  background: var(--signal);
}

.legend-marker {
  width: 11px;
  height: 11px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--reward);
}

.chart-wrap {
  position: relative;
  padding: 12px 24px 0;
}

.reward-chart {
  width: 100%;
}

.grid-lines line {
  stroke: rgba(11, 12, 10, 0.12);
  stroke-width: 1;
  stroke-dasharray: 4 7;
}

.y-axis text,
.x-axis text {
  fill: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
}

.payout-marker {
  cursor: help;
  outline: none;
  transform-box: fill-box;
  transform-origin: center;
  transition: filter 140ms ease;
}

.payout-marker:hover,
.payout-marker:focus {
  filter: drop-shadow(0 0 5px rgba(11, 12, 10, 0.45));
}

.payout-marker-halo {
  fill: var(--reward);
  stroke: var(--ink);
  stroke-width: 2;
}

.payout-marker-core {
  fill: var(--ink);
}

.chart-tooltip {
  position: absolute;
  z-index: 3;
  width: max-content;
  max-width: min(320px, calc(100% - 24px));
  padding: 10px 12px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-bright);
  box-shadow: 5px 5px 0 var(--reward);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.45;
  pointer-events: none;
  transform: translate(-50%, -100%);
}

.area-path {
  fill: rgba(255, 75, 18, 0.07);
}

.market-cap-path {
  fill: none;
  stroke: var(--signal);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 4;
}

.last-point rect {
  fill: var(--signal);
}

.chart-status {
  position: absolute;
  left: 50%;
  bottom: 54px;
  max-width: calc(100% - 96px);
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 244, 0.94);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 800;
  text-align: center;
  transform: translateX(-50%);
}

.chart-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.chart-foot span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.6rem;
}

.chart-foot span:last-child {
  border-right: 0;
}

.chart-foot strong {
  color: var(--ink);
  font-size: 0.66rem;
}

/* Ledger */

.ledger-section {
  position: relative;
  padding: 96px 0 104px;
  overflow: clip;
  background: var(--reward);
}

.ledger-section::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -160px;
  width: 640px;
  height: 640px;
  border: 88px solid rgba(11, 12, 10, 0.06);
  border-radius: 50%;
}

.ledger-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
}

.round-history {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 22px 0 18px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 900;
}

.round-history[hidden] {
  display: none;
}

.round-history-tabs {
  display: flex;
  flex: 1;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scrollbar-width: thin;
}

.round-history-tabs button {
  flex: 0 0 auto;
  min-width: 92px;
  padding: 10px 12px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 900;
  cursor: pointer;
}

.round-history-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: var(--reward);
}

.ledger-heading .kicker {
  color: var(--ink);
}

.round-receipt {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 38px 64px;
  margin-bottom: 58px;
  padding: 44px 48px;
  overflow: visible;
  background: var(--ink);
  color: var(--paper-bright);
  box-shadow: 15px 15px 0 var(--signal);
}

.receipt-teeth {
  position: absolute;
  right: 0;
  left: 0;
  height: 14px;
  background:
    linear-gradient(135deg, transparent 10px, var(--ink) 0) 0 0 / 20px 20px repeat-x,
    linear-gradient(45deg, transparent 10px, var(--ink) 0) 10px 0 / 20px 20px repeat-x;
}

.receipt-teeth-top {
  top: -13px;
  transform: rotate(180deg);
}

.receipt-teeth-bottom {
  bottom: -13px;
}

.round-receipt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  grid-column: 1 / -1;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(255, 253, 244, 0.35);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.round-receipt-head span {
  color: var(--reward);
  letter-spacing: 0.05em;
}

.round-number span {
  display: block;
  margin-bottom: 10px;
  color: #8d9086;
  font-family: var(--font-mono);
  font-size: 0.64rem;
}

.round-number strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(6rem, 11vw, 10rem);
  line-height: 0.7;
  letter-spacing: -0.08em;
}

.round-receipt dl {
  display: grid;
  align-content: center;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.round-receipt dl div {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
}

.round-receipt dt {
  color: #92948b;
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.round-receipt dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.77rem;
  font-weight: 900;
  text-align: right;
}

.round-receipt > p {
  margin: 0;
  color: #b9bbb2;
  font-size: 0.9rem;
}

.receipt-proof {
  justify-self: end;
  color: var(--reward);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.receipt-batches {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px dashed rgba(255, 253, 244, 0.35);
}

.receipt-batches[hidden] {
  display: none;
}

.receipt-batches::before {
  content: "BATCH PROOFS";
  margin-right: 6px;
  color: #92948b;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 900;
}

.receipt-batches a {
  padding: 8px 10px;
  border: 1px solid rgba(255, 253, 244, 0.32);
  color: var(--reward);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 900;
}

.receipt-batches a:hover,
.receipt-batches a:focus-visible {
  border-color: var(--reward);
}

.payouts {
  position: relative;
  background: var(--paper-bright);
  border: 2px solid var(--ink);
}

.payouts-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 34px;
  border-bottom: 2px solid var(--ink);
}

.payouts-head span {
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.payouts-head h3 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.payouts-head p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: right;
}

.payout-table-wrap {
  overflow-x: auto;
}

.payout-table {
  width: 100%;
  border-collapse: collapse;
}

.payout-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.payout-table th {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  text-align: left;
}

.payout-table td {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.payout-table tbody tr {
  transition: background-color 140ms ease;
}

.payout-table tbody tr:hover {
  background: rgba(215, 255, 67, 0.24);
}

.payout-rank {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--reward);
  font-size: 0.56rem;
}

.payout-amount {
  font-weight: 900;
}

.weight-meter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.weight-meter i {
  display: inline-block;
  min-width: 3px;
  height: 4px;
  background: var(--signal);
}

.weight-bar.weight-1 { width: 9px; }
.weight-bar.weight-2 { width: 18px; }
.weight-bar.weight-3 { width: 27px; }
.weight-bar.weight-4 { width: 36px; }
.weight-bar.weight-5 { width: 45px; }
.weight-bar.weight-6 { width: 54px; }
.weight-bar.weight-7 { width: 63px; }
.weight-bar.weight-8 { width: 72px; }
.weight-bar.weight-9 { width: 81px; }
.weight-bar.weight-10 { width: 90px; }

.tx-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--ink);
  font-weight: 900;
}

.tx-link:hover {
  background: var(--ink);
  color: var(--reward);
}

.payout-empty td {
  padding-block: 48px;
  color: var(--muted);
  text-align: center;
}

.proof-note {
  margin: 0;
  padding: 20px 34px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

/* Compact public guardrails */

.guardrails {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 52px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.guardrails article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 24px 26px;
  border-right: 1px solid rgba(11, 12, 10, 0.38);
}

.guardrails article:last-child {
  border-right: 0;
}

.guardrails article > span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 900;
}

.guardrails h3 {
  margin: 0 0 7px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.guardrails p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
}

/* Contracts and footer */

.contract-strip {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.contract-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 0.7fr 0.7fr;
  gap: 24px;
}

.contract-grid > div {
  min-width: 0;
}

.contract-grid > div > span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.57rem;
  text-transform: uppercase;
}

.contract-grid button,
.contract-grid strong {
  display: flex;
  align-items: center;
  max-width: 100%;
  min-height: 32px;
  padding: 0;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 0.67rem;
  text-align: left;
}

.contract-grid button {
  gap: 10px;
  cursor: pointer;
}

.contract-grid code {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-grid > p {
  position: absolute;
  right: 0;
  bottom: -30px;
  margin: 0;
  color: var(--signal-dark);
  font-family: var(--font-mono);
  font-size: 0.58rem;
}

.site-footer {
  padding: 82px 0 44px;
  background: var(--signal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.45fr 0.85fr;
  gap: 70px;
}

.footer-wordmark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.8;
  letter-spacing: -0.09em;
}

.footer-wordmark span {
  color: transparent;
  -webkit-text-stroke: 3px var(--ink);
}

.footer-grid > div:first-child p {
  margin: 22px 0 0;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.82rem;
  font-weight: 800;
}

.site-footer nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.footer-legal {
  align-self: end;
}

.footer-legal p {
  margin: 0 0 12px;
  font-size: 0.76rem;
  line-height: 1.45;
}

.footer-legal p:last-child {
  margin: 24px 0 0;
  font-family: var(--font-mono);
  font-size: 0.6rem;
}

/* Responsive */

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 40px, 960px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 20px;
  }

  .site-header nav {
    justify-self: center;
    gap: 18px;
  }

  .header-state {
    display: none;
  }

  .hero-wordmark {
    font-size: 20vw;
  }

  .hero-bottom {
    grid-template-columns: 1fr 0.8fr;
    gap: 34px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .machine-intro {
    grid-template-columns: 0.35fr 1fr;
  }

  .machine-intro > p:last-child {
    grid-column: 2;
  }

  .machine-story {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
    gap: 48px;
  }

  .machine-board {
    box-shadow: 10px 10px 0 var(--signal);
  }

  .proof-primary {
    grid-template-columns: 200px 1fr;
  }

  .pool-orbit svg {
    width: 180px;
  }

  .pool-readiness {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .round-receipt {
    gap: 44px;
    padding: 46px;
  }

  .contract-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 28px;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: calc(100% - 30px);
    --header-height: 58px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: var(--header-height);
    padding-inline: 15px;
  }

  .site-header nav,
  .header-state {
    display: none;
  }

  .mini-brand {
    font-size: 1.05rem;
  }

  .button-small {
    min-height: 38px;
    font-size: 0.6rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 22px);
  }

  .hero::before {
    top: 12%;
    right: -47%;
    width: 125vw;
  }

  .hero::after {
    top: 18%;
    right: -28%;
    width: 94vw;
  }

  .hero-grid {
    background-size: 38px 38px;
  }

  .hero-top {
    margin-bottom: 34px;
  }

  .hero-chain {
    font-size: 0.55rem;
  }

  .hero-top .kicker span {
    display: none;
  }

  .hero-top .kicker {
    font-size: 0.57rem;
  }

  .hero-wordmark {
    font-size: 20vw;
    line-height: 0.82;
  }

  .wheel-token {
    display: none;
  }

  .hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 34px;
    padding: 52px 0 44px;
  }

  .hero-thesis {
    order: 0;
  }

  .display-line {
    font-size: clamp(2.55rem, 12.8vw, 4.2rem);
  }

  .display-line-offset {
    -webkit-text-stroke-width: 1.4px;
  }

  .hero-copy {
    order: 1;
    padding: 20px 0 0;
    border-top: 2px solid rgba(255, 253, 244, 0.55);
    border-left: 0;
  }

  .hero-copy > p:first-child {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    gap: 12px;
    min-width: 0;
    min-height: 50px;
    padding-inline: 14px;
    font-size: 0.64rem;
  }

  .hero-receipt-inner {
    grid-template-columns: 1fr auto;
    gap: 8px 18px;
    min-height: 92px;
    padding-block: 14px;
  }

  .receipt-label {
    grid-column: 1 / -1;
    font-size: 0.55rem;
  }

  .hero-receipt strong {
    font-size: 0.62rem;
  }

  .hero-receipt a {
    font-size: 0.6rem;
  }

  .machine-section,
  .proof-section,
  .ledger-section {
    padding-top: 88px;
  }

  .machine-section {
    overflow: visible;
  }

  .machine-section::before {
    display: none;
  }

  .machine-intro {
    display: block;
    padding-bottom: 54px;
  }

  .machine-intro .kicker,
  .proof-heading .kicker,
  .ledger-heading .kicker {
    margin-bottom: 28px;
  }

  .machine-intro h2,
  .proof-heading h2 {
    font-size: clamp(3.15rem, 16vw, 5.5rem);
  }

  .machine-intro > p:last-child {
    margin-top: 30px;
  }

  .machine-story {
    display: block;
  }

  .machine-visual {
    position: sticky;
    top: var(--header-height);
    z-index: 8;
    min-height: auto;
    height: auto;
    aspect-ratio: auto;
    margin-inline: -15px;
    padding: 12px 15px 28px;
    background: var(--ink);
    box-shadow: 0 18px 0 var(--ink);
    isolation: isolate;
  }

  .machine-board {
    width: min(100%, 390px);
    height: auto;
    margin-inline: auto;
    box-shadow: 7px 7px 0 var(--signal);
  }

  .machine-svg {
    width: 100%;
    height: auto;
    margin: auto;
  }

  .board-meta {
    top: 10px;
    right: 12px;
    left: 12px;
    font-size: 0.5rem;
  }

  .board-output {
    right: 12px;
    bottom: 10px;
    left: 12px;
    min-height: 44px;
    padding: 8px 10px;
  }

  .board-output span {
    display: none;
  }

  .board-output strong {
    width: 100%;
    font-size: 0.62rem;
    text-align: left;
  }

  .machine-steps {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 42px;
    padding-bottom: 0;
  }

  .machine-step {
    position: relative;
    z-index: 6;
    top: auto;
    min-height: 0;
    padding: 26px 20px 24px;
    border-left: 0;
    background: var(--ink);
    opacity: 0.68;
  }

  .machine-step,
  .machine-step:nth-child(2n),
  .machine-step:nth-child(n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .machine-step:last-child {
    border-bottom: 0;
  }

  .machine-step h3 {
    font-size: clamp(1.75rem, 7vw, 2.7rem);
  }

  .machine-step > p:not(.step-command) {
    margin-top: 13px;
    font-size: 0.86rem;
  }

  .machine-step small {
    margin-top: 14px;
  }

  .proof-heading {
    display: block;
  }

  .proof-heading {
    margin-bottom: 54px;
  }

  .proof-status {
    margin-top: 38px;
  }

  .proof-primary {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 22px;
    min-height: 0;
    padding: 28px 0;
  }

  .pool-orbit svg {
    width: 112px;
  }

  .pool-orbit span {
    width: 54px;
    height: 54px;
    font-size: 0.76rem;
  }

  .pool-copy > span {
    font-size: 0.58rem;
  }

  .pool-copy > div {
    display: block;
  }

  .pool-copy strong {
    display: block;
    overflow-wrap: anywhere;
    font-size: clamp(2.6rem, 13vw, 4.5rem);
    white-space: nowrap;
  }

  .pool-copy b {
    display: block;
    margin-top: 6px;
    font-size: 0.7rem;
  }

  .pool-readiness {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .pool-readiness small {
    grid-column: 1 / -1;
  }

  .proof-metrics {
    grid-template-columns: 1fr;
  }

  .proof-metrics article {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 18px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-metrics article:last-child {
    border-bottom: 0;
  }

  .proof-metrics strong {
    grid-row: 1 / 3;
    grid-column: 2;
    align-self: center;
    margin: 0;
    font-size: clamp(2rem, 10vw, 3rem);
    text-align: right;
  }

  .chart-panel {
    margin-top: 60px;
    box-shadow: 7px 7px 0 var(--signal);
  }

  .chart-head {
    display: block;
    padding: 24px 18px;
  }

  .chart-head h3 {
    font-size: 1.7rem;
  }

  .period-switch {
    margin-top: 22px;
  }

  .period-switch button {
    flex: 1;
  }

  .chart-current {
    flex-wrap: wrap;
    padding: 20px 18px 0;
  }

  .chart-legend {
    width: 100%;
    margin: 6px 0 0;
  }

  .chart-wrap {
    padding-inline: 8px;
    overflow: visible;
  }

  .reward-chart {
    min-width: 0;
    width: 100%;
  }

  .y-axis text,
  .x-axis text {
    font-size: 16px;
  }

  .market-cap-path {
    stroke-width: 6;
  }

  .chart-foot {
    grid-template-columns: 1fr;
  }

  .chart-foot span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .chart-foot span:last-child {
    border-bottom: 0;
  }

  .ledger-section {
    padding-bottom: 78px;
  }

  .ledger-heading {
    margin-bottom: 28px;
  }

  .round-history {
    display: block;
  }

  .round-history > span {
    display: block;
    margin-bottom: 10px;
  }

  .round-receipt {
    display: block;
    margin-bottom: 48px;
    padding: 36px 24px;
    box-shadow: 8px 8px 0 var(--signal);
  }

  .round-receipt-head {
    align-items: start;
    font-size: 0.58rem;
  }

  .round-receipt-head strong {
    text-align: right;
  }

  .round-number {
    margin: 48px 0;
  }

  .round-number strong {
    font-size: clamp(6rem, 34vw, 10rem);
  }

  .round-receipt > p {
    margin-top: 28px;
  }

  .receipt-proof {
    display: inline-flex;
    margin-top: 26px;
  }

  .payouts-head {
    display: block;
    padding: 24px 18px;
  }

  .payouts-head p {
    margin-top: 18px;
    text-align: left;
  }

  .payout-table-wrap {
    overflow: visible;
  }

  .payout-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .payout-table,
  .payout-table tbody,
  .payout-table tr,
  .payout-table td {
    display: block;
    width: 100%;
  }

  .payout-table tbody tr {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--line);
    padding: 18px 76px 18px 18px;
  }

  .payout-table td {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: 9px 0;
    border-bottom: 0;
  }

  .payout-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 0.52rem;
  }

  .payout-table td:first-child {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--line);
  }

  .payout-table td:first-child::before {
    display: none;
  }

  .payout-table td:last-child {
    position: absolute;
    top: 17px;
    right: 16px;
    width: auto;
    padding: 0;
    align-items: flex-end;
  }

  .payout-table td:last-child::before {
    display: none;
  }

  .weight-meter {
    display: block;
  }

  .weight-meter i {
    display: none;
  }

  .payout-empty {
    display: block !important;
  }

  .payout-empty td {
    display: block !important;
    padding: 24px 0 !important;
    border: 0 !important;
    text-align: center;
  }

  .proof-note {
    padding-inline: 18px;
  }

  .guardrails {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .guardrails article {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 12, 10, 0.38);
  }

  .guardrails article:last-child {
    border-bottom: 0;
  }

  .contract-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 64px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 46px 24px;
  }

  .footer-legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-wordmark {
    font-size: 19.6vw;
  }

  .hero-receipt a span {
    display: none;
  }

  .proof-primary {
    grid-template-columns: 92px 1fr;
  }

  .pool-orbit svg {
    width: 92px;
  }

  .pool-readiness {
    grid-template-columns: 1fr;
  }

  .pool-readiness small {
    grid-column: auto;
  }

  .payout-table tbody tr {
    grid-template-columns: 1fr;
  }

  .payout-table td:first-child {
    grid-column: auto;
  }

  .payout-table td:last-child {
    align-items: flex-end;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .wheel-ring {
    transform: rotate(24deg);
  }

  .wordmark-wheel {
    cursor: default;
  }

  .machine-step {
    opacity: 1;
  }
}

@media (forced-colors: active) {
  .hero-grid,
  .hero::before,
  .hero::after,
  .machine-section::before,
  .ledger-section::before {
    display: none;
  }

  .button,
  .machine-board,
  .chart-panel,
  .payouts,
  .pool-readiness {
    box-shadow: none;
  }
}
