:root {
  --bg: #05070f;
  --bg-2: #0a1220;
  --navy: #101a2e;
  --gold: #e8c547;
  --gold-2: #f6e27a;
  --gold-deep: #b8892a;
  --ink: #f4efe2;
  --muted: #b7b09a;
  --line: rgba(232, 197, 71, 0.22);
  --glass: rgba(12, 18, 32, 0.72);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Outfit, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

#gold-dust {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

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

.nav,
main,
.footer {
  position: relative;
  z-index: 2;
}

.nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 6vw;
  background: linear-gradient(180deg, rgba(5, 7, 15, 0.92), rgba(5, 7, 15, 0.55) 70%, transparent);
  backdrop-filter: blur(14px);
  z-index: 20;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: Cinzel, serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.brand-mark {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.92rem;
  color: var(--muted);
}

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

.nav-cta {
  color: var(--bg) !important;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-deep));
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 11px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--gold);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  padding: 3vh 6vw 8vh;
  position: relative;
}

.hero-glow {
  position: absolute;
  width: 50vw;
  height: 50vw;
  right: -8vw;
  top: 10%;
  background: radial-gradient(circle, rgba(232, 197, 71, 0.18), transparent 62%);
  filter: blur(10px);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px transparent; }
}

h1 {
  font-family: Cinzel, serif;
  font-weight: 900;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.gold-text {
  background: linear-gradient(180deg, #fff6c8 0%, #e8c547 42%, #8d6418 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ticker {
  margin: 1rem 0 1.4rem;
  font-family: "Share Tech Mono", monospace;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.ticker em {
  color: var(--gold-2);
  font-style: normal;
}

.lede {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.65;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-gold {
  color: #1a1204;
  background: linear-gradient(180deg, #fff1a8, #d4a017);
  box-shadow: 0 10px 30px rgba(212, 160, 23, 0.28);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
}

.ca-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(10, 16, 28, 0.65);
  max-width: 36rem;
}

.ca-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

#ca-display {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.86rem;
  color: var(--muted);
  flex: 1;
}

.copy-btn {
  border: 0;
  background: rgba(232, 197, 71, 0.12);
  color: var(--gold-2);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: Outfit, sans-serif;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.coin {
  width: min(560px, 96%);
  position: relative;
  z-index: 2;
  animation: float 6.5s ease-in-out infinite;
  mix-blend-mode: screen;
  filter: drop-shadow(0 40px 50px rgba(232, 197, 71, 0.25));
  -webkit-mask-image: radial-gradient(circle at 50% 48%, #000 46%, transparent 74%);
  mask-image: radial-gradient(circle at 50% 48%, #000 46%, transparent 74%);
}

.coin-glow {
  position: absolute;
  width: 70%;
  height: 28%;
  bottom: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 197, 71, 0.45), transparent 70%);
  filter: blur(18px);
}

.coin-orbit {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border: 1px dashed rgba(232, 197, 71, 0.28);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.coin-orbit::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 18px var(--gold);
}

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

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

.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: rgba(232, 197, 71, 0.04);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  padding: 0.95rem 0;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-family: Cinzel, serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
}

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.8s ease forwards;
}

.hero-copy {
  animation: rise 0.9s ease both;
}

.hero-visual {
  animation: rise 1.1s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.section {
  padding: 7.5rem 6vw;
}

.section-head {
  margin-bottom: 3rem;
  max-width: 40rem;
}

.kicker {
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}

h2 {
  font-family: Cinzel, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 700;
}

.about-grid,
.stats,
.timeline {
  display: grid;
  gap: 1.2rem;
}

.about-grid {
  grid-template-columns: repeat(3, 1fr);
}

.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.glass h3,
.steps h3,
.timeline h3 {
  font-family: Cinzel, serif;
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
}

.glass p,
.steps p,
.timeline p,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

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

.stat {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(232, 197, 71, 0.08), rgba(10, 16, 28, 0.5));
}

.stat-value {
  display: block;
  font-family: Cinzel, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--gold-2);
  margin-bottom: 0.35rem;
}

.stat-label {
  color: var(--muted);
  font-size: 0.88rem;
}

.token-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  margin-top: 1.6rem;
}

.token-notes li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  color: var(--muted);
}

.token-notes strong {
  color: var(--ink);
  font-weight: 600;
}

.steps {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(10, 16, 28, 0.55);
}

.step-num {
  font-family: Cinzel, serif;
  color: var(--gold);
  font-size: 1.2rem;
}

.steps code {
  font-family: "Share Tech Mono", monospace;
  color: var(--gold-2);
  font-size: 0.88rem;
}

.network-card {
  margin-top: 1.6rem;
}

.network-card dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.network-card dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.network-card a {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.timeline {
  grid-template-columns: repeat(3, 1fr);
}

.timeline article {
  padding: 1.8rem;
  border-top: 2px solid var(--gold);
  background: rgba(10, 16, 28, 0.5);
}

.timeline span {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.join {
  padding-top: 2rem;
}

.join-panel {
  text-align: center;
  padding: 5rem 1.5rem;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 197, 71, 0.18), transparent 45%),
    linear-gradient(180deg, #121a2c, #080b14);
}

.join-panel h2 {
  margin-bottom: 1rem;
}

.join-panel p {
  color: var(--muted);
  max-width: 34rem;
  margin: 0 auto 2rem;
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer {
  padding: 3rem 6vw 4rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
}

.copy {
  font-size: 0.85rem;
  color: #7d7768 !important;
}

@media (max-width: 980px) {
  .hero,
  .about-grid,
  .stats,
  .timeline,
  .network-card dl {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-visual {
    min-height: 380px;
    order: -1;
  }

  .menu-btn {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 6vw;
    left: 6vw;
    display: none;
    flex-direction: column;
    padding: 1rem;
    background: #0c1322;
    border: 1px solid var(--line);
    border-radius: 16px;
  }

  .nav-links.open {
    display: flex;
  }
}

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

  .reveal,
  .hero-copy,
  .hero-visual {
    opacity: 1;
    transform: none;
  }
}
