:root {
  --bg: #080a0a;
  --ink: #e8e8e3;
  --muted: #929892;
  --line: rgba(230, 235, 228, .14);
  --panel: rgba(10, 13, 12, .54);
  --panel-strong: rgba(11, 14, 13, .76);
  --acid: #8fe03f;
  --acid-soft: rgba(143, 224, 63, .16);
  --paper: #c7a977;
  --max: 1480px;
  --stitched: "Doto", "IBM Plex Mono", monospace;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(93, 118, 81, .09), transparent 34rem),
    radial-gradient(circle at 92% 38%, rgba(143, 224, 63, .055), transparent 31rem),
    linear-gradient(rgba(8, 10, 10, .92), rgba(8, 10, 10, .92)),
    var(--bg);
  font-family: var(--mono);
  font-weight: 400;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 49.85%, rgba(255,255,255,.018) 50%, transparent 50.15%);
  background-size: 72px 100%;
  opacity: .28;
  z-index: -1;
}
::selection { background: var(--acid); color: #081006; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }
code { font-family: var(--mono); }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.ambient { position: fixed; border-radius: 999px; filter: blur(90px); pointer-events: none; z-index: -1; }
.ambient-a { width: 34vw; height: 34vw; right: -14vw; top: 10vh; background: rgba(126, 215, 56, .05); }
.ambient-b { width: 28vw; height: 28vw; left: -10vw; bottom: 7vh; background: rgba(205, 178, 129, .045); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 10, .72);
  backdrop-filter: blur(20px) saturate(120%);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.brand-mark {
  width: 34px; height: 34px; display: grid; place-items: center;
  border: 1px solid rgba(143,224,63,.5);
  border-radius: 50%; color: var(--acid); font: 800 12px/1 var(--stitched);
  box-shadow: inset 0 0 24px rgba(143,224,63,.08);
}
.nav { display: flex; align-items: center; gap: 30px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.nav a, .footer-links a { transition: color .2s ease; }
.nav a:hover, .footer-links a:hover { color: var(--acid); }
.mini-cta { justify-self: end; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--acid); }

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}
.section-kicker { font-size: 10px; letter-spacing: .18em; color: var(--acid); text-transform: uppercase; margin-bottom: 34px; }

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  grid-template-rows: auto auto;
  gap: 28px 52px;
  align-content: center;
  padding-top: 64px;
}
.hero-media {
  grid-column: 1 / -1;
  position: relative;
  min-height: 330px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #0d0f0f;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,10,10,.05), transparent 42%, rgba(8,10,10,.08)), linear-gradient(180deg, transparent 60%, rgba(8,10,10,.35));
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/1; filter: saturate(.78) contrast(1.05) brightness(.87); }
.scanline { position: absolute; left: 0; right: 0; height: 1px; background: rgba(143,224,63,.45); box-shadow: 0 0 18px rgba(143,224,63,.35); animation: scan 7s linear infinite; z-index: 3; }
@keyframes scan { from { top: 5%; } to { top: 95%; } }
.hero-copy { align-self: end; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-size: 10px; margin-bottom: 22px; }
.pulse { width: 7px; height: 7px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 18px var(--acid); }
.hero h1, h2 { font-family: var(--stitched); }
.hero h1 { margin: 0; font-size: clamp(4.1rem, 9vw, 10rem); line-height: .76; letter-spacing: -.06em; font-weight: 850; text-transform: uppercase; }
.hero h1 span, h2 span { color: var(--acid); }
.hero-deck { max-width: 790px; margin: 34px 0 0; color: #bcc1bc; line-height: 1.8; font-size: clamp(.92rem, 1.1vw, 1.08rem); }
.hero-deck strong { color: var(--ink); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.btn {
  min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 17px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.018);
  color: #c9ceca;
  font-size: 10px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase;
  transition: .2s ease;
}
.btn:hover { border-color: rgba(143,224,63,.6); color: var(--acid); transform: translateY(-1px); background: rgba(143,224,63,.045); }
.btn-primary { background: var(--acid); border-color: var(--acid); color: #071005; }
.btn-primary:hover { background: #a2ef59; color: #071005; }
.contract-strip { margin-top: 12px; display: grid; grid-template-columns: auto 1fr auto; min-height: 44px; border: 1px solid var(--line); background: rgba(255,255,255,.015); align-items: center; }
.contract-label { padding: 0 14px; color: var(--acid); font: 700 11px var(--stitched); }
.contract-strip code { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); font-size: 11px; }
.copy-btn { align-self: stretch; border: 0; border-left: 1px solid var(--line); background: transparent; color: var(--muted); padding: 0 14px; font: 500 10px var(--mono); text-transform: uppercase; cursor: pointer; }
.copy-btn:not(:disabled):hover { color: var(--acid); }
.copy-btn:disabled { cursor: not-allowed; opacity: .45; }

.signal-card { align-self: end; border: 1px solid var(--line); background: var(--panel); min-height: 280px; backdrop-filter: blur(14px); }
.signal-head { display: flex; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: 9px; letter-spacing: .18em; color: var(--muted); }
.online { color: var(--acid); }
.terminal { padding: 28px 24px; font-size: clamp(.82rem, 1.05vw, 1rem); color: #adb3ad; line-height: 1.7; }
.terminal p { margin: 0 0 10px; }
.terminal p:nth-child(4) { color: var(--acid); }
.cursor { animation: blink .9s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.ticker-band { overflow: hidden; border-bottom: 1px solid var(--line); background: rgba(143,224,63,.04); }
.ticker-track { width: max-content; display: flex; gap: 58px; padding: 13px 0; color: var(--acid); font: 800 12px var(--stitched); text-transform: uppercase; letter-spacing: .12em; animation: ticker 34s linear infinite; }
@keyframes ticker { to { transform: translateX(-25%); } }

.split { display: grid; grid-template-columns: 220px 1fr; gap: 40px; }
.split-main h2, .token-copy h2, .market-head h2, .archive-head h2, .roadmap-head h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 5.8rem); line-height: .95; letter-spacing: -.045em; font-weight: 760; }
.prose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.prose-grid p { margin: 0; padding-top: 18px; border-top: 1px solid var(--line); color: #aeb4ae; font-size: 14px; line-height: 1.85; }
.prose-grid strong { color: var(--ink); }

.token-section { display: grid; grid-template-columns: 220px 1fr; gap: 40px; }
.token-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.coin-sticker {
  width: min(100%, 460px); aspect-ratio: 1; border-radius: 50%; position: relative; display: grid; place-items: center; overflow: hidden;
  border: 1px solid rgba(143,224,63,.42);
  background: radial-gradient(circle, rgba(143,224,63,.18), rgba(143,224,63,.035) 52%, rgba(255,255,255,.012) 72%);
  box-shadow: inset 0 0 0 13px rgba(255,255,255,.015), inset 0 0 0 14px var(--line), 0 30px 100px rgba(0,0,0,.3);
}
.coin-sticker::before, .coin-sticker::after { content:""; position:absolute; inset: 14%; border: 1px dashed rgba(143,224,63,.24); border-radius:50%; }
.coin-sticker::after { inset: 27%; border-style: solid; opacity: .5; }
.coin-orbit { position: absolute; inset: 8%; display: grid; place-items: start center; color: rgba(143,224,63,.55); font-size: 8px; text-transform: uppercase; letter-spacing: .18em; }
.coin-core { position: relative; z-index: 2; text-align: center; display: grid; gap: 2px; }
.coin-core span { color: var(--acid); font: 900 clamp(1.4rem, 3vw, 2.4rem) var(--stitched); }
.coin-core strong { font: 900 clamp(2.1rem, 5vw, 4.6rem) var(--stitched); letter-spacing: -.07em; }
.coin-core small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .18em; }
.token-intro { max-width: 720px; color: #aeb4ae; line-height: 1.8; margin: 28px 0 38px; }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.fact { min-height: 104px; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; background: rgba(255,255,255,.012); }
.fact span { color: var(--muted); font-size: 8px; letter-spacing: .16em; }
.fact strong { font: 650 16px var(--stitched); overflow-wrap: anywhere; }

.market-section { display: grid; grid-template-columns: 220px 1fr; gap: 40px; }
.market-head { display: grid; grid-template-columns: 1fr; gap: 42px; }
.market-head p, .roadmap-head p { max-width: 700px; color: var(--muted); line-height: 1.75; }
.market-stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.market-stats > div { min-height: 96px; display:flex; flex-direction:column; justify-content:space-between; padding: 18px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
.market-stats span { color: var(--muted); font-size: 8px; letter-spacing: .15em; }
.market-stats strong { font: 700 18px var(--stitched); color: var(--ink); }
.chart-shell { grid-column: 2; margin-top: 6px; min-height: 620px; position: relative; border: 1px solid var(--line); background: rgba(2,4,4,.48); overflow: hidden; }
#dexFrame { width:100%; min-height: 620px; height: 72vh; max-height: 760px; border:0; display:none; background:#060808; }
.chart-placeholder { position:absolute; inset:0; display:grid; place-items:center; padding: 30px; }
.fake-chart { position:absolute; inset:0; opacity:.55; color: var(--acid); }
.fake-chart svg { width:100%; height:100%; }
.fake-chart .line { fill:none; stroke:currentColor; stroke-width:2; vector-effect:non-scaling-stroke; }
.placeholder-copy { position:relative; z-index:2; width:min(560px, 90%); padding:32px; border:1px solid rgba(143,224,63,.24); background:rgba(8,10,10,.82); backdrop-filter:blur(16px); }
.placeholder-copy > span { color:var(--acid); font-size:9px; letter-spacing:.16em; }
.placeholder-copy strong { display:block; margin:14px 0 10px; font:750 clamp(1.6rem, 3vw, 2.8rem) var(--stitched); }
.placeholder-copy p { color:var(--muted); line-height:1.7; font-size:12px; }
.placeholder-copy code { color:#cfd3cf; }
.market-note { grid-column:2; color:#747a75; font-size:10px; line-height:1.6; margin:8px 0 0; }

.archive-section { display:grid; grid-template-columns:220px 1fr; gap:40px; }
.archive-head { display:grid; grid-template-columns: 1fr .8fr; gap:40px; align-items:end; }
.archive-head p { color:var(--muted); line-height:1.8; margin:0; }
.gallery { grid-column:2; display:grid; grid-template-columns: 1fr .76fr; grid-template-rows: 1fr 1fr; gap:14px; min-height:900px; margin-top:48px; }
.gallery-card { margin:0; position:relative; overflow:hidden; border:1px solid var(--line); background:#0d1010; }
.gallery-a { grid-row:1 / 3; }
.gallery-card img { width:100%; height:100%; object-fit:cover; filter:saturate(.67) contrast(1.07) brightness(.82); transition:transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.gallery-card:hover img { transform:scale(1.025); filter:saturate(.82) contrast(1.06) brightness(.9); }
.gallery-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, transparent 60%, rgba(2,4,4,.72)); pointer-events:none; }
.gallery-card figcaption { position:absolute; z-index:2; left:16px; right:16px; bottom:14px; display:flex; justify-content:space-between; gap:16px; color:#d8ddd8; font-size:9px; letter-spacing:.1em; text-transform:uppercase; }
.gallery-card figcaption span:last-child { color:var(--acid); }

.roadmap-section { display:grid; grid-template-columns:220px 1fr; gap:40px; }
.roadmap-head { display:grid; grid-template-columns:1fr .7fr; gap:40px; align-items:end; }
.roadmap { grid-column:2; list-style:none; padding:0; margin:58px 0 0; border-top:1px solid var(--line); }
.roadmap li { display:grid; grid-template-columns:90px 1fr auto; gap:26px; align-items:start; padding:30px 0; border-bottom:1px solid var(--line); }
.phase { color:var(--acid); font:800 26px var(--stitched); }
.roadmap li span { color:var(--muted); font-size:8px; letter-spacing:.15em; }
.roadmap h3 { font:730 clamp(1.35rem, 2vw, 2rem) var(--stitched); margin:6px 0 8px; }
.roadmap p { color:#979d97; margin:0; max-width:740px; line-height:1.75; font-size:12px; }
.roadmap b { padding:8px 10px; border:1px solid var(--line); color:var(--muted); font-size:8px; letter-spacing:.13em; font-weight:500; }
.roadmap li:first-child b { border-color:rgba(143,224,63,.35); color:var(--acid); background:rgba(143,224,63,.04); }

.manifesto { border-bottom:0; }
.manifesto-frame { min-height:500px; border:1px solid rgba(143,224,63,.25); display:flex; flex-direction:column; justify-content:space-between; padding:34px; background:linear-gradient(135deg, rgba(143,224,63,.035), transparent 40%), rgba(255,255,255,.01); }
.manifesto-label { color:var(--acid); font-size:9px; letter-spacing:.18em; }
blockquote { margin:70px 0; font:800 clamp(3rem, 7.4vw, 8.6rem)/.84 var(--stitched); letter-spacing:-.055em; text-transform:uppercase; }
.manifesto-bottom { display:flex; justify-content:space-between; gap:30px; color:var(--muted); text-transform:uppercase; letter-spacing:.12em; font-size:9px; }
.manifesto-bottom span:first-child { color:var(--acid); }

footer { width:min(calc(100% - 48px), var(--max)); margin:0 auto; padding:40px 0 70px; border-top:1px solid var(--line); display:grid; grid-template-columns:1fr auto; gap:38px; align-items:start; }
.footer-brand { display:flex; gap:12px; align-items:center; }
.footer-brand > div:last-child { display:flex; flex-direction:column; gap:4px; }
.footer-brand strong { font:700 15px var(--stitched); }
.footer-brand span { color:var(--muted); font-size:9px; }
.footer-links { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:22px; color:#aab0aa; font-size:9px; text-transform:uppercase; letter-spacing:.11em; }
.disclaimer { grid-column:1 / -1; color:#626862; font-size:9px; line-height:1.7; max-width:980px; margin:0; }

@media (max-width: 1050px) {
  .topbar { grid-template-columns: 1fr auto; }
  .nav { display:none; }
  .hero { grid-template-columns:1fr; }
  .hero-media { grid-column:1; }
  .split, .token-section, .market-section, .archive-section, .roadmap-section { grid-template-columns:1fr; gap:0; }
  .section-kicker { margin-bottom:28px; }
  .token-layout { grid-template-columns:1fr; }
  .coin-sticker { width:min(70vw,430px); margin:0 auto; }
  .chart-shell, .market-note, .gallery, .roadmap { grid-column:1; }
  .gallery { min-height:760px; }
}

@media (max-width: 720px) {
  .topbar { height:64px; padding:0 18px; }
  .brand > span:last-child, .mini-cta { font-size:9px; }
  .section { width:min(calc(100% - 32px), var(--max)); padding:84px 0; }
  .hero { min-height:auto; padding-top:32px; }
  .hero-media { min-height:230px; }
  .hero-media img { aspect-ratio:auto; min-height:230px; object-position:center; }
  .hero h1 { font-size:clamp(3.7rem, 21vw, 6.2rem); }
  .hero-deck { margin-top:24px; }
  .signal-card { min-height:240px; }
  .prose-grid { grid-template-columns:1fr; margin-top:38px; }
  .facts, .market-stats { grid-template-columns:1fr 1fr; }
  .market-head, .archive-head, .roadmap-head { grid-template-columns:1fr; }
  .chart-shell, #dexFrame { min-height:520px; }
  .gallery { grid-template-columns:1fr; grid-template-rows:repeat(3, 420px); min-height:auto; }
  .gallery-a { grid-row:auto; }
  .roadmap li { grid-template-columns:56px 1fr; }
  .roadmap b { grid-column:2; justify-self:start; }
  .manifesto-frame { min-height:420px; padding:22px; }
  blockquote { font-size:clamp(2.7rem, 15vw, 5rem); }
  .manifesto-bottom { flex-direction:column; }
  footer { width:min(calc(100% - 32px), var(--max)); grid-template-columns:1fr; }
  .footer-links { justify-content:flex-start; }
}

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

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }

.broadcast-archive { grid-column: 2; margin: 14px 0 0; position: relative; border: 1px solid var(--line); overflow: hidden; min-height: 300px; background: #0d1010; }
.broadcast-archive img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; filter: saturate(.58) contrast(1.08) brightness(.68); }
.broadcast-archive::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg, rgba(6,8,8,.7), transparent 58%), linear-gradient(180deg, transparent, rgba(6,8,8,.55)); }
.broadcast-archive figcaption { position:absolute; z-index:2; inset:auto 24px 22px 24px; display:flex; flex-direction:column; gap:8px; }
.broadcast-archive figcaption span { color:var(--acid); font-size:8px; letter-spacing:.16em; text-transform:uppercase; }
.broadcast-archive figcaption strong { max-width:740px; font:760 clamp(1.7rem, 3.8vw, 4.2rem)/.95 var(--stitched); letter-spacing:-.04em; }
@media (max-width: 1050px) { .broadcast-archive { grid-column: 1; } }
