/* ═══════════════════════════════════════════════════════════
   $CUMMIES // MISSION 002 — STYLES  ·  CUMROCKET PALETTE
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #07040d;
  --bg-2: #0d0a18;
  --bg-3: #0d0618;
  --pink: #ff2ec4;
  --pink-soft: rgba(255, 46, 196, 0.5);
  --purple: #7b2ff7;
  --purple-soft: rgba(123, 47, 247, 0.55);
  --white: #f5f2fa;
  --white-dim: rgba(245, 242, 250, 0.65);
  --white-mute: rgba(245, 242, 250, 0.35);
  --bnb: #f0b90b;
  --line: rgba(245, 242, 250, 0.12);

  /* neon double-glow — tight pink core + wide purple halo */
  --glow-sm: 0 0 6px var(--pink), 0 0 18px var(--purple-soft);
  --glow-md: 0 0 10px var(--pink), 0 0 30px var(--purple-soft);
  --glow-lg: 0 0 14px var(--pink), 0 0 44px rgba(123, 47, 247, 0.7);
  --text-glow: 0 0 6px var(--pink), 0 0 22px var(--purple-soft);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--white);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { transition: background-color 0.9s ease; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--pink); color: var(--bg); }

/* ── typography ── */
.mono { font-family: 'JetBrains Mono', monospace; }
.mono-xs {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
}
h2.section-title, h3, h4 {
  font-family: 'Anton', 'Impact', sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--white);
}
h2.section-title {
  font-size: clamp(56px, 10vw, 156px);
  letter-spacing: -0.03em;
}
h3 { font-size: clamp(28px, 3.4vw, 44px); }
h4 { font-size: clamp(20px, 2.4vw, 28px); }
em { font-style: normal; color: var(--pink); text-shadow: 0 0 8px var(--pink-soft); }

/* ── CHROME BAR ── */
.chrome {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: rgba(7, 4, 13, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.chrome-left, .chrome-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chrome .dot {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink);
  box-shadow: var(--glow-md);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.chrome .sep { opacity: 0.4; }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}

/* ── nebula (behind everything in hero) ── */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: -10%;
  pointer-events: none;
  z-index: 0;
  filter: blur(70px);
}
.hero::before {
  background:
    radial-gradient(ellipse 45% 40% at 22% 30%, rgba(123, 47, 247, 0.15), transparent 60%),
    radial-gradient(ellipse 50% 35% at 78% 25%, rgba(255, 46, 196, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 85%, rgba(123, 47, 247, 0.12), transparent 65%);
}
.hero::after {
  background:
    radial-gradient(ellipse 30% 25% at 15% 70%, rgba(255, 46, 196, 0.08), transparent 60%),
    radial-gradient(ellipse 35% 25% at 85% 60%, rgba(123, 47, 247, 0.10), transparent 60%);
  mix-blend-mode: screen;
}

.stars, .exhaust {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.exhaust { z-index: 3; mix-blend-mode: screen; }

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.parallax {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.layer {
  position: absolute;
  inset: 0;
}

/* headline behind rocket */
.hero-headline {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding-top: 40px;
  z-index: 2;
}
.hero-headline span {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(120px, 22vw, 340px);
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  opacity: 0.14;
  line-height: 1;
  white-space: nowrap;
}

/* rocket */
.rocket-anim {
  position: absolute;
  left: 50%;
  bottom: 8vh;
  transform: translateX(-50%);
  z-index: 4;
  width: clamp(140px, 18vw, 240px);
}
.rocket-anim .shake {
  display: block;
  will-change: transform;
}
.rocket {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 20px 40px rgba(0,0,0,0.6))
    drop-shadow(0 0 24px rgba(255, 46, 196, 0.35));
}
.engine-glow {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 100%;
  height: 260px;
  background:
    radial-gradient(ellipse at center top,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 245, 251, 0.75) 12%,
      rgba(255, 46, 196, 0.65) 32%,
      rgba(123, 47, 247, 0.35) 60%,
      transparent 80%);
  opacity: 0;
  filter: blur(6px);
  pointer-events: none;
  will-change: opacity, transform;
}

/* coins (BNB gold survives here only) — 6 discs, varied depth via parallax layer, individual drift + spin */
.coin {
  position: absolute;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
  will-change: translate, rotate;
  animation: coin-drift 7s ease-in-out infinite, coin-spin 22s linear infinite;
}
.coin-a { top: 22%; left: 12%; width: 42px; animation-duration: 6s, 22s; }
.coin-b { top: 60%; right: 14%; width: 56px; animation-duration: 8s, 30s; animation-delay: -2s, -8s; }
.coin-c { top: 38%; right: 30%; width: 30px; animation-duration: 7s, 18s; animation-delay: -1s, -3s; }
.coin-d { top: 10%; right: 6%;  width: 26px; animation-duration: 5s, 14s; animation-delay: -3s, -7s; }
.coin-e { top: 78%; left: 22%; width: 48px; animation-duration: 11s, 32s; animation-delay: -4s, -10s; }
.coin-f { top: 46%; left: 6%;  width: 22px; animation-duration: 9s, 20s; animation-delay: -2s, -5s; }
@keyframes coin-drift {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -18px; }
}
@keyframes coin-spin {
  to { rotate: 360deg; }
}

/* droplets */
.droplet {
  position: absolute;
  width: 34px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
  will-change: transform;
}
.droplet-a { top: 30%; left: 22%; animation: bob 9s ease-in-out infinite -1s; }
.droplet-b { top: 55%; left: 8%; width: 26px; animation: bob 7s ease-in-out infinite -3s; }
.droplet-c { top: 18%; right: 20%; width: 42px; animation: bob 10s ease-in-out infinite -2s; }

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}

/* moon rocks / ground */
.moon-rocks {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 240px;
}
.rocks {
  width: 100%;
  height: 100%;
  display: block;
}

/* hero UI */
.hero-ui {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 24px 40px;
  pointer-events: none;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: rgba(7, 4, 13, 0.6);
  color: var(--pink);
  pointer-events: auto;
  text-shadow: 0 0 8px var(--pink-soft);
}
.warning-tri {
  display: inline-block;
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid var(--pink);
  filter: drop-shadow(0 0 4px var(--pink));
}

.hero-copy {
  position: absolute;
  left: 24px;
  bottom: 130px;
  max-width: 460px;
  color: var(--white);
  font-size: 13px;
  line-height: 1.65;
  pointer-events: auto;
  border-left: 2px solid var(--pink);
  padding-left: 14px;
  box-shadow: -4px 0 20px -8px var(--pink);
}

.hero-buttons {
  position: absolute;
  right: 24px;
  bottom: 130px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  pointer-events: auto;
}

.hero-scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white-mute);
  animation: scroll-nudge 2s ease-in-out infinite;
}
@keyframes scroll-nudge {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.4; }
  50% { transform: translate(-50%, 6px); opacity: 0.9; }
}

/* ── terminal keys (buttons) ── */
.key {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 0;
  color: var(--white);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: none;
}
.key .key-inner {
  display: block;
  width: 100%;
  padding: 14px 22px;
  background: linear-gradient(180deg, #1a1522 0%, #0e0a16 100%);
  border: 1px solid rgba(245, 242, 250, 0.22);
  border-top-color: rgba(245, 242, 250, 0.45);
  border-bottom-color: rgba(0, 0, 0, 0.6);
  box-shadow:
    0 4px 0 0 var(--bg),
    0 5px 0 1px rgba(255, 255, 255, 0.05),
    0 6px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.08s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-align: center;
}
.key::before {
  content: attr(data-label);
  position: absolute;
  top: -8px;
  left: 8px;
  padding: 2px 6px;
  background: var(--bg);
  color: var(--white-mute);
  font-size: 9px;
  letter-spacing: 0.15em;
  z-index: 1;
}
.key:hover .key-inner {
  background: linear-gradient(180deg, #241a30 0%, #12091d 100%);
  color: var(--pink);
  border-color: var(--pink);
  box-shadow:
    0 4px 0 0 var(--bg),
    0 5px 0 1px rgba(255, 255, 255, 0.05),
    0 0 12px var(--pink-soft),
    0 0 40px rgba(123, 47, 247, 0.55);
  text-shadow: 0 0 6px var(--pink-soft);
}
.key:active .key-inner {
  transform: translateY(4px);
  box-shadow:
    0 0 0 0 var(--bg),
    0 0 8px var(--pink),
    0 0 30px var(--purple-soft);
}

/* ═══ SECTION FRAME ═══ */
section {
  position: relative;
  padding: 140px 40px;
  border-top: 1px solid var(--line);
}
.section-head {
  max-width: 1200px;
  margin: 0 auto 80px;
}
.section-eyebrow {
  color: var(--pink);
  margin-bottom: 24px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 46, 196, 0.4);
  background: rgba(255, 46, 196, 0.06);
  display: inline-block;
  text-shadow: 0 0 8px var(--pink-soft);
  box-shadow: 0 0 20px rgba(123, 47, 247, 0.25);
}
.section-lede {
  max-width: 640px;
  color: var(--white-dim);
  font-size: 14px;
  margin-top: 24px;
  line-height: 1.7;
}

/* ═══ MISSION LOG ═══ */
.mission { background: var(--bg); }

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 60px;
}
.tl-line {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.tl-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--draw, 0%);
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink), 0 0 24px var(--purple-soft);
  transition: height 0.1s linear;
}
.tl-entry {
  position: relative;
  margin-bottom: 40px;
}
.tl-entry:last-child { margin-bottom: 0; }
.tl-node {
  position: absolute;
  left: -42px;
  top: 30px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--pink);
  box-shadow:
    0 0 0 4px var(--bg),
    0 0 12px var(--pink),
    0 0 28px var(--purple-soft);
}
.tl-node.pulse::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.tl-card {
  position: relative;
  padding: 32px 36px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.tl-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: var(--pink);
  opacity: 0.5;
  box-shadow: 0 0 12px var(--pink-soft);
}
.tl-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--white-mute);
}
.tl-meta .sep { opacity: 0.4; }
.tl-card h3 { margin-bottom: 14px; }
.tl-card p {
  color: var(--white-dim);
  font-size: 14px;
  line-height: 1.7;
  max-width: 720px;
}
.tl-card a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 0.15s, text-shadow 0.15s;
}
.tl-card a:hover {
  color: var(--pink);
  text-shadow: 0 0 8px var(--pink-soft);
}

/* rubber stamps — pink neon with double glow */
.stamp {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: 0.08em;
  padding: 10px 18px 8px;
  border: 3px solid var(--pink);
  color: var(--pink);
  transform: rotate(-8deg) scale(0.3);
  opacity: 0;
  text-transform: uppercase;
  background: transparent;
  pointer-events: none;
  font-weight: 400;
  filter:
    drop-shadow(0 0 6px var(--pink))
    drop-shadow(0 0 22px var(--purple-soft));
  text-shadow: 0 0 6px var(--pink-soft);
}
.stamp.visible {
  transform: rotate(-8deg) scale(1);
  opacity: 0.95;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.15s;
}
.stamp.stamp-green { color: var(--pink); border-color: var(--pink); }

/* ═══ TELEMETRY ═══ */
.telemetry { background: var(--bg-3); }

.panel {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 46, 196, 0.03), transparent 50%),
    var(--bg-2);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(123, 47, 247, 0.08);
}
.panel-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 14px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  color: var(--white-dim);
}
.panel-top > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.led {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 6px var(--pink), 0 0 16px var(--purple-soft);
  animation: led-blink 1.6s ease-in-out infinite;
}
.led-green { animation-delay: 0s; }
.led-amber { animation-delay: -0.4s; }
.led-red    { animation-delay: -0.8s; }
@keyframes led-blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.readout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.cell {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cell:nth-child(3n) { border-right: none; }
.cell:nth-last-child(-n+3) { border-bottom: none; }
.cell-label { color: var(--white-mute); margin-bottom: 12px; }
.cell-value {
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--pink);
  text-shadow: 0 0 10px var(--pink), 0 0 28px var(--purple-soft);
}
.cell-text {
  color: var(--white);
  font-size: 34px;
  text-shadow: none;
  line-height: 1.05;
}

.ca-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}
.ca-row .ca-label {
  color: var(--white-mute);
  flex-shrink: 0;
}
.ca-row .ca-value {
  flex: 1;
  min-width: 240px;
  font-size: 13px;
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 8px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
}
.key-copy { min-width: 220px; }

.panel-plain {
  padding: 24px 28px;
  color: var(--white-dim);
  font-size: 13px;
  line-height: 1.7;
}

/* ── REFLECTIONS BAY: total reflected counter ── */
.reflect-total {
  padding: 64px 32px 56px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255, 46, 196, 0.06), transparent 70%);
}
.reflect-total .cell-label {
  color: var(--white-mute);
  margin-bottom: 24px;
}
.reflect-value {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 10vw, 140px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--pink);
  text-shadow:
    0 0 14px var(--pink),
    0 0 40px var(--purple-soft),
    0 0 80px rgba(123, 47, 247, 0.3);
  margin-bottom: 22px;
  word-break: break-all;
  transition: font-size 0.3s ease, color 0.3s ease;
}
.reflect-value[data-state='sync'] {
  color: var(--white-mute);
  text-shadow: none;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.14em;
  animation: sync-pulse 1.6s ease-in-out infinite;
}
@keyframes sync-pulse { 0%,100% { opacity: 0.55; } 50% { opacity: 1; } }
.reflect-unit {
  color: var(--pink);
  margin-bottom: 14px;
  letter-spacing: 0.22em;
  text-shadow: 0 0 6px var(--pink-soft);
}
.reflect-usd {
  color: var(--white-mute);
  margin-left: 10px;
  letter-spacing: 0.14em;
  text-shadow: none;
}
.reflect-usd:empty { display: none; }
.reflect-usd:not(:empty)::before { content: '·'; margin-right: 10px; opacity: 0.5; }
.reflect-value[data-state='sync'] + .reflect-unit { opacity: 0; }
.reflect-sub {
  color: var(--white-dim);
}

/* ── 3/3 tax note bar ── */
.tax-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 24px;
  background: rgba(255, 46, 196, 0.06);
  border-bottom: 1px solid var(--line);
  color: var(--white);
  text-align: center;
}

/* ── WALLET CHECKER ── */
.wallet-check {
  padding: 40px 32px;
  border-bottom: 1px solid var(--line);
}
.wc-label {
  color: var(--pink);
  margin-bottom: 16px;
  text-shadow: 0 0 8px var(--pink-soft);
}
.wc-input-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.wc-input-row input {
  flex: 1;
  min-width: 240px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--white);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.wc-input-row input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 12px var(--pink-soft);
}
.wc-input-row input::placeholder {
  color: var(--white-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.key-check { min-width: 140px; }
.key[disabled], .key:disabled { opacity: 0.55; pointer-events: none; }

.wc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  margin-top: 20px;
}
.wc-cards[hidden] { display: none; }
.wc-card {
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}
.wc-card:last-child { border-right: none; }
.wc-card .cell-label { color: var(--white-mute); }
.wc-value {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1;
  color: var(--pink);
  text-shadow: 0 0 10px var(--pink-soft), 0 0 24px var(--purple-soft);
  margin-top: 10px;
  word-break: break-all;
  letter-spacing: -0.02em;
}
.wc-usd {
  color: var(--white-mute);
  margin-top: 10px;
  letter-spacing: 0.14em;
}
.wc-usd:empty { display: none; }
.wc-error {
  color: var(--pink);
  margin-top: 12px;
  min-height: 14px;
  text-shadow: 0 0 6px var(--pink-soft);
}

/* ── footer CA line ── */
.foot-ca {
  color: var(--white-mute);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.foot-ca .mono { color: var(--white-dim); }

@media (max-width: 600px) {
  .wc-cards { grid-template-columns: 1fr; }
  .wc-card { border-right: none; border-bottom: 1px solid var(--line); }
  .wc-card:last-child { border-bottom: none; }
  .foot-ca { font-size: 10px; }
}

/* ═══ FOOTER ═══ */
.foot {
  padding: 80px 40px 40px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.foot-top {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.foot-wordmark {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
  margin-top: 8px;
}
.foot-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-links a {
  color: var(--white-dim);
  transition: color 0.15s, text-shadow 0.15s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.foot-links a:hover {
  color: var(--pink);
  border-bottom-color: var(--pink);
  text-shadow: 0 0 8px var(--pink-soft);
}
.foot-disclaimer {
  max-width: 1200px;
  margin: 0 auto 32px;
  color: var(--white-mute);
  font-size: 12px;
  line-height: 1.7;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.foot-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--white-mute);
}
.foot-stamp {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  padding: 8px 16px 6px;
  border: 3px solid var(--pink);
  color: var(--pink);
  transform: rotate(-3deg);
  text-transform: uppercase;
  opacity: 0.95;
  filter:
    drop-shadow(0 0 6px var(--pink))
    drop-shadow(0 0 20px var(--purple-soft));
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .readout { grid-template-columns: repeat(2, 1fr); }
  .cell:nth-child(3n) { border-right: 1px solid var(--line); }
  .cell:nth-child(2n) { border-right: none; }
  .cell:nth-last-child(-n+2) { border-bottom: none; }
  .hero-copy, .hero-buttons {
    position: static;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .hero-ui {
    justify-content: flex-end;
    padding-bottom: 100px;
  }
  .hero-copy {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 12px;
  }
  .hero-buttons {
    flex-direction: row;
    gap: 8px;
  }
  .key { min-width: 0; font-size: 11px; }
  .key .key-inner { padding: 12px 14px; }
  .hero-headline span { font-size: 30vw; }
  .stamp { font-size: 18px; padding: 6px 12px 5px; top: auto; right: 16px; bottom: 16px; }
  section { padding: 80px 20px; }
  .foot { padding: 60px 20px 30px; }
  .foot-top { flex-direction: column; align-items: flex-start; }
  .timeline { padding-left: 40px; }
  .tl-line { left: 20px; }
  .tl-node { left: -30px; }
  .tl-card { padding: 24px; }
}

@media (max-width: 600px) {
  h2.section-title { font-size: 44px; }
  .readout { grid-template-columns: 1fr; }
  .cell { border-right: none !important; border-bottom: 1px solid var(--line) !important; }
  .cell:last-child { border-bottom: none !important; }
  .cell-value { font-size: 40px; }
  .cell-text { font-size: 26px; }
  .rocket-anim { width: 130px; bottom: 20vh; }
  .moon-rocks { height: 120px; }
  .hero-copy { border-left: none; padding-left: 0; box-shadow: none; }
  .chrome { padding: 10px 14px; }
  .chrome-right .sep, .chrome-right span:not(#clock):not(:first-child) { display: none; }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .stars, .exhaust { display: none; }
  .rocket-anim { animation: none; }
  .coin, .droplet { animation: none !important; }
}
