:root {
  --ink: #13160f;
  --ink-2: #1d2117;
  --paper: #e8dfc8;
  --paper-2: #cbbf9e;
  --olive: #64684a;
  --khaki: #a59b76;
  --orange: #e6672f;
  --acid: #cbe932;
  --red: #b83e27;
  --line: rgba(232, 223, 200, .25);
  --shadow: 10px 10px 0 #080a06;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 15% 10%, rgba(120, 126, 68, .15), transparent 28rem),
    radial-gradient(circle at 90% 45%, rgba(230, 103, 47, .08), transparent 30rem),
    var(--ink);
  font-family: var(--mono);
  font-size: 16px;
  overflow-x: hidden;
  cursor: crosshair;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .035;
  background: url("assets/field-kit.png") 50% 35% / min(1400px, 130vw) auto repeat-y;
  filter: grayscale(1) contrast(1.3);
  pointer-events: none;
}

body.signal-scramble { animation: bodyJolt .18s steps(2) 4; }
body.signal-scramble main { filter: hue-rotate(76deg) contrast(1.2); }
body.signal-scramble .hero__figure img { filter: saturate(1.5) contrast(1.2) drop-shadow(12px 0 0 rgba(230, 103, 47, .48)) drop-shadow(-12px 0 0 rgba(203, 233, 50, .42)); }

@keyframes bodyJolt { 50% { transform: translateX(4px); } }

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
::selection { color: var(--ink); background: var(--acid); }

.grain {
  position: fixed;
  inset: -100%;
  z-index: 90;
  opacity: .1;
  pointer-events: none;
  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='.45'/%3E%3C/svg%3E");
  animation: grain .18s steps(2) infinite;
}

@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(2%, -1%); }
  50% { transform: translate(-1%, 2%); }
  75% { transform: translate(1%, 1%); }
  100% { transform: translate(-2%, -1%); }
}

#signalCanvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: .22;
  pointer-events: none;
}

.cursor {
  position: fixed;
  z-index: 120;
  width: 34px;
  height: 34px;
  border: 1px solid var(--acid);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .2s, height .2s;
}
.cursor::before, .cursor::after { content: ""; position: absolute; background: var(--acid); }
.cursor::before { width: 1px; height: 48px; left: 16px; top: -8px; }
.cursor::after { height: 1px; width: 48px; top: 16px; left: -8px; }
.cursor i { position: absolute; inset: 12px; border-radius: 50%; background: var(--acid); }
.cursor.is-hover { width: 58px; height: 58px; }

.boot {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  background: #0c0f09;
  transition: opacity .7s ease, visibility .7s ease;
}
.boot.is-open { opacity: 0; visibility: hidden; }
.boot__noise { position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(203, 233, 50, .04) 3px 4px); }
.boot__panel { position: relative; width: min(92vw, 620px); padding: 38px; text-align: center; border: 1px solid var(--olive); background: linear-gradient(140deg, #15190f, #0a0c08); box-shadow: 18px 18px 0 #050604; }
.boot__panel::before { content: ""; position: absolute; inset: 8px; border: 1px dashed rgba(203, 233, 50, .16); pointer-events: none; }
.boot__eyebrow { color: var(--acid); font-size: .75rem; letter-spacing: .17em; }
.boot__panel h1 { margin: 22px 0 8px; font: 4rem/.85 var(--display); letter-spacing: -.03em; transform: scaleY(1.08); }
.boot__panel p { max-width: 420px; margin: 18px auto; color: var(--khaki); line-height: 1.6; }
.boot__dial { position: relative; width: 170px; height: 170px; margin: 30px auto; border: 3px solid var(--paper-2); border-radius: 50%; background: repeating-conic-gradient(var(--acid) 0deg 1deg, transparent 1deg 10deg), radial-gradient(circle, #252b1c 0 45%, #0a0c08 46% 100%); box-shadow: inset 0 0 0 12px #11150d, 0 0 40px rgba(203, 233, 50, .08); user-select: none; touch-action: none; }
.boot__dial-center { position: absolute; inset: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: var(--ink); font: 1.8rem var(--display); border: 3px solid var(--ink); }
.boot__needle { position: absolute; width: 5px; height: 62px; background: var(--orange); left: calc(50% - 2px); top: 10px; transform-origin: 50% 75px; transform: rotate(var(--dial, -48deg)); transition: transform .09s linear; }
.boot__meter { width: 100%; height: 7px; background: #050604; border: 1px solid var(--olive); overflow: hidden; }
.boot__meter span { display: block; height: 100%; width: var(--progress, 0%); background: var(--acid); box-shadow: 0 0 16px var(--acid); transition: width .12s; }
.boot__skip { margin-top: 22px; padding: 8px 12px; border: 0; background: transparent; color: var(--paper-2); text-decoration: underline; text-underline-offset: 4px; font-size: .8rem; letter-spacing: .1em; cursor: pointer; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 70;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 64px);
  color: var(--paper);
  border-bottom: 1px solid var(--line);
  background: rgba(19, 22, 15, .88);
  backdrop-filter: blur(13px);
}
.wordmark { display: inline-flex; align-items: baseline; gap: 7px; width: max-content; text-decoration: none; font: 2rem/.8 var(--display); letter-spacing: -.04em; }
.wordmark__rank { color: var(--orange); transform: rotate(-3deg); }
.frequency { display: flex; align-items: center; gap: 7px; color: var(--khaki); font-size: .72rem; letter-spacing: .12em; }
.frequency i { width: 8px; height: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 10px var(--acid); animation: blink 1.2s steps(1) infinite; }
@keyframes blink { 50% { opacity: .2; } }
.topbar nav { display: flex; justify-content: center; gap: clamp(15px, 2.5vw, 36px); }
.topbar nav a { color: var(--paper-2); text-decoration: none; font-size: .77rem; letter-spacing: .12em; }
.topbar nav a:hover { color: var(--acid); }
.topbar__actions { display: flex; gap: 8px; }
.icon-btn, .buy-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; border: 1px solid var(--paper-2); text-decoration: none; font-weight: 800; }
.icon-btn { width: 42px; font-size: 1.2rem; }
.buy-btn { padding: 0 18px; background: var(--acid); border-color: var(--acid); color: var(--ink); font-size: .8rem; }
.buy-btn:hover { background: var(--orange); border-color: var(--orange); }

main { width: min(1540px, 100%); margin: 0 auto; }
.panel { position: relative; border-inline: 1px solid var(--line); }
.section-tag { position: absolute; top: 34px; left: clamp(18px, 4vw, 64px); color: var(--acid); font-size: .73rem; letter-spacing: .15em; }
.kicker { color: var(--paper-2); font-size: .78rem; letter-spacing: .14em; }
.kicker span { color: var(--acid); }
h1, h2, h3, p { margin-top: 0; }
h2 { margin: 0; font: clamp(4rem, 8vw, 8rem)/.82 var(--display); letter-spacing: -.055em; text-transform: uppercase; }
h2 em { color: var(--orange); font-style: normal; }

.hero {
  min-height: calc(100vh - 76px);
  height: max(720px, calc(100svh - 76px));
  display: grid;
  grid-template-columns: minmax(310px, .9fr) minmax(360px, 1fr) 300px;
  align-items: center;
  overflow: hidden;
  padding: 60px clamp(18px, 4vw, 64px) 30px;
  background: linear-gradient(90deg, rgba(255,255,255,.018), transparent 25% 74%, rgba(255,255,255,.018));
}
.hero::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0 calc(10% - 1px), rgba(232,223,200,.035) calc(10% - 1px) 10%); pointer-events: none; }
.hero__stamp { position: absolute; top: 34px; right: clamp(18px, 4vw, 64px); padding: 8px 12px; border: 2px solid var(--orange); color: var(--orange); transform: rotate(3deg); font-size: .67rem; line-height: 1.45; }
.hero__copy { position: relative; z-index: 3; align-self: center; }
.hero__copy h1 { margin: 18px 0 20px; font: clamp(6.8rem, 12vw, 12.8rem)/.62 var(--display); letter-spacing: -.075em; text-transform: uppercase; transform: scaleY(1.08); transform-origin: left; }
.hero__copy h1 span { display: block; color: var(--orange); font-size: .46em; letter-spacing: -.03em; }
.hero__line { margin: 38px 0 26px; font: 1.55rem/.96 var(--display); letter-spacing: .01em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 10px; }
.slash-btn, .ghost-btn { min-height: 52px; padding: 0 22px; border: 1px solid var(--paper); display: inline-flex; align-items: center; justify-content: center; gap: 24px; font-weight: 800; letter-spacing: .06em; text-decoration: none; cursor: pointer; }
.slash-btn { color: var(--ink); background: var(--paper); clip-path: polygon(0 0, 94% 0, 100% 26%, 100% 100%, 6% 100%, 0 74%); }
.slash-btn:hover { background: var(--acid); }
.ghost-btn { background: transparent; color: var(--paper); font-size: .72rem; }
.ghost-btn:hover { color: var(--ink); background: var(--orange); border-color: var(--orange); }

.hero__figure { position: relative; z-index: 2; height: 100%; min-width: 0; display: flex; align-items: flex-end; justify-content: center; }
.hero__figure img { position: relative; z-index: 2; width: min(49vw, 710px); max-height: 95%; object-fit: contain; object-position: center bottom; filter: saturate(.9) contrast(1.07) drop-shadow(20px 24px 0 rgba(0, 0, 0, .55)); transform: translate3d(var(--px, 0), var(--py, 0), 0); transition: filter .35s; }
.hero__halo { position: absolute; width: min(40vw, 600px); aspect-ratio: 1; top: 15%; border: 1px dashed rgba(203, 233, 50, .6); border-radius: 50%; background: radial-gradient(circle, rgba(203, 233, 50, .13), transparent 64%); animation: rotate 25s linear infinite; }
.hero__halo::before, .hero__halo::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(232, 223, 200, .16); }
.hero__halo::before { inset: 12%; }
.hero__halo::after { inset: 28%; border-style: dashed; }
@keyframes rotate { to { transform: rotate(360deg); } }
.hero__id { position: absolute; z-index: 4; bottom: 24px; right: 0; padding: 8px; color: var(--ink); background: var(--acid); font-size: .67rem; line-height: 1.4; transform: rotate(-2deg); }
.hotspot { position: absolute; z-index: 6; width: 34px; height: 34px; border: 1px solid var(--acid); border-radius: 50%; background: rgba(19, 22, 15, .72); cursor: pointer; animation: hotspot 1.3s ease-in-out infinite alternate; }
.hotspot--stache { top: 44%; left: 41%; }
@keyframes hotspot { to { box-shadow: 0 0 0 10px rgba(203, 233, 50, .1); } }

.hero__console { position: relative; z-index: 5; padding: 18px; border: 1px solid var(--olive); background: rgba(11, 13, 8, .76); box-shadow: var(--shadow); align-self: center; }
.console__head { display: flex; justify-content: space-between; align-items: center; color: var(--khaki); font-size: .7rem; letter-spacing: .12em; }
.console__head i { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; }
.waveform { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 5px; border-block: 1px solid var(--line); margin: 16px 0; }
.waveform b { width: 5px; height: 20%; background: var(--acid); animation: wave .8s ease-in-out calc(var(--i, 0) * .08s) infinite alternate; }
.waveform b:nth-child(2n) { height: 60%; animation-delay: -.4s; }
.waveform b:nth-child(3n) { height: 90%; animation-delay: -.2s; }
@keyframes wave { to { transform: scaleY(2.3); opacity: .45; } }
.console__readout { display: flex; justify-content: space-between; gap: 15px; margin: 10px 0; font-size: .68rem; }
.console__readout span { color: var(--khaki); }
.console__readout strong { color: var(--orange); text-align: right; }
.console__scan { width: 100%; margin-top: 14px; padding: 15px; border: 0; background: var(--acid); color: var(--ink); font-weight: 900; cursor: pointer; }
.console__scan i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--ink); }
.hero__console > p { margin: 14px 0 0; color: var(--khaki); font-size: .7rem; line-height: 1.5; }
.hero__scribble { position: absolute; left: 45%; bottom: 8%; z-index: 5; font-family: "Comic Sans MS", cursive; font-size: .7rem; line-height: 1.4; transform: rotate(-8deg); opacity: .8; }
.hero__scribble strong { color: var(--orange); }

.ticker { overflow: hidden; border-block: 1px solid var(--paper); background: var(--orange); color: var(--ink); transform: rotate(-1deg) scale(1.02); }
.ticker div { width: max-content; padding: 12px 0; font-weight: 900; letter-spacing: .08em; animation: ticker 25s linear infinite; }
@keyframes ticker { to { transform: translateX(-50%); } }

.story { min-height: 880px; padding: 145px clamp(18px, 7vw, 108px) 100px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; align-items: center; background: var(--paper); color: var(--ink); overflow: hidden; }
.story::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(97deg, transparent 0 48px, rgba(19,22,15,.035) 48px 49px); }
.story .section-tag { color: var(--red); }
.story__intro { position: relative; z-index: 2; }
.story__intro h2 { font-size: clamp(4.4rem, 8vw, 8.8rem); }
.story__intro p { max-width: 420px; margin-top: 35px; color: #55513f; font: 1.1rem/1.65 var(--mono); }
.story__viewer { position: relative; z-index: 2; min-width: 0; border: 2px solid var(--ink); box-shadow: 14px 14px 0 var(--orange); background: #d7ccb0; overflow: hidden; transform: rotate(1deg); }
.story__rail { display: flex; transition: transform .65s cubic-bezier(.2,.75,.18,1); }
.chapter { flex: 0 0 100%; min-height: 480px; display: grid; grid-template-columns: 110px 1fr; gap: 30px; padding: clamp(30px, 5vw, 68px); align-items: start; }
.chapter__no { font: 7rem/.8 var(--display); color: var(--orange); }
.chapter__date { color: var(--red); font-size: .75rem; font-weight: 900; letter-spacing: .1em; }
.chapter h3 { max-width: 600px; margin: 35px 0 22px; font: clamp(2.2rem, 4vw, 4.2rem)/.9 var(--display); text-transform: uppercase; }
.chapter div > p:last-child { max-width: 620px; font-size: 1rem; line-height: 1.75; }
.story__controls { display: flex; align-items: center; justify-content: flex-end; gap: 16px; padding: 14px 20px; border-top: 2px solid var(--ink); }
.story__controls button { width: 45px; height: 42px; border: 1px solid var(--ink); background: transparent; color: var(--ink); cursor: pointer; font-size: 1.2rem; }
.story__controls button:hover { background: var(--ink); color: var(--paper); }
.story__controls span { margin-right: auto; font-size: .8rem; }

.evidence { min-height: 1000px; padding: 130px clamp(18px, 4vw, 64px) 80px; background: #202419; overflow: hidden; }
.evidence__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 45px; }
.evidence__header h2 { max-width: 800px; }
.evidence__header p { max-width: 420px; color: var(--khaki); line-height: 1.65; }
.evidence__board { position: relative; max-width: 1250px; margin: 0 auto; border: 1px solid var(--olive); background: #161912; box-shadow: 18px 18px 0 #0a0c08; overflow: hidden; }
.evidence__board::after { content: "ARCHIVE COPY // DO NOT REMOVE"; position: absolute; top: 20px; left: 20px; z-index: 2; color: var(--acid); font-size: .7rem; letter-spacing: .1em; }
.evidence__board > img { display: block; width: 100%; opacity: .82; filter: sepia(.12) saturate(.86) contrast(1.08); }
.evidence-dot { position: absolute; z-index: 5; width: 46px; height: 46px; border: 2px solid var(--acid); border-radius: 50%; color: var(--ink); background: var(--acid); font-weight: 900; cursor: pointer; box-shadow: 0 0 0 8px rgba(203, 233, 50, .14); }
.evidence-dot:hover, .evidence-dot.is-active { background: var(--orange); border-color: var(--paper); transform: scale(1.18); }
.e1 { top: 17%; left: 11%; } .e2 { top: 27%; left: 34%; } .e3 { top: 16%; left: 65%; }
.e4 { top: 20%; left: 77%; } .e5 { top: 72%; left: 18%; } .e6 { top: 71%; left: 55%; }
.evidence-card { position: absolute; z-index: 8; right: 3%; bottom: 4%; width: min(430px, 48%); padding: 28px; color: var(--ink); background: var(--paper); border: 2px solid var(--ink); box-shadow: 10px 10px 0 var(--orange); transform: translateY(140%); transition: transform .5s cubic-bezier(.16,.9,.24,1.2); }
.evidence-card.is-open { transform: translateY(0) rotate(-1deg); }
.evidence-card > span { color: var(--red); font: 3rem var(--display); }
.evidence-card > p:nth-of-type(1) { margin: -30px 0 25px 60px; color: var(--red); font-size: .75rem; font-weight: 900; letter-spacing: .14em; }
.evidence-card h3 { margin: 0 35px 12px 0; font: 2.2rem/.9 var(--display); text-transform: uppercase; }
.evidence-card > p:last-of-type { margin: 0; line-height: 1.55; }
.evidence-card button { position: absolute; top: 12px; right: 12px; border: 0; background: transparent; color: var(--ink); font-size: 2rem; cursor: pointer; }

.roadmap { min-height: 920px; padding: 130px clamp(18px, 6vw, 90px) 80px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 5vw; align-items: center; overflow: hidden; background: #0d100b; }
.roadmap::before { content: ""; position: absolute; width: 700px; height: 700px; border-radius: 50%; left: -380px; top: 100px; background: radial-gradient(circle, rgba(230,103,47,.16), transparent 70%); }
.roadmap__copy { position: relative; z-index: 4; }
.roadmap__copy > p { max-width: 500px; margin: 35px 0; color: var(--khaki); line-height: 1.7; }
.phase-readout { max-width: 530px; min-height: 190px; padding: 22px; border-left: 5px solid var(--acid); background: #191d13; box-shadow: 10px 10px 0 #050604; }
.phase-readout > span { color: var(--acid); font-size: .72rem; letter-spacing: .12em; }
.phase-readout h3 { margin: 18px 0 10px; font: 2.4rem/.9 var(--display); }
.phase-readout p { color: var(--paper-2); line-height: 1.55; }
.orbit { position: relative; width: min(48vw, 690px); aspect-ratio: 1; justify-self: center; }
.orbit__rings, .orbit__rings i { position: absolute; inset: 0; border: 1px solid rgba(203, 233, 50, .22); border-radius: 50%; }
.orbit__rings { border-color: var(--olive); box-shadow: inset 0 0 80px rgba(203,233,50,.03), 0 0 80px rgba(203,233,50,.04); }
.orbit__rings i:nth-child(1) { inset: 12%; border-style: dashed; animation: rotate 28s linear infinite reverse; }
.orbit__rings i:nth-child(2) { inset: 25%; }
.orbit__rings i:nth-child(3) { inset: 38%; border-style: dashed; }
.orbit__rings i:nth-child(4) { inset: 49%; background: var(--acid); box-shadow: 0 0 40px var(--acid); }
.orbit__sweep { position: absolute; inset: 3%; border-radius: 50%; background: conic-gradient(from 0deg, rgba(203,233,50,.28), transparent 22%); animation: rotate 5s linear infinite; opacity: .45; }
.orbit__core { position: absolute; left: 50%; top: 50%; width: 160px; height: 160px; transform: translate(-50%, -50%); display: grid; place-content: center; text-align: center; border-radius: 50%; color: var(--ink); background: var(--acid); border: 12px solid #14180f; box-shadow: 0 0 0 1px var(--acid); }
.orbit__core span { font-size: .75rem; }
.orbit__core b { font: 2.3rem/.85 var(--display); }
.orbit__core small { margin-top: 6px; color: var(--red); font-weight: 900; }
.orbit__node { position: absolute; z-index: 5; width: 112px; height: 112px; display: grid; place-content: center; border: 2px solid var(--paper-2); border-radius: 50%; color: var(--paper); background: #171b12; text-align: center; cursor: pointer; transition: .25s ease; }
.orbit__node b { color: var(--orange); font: 2.2rem/.8 var(--display); }
.orbit__node span { margin-top: 7px; font-size: .65rem; letter-spacing: .08em; }
.orbit__node:hover, .orbit__node.is-active { border-color: var(--acid); background: var(--acid); color: var(--ink); box-shadow: 0 0 30px rgba(203,233,50,.25); transform: scale(1.1) rotate(-3deg); }
.orbit__node.is-active b { color: var(--red); }
.n1 { top: 3%; left: 40%; } .n2 { top: 40%; right: -2%; } .n3 { bottom: 1%; left: 38%; } .n4 { top: 42%; left: -3%; }

.transmission { min-height: 750px; padding: 120px clamp(18px, 7vw, 110px); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--ink); background: var(--orange); overflow: hidden; }
.transmission::before { content: ""; position: absolute; inset: -20%; background: repeating-conic-gradient(from 0deg, transparent 0deg 8deg, rgba(19,22,15,.06) 8deg 9deg); animation: rotate 60s linear infinite; }
.transmission > * { position: relative; z-index: 2; }
.transmission .kicker { color: var(--ink); }
.transmission .kicker span { color: var(--ink); }
.transmission h2 { max-width: 1200px; }
.transmission h2 em { color: var(--paper); }
.transmission__actions { width: min(1050px, 100%); display: grid; grid-template-columns: 2fr 1fr; gap: 14px; margin: 55px 0 30px; }
.massive-buy, .x-link { min-height: 120px; display: flex; align-items: center; padding: 20px 30px; color: var(--paper); background: var(--ink); text-decoration: none; border: 2px solid var(--ink); transition: .25s; }
.massive-buy { gap: 18px; }
.massive-buy span { font: 3rem var(--display); }
.massive-buy b { color: var(--acid); font: clamp(2.4rem, 5vw, 5rem)/.8 var(--display); }
.massive-buy i { margin-left: auto; font: 3rem var(--display); font-style: normal; }
.massive-buy:hover { transform: translate(-5px, -5px); box-shadow: 10px 10px 0 var(--paper); }
.x-link { justify-content: space-between; gap: 16px; }
.x-link span { max-width: 140px; text-align: left; font-size: .8rem; }
.x-link b { font-size: 4rem; }
.x-link:hover { color: var(--ink); background: var(--acid); }
.morse { padding: 12px 16px; border: 1px solid var(--ink); color: var(--ink); background: transparent; font-weight: 900; cursor: pointer; }
.morse span { display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: var(--ink); }
.morse.is-playing span { animation: blink .32s steps(1) infinite; }
.morse__output { min-height: 1.4em; margin-top: 18px; font-weight: 900; letter-spacing: .2em; }

footer { min-height: 160px; display: grid; grid-template-columns: 1fr auto auto; gap: 30px; align-items: center; padding: 30px clamp(18px, 4vw, 64px); color: var(--paper-2); border-top: 1px solid var(--line); }
footer p { margin: 0; font-size: .68rem; letter-spacing: .09em; }
footer p:last-child { color: var(--orange); }

.toast { position: fixed; z-index: 100; left: 50%; bottom: 30px; max-width: calc(100vw - 32px); padding: 14px 18px; color: var(--ink); background: var(--acid); border: 2px solid var(--ink); box-shadow: 7px 7px 0 var(--orange); font-weight: 900; transform: translate(-50%, 160%); transition: transform .4s cubic-bezier(.2,.9,.2,1.2); text-align: center; }
.toast.is-visible { transform: translate(-50%, 0); }

@media (max-width: 1150px) {
  .topbar { grid-template-columns: 1fr auto auto; }
  .frequency { display: none; }
  .hero { grid-template-columns: .85fr 1fr; }
  .hero__console { position: absolute; right: 28px; bottom: 34px; width: 280px; }
  .hero__figure img { width: min(60vw, 680px); }
  .hero__scribble { display: none; }
  .story { grid-template-columns: 1fr; }
  .story__intro { display: grid; grid-template-columns: 1fr .7fr; gap: 40px; align-items: end; }
  .story__viewer { transform: none; }
  .roadmap { grid-template-columns: 1fr; }
  .orbit { width: min(78vw, 690px); }
}

@media (max-width: 760px) {
  body { font-size: 15px; }
  .cursor { display: none; }
  .boot__panel { padding: 26px 18px; }
  .boot__panel h1 { font-size: 3.1rem; }
  .boot__dial { width: 135px; height: 135px; }
  .boot__needle { height: 46px; transform-origin: 50% 58px; }
  .boot__dial-center { inset: 39px; font-size: 1.4rem; }
  .topbar { min-height: 64px; grid-template-columns: 1fr auto; padding: 10px 14px; }
  .topbar nav { display: none; }
  .wordmark { font-size: 1.65rem; }
  .buy-btn { padding: 0 12px; font-size: .67rem; }
  .hero { min-height: 940px; height: auto; grid-template-columns: 1fr; align-content: start; padding: 90px 18px 20px; }
  .hero__stamp { top: 22px; }
  .hero__copy { z-index: 4; }
  .hero__copy h1 { font-size: clamp(6rem, 32vw, 8.3rem); margin-bottom: 10px; }
  .hero__line { margin: 24px 0 18px; }
  .hero__figure { height: 520px; margin: -55px -18px 0; }
  .hero__figure img { width: min(118vw, 600px); max-height: 100%; }
  .hero__halo { width: 400px; top: 13%; }
  .hotspot--stache { top: 39%; left: 41%; }
  .hero__console { position: relative; right: auto; bottom: auto; width: 100%; margin-top: -5px; }
  .hero__id { right: 18px; }
  .section-tag { top: 28px; }
  h2 { font-size: clamp(3.8rem, 19vw, 6rem); }
  .story { min-height: auto; padding: 110px 18px 65px; }
  .story__intro { display: block; }
  .story__intro p { margin-top: 24px; }
  .chapter { min-height: 560px; grid-template-columns: 1fr; gap: 16px; padding: 28px 24px; }
  .chapter__no { font-size: 4.5rem; }
  .chapter h3 { margin-top: 18px; }
  .evidence { min-height: 760px; padding: 105px 18px 60px; }
  .evidence__header { display: block; }
  .evidence__header p { margin-top: 25px; }
  .evidence__board { min-height: 490px; overflow: hidden; }
  .evidence__board > img { width: 170%; max-width: none; transform: translateX(-19%); }
  .evidence-dot { width: 38px; height: 38px; }
  .e1 { left: 6%; } .e2 { left: 34%; } .e3 { left: 66%; } .e4 { left: 85%; }
  .e5 { left: 12%; } .e6 { left: 60%; }
  .evidence-card { width: 90%; right: 5%; bottom: 4%; }
  .roadmap { min-height: 990px; padding: 105px 18px 70px; align-content: start; }
  .roadmap__copy > p { margin: 25px 0; }
  .orbit { width: min(96vw, 520px); margin-top: 40px; }
  .orbit__node { width: 82px; height: 82px; }
  .orbit__node b { font-size: 1.7rem; }
  .orbit__node span { font-size: .52rem; }
  .orbit__core { width: 120px; height: 120px; }
  .transmission { min-height: 730px; padding: 90px 18px; }
  .transmission__actions { grid-template-columns: 1fr; margin-top: 40px; }
  .massive-buy, .x-link { min-height: 100px; }
  .massive-buy { padding: 15px; gap: 10px; }
  .massive-buy span { font-size: 2rem; }
  .massive-buy b { font-size: 2.5rem; }
  .massive-buy i { font-size: 2rem; }
  footer { grid-template-columns: 1fr; gap: 12px; }
}

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