:root {
  --ink: #050505;
  --paper: #f2f2ef;
  --white: #ffffff;
  --mint: #00c805;
  --coral: #050505;
  --gold: #ffffff;
  --blue: #00c805;
  --muted: #6c6c68;
  --border: 2px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::selection { color: var(--ink); background: var(--mint); }
a { color: inherit; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }
.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; left: 12px; top: -80px; z-index: 100; padding: 12px 18px; background: var(--ink); color: var(--white); }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  background: rgba(242, 242, 239, .97);
  border-bottom: var(--border);
}

.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; font-size: 17px; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 36px; height: 36px; color: var(--paper); background: var(--ink); font-size: 13px; box-shadow: 4px 4px 0 var(--mint); }
.site-nav { display: flex; gap: clamp(20px, 3vw, 44px); font-size: 12px; }
.site-nav a { padding: 8px 0; text-decoration: none; border-bottom: 2px solid transparent; }
.site-nav a:hover, .site-nav a:focus-visible { border-color: var(--ink); }
.launch-chip { justify-self: end; padding: 9px 12px; border: var(--border); background: var(--white); font-size: 11px; white-space: nowrap; }
.status-dot { display: inline-block; width: 8px; height: 8px; margin-right: 7px; background: var(--mint); animation: blink 1.4s steps(1) infinite; }
.menu-toggle { display: none; width: 44px; height: 42px; padding: 9px; border: var(--border); background: var(--paper); }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); }

.hero {
  position: relative;
  min-height: 94vh;
  padding: 130px clamp(20px, 6vw, 96px) 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr);
  align-items: center;
  gap: clamp(44px, 7vw, 120px);
  isolation: isolate;
}
.hero-grid { position: absolute; inset: 72px 0 0; z-index: -1; opacity: .18; background-image: linear-gradient(var(--muted) 1px, transparent 1px), linear-gradient(90deg, var(--muted) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, #000, transparent 88%); }
.hero-copy { max-width: 820px; }
.eyebrow, .kicker { margin: 0 0 20px; font-size: 12px; line-height: 1.5; }
.eyebrow { display: flex; align-items: center; gap: 8px; }
.eyebrow img { width: 20px; height: 20px; image-rendering: pixelated; }
.eyebrow span { display: inline-block; margin-right: 10px; padding: 5px 7px; color: var(--paper); background: var(--ink); }
.hero h1 { margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(68px, 10.5vw, 174px); font-weight: 900; line-height: .78; text-transform: uppercase; letter-spacing: 0; }
.hero h1 span { display: block; color: var(--paper); -webkit-text-stroke: 3px var(--ink); text-shadow: 7px 7px 0 var(--ink); }
.hero-lede { max-width: 700px; margin: 42px 0 0; font-family: Arial, Helvetica, sans-serif; font-size: clamp(18px, 2vw, 27px); line-height: 1.4; font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin: 36px 0; }
.pixel-button { min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; border: var(--border); border-radius: 0; text-decoration: none; font-size: 12px; cursor: pointer; box-shadow: 5px 5px 0 var(--ink); transition: transform .12s, box-shadow .12s; }
.pixel-button:hover:not(:disabled), .pixel-button:focus-visible:not(:disabled) { transform: translate(3px,3px); box-shadow: 2px 2px 0 var(--ink); }
.pixel-button.primary { color: var(--ink); background: var(--mint); }
.pixel-button.disabled { color: #686961; background: #dedbd2; cursor: not-allowed; box-shadow: none; }
.trust-line { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-line span { padding: 7px 9px; color: var(--paper); background: var(--ink); font-size: 10px; }

.hero-art { width: min(100%, 520px); justify-self: center; transform: rotate(1deg); }
.pixel-window { background: var(--white); border: 3px solid var(--ink); box-shadow: 14px 14px 0 var(--ink); }
.window-bar, .window-status { min-height: 42px; padding: 0 14px; display: flex; align-items: center; justify-content: space-between; border-bottom: var(--border); font-size: 11px; }
.window-bar div { display: flex; gap: 6px; }
.window-bar i { width: 10px; height: 10px; display: block; border: 2px solid var(--ink); }
.window-status { border-top: var(--border); border-bottom: 0; color: var(--white); background: var(--ink); }
.window-status strong { color: var(--mint); }
.avatar-stage { position: relative; aspect-ratio: 549 / 576; display: grid; place-items: center; overflow: hidden; background: #eeeeee; }
.avatar-stage::before { display: none; }
.avatar-stage img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; image-rendering: pixelated; }
.hero-note { width: max-content; max-width: 90%; margin: 27px auto 0; padding: 9px 12px; display: flex; align-items: center; gap: 9px; background: var(--ink); color: var(--paper); font-size: 10px; transform: rotate(-2deg); }
.hero-note img { width: 18px; height: 18px; image-rendering: pixelated; }
.scroll-cue { position: absolute; bottom: 24px; left: clamp(20px, 6vw, 96px); font-size: 10px; text-decoration: none; }

.ticker { overflow: hidden; color: var(--paper); background: var(--ink); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.ticker-track { width: max-content; padding: 15px 0; display: flex; gap: 46px; animation: ticker 24s linear infinite; font-size: 12px; }
.ticker-track span:nth-child(odd) { color: var(--mint); }

.section { padding: 110px clamp(20px, 6vw, 96px); }
.section-number { margin-bottom: 56px; padding-bottom: 14px; border-bottom: var(--border); font-size: 11px; }
.section-number.light { border-color: rgba(244,241,232,.4); }
.about-copy { display: grid; grid-template-columns: .65fr 1.2fr 1fr; align-items: start; gap: 50px; }
.about-copy h2, .roadmap h2, .safety h2, .faq h2, .closing h2 { margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(48px, 6vw, 92px); line-height: .95; text-transform: uppercase; letter-spacing: 0; }
.about-copy h2 { grid-column: 2; }
.about-copy h2 em { color: var(--mint); font-style: normal; -webkit-text-stroke: 1px var(--ink); }
.about-copy > p:last-child { margin: 0; font-family: Arial, Helvetica, sans-serif; font-size: 18px; line-height: 1.65; font-weight: 600; }
.principles { margin-top: 90px; display: grid; grid-template-columns: repeat(3, 1fr); border: var(--border); }
.principles article { min-height: 260px; padding: 32px; border-right: var(--border); }
.principles article:last-child { border-right: 0; }
.principle-icon { display: grid; place-items: center; width: 48px; height: 48px; border: var(--border); box-shadow: 4px 4px 0 var(--ink); font-size: 12px; }
.mint { background: var(--mint); }.coral { color: var(--white); background: var(--ink); }.gold { background: var(--white); }
.principles h3 { margin: 46px 0 14px; font-size: 20px; text-transform: uppercase; }
.principles p { margin: 0; font-family: Arial, Helvetica, sans-serif; font-weight: 600; line-height: 1.55; }

.roadmap { color: var(--paper); background: var(--ink); }
.roadmap-heading { display: grid; grid-template-columns: .65fr 1.2fr 1fr; align-items: end; gap: 50px; margin-bottom: 70px; }
.roadmap-heading h2 { grid-column: 2; color: var(--mint); }
.roadmap-heading > p:last-child { margin: 0; color: #c6c3b9; font-family: Arial, Helvetica, sans-serif; font-size: 17px; line-height: 1.55; }
.roadmap-list { margin: 0; padding: 0; list-style: none; border-top: 2px solid #55564f; }
.roadmap-list li { min-height: 150px; padding: 28px 20px; display: grid; grid-template-columns: 100px 1fr 70px; align-items: center; border-bottom: 2px solid #55564f; }
.roadmap-list li.active { color: var(--ink); background: var(--mint); border-color: var(--mint); }
.roadmap-index { color: #888980; font-size: 13px; }
.active .roadmap-index { color: var(--ink); }
.phase { font-size: 9px; color: var(--gold); }
.active .phase { color: var(--ink); }
.roadmap-list h3 { margin: 10px 0 7px; font-size: clamp(20px, 2.3vw, 32px); text-transform: uppercase; }
.roadmap-list p { margin: 0; color: #aaa99f; font-family: Arial, Helvetica, sans-serif; font-weight: 600; }
.active p { color: #363832; }
.roadmap-symbol { justify-self: end; font-size: 34px; }

.safety-panel { display: grid; grid-template-columns: 1.1fr .8fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.terminal { border: 3px solid var(--ink); box-shadow: 12px 12px 0 var(--mint); background: var(--ink); color: var(--mint); }
.terminal-title { min-height: 46px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; color: var(--ink); background: var(--mint); border-bottom: 3px solid var(--ink); font-size: 11px; }
.terminal-body { min-height: 390px; padding: clamp(24px, 4vw, 50px); display: flex; flex-direction: column; justify-content: center; font-size: clamp(11px, 1.3vw, 15px); line-height: 1.8; }
.terminal-body p { margin: 6px 0; }
.terminal-body p span { color: var(--mint); }
.terminal-body strong { color: var(--white); }
.terminal-prompt { margin-top: 38px !important; }
.cursor { color: var(--mint) !important; animation: blink .8s steps(1) infinite; }
.safety-copy h2 { margin-bottom: 26px; font-size: clamp(44px, 5vw, 72px); }
.safety-copy > p:not(.kicker, .copy-feedback), .safety-copy li { font-family: Arial, Helvetica, sans-serif; font-size: 17px; line-height: 1.55; font-weight: 600; }
.safety-copy ul { padding-left: 22px; }
.safety-copy li { margin: 10px 0; }
.copy-site { width: 100%; min-height: 72px; margin-top: 24px; padding: 12px 14px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; border: var(--border); background: var(--gold); text-align: left; cursor: pointer; box-shadow: 6px 6px 0 var(--ink); }
.copy-site span, .copy-site i { font-size: 9px; font-style: normal; }
.copy-site strong { overflow-wrap: anywhere; }
.copy-site:hover { background: var(--mint); }
.copy-feedback { min-height: 18px; margin: 12px 0 0; color: #39795f; font-size: 11px; }

.faq { background: var(--white); border-top: var(--border); }
.faq-heading { margin-bottom: 50px; display: grid; grid-template-columns: .65fr 2.2fr; }
.faq-list { margin-left: calc(30% + 10px); border-top: var(--border); }
.faq-list details { border-bottom: var(--border); }
.faq-list summary { min-height: 82px; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: clamp(15px, 2vw, 21px); text-transform: uppercase; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: 0 0 34px; height: 34px; display: grid; place-items: center; color: var(--paper); background: var(--ink); }
.faq-list details[open] summary span { color: var(--ink); background: var(--mint); transform: rotate(45deg); }
.faq-list details p { max-width: 750px; margin: -4px 60px 28px 0; font-family: Arial, Helvetica, sans-serif; font-size: 17px; line-height: 1.6; font-weight: 600; }

.closing { min-height: 670px; padding: 100px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--gold); border-top: var(--border); }
.closing img { width: 210px; height: auto; margin-bottom: 26px; image-rendering: pixelated; }
.closing h2 { margin: 0 0 38px; font-size: clamp(68px, 9vw, 140px); }
.closing h2 span { color: var(--mint); -webkit-text-stroke: 2px var(--ink); text-shadow: 6px 6px 0 var(--ink); }
footer { min-height: 100px; padding: 22px clamp(20px, 6vw, 96px); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--paper); background: var(--ink); font-size: 9px; }
.footer-brand .brand-mark { color: var(--ink); background: var(--mint); box-shadow: 4px 4px 0 var(--white); }

@keyframes blink { 50% { opacity: 0; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 72px; left: 0; width: 100%; padding: 20px; display: none; flex-direction: column; gap: 0; background: var(--paper); border-bottom: var(--border); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 15px; border-bottom: 1px solid #b7b5ad; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 125px; }
  .hero-art { width: min(82vw, 500px); }
  .scroll-cue { display: none; }
  .about-copy, .roadmap-heading { grid-template-columns: 1fr 2fr; }
  .about-copy h2, .roadmap-heading h2 { grid-column: 2; }
  .about-copy > p:last-child, .roadmap-heading > p:last-child { grid-column: 2; }
  .principles { grid-template-columns: 1fr; }
  .principles article { min-height: 0; border-right: 0; border-bottom: var(--border); }
  .principles article:last-child { border-bottom: 0; }
  .safety-panel { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { min-height: 64px; padding: 0 14px; gap: 10px; }
  .brand { font-size: 13px; }
  .brand-mark { width: 31px; height: 31px; font-size: 10px; }
  .launch-chip { padding: 7px 8px; font-size: 8px; }
  .menu-toggle { width: 40px; height: 38px; }
  .site-nav { top: 64px; }
  .hero { padding: 105px 18px 70px; gap: 50px; }
  .hero-grid { top: 64px; background-size: 30px 30px; }
  .hero h1 { font-size: clamp(58px, 20vw, 90px); }
  .hero h1 span { -webkit-text-stroke: 2px var(--ink); text-shadow: 5px 5px 0 var(--ink); }
  .hero-lede { margin-top: 30px; font-size: 18px; }
  .hero-actions { display: grid; }
  .pixel-button { width: 100%; }
  .hero-art { width: calc(100% - 12px); }
  .coin { width: 43px; height: 43px; font-size: 22px; }
  .section { padding: 78px 18px; }
  .section-number { margin-bottom: 40px; }
  .about-copy, .roadmap-heading { display: block; }
  .about-copy h2, .roadmap-heading h2 { margin: 15px 0 28px; }
  .about-copy > p:last-child, .roadmap-heading > p:last-child { font-size: 16px; }
  .principles { margin-top: 55px; }
  .principles article { padding: 25px; }
  .principles h3 { margin-top: 30px; }
  .roadmap-list li { min-height: 160px; padding: 22px 12px; grid-template-columns: 45px 1fr 30px; gap: 8px; }
  .roadmap-list p { font-size: 13px; line-height: 1.4; }
  .terminal { box-shadow: 7px 7px 0 var(--mint); }
  .terminal-body { min-height: 330px; padding: 22px 15px; font-size: 9px; }
  .copy-site { grid-template-columns: 1fr auto; }
  .copy-site span { grid-column: 1 / -1; }
  .faq-heading { display: block; }
  .faq-heading h2 { margin-top: 14px; }
  .faq-list { margin-left: 0; }
  .faq-list summary { font-size: 14px; line-height: 1.4; }
  .faq-list details p { margin-right: 0; font-size: 15px; }
  .closing { min-height: 570px; }
  .closing h2 { font-size: clamp(54px, 18vw, 88px); }
  footer { flex-direction: column; align-items: flex-start; padding-top: 35px; padding-bottom: 35px; }
}

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