:root {
  --orange: #ff7a00;
  --deep-orange: #ff4d00;
  --purple: #7b35ff;
  --violet: #4d18aa;
  --cyan: #7cf6ff;
  --sky: #aaf7ff;
  --ink: #070713;
  --space: #0c0920;
  --card: rgba(255, 255, 255, 0.1);
  --stroke: rgba(255, 255, 255, 0.22);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(124, 246, 255, 0.45), transparent 34%),
    radial-gradient(circle at 80% 30%, rgba(123, 53, 255, 0.45), transparent 35%),
    linear-gradient(135deg, #060713, #10092d 45%, #070713);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.08;
  background-image:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,.22) 50%, transparent 100%);
  mix-blend-mode: soft-light;
}

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 28px));
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(10, 8, 26, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0,0,0,.32);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, #fff, transparent 18%),
    linear-gradient(135deg, var(--orange), var(--deep-orange));
  border: 3px solid #fff;
  box-shadow: 0 0 18px rgba(255,122,0,.8);
}

.nav-links,
.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav a {
  text-decoration: none;
}

.nav-links a,
.nav-actions a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 750;
}

.nav-links a:hover,
.nav-actions a:hover {
  background: rgba(255,255,255,.12);
}

.nav-actions a {
  border: 1px solid rgba(255,255,255,.2);
}

.section {
  min-height: 100vh;
  position: relative;
  padding: 120px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  padding: 0 24px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(124,246,255,.12), transparent 32%),
    linear-gradient(90deg, rgba(5,6,18,.86), rgba(5,6,18,.35), rgba(5,6,18,.78)),
    linear-gradient(0deg, rgba(5,6,18,.92), transparent 35%, rgba(5,6,18,.45));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  text-align: center;
  padding-top: 70px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(74px, 14vw, 190px);
  line-height: .82;
  letter-spacing: -0.09em;
  text-transform: uppercase;
  text-shadow:
    -5px 5px 0 #000,
    0 0 30px rgba(255,122,0,.65),
    0 0 80px rgba(123,53,255,.6);
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: .88;
  letter-spacing: -0.07em;
}

.hero-copy,
.section-heading p,
.copy-card p,
.final-card p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.hero-copy {
  max-width: 760px;
  margin: 28px auto 0;
}

.hero-buttons,
.big-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 34px;
}

.button,
.big-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.big-links a:hover {
  transform: translateY(-3px);
}

.primary {
  color: #160606;
  background: linear-gradient(135deg, #fff, var(--orange) 40%, #ffca4f);
  box-shadow: 0 16px 40px rgba(255,122,0,.35);
}

.glass,
.big-links a {
  border: 2px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
}

.token-card {
  width: min(420px, 100%);
  margin: 42px auto 0;
  padding: 18px 22px;
  border-radius: 28px;
  border: 2px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(255,122,0,.16), rgba(123,53,255,.14));
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0,0,0,.32);
}

.token-card span,
.token-card small {
  display: block;
  color: rgba(255,255,255,.72);
  font-weight: 800;
}

.token-card strong {
  display: block;
  font-size: 42px;
  letter-spacing: -0.05em;
  color: #fff;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.section-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: center;
}

.lore {
  background:
    radial-gradient(circle at 22% 40%, rgba(124,246,255,.3), transparent 30%),
    radial-gradient(circle at 78% 55%, rgba(255,122,0,.22), transparent 28%),
    linear-gradient(135deg, #08091a, #160832);
}

.art-wrap {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.character {
  position: relative;
  z-index: 2;
  width: min(500px, 92%);
  filter: drop-shadow(0 30px 45px rgba(0,0,0,.45)) drop-shadow(0 0 25px rgba(255,122,0,.35));
  animation: float 4s ease-in-out infinite;
}

.orbit {
  position: absolute;
  width: 84%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.14);
}

.orbit-one {
  transform: rotate(-18deg) scaleX(1.08);
  box-shadow: 0 0 45px rgba(124,246,255,.18);
}

.orbit-two {
  transform: rotate(28deg) scaleX(1.18);
  border-color: rgba(255,122,0,.22);
}

.copy-card,
.final-card {
  padding: clamp(28px, 4vw, 52px);
  border: 2px solid var(--stroke);
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.06)),
    linear-gradient(135deg, rgba(255,122,0,.08), rgba(123,53,255,.1));
  backdrop-filter: blur(20px);
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}

.stats {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stats div {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
}

.stats strong {
  display: block;
  font-size: 34px;
  color: var(--orange);
}

.stats span {
  color: rgba(255,255,255,.74);
  font-weight: 750;
}

.roadmap {
  background:
    radial-gradient(circle at 50% 30%, rgba(123,53,255,.35), transparent 34%),
    linear-gradient(160deg, #0d071d, #080912);
}

.section-heading {
  width: min(900px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.roadmap-frame {
  width: min(760px, 92vw);
  border-radius: 46px;
  padding: 14px;
  border: 2px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(124,246,255,.18), rgba(255,122,0,.16), rgba(123,53,255,.18));
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
}

.roadmap-frame img {
  display: block;
  width: 100%;
  border-radius: 34px;
}

.gallery {
  background:
    radial-gradient(circle at 15% 20%, rgba(255,122,0,.28), transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(124,246,255,.25), transparent 32%),
    #080916;
}

.gallery-grid {
  width: min(1160px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 34px;
  border: 2px solid rgba(255,255,255,.18);
  box-shadow: 0 20px 54px rgba(0,0,0,.36);
  background: rgba(255,255,255,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gallery-grid img:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 32px 80px rgba(123,53,255,.35);
}

.chart-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(124,246,255,.2), transparent 28%),
    linear-gradient(180deg, #070713, #110725);
}

.chart-shell {
  width: min(1180px, 100%);
  height: min(72vh, 720px);
  padding: 12px;
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.09);
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
}

.chart-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 26px;
  background: #08080d;
}

.final {
  background:
    radial-gradient(circle at 50% 35%, rgba(255,122,0,.32), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(124,246,255,.2), transparent 28%),
    linear-gradient(135deg, #080916, #170832);
  text-align: center;
}

.final-card {
  width: min(980px, 100%);
}

.disclaimer {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: 14px !important;
  line-height: 1.7 !important;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s ease, transform .85s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 920px) {
  .nav {
    top: 10px;
    border-radius: 28px;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-actions {
    margin-left: auto;
  }

  .section-grid {
    grid-template-columns: 1fr;
  }

  .art-wrap {
    min-height: 360px;
  }

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

  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 110px 16px 64px;
  }

  .hero {
    padding: 0 16px;
  }

  h1 {
    font-size: 74px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .big-links a {
    width: 100%;
  }
}
