:root {
  --void: #070707;
  --coal: #0d0d0d;
  --steel: #161616;
  --plate: #10140a;
  --acid: #c6ff14;
  --acid-hot: #e8ff6a;
  --acid-dim: #6e8f00;
  --ink: #f3f6ea;
  --mute: #9aa38a;
  --line: rgba(198, 255, 20, 0.28);
  --glow: 0 0 18px rgba(198, 255, 20, 0.45);
  --rail: 92px;
  --font-display: "Audiowide", sans-serif;
  --font-ui: "Michroma", sans-serif;
  --font-body: "Rajdhani", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--void);
  color: var(--ink);
  font-family: var(--font-body);
  cursor: none;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}

button {
  font: inherit;
  cursor: none;
}

.aim {
  position: fixed;
  width: 22px;
  height: 22px;
  border: 1px solid var(--acid);
  transform: translate(-50%, -50%) rotate(45deg);
  pointer-events: none;
  z-index: 80;
  mix-blend-mode: screen;
  box-shadow: var(--glow);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

.aim.on {
  width: 36px;
  height: 36px;
  background: rgba(198, 255, 20, 0.12);
}

.arena {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(198, 255, 20, 0.08), transparent 46%),
    #070707;
}

.burst {
  position: absolute;
  inset: -20%;
  background: repeating-conic-gradient(
    from 0deg at 50% 58%,
    #0a0a0a 0deg 8deg,
    #121212 8deg 16deg
  );
  animation: spinBurst 80s linear infinite;
  opacity: 0.55;
  mask-image: radial-gradient(circle at 50% 55%, #000 18%, transparent 72%);
}

.acid-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(198, 255, 20, 0.14), transparent 32%),
    radial-gradient(circle at 84% 80%, rgba(198, 255, 20, 0.1), transparent 28%);
  animation: wash 9s ease-in-out infinite alternate;
}

.slash {
  position: absolute;
  height: 2px;
  width: 140%;
  left: -20%;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
  opacity: 0.18;
  filter: blur(0.4px);
  animation: slashMove 7s linear infinite;
}

.slash-a { top: 22%; --r: -18deg; transform: rotate(-18deg); }
.slash-b { top: 68%; --r: 14deg; transform: rotate(14deg); animation-duration: 9s; animation-direction: reverse; }

#sparkField {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.floor-haze {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background:
    radial-gradient(ellipse at 20% 100%, rgba(198, 255, 20, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(198, 255, 20, 0.16), transparent 48%),
    linear-gradient(180deg, transparent, rgba(5, 8, 0, 0.82));
  filter: blur(8px);
  animation: haze 6s ease-in-out infinite alternate;
}

.grain,
.vignette {
  position: absolute;
  inset: 0;
}

.grain {
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.vignette {
  box-shadow: inset 0 0 180px 40px #000;
}

.clamp {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: #050505;
  display: grid;
  place-items: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.clamp.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.clamp-horn {
  position: absolute;
  top: -10%;
  width: 34vw;
  max-width: 420px;
  height: 120%;
  background: linear-gradient(180deg, #d4ff2a, #6e8f00 70%, transparent);
  clip-path: polygon(40% 0, 78% 0, 58% 100%, 18% 100%);
  filter: drop-shadow(0 0 24px var(--acid));
  animation: clampIn 0.9s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.clamp-horn.left { left: -8%; transform: scaleX(-1); }
.clamp-horn.right { right: -8%; animation-delay: 0.05s; }

.clamp-mark {
  width: min(42vw, 280px);
  animation: dropMark 1s 0.35s cubic-bezier(0.2, 1.4, 0.3, 1) both;
  filter: drop-shadow(0 0 28px var(--acid));
}

.clamp-stamp {
  position: absolute;
  bottom: 14%;
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--acid);
  text-shadow: 0 0 18px var(--acid);
  animation: stamp 0.45s 0.9s cubic-bezier(0.2, 1.6, 0.3, 1) both;
}

.rail {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  width: var(--rail);
  height: 100vh;
  padding: 18px 10px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.55));
  border-right: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.rail-brand {
  display: grid;
  justify-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: 0.16em;
  color: var(--acid);
}

.rail-brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--acid);
  box-shadow: var(--glow);
  animation: pulseLogo 3.4s ease-in-out infinite;
}

.rail-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  width: 100%;
}

.rail-nav a {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--mute);
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rail-nav a i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--acid);
  transform: rotate(45deg);
  display: block;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.rail-nav a.active,
.rail-nav a:hover {
  color: var(--acid);
}

.rail-nav a.active i,
.rail-nav a:hover i {
  background: var(--acid);
  box-shadow: var(--glow);
}

.rail-foot {
  display: grid;
  gap: 10px;
}

.glyph {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.glyph img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.glyph:hover {
  transform: translateY(-2px);
  border-color: var(--acid);
  box-shadow: var(--glow);
}

.topbar {
  display: none;
}

.chain-run {
  position: relative;
  z-index: 5;
  margin-left: var(--rail);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: repeating-linear-gradient(
    -18deg,
    #0a0a0a,
    #0a0a0a 12px,
    #111 12px,
    #111 24px
  );
}

.chain-track {
  display: flex;
  gap: 42px;
  white-space: nowrap;
  padding: 10px 0;
  animation: ticker 28s linear infinite;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--acid);
  text-transform: uppercase;
}

main {
  position: relative;
  z-index: 2;
  margin-left: var(--rail);
}

.hero {
  min-height: 100vh;
  padding: 40px 48px 80px;
  display: grid;
  align-content: center;
  gap: 28px;
}

.gate {
  position: absolute;
  inset: 40px 24px auto;
  height: 280px;
  pointer-events: none;
}

.gate-horn {
  position: absolute;
  top: 0;
  width: min(18vw, 160px);
  height: 280px;
  filter: drop-shadow(0 0 18px var(--acid));
  animation: hornBreath 4s ease-in-out infinite;
}

.gate-horn.left { left: 0; }
.gate-horn.right { right: 0; animation-delay: -2s; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.hang-rig {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
}

.yoke {
  position: absolute;
  top: 8px;
  width: 70%;
  height: 70px;
}

.yoke-bar {
  display: block;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
  box-shadow: var(--glow);
}

.drop {
  position: absolute;
  top: 4px;
  width: 2px;
  height: 86px;
  background: linear-gradient(var(--acid), transparent);
  animation: chainSway 3.6s ease-in-out infinite;
}

.drop.left { left: 28%; }
.drop.right { right: 28%; animation-delay: -1.8s; }

.hang-glow {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 255, 20, 0.28), transparent 64%);
  filter: blur(18px);
  animation: pulseLogo 3.2s ease-in-out infinite;
}

.hang-logo {
  width: min(78%, 340px);
  animation: hang 4.2s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(198, 255, 20, 0.55));
  position: relative;
  z-index: 1;
}

.orbit {
  position: absolute;
  width: 108%;
  height: 108%;
  animation: spinBurst 24s linear infinite;
}

.orbit text {
  fill: var(--acid);
  font-family: var(--font-ui);
  font-size: 14px;
  letter-spacing: 6px;
}

.live-chip,
.kicker,
.bill-kicker {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--acid);
}

.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--acid);
  box-shadow: var(--glow);
  animation: blink 1.4s ease-in-out infinite;
}

h1 {
  margin: 0;
  line-height: 0.86;
}

h1 .tiny {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 28px);
  letter-spacing: 0.4em;
  color: var(--mute);
  margin-bottom: 8px;
}

.chrome {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 92px);
  color: #0b0b0b;
  -webkit-text-stroke: 2px var(--acid);
  text-shadow:
    0 0 8px var(--acid),
    0 0 28px rgba(198, 255, 20, 0.55),
    4px 5px 0 #050505;
  animation: chromePulse 3.8s ease-in-out infinite;
}

.ticker {
  margin: 12px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: 0.18em;
  color: var(--acid);
  text-shadow: 0 0 18px var(--acid);
}

.lede {
  margin: 0 0 22px;
  max-width: 56ch;
  font-size: 22px;
  line-height: 1.45;
  color: #dce6c8;
}

.spec-row {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.spec-row li {
  border: 1px solid var(--line);
  background: rgba(8, 10, 4, 0.72);
  padding: 12px 10px;
  display: grid;
  gap: 4px;
}

.spec-row em {
  font-style: normal;
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}

.spec-row strong {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--acid);
}

.chain-ico {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chain-ico img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.press {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--acid);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.press img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.press-acid {
  background: var(--acid);
  color: #111;
  box-shadow: var(--glow);
}

.press-acid img {
  filter: brightness(0);
}

.press-steel {
  background: rgba(0, 0, 0, 0.35);
  color: var(--ink);
}

.press-steel img {
  filter: brightness(0) invert(1);
}

.press:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 28px rgba(198, 255, 20, 0.55);
}

.mint-plate {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  max-width: 560px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.45);
}

.mint-plate span {
  font-family: var(--font-ui);
  font-size: 10px;
  color: var(--acid);
}

.mint-plate code {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--mute);
  font-size: 13px;
}

.mint-plate button {
  border: 1px solid var(--acid);
  background: transparent;
  color: var(--acid);
  padding: 7px 12px;
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mint-plate button:hover {
  background: var(--acid);
  color: #111;
}

.floor-feed {
  margin: 8px 0 0;
  border: 1px solid var(--line);
  background: #050505;
  overflow: hidden;
  position: relative;
  display: none;
  box-shadow: 0 0 40px rgba(198, 255, 20, 0.12);
}

.floor-feed.on {
  display: block;
}

.floor-feed figcaption {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acid);
  border-bottom: 1px solid var(--line);
}

.floor-feed video {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  display: block;
  filter: saturate(1.15) contrast(1.05);
}

.rec {
  color: #ff4d4d;
  animation: blink 1.2s ease-in-out infinite;
}

.panel {
  padding: 88px 48px;
  position: relative;
}

.panel-head {
  margin-bottom: 36px;
}

.panel-head h2,
.plate h3,
.quest-step h3 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.panel-head h2 {
  margin: 10px 0 14px;
  font-size: clamp(28px, 4vw, 48px);
}

.origin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plate {
  position: relative;
  padding: 28px 22px 24px;
  background: linear-gradient(180deg, rgba(16, 20, 8, 0.9), rgba(8, 8, 8, 0.78));
  border: 1px solid var(--line);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4), 0 18px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.plate::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 70%;
  background: radial-gradient(circle, rgba(198, 255, 20, 0.16), transparent 60%);
  pointer-events: none;
}

.plate,
.quest-step {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.plate:hover,
.quest-step:hover {
  border-color: var(--acid);
  box-shadow: var(--glow);
  transform: translateY(-6px);
}

.plate-num {
  font-family: var(--font-ui);
  font-size: 10px;
  color: var(--acid);
  letter-spacing: 0.2em;
}

.plate h3,
.quest-step h3 {
  margin: 10px 0;
  font-size: 22px;
}

.plate p,
.quest-step p,
.manifest p,
.scope-wait p,
.bill-copy p,
.foot p {
  margin: 0;
  color: var(--mute);
  font-size: 18px;
  line-height: 1.5;
}

.manifest {
  margin-top: 22px;
  padding: 22px 24px;
  border-left: 3px solid var(--acid);
  background: rgba(198, 255, 20, 0.05);
}

.manifest p {
  color: var(--ink);
  font-size: 20px;
}

.quest {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  counter-reset: q;
}

.quest-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.7);
  counter-increment: q;
  position: relative;
}

.quest-step::before {
  content: counter(q, decimal-leading-zero);
  position: absolute;
  right: 14px;
  top: 12px;
  font-family: var(--font-ui);
  font-size: 10px;
  color: var(--acid-dim);
}

.quest-ico {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: #0a0a0a;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 18px rgba(198, 255, 20, 0.08);
}

.quest-ico img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.quest-ico.sol img {
  filter: brightness(0) invert(1);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--acid);
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link img {
  width: 14px;
  height: 14px;
}

.scope {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--acid);
  background: #000;
  box-shadow: var(--glow);
  overflow: hidden;
}

.scope iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: none;
}

.scope.live iframe { display: block; }
.scope.live .scope-wait { display: none; }

.scope-wait {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
}

.scope-wait img {
  width: 120px;
  animation: hang 4s ease-in-out infinite;
  filter: drop-shadow(0 0 18px var(--acid));
}

.scope-corners::before,
.scope-corners::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--acid);
  z-index: 2;
  pointer-events: none;
}

.scope-corners::before {
  top: 8px;
  left: 8px;
  border-right: 0;
  border-bottom: 0;
}

.scope-corners::after {
  right: 8px;
  bottom: 8px;
  border-left: 0;
  border-top: 0;
}

.billboard {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--acid);
  box-shadow: 0 0 40px rgba(198, 255, 20, 0.18);
}

.billboard > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  animation: billZoom 18s ease-in-out infinite alternate;
}

.bill-smoke {
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background:
    linear-gradient(180deg, transparent, rgba(5, 8, 0, 0.88)),
    radial-gradient(circle at 15% 90%, rgba(198, 255, 20, 0.22), transparent 40%),
    radial-gradient(circle at 85% 90%, rgba(198, 255, 20, 0.2), transparent 42%);
  animation: haze 5s ease-in-out infinite alternate;
}

.bill-copy {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 28px;
  z-index: 2;
}

.bill-tick {
  margin: 6px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 54px);
  color: var(--acid);
  text-shadow: 0 0 22px var(--acid);
}

.foot {
  margin-left: var(--rail);
  padding: 28px 48px 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}

.foot img {
  width: 48px;
  border-radius: 50%;
  border: 1px solid var(--acid);
}

.foot div {
  display: grid;
}

.foot strong {
  font-family: var(--font-display);
}

.foot span,
.foot p {
  font-size: 14px;
}

.foot p {
  margin-left: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.8s ease forwards;
  animation-play-state: paused;
}

.reveal.in {
  animation-play-state: running;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }

@keyframes spinBurst {
  to { transform: rotate(360deg); }
}

@keyframes wash {
  from { opacity: 0.55; }
  to { opacity: 1; }
}

@keyframes slashMove {
  from { transform: translateX(-8%) rotate(var(--r, -18deg)); }
  to { transform: translateX(8%) rotate(var(--r, -18deg)); }
}

@keyframes haze {
  from { opacity: 0.7; transform: scaleX(1); }
  to { opacity: 1; transform: scaleX(1.06); }
}

@keyframes clampIn {
  from { transform: translateX(var(--dir, 0)) scaleX(var(--flip, 1)); }
  to { transform: translateX(0) scaleX(var(--flip, 1)); }
}

.clamp-horn.left { --dir: -42%; --flip: -1; }
.clamp-horn.right { --dir: 42%; --flip: 1; }

@keyframes dropMark {
  from { transform: translateY(-80px) scale(0.7); opacity: 0; }
  to { transform: none; opacity: 1; }
}

@keyframes stamp {
  from { transform: scale(1.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes pulseLogo {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(198, 255, 20, 0.35)); }
  50% { filter: drop-shadow(0 0 28px rgba(198, 255, 20, 0.8)); }
}

@keyframes hang {
  0%, 100% { transform: translateY(0) rotate(-1.4deg); }
  50% { transform: translateY(10px) rotate(1.6deg); }
}

@keyframes chainSway {
  0%, 100% { transform: rotate(-4deg); transform-origin: top; }
  50% { transform: rotate(4deg); transform-origin: top; }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes blink {
  50% { opacity: 0.25; }
}

@keyframes chromePulse {
  0%, 100% { text-shadow: 0 0 8px var(--acid), 0 0 22px rgba(198, 255, 20, 0.4), 4px 5px 0 #050505; }
  50% { text-shadow: 0 0 14px var(--acid-hot), 0 0 36px rgba(198, 255, 20, 0.7), 4px 5px 0 #050505; }
}

@keyframes hornBreath {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50% { transform: translateY(8px); opacity: 1; }
}

@keyframes billZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@media (hover: none), (pointer: coarse) {
  body, a, button { cursor: auto; }
  .aim { display: none; }
}

@media (max-width: 1100px) {
  .hero-grid,
  .origin-grid,
  .quest {
    grid-template-columns: 1fr;
  }

  .spec-row {
    grid-template-columns: 1fr 1fr;
  }

  .gate { display: none; }
}

@media (max-width: 860px) {
  :root { --rail: 0px; }
  .rail { display: none; }
  .rail.open {
    display: flex;
    width: min(80vw, 280px);
    background: #070707;
    z-index: 60;
  }
  .topbar {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 50;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(7, 7, 7, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
  }
  .top-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
  }
  .top-brand img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--acid);
  }
  .burger {
    width: 42px;
    height: 42px;
    border: 1px solid var(--acid);
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--acid);
  }
  .hero,
  .panel,
  .foot {
    padding-left: 18px;
    padding-right: 18px;
  }
  .foot {
    flex-wrap: wrap;
  }
  .foot p {
    margin-left: 0;
    width: 100%;
  }
  h1 .tiny { letter-spacing: 0.2em; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
