:root {
  --acid: #c7ff13;
  --paper: #f4efd9;
  --ink: #090b09;
  --panel: #101610;
  --panel-2: #151d15;
  --muted: #aeb6a5;
  --line: #485346;
  --red: #ff4b3e;
  --amber: #ff9a3c;
  --max: 1180px;
  --shadow: 8px 8px 0 var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Courier New", Courier, monospace;
}
img { max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 4px solid var(--amber); outline-offset: 4px; }
::selection { background: var(--acid); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  translate: 0 -160%;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
}
.skip-link:focus { translate: 0; }

.wrap { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }
.ticker {
  padding: 8px 16px;
  border-bottom: 3px dashed var(--ink);
  background: var(--acid);
  color: var(--ink);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}
.giveaway-alert {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px 24px;
  padding: 14px max(18px, calc((100% - var(--max)) / 2));
  border-bottom: 4px solid var(--ink);
  background: var(--red);
  color: var(--ink);
  text-decoration: none;
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, .12);
}
.giveaway-alert-kicker, .giveaway-alert strong { font-size: 13px; font-weight: 900; }
.giveaway-alert b { font-family: Impact, "Arial Black", sans-serif; font-size: clamp(24px, 3.2vw, 46px); line-height: .9; }
.giveaway-alert small { max-width: 320px; font-size: 11px; font-weight: 900; }
.giveaway-alert strong { padding: 10px 12px; border: 3px solid var(--ink); background: var(--acid); box-shadow: 4px 4px 0 var(--ink); white-space: nowrap; }
.giveaway-alert:hover strong { translate: 3px 3px; box-shadow: 1px 1px 0 var(--ink); }
.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 8px max(16px, calc((100vw - var(--max)) / 2));
  border-bottom: 2px solid var(--line);
  background: rgba(9, 11, 9, .94);
  backdrop-filter: blur(10px);
}
.brand { color: var(--acid); text-decoration: none; font-size: 19px; font-weight: 900; }
.site-header nav { display: flex; align-items: center; gap: clamp(12px, 2vw, 24px); }
.site-header nav a { color: var(--muted); text-decoration: none; font-size: 12px; font-weight: 900; }
.site-header nav a:hover { color: var(--acid); }
.site-header nav .nav-giveaway { padding: 7px 10px; background: var(--red); color: var(--ink); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  align-items: center;
  gap: clamp(30px, 6vw, 78px);
  min-height: calc(100svh - 94px);
  padding-block: clamp(44px, 8vw, 100px);
}
.eyebrow { margin: 0 0 10px; color: var(--acid); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.hero h1, .section-heading h2, .donation-copy h2 {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.hero h1 { max-width: 760px; font-size: clamp(62px, 10vw, 126px); line-height: .78; }
.hero h1 em, .section-heading h2 em { color: var(--acid); font-style: normal; }
.lead { max-width: 720px; margin: 25px 0 12px; font-size: clamp(19px, 2.4vw, 28px); line-height: 1.32; }
.plain { max-width: 700px; color: var(--muted); font-weight: 700; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin: 28px 0 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 12px 17px;
  border: 3px solid var(--paper);
  background: var(--acid);
  box-shadow: 5px 5px 0 var(--paper);
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  font-weight: 900;
}
.button:hover { translate: 3px 3px; box-shadow: 2px 2px 0 var(--paper); }
.button.ghost { border-color: var(--acid); background: var(--ink); box-shadow: 5px 5px 0 var(--acid); color: var(--paper); }
.button.danger { border-color: var(--ink); background: var(--red); box-shadow: 5px 5px 0 var(--ink); }
.giveaway-hero-button { min-height: 62px; padding-inline: 24px; font-size: 16px; transform: rotate(-1deg); }
.button:disabled { cursor: not-allowed; filter: grayscale(1); opacity: .6; translate: 0; }
.text-link, .text-button { color: var(--acid); font-weight: 900; }
.text-button { border: 0; background: transparent; cursor: pointer; text-decoration: underline; }
.contract-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: center;
  max-width: 760px;
  padding: 12px;
  border: 2px dashed var(--line);
  transition: border-color .15s, background .15s;
}
.contract-row.copied { border-color: var(--acid); background: #16200d; }
.contract-label { grid-column: 1 / -1; color: var(--muted); font-size: 10px; font-weight: 900; }
.contract-row code { overflow: hidden; text-overflow: ellipsis; font-size: 12px; }
.copy-button { border: 0; background: transparent; color: var(--acid); cursor: pointer; font-size: 12px; font-weight: 900; }
.copy-status { grid-column: 1 / -1; min-height: 1em; color: var(--acid); font-size: 11px; font-weight: 900; }
.hero-art {
  position: relative;
  margin: 0;
  border: 5px solid var(--acid);
  background: #000;
  box-shadow: 14px 14px 0 var(--red);
  rotate: 1.5deg;
}
.hero-art img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.hero-art figcaption {
  position: absolute;
  right: -15px;
  bottom: -18px;
  padding: 10px 13px;
  border: 3px solid var(--ink);
  background: var(--acid);
  color: var(--ink);
  rotate: -6deg;
  font-family: Impact, sans-serif;
  font-size: clamp(18px, 2.5vw, 30px);
  line-height: .9;
}

.status-strip { border-block: 2px solid var(--acid); background: var(--panel); }
.status-inner { display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; gap: 18px; min-height: 56px; font-size: 11px; }
.status-inner > div { display: flex; align-items: center; gap: 9px; color: var(--acid); }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 4px rgba(199,255,19,.15); }
.status-inner > span { color: var(--muted); }
.status-inner button { border: 2px solid var(--line); background: transparent; color: var(--paper); cursor: pointer; padding: 7px 10px; font-weight: 900; }

.section { padding-block: clamp(64px, 9vw, 120px); scroll-margin-top: 72px; border-top: 2px dashed #394035; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); align-items: end; gap: 32px; margin-bottom: 32px; }
.section-heading h2 { font-size: clamp(48px, 8vw, 88px); line-height: .83; }
.section-heading > p { margin: 0 0 4px; color: var(--muted); font-weight: 700; line-height: 1.55; }
.dark-heading .eyebrow { color: var(--ink); }
.dark-heading h2, .dark-heading > p { color: var(--ink); }

.metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.metric { min-width: 0; min-height: 205px; padding: 18px; border: 3px solid var(--paper); background: var(--panel); }
.metric.permanent { border-color: var(--acid); box-shadow: 6px 6px 0 var(--red); }
.metric.removable { border-color: var(--red); }
.metric > span { color: var(--muted); font-size: 10px; font-weight: 900; }
.metric strong { display: block; min-height: 52px; margin-top: 10px; color: var(--acid); font-family: Impact, sans-serif; font-size: clamp(27px, 3.3vw, 42px); line-height: .95; overflow-wrap: anywhere; }
.metric small { display: block; min-height: 30px; margin-top: 10px; color: var(--muted); font-size: 10px; line-height: 1.4; }
.metric[data-state="error"] { border-color: var(--red); }
.metric[data-state="stale"] { border-color: var(--amber); }
.asset-pair { min-height: 52px; margin-top: 10px; padding-top: 9px; border-top: 2px dashed var(--line); font-size: 12px; font-weight: 900; line-height: 1.45; }
.status-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 22px; }
.status-grid article { min-height: 245px; padding: 19px; border: 2px solid var(--line); background: var(--panel); }
.status-grid h3, .action-grid h3, .change-grid h3, .roadmap-grid h3 { margin: 14px 0 8px; font-family: Impact, sans-serif; font-size: 28px; line-height: 1; }
.status-grid p, .action-grid p, .change-grid p, .roadmap-grid li { color: var(--muted); font-size: 12px; line-height: 1.5; }
.status-grid a { color: var(--acid); font-size: 11px; font-weight: 900; }
.badge, .risk-chip { display: inline-block; padding: 5px 8px; border: 2px solid currentColor; font-size: 9px; font-weight: 900; }
.badge.live { color: var(--acid); }
.badge.building, .badge.disclosed, .badge.vision { color: var(--amber); }
.badge.permanent { color: var(--acid); }
.badge.removable { color: var(--red); }

.acid-section { border: 0; background: var(--acid); color: var(--ink); }
#bowl-teaser { overflow: hidden; }
#bowl-teaser .bowl-heading { grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); align-items: center; }
.bowl-main-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: clamp(22px, 4vw, 42px);
  border: 5px solid var(--ink);
  background: var(--panel);
  color: var(--paper);
  text-decoration: none;
  box-shadow: 10px 10px 0 var(--red);
}
.bowl-main-card h3 { margin: 0 0 8px; color: var(--paper); font-family: Impact, sans-serif; font-size: clamp(32px, 5vw, 64px); line-height: .9; }
.bowl-main-card p { max-width: 700px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.bowl-main-card strong { padding: 14px 16px; background: var(--acid); color: var(--ink); font-size: 12px; white-space: nowrap; }
.bowl-main-card:hover { translate: 3px 3px; box-shadow: 5px 5px 0 var(--red); }
.flow-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 12px; }
.flow-grid article { min-height: 140px; padding: 18px; border: 4px solid var(--ink); background: var(--paper); }
.flow-grid article:nth-of-type(n+4) { margin-top: 4px; }
.flow-grid i { align-self: center; font-size: 30px; font-style: normal; font-weight: 900; }
.flow-grid span { color: #6b4a00; font-size: 10px; font-weight: 900; }
.flow-grid b { display: block; margin-top: 8px; font-family: Impact, sans-serif; font-size: 27px; }
.flow-grid p { margin-bottom: 0; font-size: 12px; font-weight: 700; }
.flow-grid .locked { background: var(--ink); color: var(--paper); box-shadow: 6px 6px 0 var(--red); }
.flow-note { margin: 20px 0 0; padding: 14px; border: 3px dashed var(--ink); font-size: 12px; font-weight: 700; }

.table-scroll { overflow-x: auto; border: 2px solid var(--line); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 15px 13px; border-bottom: 1px dashed var(--line); text-align: left; vertical-align: top; }
th { color: var(--acid); font-size: 10px; }
td { min-width: 135px; font-size: 12px; line-height: 1.45; }
td:first-child { min-width: 230px; }
td small { display: block; margin-top: 5px; color: var(--muted); }
td a { color: var(--acid); font-weight: 900; }
.custody-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.custody-grid article { padding: 24px; border: 4px solid; background: var(--panel); }
.permanent-box { border-color: var(--acid) !important; }
.removable-box { border-color: var(--red) !important; }
.custody-grid h3 { margin: 10px 0; font-family: Impact, sans-serif; font-size: clamp(32px, 4vw, 48px); }
.custody-grid p:last-child { color: var(--muted); font-size: 13px; line-height: 1.5; }

.change-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.change-grid article { min-height: 205px; padding: 18px; border: 3px solid var(--line); background: var(--panel); }
.change-grid strong { display: block; margin: 18px 0 10px; color: var(--acid); font-family: Impact, sans-serif; font-size: clamp(27px, 3.5vw, 42px); overflow-wrap: anywhere; }
.receipt-board { margin-top: 20px; padding: 20px; border: 4px solid var(--acid); background: var(--panel); }
.receipt-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 14px; }
.receipt-head h3 { margin: 3px 0 0; font-family: Impact, sans-serif; font-size: 36px; }
.receipt-head a { color: var(--acid); font-size: 11px; font-weight: 900; }
.receipt-table td:first-child { min-width: 110px; }

.action-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.action-grid article { display: flex; flex-direction: column; align-items: flex-start; min-height: 290px; padding: 20px; border: 3px solid var(--paper); background: var(--panel); }
.action-grid .button { margin-top: auto; }
.risk-chip.high { color: var(--red); }
.risk-chip.medium { color: var(--amber); }
.risk-chip.verify { color: var(--acid); }
.donation { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); margin-top: 26px; border: 5px solid var(--acid); background: var(--acid); box-shadow: 12px 12px 0 var(--red); color: var(--ink); }
.donation-art { position: relative; min-height: 540px; overflow: hidden; background: #000; }
.donation-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; translate: 0 8%; scale: 1.75; transform-origin: 54% 20%; }
.donation-copy { padding: clamp(26px, 5vw, 58px); }
.donation-copy .eyebrow { color: var(--ink); }
.donation-copy h2 { font-size: clamp(47px, 7vw, 84px); line-height: .82; }
.donation-copy > p { font-weight: 700; line-height: 1.45; }
.donation-law { display: grid; gap: 5px; margin: 18px 0; padding: 13px; border: 3px dashed var(--ink); font-size: 11px; }
.donation-law span { font-weight: 700; }
.donation label { display: block; margin-bottom: 7px; font-size: 11px; font-weight: 900; }
.amount-row { display: grid; grid-template-columns: minmax(130px, .55fr) minmax(230px, 1fr); gap: 10px; }
.amount-row input { width: 100%; min-width: 0; border: 4px solid var(--ink); background: var(--paper); color: var(--ink); padding: 12px; font-size: 18px; font-weight: 900; caret-color: auto; }
.donation-preview { margin-top: 15px; padding: 15px; border: 4px solid var(--ink); background: var(--paper); }
.donation-preview ul { padding-left: 20px; font-size: 11px; line-height: 1.55; }
.donation-preview code { overflow-wrap: anywhere; }
.donation-preview .text-button { margin-left: 14px; color: var(--ink); }
.donation-status { min-height: 42px; margin: 14px 0 0; white-space: pre-wrap; font-size: 11px; font-weight: 900; }
.donation-status a { text-decoration: underline; }

.proof-section { background: #0d120d; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.proof-grid a { display: grid; grid-template-columns: auto 1fr; gap: 4px 12px; min-height: 135px; padding: 18px; border: 3px solid var(--line); text-decoration: none; }
.proof-grid a:hover { border-color: var(--acid); }
.proof-grid span { grid-row: 1 / 3; color: var(--acid); font-family: Impact, sans-serif; font-size: 36px; }
.proof-grid b { align-self: end; }
.proof-grid small { color: var(--muted); }
.docs-callout { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 18px; padding: 22px; border: 4px solid var(--acid); background: var(--acid); color: var(--ink); text-decoration: none; }
.docs-callout b { font-family: Impact, sans-serif; font-size: 30px; }
.docs-callout span { font-size: 11px; font-weight: 900; }

.risk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.risk-grid article { min-height: 160px; padding: 18px; border: 3px dashed var(--red); background: #140f0e; }
.risk-grid b { color: var(--red); }
.risk-grid p { color: var(--muted); font-size: 12px; line-height: 1.5; }
.roadmap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.roadmap-grid article { min-height: 285px; padding: 20px; border: 3px solid var(--line); background: var(--panel); }
.roadmap-grid ul { padding-left: 18px; }

.social-banner { display: block; position: relative; width: min(var(--max), calc(100% - 32px)); margin: 0 auto 90px; overflow: hidden; border: 4px solid var(--acid); background: #000; box-shadow: 10px 10px 0 var(--red); rotate: -.3deg; }
.social-banner img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 1; object-fit: cover; }
.social-banner span { position: absolute; right: 12px; bottom: 12px; padding: 9px 12px; border: 3px solid var(--ink); background: var(--acid); color: var(--ink); font-weight: 900; }
footer { padding: 40px 0 70px; border-top: 3px dashed var(--acid); color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 18px; }
footer b, footer a { color: var(--acid); }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-art { width: min(600px, 88%); margin-inline: auto; }
  .metrics, .status-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-grid { grid-template-columns: 1fr; }
  .flow-grid i { rotate: 90deg; justify-self: center; }
  .flow-grid article:nth-of-type(n+4) { margin-top: 0; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 22px, var(--max)); }
  .ticker { font-size: 11px; }
  .giveaway-alert { grid-template-columns: 1fr auto; gap: 8px 12px; padding: 12px; }
  .giveaway-alert-kicker, .giveaway-alert small { grid-column: 1; }
  .giveaway-alert b { grid-column: 1 / -1; font-size: 31px; }
  .giveaway-alert strong { grid-column: 2; grid-row: 1 / span 2; }
  .site-header { position: static; align-items: flex-start; padding-inline: 12px; }
  .site-header nav { flex-wrap: wrap; justify-content: flex-end; gap: 8px 13px; }
  .site-header nav a { font-size: 10px; }
  .hero { padding-top: 42px; }
  .hero h1 { font-size: clamp(58px, 21vw, 84px); }
  .hero-art { width: calc(100% - 20px); }
  .contract-row { grid-template-columns: minmax(0, 1fr) auto; }
  .contract-label { grid-column: 1 / -1; }
  .contract-row code { grid-column: 1; }
  .copy-status { grid-column: 1 / -1; }
  .status-inner { grid-template-columns: 1fr auto; padding-block: 10px; }
  .status-inner > span { grid-column: 1 / -1; }
  .section { scroll-margin-top: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 16px; }
  #bowl-teaser .bowl-heading, .bowl-main-card { grid-template-columns: 1fr; }
  .bowl-main-card strong { white-space: normal; }
  .section-heading h2 { font-size: clamp(45px, 16vw, 70px); }
  .metrics, .status-grid, .custody-grid, .change-grid, .action-grid, .proof-grid, .risk-grid, .roadmap-grid, .donation { grid-template-columns: 1fr; }
  .metric { min-height: 180px; }
  .status-grid article, .action-grid article, .roadmap-grid article { min-height: auto; }
  .action-grid .button { margin-top: 12px; }
  .receipt-head, .docs-callout, .footer-inner { align-items: flex-start; flex-direction: column; }
  .donation-art { min-height: 330px; }
  .donation-art img { translate: 0 6%; scale: 1.55; transform-origin: 54% 20%; }
  .amount-row { grid-template-columns: 1fr; }
  .social-banner { width: calc(100% - 22px); margin-bottom: 55px; }
  .social-banner span { position: static; display: block; border: 0; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
