:root {
  --bg: #07050a;
  --bg-2: #120c08;
  --ink: #f6ecd4;
  --muted: #b9a889;
  --gold: #e8c36a;
  --gold-2: #f8e7b0;
  --gold-deep: #9a6b1f;
  --crimson: #c41e3a;
  --navy: #1a2744;
  --line: rgba(232, 195, 106, 0.24);
  --card: rgba(18, 12, 8, 0.72);
  --glow: rgba(232, 195, 106, 0.55);
  --pad: clamp(20px, 6vw, 80px);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Outfit, system-ui, sans-serif;
}

body {
  cursor: none;
  overflow-x: hidden;
  min-height: 100vh;
  background:
    radial-gradient(900px 520px at 10% -8%, rgba(232, 195, 106, 0.16), transparent 58%),
    radial-gradient(700px 480px at 92% 6%, rgba(196, 30, 58, 0.12), transparent 55%),
    radial-gradient(900px 620px at 50% 110%, rgba(232, 195, 106, 0.08), transparent 50%),
    var(--bg);
}

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

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

button {
  font: inherit;
  cursor: none;
}

.cursor-dot,
.cursor-ring,
.cursor-flare {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 9px;
  height: 9px;
  background: var(--gold-2);
  box-shadow: 0 0 16px var(--gold), 0 0 28px var(--crimson);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  box-shadow: 0 0 18px rgba(232, 195, 106, 0.35);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.cursor-flare {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(232, 195, 106, 0.22), transparent 68%);
  mix-blend-mode: screen;
}

body.is-hover .cursor-ring {
  width: 64px;
  height: 64px;
  border-color: var(--crimson);
}

#goldfield,
#spark {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.08;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.55) 3px
  );
}

.orb {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(40px);
  animation: drift 18s ease-in-out infinite;
}

.orb-a {
  width: 280px;
  height: 280px;
  top: 12%;
  left: 8%;
  background: rgba(232, 195, 106, 0.18);
}

.orb-b {
  width: 360px;
  height: 360px;
  right: 6%;
  top: 36%;
  background: rgba(196, 30, 58, 0.14);
  animation-delay: -6s;
}

.orb-c {
  width: 220px;
  height: 220px;
  bottom: 8%;
  left: 40%;
  background: rgba(248, 231, 176, 0.1);
  animation-delay: -11s;
}

@keyframes drift {
  0%,
  100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.12); }
}

.nav,
.stage,
.footer {
  position: relative;
  z-index: 3;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px var(--pad);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(7, 5, 10, 0.72);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Cinzel, serif;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold);
  box-shadow: 0 0 18px rgba(232, 195, 106, 0.45);
}

.nav nav {
  display: flex;
  gap: 22px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav nav a:hover {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-solid {
  background: linear-gradient(180deg, var(--gold-2), var(--gold-deep));
  color: #1a1206;
  box-shadow: 0 0 22px rgba(232, 195, 106, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
}

.btn:hover {
  box-shadow: 0 0 32px rgba(232, 195, 106, 0.55);
}

.stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 28px;
  padding: 12px var(--pad) 80px;
  align-items: start;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  min-height: 72vh;
  padding: 48px 0 24px;
}

.kicker,
.eyebrow,
.tick small,
.card small,
.stats small,
.ca-panel small,
.social small,
.story-tiles small,
.steps small {
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 11px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 12px var(--crimson);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.gold-title {
  margin: 0;
  font-family: Cinzel, serif;
  font-weight: 900;
  line-height: 0.85;
}

.gold-title .glitch {
  display: block;
  font-size: clamp(72px, 12vw, 148px);
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, #fff6d4 0%, var(--gold) 38%, var(--gold-deep) 72%, #5c3a10 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 24px rgba(232, 195, 106, 0.35));
  position: relative;
  animation: shimmer 6s linear infinite;
  background-size: 100% 200%;
}

@keyframes shimmer {
  0% { background-position: 0 0; }
  100% { background-position: 0 200%; }
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
}

.glitch::before {
  transform: translate(2px, -1px);
  opacity: 0.35;
  mix-blend-mode: screen;
  animation: glitch 3.2s steps(2) infinite;
}

.glitch::after {
  transform: translate(-2px, 1px);
  opacity: 0.25;
  filter: hue-rotate(-20deg);
  animation: glitch 2.4s steps(2) infinite reverse;
}

@keyframes glitch {
  0%,
  90%,
  100% { clip-path: inset(0 0 0 0); }
  92% { clip-path: inset(10% 0 40% 0); }
  94% { clip-path: inset(60% 0 5% 0); }
  96% { clip-path: inset(20% 0 30% 0); }
}

.gold-title small {
  display: block;
  margin-top: 10px;
  font-size: clamp(16px, 2.4vw, 28px);
  letter-spacing: 0.42em;
  color: var(--gold-2);
}

.lede {
  max-width: 56ch;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.sep {
  opacity: 0.4;
}

.hero-hud {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 1;
  margin-left: auto;
  display: grid;
  place-items: center;
}

.hero-hud img {
  width: 58%;
  height: 58%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 40px rgba(232, 195, 106, 0.45);
  z-index: 1;
}

.hud-ring {
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(232, 195, 106, 0.45);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.hud-ring.delay {
  inset: 0;
  border-style: solid;
  border-color: rgba(196, 30, 58, 0.28);
  animation-duration: 28s;
  animation-direction: reverse;
}

.hud-ring.delay-2 {
  inset: 18%;
  animation-duration: 12s;
}

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

.banner-band {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(232, 195, 106, 0.12);
}

.banner-band img {
  width: 100%;
  height: min(52vh, 520px);
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.08) contrast(1.05);
}

.banner-caption {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: space-between;
  padding: 16px 22px;
  background: linear-gradient(transparent, rgba(7, 5, 10, 0.92));
  font-family: Cinzel, serif;
  letter-spacing: 0.28em;
  font-size: 12px;
}

.banner-caption .gold {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 0.4em;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 28px 0 8px;
}

.tick {
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 12px;
  display: grid;
  gap: 6px;
}

.tick b {
  font-family: Cinzel, serif;
  font-size: 15px;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  margin: 28px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: Cinzel, serif;
  letter-spacing: 0.28em;
  color: var(--gold);
  padding: 14px 0;
}

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

.about h2,
.dispatch h2,
.tokenomics h2,
.buy h2,
.community h2 {
  font-family: Cinzel, serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  margin: 10px 0 24px;
}

em {
  font-style: italic;
  color: var(--gold);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.story-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.story-tiles article,
.stats article,
.card,
.social,
.ca-panel,
.steps li {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(232, 195, 106, 0.06), rgba(7, 5, 10, 0.4));
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.story-tiles article:hover,
.social:hover,
.stats article:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(232, 195, 106, 0.12);
}

.story-tiles h3 {
  font-family: Cinzel, serif;
  margin: 10px 0 8px;
}

.story-tiles p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.quote {
  margin: 56px 0;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(232, 195, 106, 0.08), transparent 50%),
    var(--card);
}

.quote blockquote {
  margin: 0;
  font-family: Cinzel, serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
}

.quote cite {
  display: block;
  margin-top: 16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-style: normal;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stats b {
  display: block;
  font-family: Cinzel, serif;
  font-size: clamp(20px, 2.4vw, 28px);
  margin: 8px 0 4px;
}

.stats span {
  color: var(--muted);
  font-size: 13px;
}

.buy-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 20px;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.steps h3 {
  margin: 8px 0 6px;
  font-family: Cinzel, serif;
}

.steps p,
.dispatch-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.ca-panel {
  display: grid;
  align-content: start;
  gap: 14px;
}

.ca {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 15px;
  word-break: break-all;
  color: var(--gold-2);
}

.copied {
  color: var(--gold);
  font-size: 12px;
}

.dex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dex-row a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.social b {
  display: block;
  margin: 10px 0 4px;
  font-family: Cinzel, serif;
  font-size: 22px;
}

.social span {
  color: var(--muted);
}

.dispatch {
  position: sticky;
  top: 92px;
  padding: 8px 0 40px;
}

.tweet {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(12, 10, 14, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(232, 195, 106, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tweet:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(232, 195, 106, 0.16);
}

.tweet > header {
  display: grid;
  grid-template-columns: 44px 1fr 22px;
  gap: 10px;
  align-items: center;
}

.avatar,
.quoted header img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.tweet header b {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
}

.tweet header span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.gov {
  display: inline-grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #8899a6;
  color: #0f1419;
  font-size: 9px;
}

.x-mark {
  width: 18px;
  color: var(--muted);
}

.tweet-text {
  margin: 14px 0 12px;
  font-size: 22px;
  font-family: Cinzel, serif;
  line-height: 1.3;
}

.tweet figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.tweet figure img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center 45%;
}

.quoted {
  margin: 12px 0 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.quoted header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.quoted header img {
  width: 22px;
  height: 22px;
}

.quoted header b {
  font-size: 13px;
}

.quoted header span,
.quoted p {
  color: var(--muted);
  font-size: 13px;
}

.quoted p {
  margin: 0;
  line-height: 1.45;
}

.tweet footer {
  margin-top: 14px;
}

.tweet time {
  color: var(--muted);
  font-size: 12px;
}

.metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.metrics b {
  color: var(--ink);
}

.dispatch-note {
  margin-top: 14px;
  font-size: 12px;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px var(--pad) 40px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
}

.footer-brand b {
  display: block;
  font-family: Cinzel, serif;
}

.footer-brand span,
.disclaimer {
  color: var(--muted);
  font-size: 13px;
}

.disclaimer {
  margin: 0;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 16px;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .stage {
    display: flex;
    flex-direction: column;
  }

  main {
    display: contents;
  }

  .hero { order: 1; }
  .banner-band { order: 2; }
  .ticker { order: 3; }
  .marquee { order: 4; }
  .dispatch {
    position: static;
    order: 5;
  }
  .about { order: 6; }
  .quote { order: 7; }
  .tokenomics { order: 8; }
  .buy { order: 9; }
  .community { order: 10; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-hud {
    margin: 0 auto;
  }

  .ticker,
  .stats,
  .story-tiles {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .buy-grid,
  .socials,
  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav nav {
    display: none;
  }

  .ticker,
  .stats,
  .story-tiles {
    grid-template-columns: 1fr;
  }

  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring,
  .cursor-flare {
    display: none;
  }
}
