:root {
  --void: #02060f;
  --ink: #06101f;
  --midnight: #0a1830;
  --cyan: #00f2ff;
  --cyan-dim: #00c4d4;
  --cyan-soft: rgba(0, 242, 255, 0.15);
  --gold: #d4af37;
  --gold-bright: #f0d060;
  --white: #f4f7ff;
  --muted: rgba(244, 247, 255, 0.68);
  --stroke: rgba(0, 242, 255, 0.28);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-tech: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;
  --nav-h: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--white);
  background: var(--void);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

/* Atmosphere */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0.045;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

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

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

.orb-1 {
  width: 280px;
  height: 280px;
  background: var(--cyan);
  top: 15%;
  left: -80px;
  animation-delay: 0s;
}

.orb-2 {
  width: 220px;
  height: 220px;
  background: var(--gold);
  bottom: 20%;
  right: -60px;
  opacity: 0.18;
  animation-delay: -6s;
}

.orb-3 {
  width: 180px;
  height: 180px;
  background: var(--cyan-dim);
  top: 55%;
  left: 45%;
  opacity: 0.12;
  animation-delay: -12s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -50px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.92); }
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  transition: background 0.4s var(--ease-out), border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(2, 6, 15, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--stroke);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
}

.nav-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  box-shadow: 0 0 18px rgba(0, 242, 255, 0.35);
}

.nav-name {
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav-links a {
  font-family: var(--font-tech);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 2;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cyan);
  transition: transform 0.3s, opacity 0.3s;
}

.nav.open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  font-family: var(--font-tech);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}

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

.btn-lg {
  padding: 1rem 1.85rem;
  font-size: 0.82rem;
}

.btn-cyan {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dim));
  color: #021018;
  box-shadow: 0 0 24px rgba(0, 242, 255, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  animation: pulseCyan 2.8s ease-in-out infinite;
}

.btn-cyan:hover {
  box-shadow: 0 0 36px rgba(0, 242, 255, 0.55);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1200;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  box-shadow: 0 0 32px rgba(212, 175, 55, 0.5);
}

.btn-ghost {
  border-color: var(--stroke);
  color: var(--cyan);
  background: rgba(0, 242, 255, 0.06);
}

.btn-ghost:hover {
  background: rgba(0, 242, 255, 0.14);
  border-color: var(--cyan);
}

@keyframes pulseCyan {
  0%, 100% { box-shadow: 0 0 24px rgba(0, 242, 255, 0.35); }
  50% { box-shadow: 0 0 40px rgba(0, 242, 255, 0.6); }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 1.25rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroDrift 22s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.05) translateY(0); }
  to { transform: scale(1.1) translateY(-2%); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 15, 0.35) 0%, rgba(2, 6, 15, 0.15) 35%, rgba(2, 6, 15, 0.55) 70%, rgba(2, 6, 15, 0.95) 100%),
    linear-gradient(90deg, rgba(2, 6, 15, 0.55) 0%, transparent 40%, transparent 70%, rgba(2, 6, 15, 0.35) 100%);
}

.hero-rays {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 70% 45%, rgba(0, 242, 255, 0.18), transparent 70%);
  animation: rayPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes rayPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

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

.hero-logo {
  width: clamp(120px, 22vw, 200px);
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 2px solid rgba(0, 242, 255, 0.45);
  box-shadow:
    0 0 40px rgba(0, 242, 255, 0.45),
    0 0 80px rgba(0, 242, 255, 0.2);
  animation: logoBreath 3.5s ease-in-out infinite;
}

@keyframes logoBreath {
  0%, 100% {
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.45), 0 0 80px rgba(0, 242, 255, 0.2);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 60px rgba(0, 242, 255, 0.7), 0 0 110px rgba(0, 242, 255, 0.35);
    transform: translateY(-6px);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 14vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
}

.hero-title .line {
  display: block;
}

.line-white {
  color: var(--white);
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.line-cyan {
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(0, 242, 255, 0.65), 0 0 60px rgba(0, 242, 255, 0.35);
  animation: titleShimmer 3s ease-in-out infinite;
}

@keyframes titleShimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.25); }
}

.hero-ticker {
  font-family: var(--font-tech);
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.hero-tagline {
  max-width: 34rem;
  margin: 0 auto 1.75rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 22px;
  height: 36px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
}

.scroll-hint span {
  display: block;
  width: 4px;
  height: 8px;
  margin: 8px auto 0;
  background: var(--cyan);
  border-radius: 999px;
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* Sections */
.section {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 4vw, 3rem);
  overflow: hidden;
  isolation: isolate;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 0.8s var(--ease-out);
}

.section.in-view .section-bg {
  transform: scale(1);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2, 6, 15, 0.88) 0%, rgba(2, 6, 15, 0.72) 45%, rgba(2, 6, 15, 0.9) 100%),
    linear-gradient(90deg, rgba(2, 6, 15, 0.75) 0%, rgba(2, 6, 15, 0.4) 50%, rgba(2, 6, 15, 0.75) 100%);
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.section-inner.stack {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.section-header p:last-child {
  color: var(--muted);
  margin-top: 0.75rem;
}

.eyebrow {
  font-family: var(--font-tech);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.85rem;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
}

.section-copy p {
  color: var(--muted);
  margin-top: 1rem;
  font-size: 1.2rem;
}

.lore-points {
  list-style: none;
  margin-top: 1.75rem;
  display: grid;
  gap: 0.85rem;
}

.lore-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  color: var(--white);
}

.glow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  flex-shrink: 0;
  animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.art-frame {
  position: relative;
  max-width: 420px;
  margin-left: auto;
}

.art-frame img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--stroke);
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.art-glow {
  position: absolute;
  inset: 10% 8%;
  background: radial-gradient(circle, rgba(0, 242, 255, 0.45), transparent 70%);
  filter: blur(30px);
  z-index: 0;
  animation: artGlow 3s ease-in-out infinite;
}

@keyframes artGlow {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* Tokenomics */
.token-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.token-stat {
  text-align: center;
  padding: 1.75rem 1rem;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(0, 242, 255, 0.08), rgba(2, 6, 15, 0.55));
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.token-stat:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(0, 242, 255, 0.2);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  color: var(--cyan);
  line-height: 1;
  text-shadow: 0 0 24px rgba(0, 242, 255, 0.45);
  margin-bottom: 0.4rem;
}

.stat-label {
  font-family: var(--font-tech);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.ca-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.06);
}

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

.ca-box code {
  flex: 1;
  min-width: 200px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  word-break: break-all;
}

/* How to buy */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.step {
  display: flex;
  gap: 1.1rem;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--stroke);
  background: rgba(2, 6, 15, 0.55);
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.step:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(0, 242, 255, 0.15);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
}

.step h3 {
  font-family: var(--font-tech);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.step p {
  color: var(--muted);
  font-size: 1.05rem;
}

.step a {
  color: var(--cyan);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.step a:hover {
  border-bottom-color: var(--cyan);
}

.center {
  text-align: center;
}

.center-text {
  text-align: center;
}

/* Roadmap */
.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}

.roadmap::before {
  content: "";
  position: absolute;
  top: 2.2rem;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--gold), var(--cyan), transparent);
  opacity: 0.45;
  pointer-events: none;
}

.phase {
  padding: 1.6rem 1.25rem;
  border: 1px solid var(--stroke);
  background: rgba(2, 6, 15, 0.6);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.phase:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.18);
}

.phase-tag {
  display: inline-block;
  font-family: var(--font-tech);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.85rem;
}

.phase h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.55rem;
}

.phase p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Community */
.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem;
}

.social-card {
  display: grid;
  gap: 0.35rem;
  min-width: min(280px, 100%);
  padding: 1.75rem 2rem;
  border: 1px solid var(--stroke);
  background: linear-gradient(160deg, rgba(0, 242, 255, 0.1), rgba(2, 6, 15, 0.7));
  text-align: left;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.social-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--cyan);
  box-shadow: 0 0 36px rgba(0, 242, 255, 0.22);
}

.social-icon {
  font-size: 1.8rem;
  color: var(--cyan);
  line-height: 1;
}

.social-name {
  font-family: var(--font-tech);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.social-cta {
  color: var(--gold);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--stroke);
  background: #01040a;
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem);
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-tech);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.footer-brand span {
  color: var(--cyan);
  font-size: 0.9rem;
}

.disclaimer {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 36rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  font-family: var(--font-tech);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--cyan);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 0.08s);
}

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

.hero .reveal {
  opacity: 0;
  transform: translateY(28px);
}

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

.hero .hero-logo.reveal.visible {
  transition-delay: 0.05s;
}

.hero .hero-title.reveal.visible {
  transition-delay: 0.18s;
}

.hero .hero-ticker.reveal.visible {
  transition-delay: 0.32s;
}

.hero .hero-tagline.reveal.visible {
  transition-delay: 0.42s;
}

.hero .hero-cta.reveal.visible {
  transition-delay: 0.55s;
}

/* Responsive */
@media (max-width: 980px) {
  .section-inner {
    grid-template-columns: 1fr;
  }

  .art-frame {
    margin: 0 auto;
    max-width: 340px;
  }

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

  .roadmap::before {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer-brand {
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 15, 0.96);
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .nav.open .nav-links {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

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

@media (max-width: 640px) {
  .hero {
    align-items: center;
    padding-bottom: 4rem;
  }

  .hero-banner {
    object-position: 70% center;
  }

  .steps,
  .token-grid,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .ca-box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
