:root {
  --paper: #eee8dc;
  --deep: #ded4c4;
  --ink: #151514;
  --brown: #79543d;
  --acid: #a9df16;
  --blue: #2f63c8;
  --line: 2px solid var(--ink);
  --mono: 'Space Mono', monospace;
  --display: 'Barlow Condensed', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  background-image: radial-gradient(#1515140d .7px, transparent .7px);
  background-size: 6px 6px;
  font-family: var(--mono);
  overflow-x: hidden;
}
section[id] { scroll-margin-top: 88px; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip-link {
  position: absolute;
  top: -60px;
  left: 10px;
  z-index: 20;
  padding: 12px;
  background: var(--acid);
}
.skip-link:focus { top: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 64px;
  padding: 8px 18px;
  border-bottom: var(--line);
  background: var(--paper);
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font: 800 17px/14px var(--display);
  letter-spacing: .04em;
}
.brand img {
  width: 40px;
  height: 40px;
  border: var(--line);
  object-fit: cover;
}
.brand em { color: var(--brown); font-style: normal; }
.main-nav {
  position: absolute;
  top: 64px;
  right: 0;
  left: 0;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 18px;
  border-bottom: var(--line);
  background: var(--paper);
}
.main-nav.is-open { display: flex; }
.main-nav a {
  padding: 12px 2px;
  border-bottom: 2px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
}
.main-nav a:hover,
.main-nav a.is-active { border-color: var(--acid); }
.menu-toggle {
  order: 2;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border: 0;
  background: transparent;
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
}
.header-buy {
  order: 3;
  min-width: 78px;
  min-height: 44px;
  padding: 8px;
  font-size: 12px;
}
.header-buy img { width: 20px; height: 20px; }

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 50px;
  padding: 10px 12px;
  border: var(--line);
  background: transparent;
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  font: 700 13px var(--display);
  letter-spacing: .05em;
  transition: transform .18s, box-shadow .18s;
}
.button:hover,
.button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.button img,
.x-glyph {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}
.button img { object-fit: contain; }
.x-glyph { fill: currentColor; }
.button span:last-child { margin-left: auto; }
.button--lime { background: var(--acid); }
.button--dark { color: var(--paper); background: var(--ink); }
.button--paper { background: var(--paper); }

.section-frame {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: clamp(48px, 8vw, 90px) max(18px, 4vw);
}
.hero {
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding-top: 62px;
}
.ticker {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 31px;
  overflow: hidden;
  border-block: var(--line);
  font-size: 8px;
  letter-spacing: .08em;
  white-space: nowrap;
}
.ticker span:nth-child(2) { color: var(--brown); }
.hero-copy { min-width: 0; }
.eyebrow {
  margin: 0 0 17px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
}
.dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 3px #a9df1644;
}
.hero h1,
.section-heading h2 {
  margin: 0;
  font: 900 clamp(58px, 17vw, 100px)/.78 var(--display);
  letter-spacing: -.03em;
}
.hero h1 strong { color: var(--blue); }
.hero-name {
  margin: 25px 0 14px;
  font: 700 15px var(--display);
  letter-spacing: .12em;
}
.lede {
  max-width: 520px;
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}
.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 22px 0;
  padding: 10px 0;
  border-block: 1px solid var(--ink);
  font-size: 8px;
}
.action-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 9px;
  max-width: 600px;
}
.contract-line {
  max-width: 100%;
  margin: 18px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 8px;
}
.contract-line code { color: var(--brown); }
.hero-art {
  position: relative;
  width: min(100%, 500px);
  margin: auto;
}
.art-frame {
  padding: 12px;
  border: var(--line);
  background: var(--deep);
  box-shadow: 8px 8px 0 var(--brown);
  transform: rotate(2deg);
}
.art-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}
.stamp {
  position: absolute;
  top: -22px;
  right: -10px;
  z-index: 2;
  padding: 8px;
  border: var(--line);
  background: var(--acid);
  transform: rotate(8deg);
  text-align: center;
  font: 900 20px/.78 var(--display);
}
.stamp b { color: var(--blue); }
.art-caption {
  margin: 20px 0 0 5px;
  font-size: 8px;
  line-height: 1.6;
}

.roadmap { border-top: var(--line); }
.section-heading { max-width: 550px; }
.section-heading h2 {
  margin-bottom: 22px;
  font-size: clamp(58px, 15vw, 100px);
}
.section-heading h2 em { color: var(--brown); font-style: normal; }
.section-heading > p:last-child { font-size: 12px; line-height: 1.6; }
.route {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 80px;
}
.route::before {
  position: absolute;
  top: -30px;
  bottom: 0;
  left: 6px;
  width: 3px;
  background: var(--ink);
  content: '';
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.2s ease;
}
.route.drawn::before { transform: scaleY(1); }
.phase {
  position: relative;
  margin-bottom: 32px;
  padding: 0 0 32px 36px;
  border-bottom: var(--line);
}
.phase-num {
  position: absolute;
  top: -59px;
  left: 0;
  color: var(--blue);
  font: 900 24px var(--display);
}
.phase-pin {
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
}
.phase-tag,
.phase-status { font-size: 8px; }
.phase-tag { min-height: 22px; margin: 0; color: var(--brown); }
.phase h3 { margin: 17px 0; font: 900 48px/.8 var(--display); }
.phase > p:not(.phase-tag) {
  max-width: 280px;
  font-size: 10px;
  line-height: 1.7;
}
.disclaimer {
  margin-top: 55px;
  padding-top: 14px;
  border-top: 1px solid var(--ink);
  font-size: 8px;
  line-height: 1.6;
}

.market {
  display: block;
  max-width: none;
  border-top: var(--line);
  background: var(--deep);
}
.market-heading { margin-bottom: 32px; }
.monitor {
  min-width: 0;
  padding: 9px;
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--brown);
}
.monitor-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 40px;
  padding: 0 10px;
  background: var(--acid);
  font-size: 8px;
  font-weight: 700;
}
.monitor-bar i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--ink);
}
.monitor-bar a { text-decoration: underline; }
.iframe-wrap {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 95vw;
  min-height: 340px;
  margin-top: 10px;
}
.iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #101010;
}
.iframe-error {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: #101010;
  color: var(--acid);
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
}
.iframe-error[hidden] { display: none; }
.iframe-error strong { font: 800 28px var(--display); letter-spacing: .04em; }
.iframe-error code { color: var(--paper); }
.iframe-fallback {
  padding: 10px 4px 2px;
  color: var(--acid);
  text-align: center;
  font-size: 9px;
}
.iframe-fallback a { color: var(--paper); text-decoration: underline; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px max(18px, 4vw);
  border-top: var(--line);
  font-size: 8px;
}
footer b { color: var(--acid); }

.reveal { opacity: 1; transform: none; }
.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s, transform .7s;
}
.js-ready .reveal.is-visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

@media (min-width: 768px) {
  .site-header {
    min-height: 72px;
    gap: 20px;
    padding: 10px max(18px, calc((100vw - 1240px) / 2));
  }
  .brand { font-size: 20px; line-height: 17px; }
  .brand img { width: 46px; height: 46px; }
  .menu-toggle { display: none; }
  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    gap: clamp(14px, 3vw, 44px);
    padding: 0;
    border: 0;
  }
  .header-buy { min-width: 105px; }
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 48%);
    align-items: center;
    gap: clamp(30px, 6vw, 75px);
    min-height: calc(100vh - 72px);
    padding-top: 54px;
  }
  .hero h1 { font-size: clamp(70px, 9vw, 115px); }
  .hero-art { width: 100%; max-width: none; }
  .art-frame { padding: 14px; }
  .action-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .route {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 85px;
  }
  .route::before {
    top: -33px;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
  }
  .phase {
    min-width: 0;
    margin: 0;
    padding: 0 20px 24px;
    border-top: 0;
    border-bottom: 0;
    border-left: var(--line);
  }
  .phase:last-child { border-right: var(--line); }
  .phase-num { top: -68px; left: 20px; }
  .phase-pin { top: -40px; left: -8px; }
  .phase h3 { font-size: 50px; }
  .market {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: clamp(35px, 8vw, 100px);
    padding-right: max(18px, calc((100vw - 1240px) / 2));
    padding-left: max(18px, calc((100vw - 1240px) / 2));
  }
  .market-heading { margin: 0; }
  .iframe-wrap { height: min(55vw, 570px); }
}

@media (min-width: 1024px) {
  .hero { gap: clamp(40px, 7vw, 90px); padding-top: 42px; }
  .hero-art { max-width: 560px; }
  .market { grid-template-columns: 240px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-ready .reveal,
  .route::before,
  .button { transition: none; }
}
