:root {
  --bg: #070604;
  --bg-2: #100e08;
  --ink: #f7f0d8;
  --muted: #b9aa7a;
  --gold: #ffd000;
  --gold-2: #ffe56a;
  --gold-dim: #c9a227;
  --line: rgba(255, 208, 0, 0.18);
  --sol: #14f195;
  --purple: #9945ff;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Syne", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}

a,
button {
  cursor: none;
}

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

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

.magic-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: drift 18s ease-in-out infinite;
}

.orb-a {
  width: 420px;
  height: 420px;
  background: var(--gold);
  top: -80px;
  right: 10%;
}

.orb-b {
  width: 360px;
  height: 360px;
  background: var(--purple);
  bottom: 10%;
  left: -80px;
  animation-delay: -6s;
}

.orb-c {
  width: 280px;
  height: 280px;
  background: var(--sol);
  top: 50%;
  right: -60px;
  animation-delay: -11s;
  opacity: 0.18;
}

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

.cursor,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.cursor {
  width: 10px;
  height: 10px;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold), 0 0 36px var(--gold-2);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 208, 0, 0.7);
  opacity: 0;
  transition: width 0.18s ease, height 0.18s ease, background 0.18s ease, opacity 0.2s ease;
}

.cursor-ring.hot {
  width: 56px;
  height: 56px;
  background: rgba(255, 208, 0, 0.08);
}

.nav,
main,
.foot,
.mobile-menu {
  position: relative;
  z-index: 3;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.08em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(255, 208, 0, 0.55);
}

.nav nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-weight: 600;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
}

.icon-btn:hover {
  background: rgba(255, 208, 0, 0.1);
  box-shadow: 0 0 18px rgba(255, 208, 0, 0.25);
}

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--gold);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 20px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 7vw 24px;
  background: #0c0a06;
  border-bottom: 1px solid var(--line);
}

.mobile-menu.open {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1a1400;
  box-shadow: 0 0 24px rgba(255, 208, 0, 0.35);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--gold);
  background: rgba(255, 208, 0, 0.04);
}

.btn-lg {
  padding: 14px 26px;
  font-size: 16px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  padding: 48px 7vw 72px;
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 6, 4, 0.92) 18%, rgba(7, 6, 4, 0.55) 55%, rgba(7, 6, 4, 0.88) 100%),
    url("../assets/banner.jpg") center / cover no-repeat;
  filter: saturate(1.15) contrast(1.08);
  animation: bannerPulse 10s ease-in-out infinite;
}

@keyframes bannerPulse {
  0%,
  100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.kicker {
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sol);
  box-shadow: 0 0 12px var(--sol);
  animation: blink 1.6s infinite;
}

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

h1 {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 148px);
  line-height: 0.82;
  letter-spacing: 0.04em;
}

h1 small {
  display: block;
  font-size: 0.28em;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-top: 8px;
}

.glitch {
  position: relative;
  display: inline-block;
  text-shadow: 0 0 28px rgba(255, 208, 0, 0.45);
  background: linear-gradient(90deg, #fff6c8, var(--gold), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s linear infinite;
  background-size: 200% 100%;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
  overflow: hidden;
  pointer-events: none;
}

.glitch::before {
  clip-path: inset(0 0 62% 0);
  transform: translate(-3px, 0);
  opacity: 0.45;
  animation: glitch 3.2s infinite;
}

.glitch::after {
  clip-path: inset(70% 0 0 0);
  transform: translate(3px, 0);
  opacity: 0.35;
  animation: glitch 2.4s infinite reverse;
}

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

@keyframes glitch {
  0%,
  90%,
  100% { transform: translate(0); }
  92% { transform: translate(-4px, 1px); }
  96% { transform: translate(4px, -1px); }
}

.lede {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.65;
  color: #efe4b8;
  margin: 22px 0 28px;
}

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

.ca-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 16px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.45);
  border-radius: 14px;
  max-width: 520px;
  box-shadow: 0 0 0 1px rgba(255, 208, 0, 0.05), 0 0 32px rgba(255, 208, 0, 0.08);
}

.ca-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold-dim);
}

.ca-row code,
.mono {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold-2);
}

.copy-btn {
  margin-left: auto;
  background: var(--gold);
  border: 0;
  color: #1a1400;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 10px;
  font-family: var(--font-body);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 32px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  max-width: 520px;
}

.stats li {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 208, 0, 0.04);
}

.stats b {
  display: block;
  color: var(--gold);
  font-size: 18px;
}

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

.hero-stage {
  display: grid;
  place-items: center;
}

.mug-orbit {
  position: relative;
  width: min(420px, 80vw);
  height: min(420px, 80vw);
  display: grid;
  place-items: center;
  perspective: 800px;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.mug {
  width: 72%;
  border-radius: 50%;
  object-fit: cover;
  animation: float 5.5s ease-in-out infinite;
  box-shadow:
    0 0 0 10px rgba(255, 208, 0, 0.08),
    0 0 80px rgba(255, 208, 0, 0.45),
    0 30px 60px rgba(0, 0, 0, 0.45);
  filter: saturate(1.15);
}

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

.ring-2 {
  inset: -2%;
  border-style: solid;
  border-color: transparent transparent rgba(20, 241, 149, 0.4) rgba(153, 69, 255, 0.35);
  animation-duration: 12s;
  animation-direction: reverse;
}

.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--gold);
  animation: spark 3.2s ease-in-out infinite;
}

.s1 { top: 12%; left: 22%; }
.s2 { bottom: 18%; right: 14%; animation-delay: -1s; }
.s3 { top: 40%; right: 6%; animation-delay: -2s; width: 5px; height: 5px; }

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

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

@keyframes spark {
  0%,
  100% { transform: scale(0.6); opacity: 0.4; }
  50% { transform: scale(1.6); opacity: 1; }
}

.mug-caption {
  margin-top: 18px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 208, 0, 0.05);
  padding: 12px 0;
}

.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  font-size: 22px;
  color: var(--gold);
}

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

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  padding: 96px 7vw;
  align-items: start;
}

.lore h2,
.token h2,
.buy h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 84px);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.lore p {
  color: #e6d9a8;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 62ch;
}

.lore-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.lore-cards article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 208, 0, 0.07), rgba(255, 208, 0, 0.02));
  min-height: 150px;
}

.lore-cards h3 {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.tweet-rail {
  position: sticky;
  top: 96px;
}

.rail-label {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 12px;
}

.x-card {
  display: block;
  padding: 20px;
  border: 1px solid #2f3336;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 0 0 1px rgba(255, 208, 0, 0.08), 0 20px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.x-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(255, 208, 0, 0.18);
}

.x-card header {
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  gap: 12px;
  align-items: center;
}

.x-card header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.x-card header strong {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
}

.x-card header span {
  display: block;
  color: #71767b;
  font-size: 14px;
}

.verified {
  display: inline-grid !important;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #1d9bf0;
  color: #fff;
  font-size: 10px;
}

.x-logo {
  width: 22px;
  color: #e7e9ea;
}

.reply-to {
  margin: 12px 0 6px;
  color: #71767b;
  font-size: 14px;
}

.reply-to span {
  color: #1d9bf0;
}

.tweet-text {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  margin: 8px 0 14px;
}

.x-card time {
  color: #71767b;
  font-size: 14px;
}

.x-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #2f3336;
  color: #71767b;
  font-size: 13px;
}

.rail-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.rail-note a {
  color: var(--gold);
  text-decoration: underline;
}

.token,
.buy {
  padding: 24px 7vw 96px;
}

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

.glass {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(16, 14, 8, 0.7);
  backdrop-filter: blur(12px);
}

.glass span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.glass b {
  font-size: 22px;
}

.steps {
  list-style: none;
  display: grid;
  gap: 14px;
  max-width: 760px;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  padding: 22px 22px 22px 78px;
  border: 1px solid var(--line);
  border-radius: 18px;
  position: relative;
  background: rgba(255, 208, 0, 0.04);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #1a1400;
  font-weight: 800;
}

.steps p {
  color: var(--muted);
  margin-top: 6px;
}

.buy-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.foot {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 32px 7vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.foot img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.foot strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.foot-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--gold);
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--gold);
  color: #1a1400;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  opacity: 0;
  z-index: 50;
  transition: 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 980px) {
  body {
    cursor: auto;
  }

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

  .nav nav,
  .nav-actions .btn {
    display: none;
  }

  .menu-btn {
    display: grid;
    place-items: center;
  }

  .hero-grid,
  .split,
  .token-grid,
  .lore-cards,
  .foot {
    grid-template-columns: 1fr;
  }

  .tweet-rail {
    position: static;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 84px;
  }
}
