@font-face {
  font-family: "Inter Local";
  src: url("./assets/inter-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter Local";
  src: url("./assets/inter-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter Local";
  src: url("./assets/inter-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter Local";
  src: url("./assets/inter-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader Local";
  src: url("./assets/newsreader-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Local";
  src: url("./assets/jetbrains-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Local";
  src: url("./assets/jetbrains-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --black: #000000;
  --night: #110e08;
  --night-raised: #1b1915;
  --acid: #ccff00;
  --acid-hover: #b7e600;
  --acid-active: #9ec700;
  --white: #ffffff;
  --paper: #f4f6f1;
  --paper-strong: #e8ece5;
  --ink: #0b0f0c;
  --body: #4d554e;
  --muted: #747b74;
  --line: #d7ddd6;
  --line-dark: #4d4a46;
  --danger: #cf202f;
  --sans: "Inter Local", Helvetica, Arial, sans-serif;
  --serif: "Newsreader Local", Georgia, serif;
  --mono: "JetBrains Local", "SFMono-Regular", Consolas, monospace;
  --max-width: 1200px;
  --header-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
}

h1,
h2,
h3,
p,
dl,
dd,
ol,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

.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;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--acid);
  color: var(--black);
  border-radius: 4px;
  font-weight: 700;
}

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

.section-shell,
.nav-shell,
.metrics-shell,
.footer-shell,
.hero-shell,
.token-ticker-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding-inline: 24px;
}

/* Token ticker — the contract-address strip pinned above the header. Black to match the
   nav; muted in the honest pending state, acid accents once a real CA resolves. */
.token-ticker {
  background: var(--black);
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
}
.token-ticker-shell {
  min-height: 40px;
  padding-block: 7px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.token-ticker-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.token-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  flex: 0 0 auto;
}
.token-ticker.is-live .token-dot {
  background: var(--acid);
  animation: token-pulse 1.8s ease-out infinite;
}
@keyframes token-pulse {
  0% { box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.55); }
  70% { box-shadow: 0 0 0 7px rgba(204, 255, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(204, 255, 0, 0); }
}
.token-ticker-ca {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin-right: auto;
}
.token-ca-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  white-space: nowrap;
}
.token-ticker-ca code {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--white);
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
}
.token-ticker.is-live .token-ticker-ca code {
  color: var(--acid);
}
.token-ticker-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.token-ticker-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 26px;
  padding-inline: 10px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease;
}
.token-ticker-button:hover {
  border-color: var(--acid);
  color: var(--acid);
}
.token-ticker-button i,
.token-ticker-button svg {
  width: 14px;
  height: 14px;
}
@media (max-width: 640px) {
  .token-ticker-shell {
    gap: 10px 14px;
  }
  .token-ca-label,
  .token-ticker-button span {
    display: none;
  }
  .token-ticker-button {
    padding-inline: 8px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--black);
  border-bottom: 1px solid var(--line-dark);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

/* Ball logo mark — the transparent-bg acid ball PNG replaces the old "R" circle in the
   header and footer. No background/border-radius: the artwork is already a round ball. */
.brand-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: color 150ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="location"] {
  color: var(--acid);
}

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

.network-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #b7b8b5;
  font-size: 12px;
  white-space: nowrap;
}

.network-label > span[aria-hidden="true"],
.archive-status > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
}

.launch-button,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 150ms ease,
    border-color 150ms ease,
    color 150ms ease,
    opacity 150ms ease;
}

.launch-button {
  min-height: 40px;
  padding: 8px 16px;
  background: var(--acid);
  color: var(--night);
}

.launch-button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.launch-button svg,
.button svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.button-primary {
  background: var(--acid);
  color: var(--night);
  border-color: var(--acid);
}

.button-primary:hover {
  background: var(--acid-hover);
  border-color: var(--acid-hover);
}

.button-primary:active {
  background: var(--acid-active);
  border-color: var(--acid-active);
}

.button-outline {
  background: rgba(0, 0, 0, 0.25);
  border-color: var(--acid);
  color: var(--acid);
}

.button-outline:hover {
  background: var(--acid);
  color: var(--night);
}

.button-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.button-dark-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.icon-button {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    background-color 150ms ease,
    border-color 150ms ease,
    color 150ms ease;
}

.icon-button:hover {
  background: var(--paper-strong);
  border-color: var(--ink);
}

.icon-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.icon-button-dark {
  color: var(--white);
  border-color: #383833;
}

.icon-button-dark:hover {
  background: #25251f;
  border-color: var(--acid);
  color: var(--acid);
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  z-index: 20;
  transform: translateX(-50%) translateY(4px);
  padding: 5px 8px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 120ms ease,
    transform 120ms ease;
}

[data-tooltip]:hover::after,
[data-tooltip]:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.menu-button {
  display: none;
  color: var(--white);
  border-color: #3d3b37;
}

.menu-button:hover {
  color: var(--black);
  background: var(--acid);
  border-color: var(--acid);
}

.menu-backdrop {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 110;
  background: rgba(0, 0, 0, 0.7);
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  z-index: 120;
  width: min(92vw, 430px);
  padding: 24px;
  background: var(--acid);
  color: var(--black);
  overflow-y: auto;
}

.mobile-menu-head,
.mobile-menu-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-menu nav {
  margin-top: 42px;
  border-top: 1px solid rgba(0, 0, 0, 0.35);
}

.mobile-menu nav a {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}

.mobile-menu nav a span {
  font-family: var(--mono);
  font-size: 11px;
}

.mobile-menu-status {
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.35);
  font-size: 13px;
}

.hero {
  position: relative;
  height: calc(100svh - 104px);
  min-height: 660px;
  max-height: 820px;
  background:
    radial-gradient(rgba(10, 22, 40, 0.05) 1px, transparent 1px) 0 0 / 22px 22px,
    radial-gradient(ellipse at 50% 32%, #fbf7ee, #f2e9dc 72%);
  color: var(--ink);
  overflow: hidden;
}

/* Pure-CSS jackpot sphere sits in the middle hero row with the pot text inside it. */
.hero-ball {
  grid-row: 2;
  align-self: center;
  justify-self: center;
  width: min(58vw, 46vh, 420px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 58% 44% at 50% 42%, rgba(255, 255, 255, 0.34), transparent 62%),
    radial-gradient(circle at 30% 23%, rgba(255, 255, 255, 0.9), transparent 19%),
    radial-gradient(circle at 36% 31%, #ecff92, #ccff00 44%, #a6ce07 72%, #47580b);
  box-shadow: 0 46px 74px -34px rgba(120, 160, 0, 0.55);
  animation: heroBallFloat 7s ease-in-out infinite;
}

@keyframes heroBallFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

/* Restrained scroll reveal: a short lift + fade, applied once via IntersectionObserver. */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-in {
  opacity: 1;
  transform: none;
}

.hero-shell {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  padding-block: 26px 22px;
  text-align: center;
}

.hero-intro {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.status-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
  color: #636860;
  font-size: 12px;
  text-transform: uppercase;
}

.status-badge,
.state-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-badge {
  border: 1px solid #397200;
  color: #397200;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 500;
  line-height: 0.94;
}

.hero-statement {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
}

.prize-readout {
  z-index: 2;
  width: min(320px, 82%);
  text-align: center;
}

.prize-readout .readout-label {
  color: #40500a;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.readout-label,
.target-copy > span,
.target-copy > small,
.metric > span,
.metric > small,
.section-index,
.workspace-head span,
.formula-row p,
.rounds-heading + p,
.winning-owner > span,
.panel-titlebar,
.verifier-head span,
.range-control > span:first-child,
.footer-status span,
.footer-links > div > span {
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
}

.prize-readout > div {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
}

.prize-readout strong {
  font-family: var(--serif);
  font-size: clamp(56px, 12vw, 76px);
  line-height: 0.86;
  color: #141a00;
}

.prize-readout > div span {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 700;
}

.prize-readout p {
  margin-top: 10px;
  color: #35420a;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-footer {
  position: relative;
  z-index: 2;
  grid-row: 3;
  align-self: end;
  width: 100%;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 14px;
}

.target-window {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 7px;
}

.target-copy {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  color: #666963;
}

.target-copy > strong {
  color: var(--ink);
  font-size: 15px;
}

.target-copy > small {
  color: #747770;
  text-transform: none;
}

.countdown {
  display: grid;
  grid-template-columns: 86px auto 86px;
  align-items: start;
  justify-content: center;
  gap: 8px;
}

.countdown > div {
  display: grid;
  justify-items: center;
  gap: 2px;
}

.countdown strong {
  font-family: var(--mono);
  font-size: 40px;
  line-height: 1;
}

.countdown span {
  color: #747770;
  font-size: 9px;
  text-transform: uppercase;
}

.countdown .countdown-separator {
  color: #397200;
  font-family: var(--mono);
  font-size: 38px;
  font-weight: 700;
  line-height: 0.95;
}

.hero-actions {
  width: min(100%, 440px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-actions .button {
  width: 100%;
}

.hero .button-outline {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.hero .button-outline:hover {
  border-color: #292d27;
  background: #292d27;
  color: var(--white);
}

.metrics-band {
  background: var(--acid);
  color: var(--black);
}

/* Total burned banner — kept on-brand in acid green (the flame icon carries the "burn"
   meaning). A subtle acid gradient + hairline top border give it its own identity so it
   doesn't merge with the flat acid metrics-band directly above it. */
.burn-band {
  /* Start a shade below the flat --acid metrics-band above so the seam reads as a new
     module, and thicken the divider to match the metric column borders. */
  background: linear-gradient(160deg, var(--acid-hover) 0%, var(--acid-active) 70%, var(--acid-active) 100%);
  color: var(--black);
  border-top: 2px solid color-mix(in srgb, var(--black) 34%, transparent);
}

.burn-shell {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 44px 24px 40px;
  text-align: center;
}

.burn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 27px);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.burn-eyebrow svg {
  width: 22px;
  height: 22px;
}

.burn-label {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--black) 62%, transparent);
}

.burn-figure {
  margin-top: 14px;
  line-height: 1;
}

.burn-figure strong {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(48px, 9vw, 104px);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.burn-figure span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--black) 62%, transparent);
}

.burn-note {
  margin: 26px auto 0;
  max-width: 640px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--black) 20%, transparent);
  font-size: 14px;
  color: color-mix(in srgb, var(--black) 72%, transparent);
}

.metrics-shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-block: 30px;
}

.metric {
  min-width: 0;
  padding: 4px 24px;
  border-left: 1px solid rgba(0, 0, 0, 0.35);
}

.metric:first-child {
  padding-left: 0;
  border-left: 0;
}

.metric strong,
.metric small,
.metric span {
  display: block;
}

.metric strong {
  margin-top: 6px;
  font-size: 17px;
}

.metric small {
  margin-top: 3px;
  color: #31352b;
  text-transform: none;
}

.section-light {
  background: var(--white);
}

.entry-section,
.rounds-section,
.faq-section {
  padding-block: 104px;
}

.entry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 96px;
  align-items: start;
}

.section-index {
  display: inline-block;
  margin-bottom: 18px;
  color: #397200;
  font-weight: 700;
}

.section-index.inverted {
  color: var(--acid);
}

.section-heading h2,
.process-head h2,
.verify-heading h2,
.trust-layout h2,
.dialog-head h2 {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
}

.section-heading > p,
.process-head > p,
.verify-heading > p {
  max-width: 610px;
  margin-top: 20px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.7;
}

.sticky-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.text-link svg {
  width: 16px;
  height: 16px;
}

.entry-workspace {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.workspace-head {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.workspace-head > div {
  display: grid;
  gap: 3px;
}

.workspace-head strong {
  font-size: 18px;
}

.state-pill.neutral {
  background: var(--paper-strong);
  color: var(--body);
}

.state-pill.committed {
  background: #e1efc0;
  color: #294100;
}

.state-pill.local {
  background: #29320a;
  color: var(--acid);
}

/* Settled = paid & verifiable (acid). Voided = cancelled round (danger). */
.state-pill.settled {
  background: var(--acid);
  color: var(--black);
}

.state-pill.voided {
  background: #f6d7da;
  color: var(--danger);
}

.balance-list > div {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr minmax(140px, auto);
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
}

.balance-list dt {
  color: var(--body);
}

.balance-list dd {
  min-width: 0;
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 700;
  text-align: right;
  overflow-wrap: anywhere;
}

.address-lookup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 20px 24px 0;
}

.address-input {
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
}

.address-input::placeholder {
  color: var(--muted);
}

.address-input:disabled {
  background: var(--paper-strong);
  color: var(--muted);
  cursor: not-allowed;
}

.address-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

.address-button svg {
  width: 16px;
  height: 16px;
}

.address-button:disabled {
  background: var(--paper-strong);
  color: var(--muted);
  cursor: not-allowed;
}

.lookup-hint {
  margin: 10px 24px 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.formula-row {
  display: flex;
  gap: 14px;
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.formula-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--acid);
}

.formula-icon svg {
  width: 18px;
  height: 18px;
}

.formula-row strong {
  font-family: var(--mono);
  font-size: 13px;
}

.formula-row p {
  margin-top: 4px;
  color: var(--muted);
  text-transform: none;
}

.process-section {
  padding-block: 104px;
  background: var(--black);
  color: var(--white);
}

.process-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.6fr);
  gap: 72px;
  align-items: end;
}

.process-head .section-index,
.process-head h2 {
  grid-column: 1;
}

.process-head > p {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: #aaa9a5;
}

.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 72px;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.process-list li {
  min-width: 0;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 20px;
  border-left: 1px solid var(--line-dark);
}

.process-list li:first-child {
  border-left: 0;
}

.process-number {
  color: #77756f;
  font-family: var(--mono);
  font-size: 11px;
}

.process-list li > svg {
  width: 28px;
  height: 28px;
  margin-top: 48px;
  color: var(--acid);
  stroke-width: 1.5;
}

.process-list h3 {
  margin-top: 20px;
  font-size: 21px;
  font-weight: 600;
}

.process-list p {
  margin-top: 12px;
  color: #aaa9a5;
  font-size: 14px;
}

.process-list small {
  margin-top: auto;
  padding-top: 28px;
  color: var(--acid);
  font-size: 10px;
  text-transform: uppercase;
}

.rounds-heading {
  max-width: 720px;
}

.round-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-block: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.segmented-control {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: var(--paper);
}

.segmented-control button {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: transparent;
  color: var(--body);
  cursor: pointer;
  font-size: 13px;
}

.segmented-control button[aria-pressed="true"] {
  background: var(--black);
  color: var(--white);
}

.archive-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--body);
  font-size: 12px;
}

.round-table-wrap {
  margin-top: 18px;
  border-bottom: 1px solid var(--line);
}

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

.round-table th,
.round-table td {
  padding: 18px 16px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.round-table th {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.round-table td {
  font-size: 14px;
}

.round-table td:first-child,
.round-table th:first-child {
  padding-left: 0;
}

.round-table td:last-child,
.round-table th:last-child {
  padding-right: 0;
}

.round-table td:first-child strong,
.round-table td:first-child span {
  display: block;
}

.round-table td:first-child span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.round-action {
  width: 56px;
  text-align: right !important;
}

.mono {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}

.round-empty {
  min-height: 240px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
}

.round-empty svg {
  width: 32px;
  height: 32px;
  color: var(--muted);
}

.round-empty p {
  color: var(--muted);
  font-size: 13px;
}

.verify-section {
  padding-block: 104px;
  background: var(--night);
  color: var(--white);
}

.verify-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.65fr);
  gap: 72px;
  align-items: end;
}

.verify-heading .section-index,
.verify-heading h2 {
  grid-column: 1;
}

.verify-heading > p {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: #aaa9a5;
}

.verify-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.receipt-panel,
.verifier-panel {
  min-width: 0;
  border: 1px solid #393832;
  border-radius: 8px;
}

.receipt-panel {
  background: var(--black);
}

.panel-titlebar {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 8px 20px;
  border-bottom: 1px solid #393832;
  color: #bcbdb9;
  text-transform: none;
}

.panel-titlebar > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.terminal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
}

.receipt-panel pre {
  min-height: 356px;
  margin: 0;
  padding: 30px 28px;
  color: #e8e9e5;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.8;
  overflow: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.artifact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 20px;
  border-top: 1px solid #393832;
}

.artifact-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #484842;
  border-radius: 999px;
  color: #d8d9d5;
  font-size: 12px;
}

.artifact-links a:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.artifact-links svg {
  width: 15px;
  height: 15px;
}

.verifier-panel {
  padding: 24px;
  background: #171711;
}

.verifier-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.verifier-head > div {
  display: grid;
  gap: 3px;
}

.verifier-head strong {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 42px;
  line-height: 1;
}

.range-control {
  display: block;
  margin-top: 30px;
}

.range-control > span:first-child {
  color: #b9bbb6;
  text-transform: none;
}

.range-control input[type="range"] {
  width: 100%;
  height: 32px;
  margin-top: 12px;
  accent-color: var(--acid);
  cursor: pointer;
}

.range-limits {
  display: flex;
  justify-content: space-between;
  color: #83847f;
  font-family: var(--mono);
  font-size: 10px;
}

.winning-owner {
  margin-top: 20px;
  padding-block: 20px;
  border-top: 1px solid #393832;
  border-bottom: 1px solid #393832;
}

.winning-owner > span {
  color: #9fa09b;
}

.winning-owner > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.winning-owner strong {
  min-width: 0;
  font-family: var(--mono);
  font-size: 18px;
  overflow-wrap: anywhere;
}

.winning-owner .icon-button {
  color: var(--white);
  border-color: #484842;
}

.winning-owner small {
  display: block;
  margin-top: 4px;
  color: #999a95;
}

.verification-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding: 0;
}

.verification-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c6c7c3;
  font-size: 13px;
}

.verification-list svg {
  width: 17px;
  height: 17px;
  color: var(--acid);
  stroke-width: 2.4;
}

.verification-list li[data-check="fail"] {
  color: #ffb3b9;
}

.verification-list li[data-check="fail"] svg {
  color: var(--danger);
}

.verifier-button {
  width: 100%;
  margin-top: 24px;
}

.trust-section {
  padding-block: 104px;
  background: var(--paper);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 90px;
}

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

.trust-columns > div {
  padding: 26px 24px 0;
  border-left: 1px solid var(--line);
}

.trust-columns > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.trust-columns svg {
  width: 28px;
  height: 28px;
  color: #4e7100;
  stroke-width: 1.5;
}

.trust-columns h3 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
}

.trust-columns ul {
  display: grid;
  gap: 11px;
  margin-top: 16px;
  padding-left: 18px;
  color: var(--body);
  font-size: 14px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 96px;
  align-items: start;
}

.faq-search {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.faq-search svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.faq-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.faq-content details {
  border-bottom: 1px solid var(--line);
}

.faq-content details:first-of-type {
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.faq-content summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

.faq-content summary::-webkit-details-marker {
  display: none;
}

.faq-content summary::after {
  content: "+";
  flex: 0 0 auto;
  color: #477000;
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 500;
}

.faq-content details[open] summary::after {
  content: "-";
}

.faq-content details p {
  max-width: 680px;
  padding: 0 48px 22px 0;
  color: var(--body);
  line-height: 1.7;
}

.faq-empty {
  padding-block: 40px;
  color: var(--muted);
  text-align: center;
}

.site-footer {
  background: var(--acid);
  color: var(--black);
}

.footer-shell {
  padding-top: 56px;
  overflow: hidden;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.brand-dark {
  color: var(--black);
}

.footer-status {
  display: grid;
  gap: 4px;
  text-align: right;
}

.footer-status strong {
  font-size: 14px;
}

.x-follow {
  justify-self: end;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--black);
  color: var(--acid);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    color 0.15s ease;
}

.x-follow svg {
  flex: none;
}

.x-follow:hover,
.x-follow:focus-visible {
  transform: translateY(-1px);
  background: #111;
  color: #fff;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-block: 38px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.footer-links > div {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.footer-links > div > span {
  margin-bottom: 5px;
  font-weight: 700;
}

.footer-links a,
.footer-links p {
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-legal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  padding-block: 26px;
  font-size: 11px;
  line-height: 1.6;
}

.footer-legal p:first-child {
  max-width: 830px;
}

.footer-wordmark {
  margin-bottom: -26px;
  font-family: var(--sans);
  font-size: 144px;
  font-weight: 600;
  line-height: 0.9;
  white-space: nowrap;
}

.round-dialog {
  width: min(calc(100% - 32px), 760px);
  max-height: calc(100svh - 48px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  overflow: auto;
}

.round-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.dialog-head .section-index {
  margin-bottom: 8px;
}

.dialog-head h2 {
  font-size: 36px;
}

.dialog-intro {
  padding: 24px 28px;
  color: var(--body);
  line-height: 1.7;
}

.dialog-data {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-inline: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.dialog-data > div {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dialog-data > div.wide {
  grid-column: 1 / -1;
}

.dialog-data dt {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.dialog-data dd {
  margin-top: 7px;
  font-weight: 600;
}

.dialog-data .wide dd {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dialog-data code {
  min-width: 0;
  flex: 1;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 28px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid #484842;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  font-size: 13px;
  font-weight: 700;
}

.toast svg {
  width: 16px;
  height: 16px;
  color: var(--acid);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero h1 {
    font-size: 68px;
  }

  .entry-layout,
  .faq-layout {
    gap: 56px;
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-list li:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .process-list li:nth-child(5) {
    border-top: 1px solid var(--line-dark);
  }

  .trust-layout {
    gap: 52px;
  }
}

@media (min-width: 821px) and (max-height: 740px) {
  .hero {
    height: calc(100svh - 80px);
    min-height: 560px;
  }

  .hero-media {
    top: 43%;
    width: min(500px, 60vh);
  }

  .prize-readout {
    top: 43%;
  }

  .hero-shell {
    padding-block: 16px 14px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-statement {
    font-size: 28px;
  }

  .prize-readout strong {
    font-size: 68px;
  }

  .hero-footer {
    gap: 8px;
  }

  .countdown {
    grid-template-columns: 68px auto 68px;
  }

  .countdown strong {
    font-size: 30px;
  }

  .countdown .countdown-separator {
    font-size: 28px;
  }

  .hero-actions .button {
    min-height: 40px;
  }
}

@media (max-width: 820px) {
  .section-shell,
  .nav-shell,
  .metrics-shell,
  .footer-shell,
  .burn-shell,
  .hero-shell {
    padding-inline: 20px;
  }

  .network-label,
  .launch-button {
    display: none;
  }

  .hero {
    height: calc(100svh - 128px);
    min-height: 620px;
    max-height: 760px;
  }

  .hero-media {
    top: 44%;
    width: min(520px, 74vw);
  }

  .prize-readout {
    top: 44%;
  }

  .hero-shell {
    padding-block: 22px 18px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-statement {
    font-size: 30px;
  }

  .prize-readout strong {
    font-size: 76px;
  }

  .countdown {
    grid-template-columns: 74px auto 74px;
  }

  .countdown strong {
    font-size: 34px;
  }

  .countdown .countdown-separator {
    font-size: 32px;
  }

  .metrics-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-block: 0;
  }

  .metric,
  .metric:first-child {
    min-height: 118px;
    padding: 20px;
    border-left: 1px solid rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  }

  .metric:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .metric:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .entry-section,
  .rounds-section,
  .faq-section,
  .process-section,
  .verify-section,
  .trust-section {
    padding-block: 76px;
  }

  .entry-layout,
  .faq-layout,
  .trust-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .sticky-heading {
    position: static;
  }

  .section-heading h2,
  .process-head h2,
  .verify-heading h2,
  .trust-layout h2 {
    font-size: 44px;
  }

  .process-head,
  .verify-heading {
    display: block;
  }

  .process-head > p,
  .verify-heading > p {
    margin-top: 22px;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 48px;
  }

  .process-list li {
    min-height: 290px;
  }

  .process-list li:nth-child(3),
  .process-list li:nth-child(5) {
    border-left: 0;
  }

  .process-list li:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }

  .process-list li:nth-child(4) {
    border-left: 1px solid var(--line-dark);
  }

  .verify-layout {
    grid-template-columns: 1fr;
  }

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

  .trust-columns > div,
  .trust-columns > div:first-child {
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-wordmark {
    margin-bottom: -14px;
    font-size: 82px;
  }
}

@media (max-width: 620px) {
  .section-shell,
  .nav-shell,
  .metrics-shell,
  .footer-shell,
  .burn-shell,
  .hero-shell {
    padding-inline: 16px;
  }

  .brand {
    font-size: 16px;
  }

  .hero {
    height: calc(100svh - 116px);
    min-height: 600px;
    max-height: 740px;
  }

  .hero-media {
    top: 43%;
    width: min(440px, 80vw);
  }

  .prize-readout {
    top: 43%;
  }

  .hero-shell {
    padding-block: 18px 16px;
  }

  .status-line {
    margin-bottom: 6px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-statement {
    max-width: 340px;
    font-size: 26px;
  }

  .prize-readout strong {
    font-size: 66px;
  }

  .prize-readout > div span {
    font-size: 16px;
  }

  .prize-readout p {
    font-size: 9px;
  }

  .target-copy > small {
    display: none;
  }

  .countdown {
    grid-template-columns: 60px auto 60px;
    gap: 4px;
  }

  .countdown strong {
    font-size: 30px;
  }

  .countdown .countdown-separator {
    font-size: 28px;
  }

  .hero-actions .button {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .metric,
  .metric:first-child {
    padding-inline: 14px;
  }

  .metric strong {
    font-size: 15px;
  }

  .section-heading h2,
  .process-head h2,
  .verify-heading h2,
  .trust-layout h2 {
    font-size: 38px;
  }

  .section-heading > p,
  .process-head > p,
  .verify-heading > p {
    font-size: 15px;
  }

  .workspace-head,
  .balance-list > div,
  .formula-row,
  .address-lookup {
    padding-inline: 16px;
  }

  .lookup-hint {
    margin-inline: 16px;
  }

  .balance-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .balance-list dd {
    text-align: left;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:nth-child(n) {
    min-height: 240px;
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .process-list li:first-child {
    border-top: 0;
  }

  .process-list li > svg {
    margin-top: 30px;
  }

  .round-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .segmented-control {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .segmented-control button {
    padding-inline: 6px;
    font-size: 11px;
  }

  .round-table thead {
    display: none;
  }

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

  .round-table tr {
    position: relative;
    padding-block: 12px;
    border-top: 1px solid var(--line);
  }

  .round-table td,
  .round-table td:first-child,
  .round-table td:last-child {
    min-height: 42px;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    padding: 8px 48px 8px 0;
    border: 0;
    text-align: left !important;
  }

  .round-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
  }

  .round-table .round-action {
    position: absolute;
    top: 14px;
    right: 0;
    width: 44px;
    display: block;
    padding: 0;
  }

  .round-table .round-action::before {
    display: none;
  }

  .receipt-panel pre {
    min-height: 300px;
    padding: 22px 18px;
    font-size: 12px;
  }

  .verifier-panel {
    padding: 18px;
  }

  .verifier-head strong {
    font-size: 34px;
  }

  .winning-owner strong {
    font-size: 14px;
  }

  .faq-content details p {
    padding-right: 0;
  }

  .footer-top,
  .footer-legal {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-status {
    text-align: left;
  }

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

  .footer-wordmark {
    margin-bottom: -8px;
    font-size: 60px;
  }

  .dialog-head,
  .dialog-intro,
  .dialog-actions {
    padding: 20px;
  }

  .dialog-head h2 {
    font-size: 30px;
  }

  .dialog-data {
    grid-template-columns: 1fr;
    margin-inline: 20px;
  }

  .dialog-data > div.wide {
    grid-column: 1;
  }

  .dialog-data .wide dd {
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .hero {
    height: calc(100svh - 100px);
    min-height: 540px;
    max-height: 620px;
  }

  .hero-media {
    top: 42%;
    width: min(340px, 82vw);
  }

  .prize-readout {
    top: 42%;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-statement {
    font-size: 23px;
  }

  .prize-readout p {
    display: none;
  }

  .target-copy > span {
    display: none;
  }

  .countdown {
    grid-template-columns: 52px auto 52px;
  }

  .countdown strong {
    font-size: 27px;
  }

  .hero-actions .button {
    padding-inline: 8px;
    font-size: 11px;
  }

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

  .metric,
  .metric:first-child,
  .metric:nth-child(odd),
  .metric:nth-last-child(-n + 2) {
    min-height: 92px;
    padding: 16px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .segmented-control {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 8px;
  }

  .segmented-control button {
    border-radius: 6px;
  }

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

  .footer-wordmark {
    font-size: 52px;
  }
}

@media (max-width: 360px) and (max-height: 620px) {
  .hero {
    height: calc(100svh - 68px);
    min-height: 500px;
  }

  .hero-media {
    top: 40%;
    width: min(310px, 80vw);
  }

  .hero-shell {
    padding-block: 10px 8px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-statement {
    font-size: 21px;
  }

  .prize-readout {
    top: 40%;
  }

  .prize-readout strong {
    font-size: 56px;
  }

  .hero-footer {
    gap: 6px;
  }

  .countdown strong {
    font-size: 24px;
  }

  .countdown .countdown-separator {
    font-size: 23px;
  }

  .hero-actions .button {
    min-height: 38px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
