/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Rajdhani', system-ui, -apple-system, sans-serif;
  background: #04060a;
  color: #d8e6f7;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

/* ---------- TOKENS ---------- */
:root {
  --bg: #04060a;
  --bg-2: #07101c;
  --panel: rgba(10, 18, 32, 0.6);
  --panel-2: rgba(14, 26, 46, 0.7);
  --line: rgba(0, 180, 255, 0.18);
  --line-2: rgba(0, 180, 255, 0.08);
  --text: #d8e6f7;
  --muted: #7a8aa3;
  --neon: #00b4ff;
  --neon-2: #38e1ff;
  --neon-soft: rgba(0, 180, 255, 0.5);
  --shadow-neon: 0 0 30px rgba(0, 180, 255, 0.55);
  --shadow-neon-strong: 0 0 60px rgba(0, 180, 255, 0.75);
  --container: 1200px;
}

/* ---------- BACKGROUND LAYERS ---------- */
.bg-layer {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(0, 100, 200, 0.25), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(0, 180, 255, 0.18), transparent 60%),
    linear-gradient(180deg, #04060a 0%, #03080f 60%, #02050a 100%);
}
.grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 180, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.scanline {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}
.vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.6) 100%);
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: screen;
}
.cursor-dot {
  width: 6px; height: 6px; background: var(--neon-2);
  border-radius: 50%; box-shadow: 0 0 12px var(--neon);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid var(--neon-soft);
  border-radius: 50%;
}
.cursor-ring.hover {
  width: 56px; height: 56px;
  border-color: var(--neon-2);
  background: rgba(0, 180, 255, 0.08);
}
@media (max-width: 900px), (hover: none) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- LAYOUT ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; width: 100%; }
.section { padding: 120px 0; position: relative; }
.section-alt { background:
  linear-gradient(180deg, transparent, rgba(0, 180, 255, 0.025) 50%, transparent);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}

/* ---------- TYPE ---------- */
h1, h2, h3, h4, .brand-text, .stat-num, .donut-num, .step-num, .phase-tag, .tk-num {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.02em;
}
.accent { color: var(--neon); text-shadow: 0 0 14px rgba(0,180,255,0.55); }
.kicker {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--neon);
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 180, 255, 0.05);
}

.section-head { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}
.section-sub { color: var(--muted); margin-top: 14px; font-size: 18px; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(4, 6, 10, 0.55);
  border-bottom: 1px solid var(--line-2);
  transition: background 0.3s, border-color 0.3s;
}
.nav.scrolled { background: rgba(4, 6, 10, 0.85); border-color: var(--line); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 38px; height: 38px; border-radius: 50%;
  box-shadow: 0 0 20px rgba(0,180,255,0.5);
  border: 1px solid var(--line);
}
.brand-text { font-weight: 900; font-size: 15px; letter-spacing: 0.18em; }

.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); position: relative; padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--neon); transform: scaleX(0);
  transition: transform 0.3s; transform-origin: left;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-socials { display: flex; gap: 8px; }
.nav-icon {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(0,180,255,0.04);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.25s;
}
.nav-icon:hover {
  color: var(--neon-2);
  border-color: var(--neon);
  background: rgba(0,180,255,0.1);
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(0,180,255,0.3);
}

.nav-cta { padding: 10px 20px; font-size: 12px; }
.nav-burger {
  display: none; flex-direction: column; gap: 4px; padding: 8px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px; background: var(--text);
  transition: 0.3s;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-socials { margin-left: auto; }
  .nav-burger { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 16px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(4,6,10,0.95);
    padding: 24px; border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav.open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ---------- BUTTONS ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  font-family: 'Orbitron', sans-serif;
  font-size: 13px; letter-spacing: 0.25em;
  text-transform: uppercase; font-weight: 700;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.3s, border-color 0.3s, color 0.3s;
  isolation: isolate;
}
.btn .btn-label { position: relative; z-index: 2; }
.btn .btn-glow {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn:hover .btn-glow { transform: translateX(100%); }

.btn-primary {
  color: #001120;
  background: linear-gradient(135deg, var(--neon-2), var(--neon));
  box-shadow: 0 0 0 1px rgba(56,225,255,0.5), 0 8px 30px rgba(0,180,255,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(56,225,255,0.8), 0 12px 40px rgba(0,180,255,0.6);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(0, 180, 255, 0.04);
}
.btn-ghost:hover {
  border-color: var(--neon);
  color: var(--neon-2);
  box-shadow: 0 0 30px rgba(0,180,255,0.2);
}

.btn-mini { padding: 8px 14px; font-size: 11px; border: 1px solid var(--line); border-radius: 4px; }
.btn-mini:hover { border-color: var(--neon); color: var(--neon-2); }

.btn-xl { padding: 18px 40px; font-size: 15px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 0 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.city {
  position: absolute; bottom: 60px; left: 0; right: 0; height: 220px;
  background: linear-gradient(180deg, transparent, rgba(0,180,255,0.05));
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 220' preserveAspectRatio='none'><polygon fill='black' points='0,220 0,150 40,150 40,90 80,90 80,140 130,140 130,70 170,70 170,40 210,40 210,110 260,110 260,80 300,80 300,150 360,150 360,100 410,100 410,60 450,60 450,30 490,30 490,110 540,110 540,140 600,140 600,90 660,90 660,120 720,120 720,70 780,70 780,40 820,40 820,100 880,100 880,150 940,150 940,80 1000,80 1000,120 1060,120 1060,60 1110,60 1110,90 1170,90 1170,130 1230,130 1230,90 1290,90 1290,40 1340,40 1340,110 1400,110 1400,150 1460,150 1460,80 1520,80 1520,130 1600,130 1600,220'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 220' preserveAspectRatio='none'><polygon fill='black' points='0,220 0,150 40,150 40,90 80,90 80,140 130,140 130,70 170,70 170,40 210,40 210,110 260,110 260,80 300,80 300,150 360,150 360,100 410,100 410,60 450,60 450,30 490,30 490,110 540,110 540,140 600,140 600,90 660,90 660,120 720,120 720,70 780,70 780,40 820,40 820,100 880,100 880,150 940,150 940,80 1000,80 1000,120 1060,120 1060,60 1110,60 1110,90 1170,90 1170,130 1230,130 1230,90 1290,90 1290,40 1340,40 1340,110 1400,110 1400,150 1460,150 1460,80 1520,80 1520,130 1600,130 1600,220'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background: linear-gradient(180deg, rgba(0,180,255,0.18), rgba(0,180,255,0.04));
  filter: drop-shadow(0 -10px 30px rgba(0,180,255,0.2));
  opacity: 0.5;
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  opacity: 0.5; animation: float 14s ease-in-out infinite;
}
.orb-1 { width: 400px; height: 400px; background: radial-gradient(circle, #0080ff, transparent); top: 10%; right: -100px; }
.orb-2 { width: 360px; height: 360px; background: radial-gradient(circle, #00b4ff, transparent); bottom: 5%; left: -80px; animation-delay: -7s; }

@keyframes float {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(30px, -40px); }
}

.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}

.tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 180, 255, 0.05);
  font-size: 12px; letter-spacing: 0.3em; color: var(--neon-2);
  margin-bottom: 32px;
  font-family: 'Orbitron', sans-serif;
}
.tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--neon); box-shadow: 0 0 12px var(--neon);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.hero-sub {
  margin-top: 24px;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--muted); max-width: 520px;
}
@media (max-width: 900px) { .hero-sub { margin-left: auto; margin-right: auto; } }

.hero-cta {
  display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap;
}
@media (max-width: 900px) { .hero-cta { justify-content: center; } }

.hero-contract {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 28px;
  padding: 10px 14px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 180, 255, 0.05);
  backdrop-filter: blur(6px);
  font-family: 'Orbitron', monospace;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s, background 0.25s;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.hero-contract::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(56,225,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s;
  pointer-events: none;
}
.hero-contract:hover {
  border-color: var(--neon);
  background: rgba(0, 180, 255, 0.09);
  box-shadow: 0 0 30px rgba(0, 180, 255, 0.25);
  transform: translateY(-1px);
}
.hero-contract:hover::before { transform: translateX(100%); }
.hero-contract.copied {
  border-color: var(--neon-2);
  box-shadow: 0 0 40px rgba(56,225,255,0.45);
}
.hc-label {
  font-size: 10px; letter-spacing: 0.35em;
  color: var(--neon); padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(0,180,255,0.08);
  flex-shrink: 0;
}
.hc-addr {
  font-size: 13px; letter-spacing: 0.06em;
  color: var(--neon-2);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 280px;
}
.hc-icon {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,180,255,0.1);
  color: var(--neon-2);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.hero-contract:hover .hc-icon { background: rgba(0,180,255,0.2); transform: rotate(-8deg); }
@media (max-width: 600px) {
  .hc-addr { max-width: 160px; font-size: 11px; }
  .hc-label { font-size: 9px; padding: 3px 6px; }
}

.hero-stats {
  display: flex; gap: 36px; margin-top: 56px;
  padding-top: 32px; border-top: 1px solid var(--line-2);
}
@media (max-width: 900px) { .hero-stats { justify-content: center; } }
.stat-num {
  font-size: 28px; font-weight: 900;
  color: var(--text);
  text-shadow: 0 0 20px rgba(0,180,255,0.3);
}
.stat-label {
  font-size: 11px; letter-spacing: 0.3em; color: var(--muted);
  margin-top: 4px; text-transform: uppercase;
}

/* GLITCH */
.glitch {
  position: relative; display: inline-block;
  color: var(--neon-2);
  text-shadow: 0 0 22px rgba(0,180,255,0.8);
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.glitch::before {
  color: #ff00d4; mix-blend-mode: screen;
  animation: glitchA 3s infinite linear alternate-reverse;
}
.glitch::after {
  color: #00fff7; mix-blend-mode: screen;
  animation: glitchB 2.4s infinite linear alternate-reverse;
}
@keyframes glitchA {
  0% { transform: translate(0,0); clip-path: inset(0 0 80% 0); }
  20% { transform: translate(-2px,1px); clip-path: inset(40% 0 30% 0); }
  40% { transform: translate(2px,-1px); clip-path: inset(70% 0 5% 0); }
  60% { transform: translate(-1px,2px); clip-path: inset(20% 0 60% 0); }
  100% { transform: translate(0,0); clip-path: inset(85% 0 5% 0); }
}
@keyframes glitchB {
  0% { transform: translate(0,0); clip-path: inset(80% 0 0 0); }
  30% { transform: translate(2px,-1px); clip-path: inset(10% 0 70% 0); }
  60% { transform: translate(-2px,1px); clip-path: inset(50% 0 20% 0); }
  100% { transform: translate(0,0); clip-path: inset(0 0 88% 0); }
}

/* HERO LOGO STAGE */
.logo-stage {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 1;
  margin-left: auto;
}
@media (max-width: 900px) { .logo-stage { margin: 0 auto; } }

.hero-logo {
  position: absolute; inset: 12%;
  width: 76%; height: 76%; object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 40px rgba(0,180,255,0.6));
  animation: bob 6s ease-in-out infinite;
  z-index: 3;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.logo-glow {
  position: absolute; inset: 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,255,0.4), transparent 65%);
  filter: blur(30px);
  animation: glow-pulse 3s ease-in-out infinite;
  z-index: 1;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.ring {
  position: absolute; inset: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  z-index: 2;
}
.ring-1 {
  border-color: rgba(0,180,255,0.35);
  border-top-color: transparent; border-left-color: transparent;
  animation: spin 12s linear infinite;
}
.ring-2 {
  inset: 8%;
  border-color: rgba(0,180,255,0.2);
  border-bottom-color: transparent;
  animation: spin 18s linear infinite reverse;
}
.ring-3 {
  inset: 16%;
  border-style: dashed;
  border-color: rgba(0,180,255,0.18);
  animation: spin 28s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.orbit-dot {
  position: absolute; width: 10px; height: 10px;
  border-radius: 50%; background: var(--neon-2);
  box-shadow: 0 0 14px var(--neon);
  z-index: 4;
}
.orbit-dot-1 {
  top: 0; left: 50%; transform-origin: 0 220px;
  animation: orbit 10s linear infinite;
}
.orbit-dot-2 {
  bottom: 0; left: 50%; transform-origin: 0 -220px;
  animation: orbit 14s linear infinite reverse;
  background: #ff4ad6; box-shadow: 0 0 14px #ff4ad6;
}
@keyframes orbit {
  to { transform: rotate(360deg); }
}

/* TICKER */
.ticker {
  margin-top: 80px;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 18px 0;
  overflow: hidden;
  background: rgba(0,180,255,0.02);
}
.ticker-track {
  display: inline-flex; gap: 40px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-family: 'Orbitron', sans-serif;
  font-size: 13px; letter-spacing: 0.4em;
  color: var(--neon-2);
}
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ---------- ABOUT CARDS ---------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.about-card {
  position: relative;
  padding: 36px 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; inset: -1px;
  background: conic-gradient(from var(--ang, 0deg), transparent 70%, var(--neon) 85%, transparent 95%);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}
.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,180,255,0.45);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,180,255,0.2);
}
.about-card:hover::before { opacity: 0.6; animation: rotate-ang 4s linear infinite; }
@property --ang {
  syntax: '<angle>'; inherits: false; initial-value: 0deg;
}
@keyframes rotate-ang {
  to { --ang: 360deg; }
}
.card-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,180,255,0.18), rgba(0,180,255,0.05));
  border: 1px solid var(--line);
  color: var(--neon-2);
  margin-bottom: 22px;
}
.card-icon svg { width: 26px; height: 26px; }
.about-card h3 { font-size: 18px; margin-bottom: 10px; letter-spacing: 0.1em; }
.about-card p { color: var(--muted); font-size: 15px; }

.quote {
  margin-top: 80px; text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(20px, 2.6vw, 32px);
  letter-spacing: 0.04em;
  color: var(--text);
  font-style: italic;
}

/* ---------- TOKENOMICS ---------- */
.tokenomics {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: center;
}
@media (max-width: 900px) { .tokenomics { grid-template-columns: 1fr; gap: 40px; } }

.tokenomics-visual { display: grid; place-items: center; }
.donut {
  width: 320px; height: 320px;
  border-radius: 50%;
  background:
    conic-gradient(from -90deg, var(--neon) 0% 100%, rgba(255,255,255,0.05) 0 100%);
  display: grid; place-items: center;
  position: relative;
  box-shadow: 0 0 60px rgba(0,180,255,0.3), inset 0 0 50px rgba(0,180,255,0.2);
  animation: spin-slow 24s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.donut::before {
  content: ''; position: absolute; inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(0,180,255,0.4);
}
.donut-inner {
  width: 76%; height: 76%; border-radius: 50%;
  background: radial-gradient(circle, #061626, #03080f);
  display: grid; place-items: center; text-align: center;
  border: 1px solid var(--line);
  animation: spin-slow 24s linear infinite reverse;
}
.donut-num {
  font-size: 56px; font-weight: 900; color: var(--neon-2);
  text-shadow: 0 0 20px rgba(0,180,255,0.6);
}
.donut-label {
  font-size: 11px; letter-spacing: 0.4em;
  color: var(--muted); margin-top: 6px;
}

.tokenomics-list { display: flex; flex-direction: column; gap: 18px; }
.tk-item {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  transition: transform 0.25s, border-color 0.25s;
}
.tk-item:hover { transform: translateX(6px); border-color: rgba(0,180,255,0.4); }
.tk-num {
  font-size: 22px; color: var(--neon);
  min-width: 38px;
  text-shadow: 0 0 12px rgba(0,180,255,0.5);
}
.tk-body h4 { font-size: 16px; margin-bottom: 4px; }
.tk-body p { color: var(--muted); font-size: 14px; }

.contract {
  margin-top: 60px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0,180,255,0.04);
  flex-wrap: wrap;
}
.contract-label {
  font-family: 'Orbitron', sans-serif; font-size: 11px;
  letter-spacing: 0.4em; color: var(--muted);
}
.contract-address {
  font-family: 'Orbitron', monospace; font-size: 14px;
  color: var(--neon-2); letter-spacing: 0.1em;
  word-break: break-all;
}

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.step {
  position: relative;
  padding: 32px 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.step::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--neon-2), transparent);
  transition: width 0.4s;
}
.step:hover { transform: translateY(-4px); border-color: rgba(0,180,255,0.45); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.step:hover::after { width: 100%; }
.step-num {
  display: inline-block;
  font-size: 14px; color: var(--neon);
  letter-spacing: 0.3em; margin-bottom: 14px;
  text-shadow: 0 0 10px rgba(0,180,255,0.5);
}
.step h4 { font-size: 17px; margin-bottom: 10px; letter-spacing: 0.05em; }
.step p { color: var(--muted); font-size: 14px; }

/* ---------- ROADMAP ---------- */
.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .roadmap { grid-template-columns: 1fr; } }

.phase {
  padding: 36px 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.phase:hover { transform: translateY(-6px); border-color: var(--neon); }
.phase-tag {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.4em;
  padding: 6px 12px; border-radius: 4px;
  background: rgba(0,180,255,0.1);
  color: var(--neon-2);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.phase h3 {
  font-size: 26px; margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.phase ul { display: flex; flex-direction: column; gap: 10px; }
.phase li {
  position: relative; padding-left: 22px;
  color: var(--muted); font-size: 14px;
}
.phase li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  transform: rotate(45deg);
}

/* ---------- COMMUNITY ---------- */
.community { text-align: center; padding-bottom: 140px; }
.community-inner { display: flex; flex-direction: column; align-items: center; }

.socials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  width: 100%; max-width: 900px;
  margin: 30px 0 50px;
}
.social-card {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px; text-align: left;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: var(--text);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.3s;
}
.social-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(0,180,255,0.2);
  color: var(--neon-2);
}
.social-name { font-family: 'Orbitron', sans-serif; font-size: 14px; letter-spacing: 0.15em; }
.social-handle { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ---------- FOOTER ---------- */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--line-2);
  background: rgba(0,0,0,0.4);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-tag { font-size: 11px; color: var(--muted); letter-spacing: 0.3em; margin-top: 2px; }
.footer-meta { text-align: right; font-size: 13px; color: var(--muted); }
.footer-disc { font-size: 11px; margin-top: 4px; opacity: 0.7; }
@media (max-width: 600px) {
  .footer-meta { text-align: left; }
}

/* ---------- MODAL ---------- */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  align-items: center; justify-content: center;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.25s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  position: relative;
  width: min(440px, calc(100% - 32px));
  background: linear-gradient(180deg, #0a1828, #050b14);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 60px rgba(0,180,255,0.2);
  animation: slideUp 0.35s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 20px; line-height: 1; color: var(--muted);
  transition: 0.2s;
}
.modal-close:hover { color: var(--neon-2); border-color: var(--neon); }
.modal-header { text-align: center; margin-bottom: 24px; }
.modal-header img { width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%; box-shadow: 0 0 30px rgba(0,180,255,0.5); }
.modal-header h3 { font-family: 'Orbitron', sans-serif; font-size: 18px; letter-spacing: 0.2em; margin-bottom: 4px; }
.modal-header p { color: var(--muted); font-size: 14px; }
.wallet-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.wallet-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0,180,255,0.03);
  color: var(--text);
  transition: 0.2s;
  text-align: left;
}
.wallet-opt:hover {
  border-color: var(--neon);
  background: rgba(0,180,255,0.08);
  transform: translateX(4px);
}
.w-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  box-shadow: inset 0 0 12px rgba(0,0,0,0.3);
}
.w-name { flex: 1; font-family: 'Orbitron', sans-serif; font-size: 13px; letter-spacing: 0.1em; }
.w-arrow { color: var(--muted); transition: 0.2s; }
.wallet-opt:hover .w-arrow { color: var(--neon-2); transform: translateX(4px); }
.modal-footer {
  text-align: center; font-size: 11px;
  letter-spacing: 0.3em; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.modal-footer .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--neon); box-shadow: 0 0 8px var(--neon);
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 14px 22px;
  background: rgba(10,20,35,0.95);
  border: 1px solid var(--neon);
  border-radius: 8px;
  color: var(--neon-2);
  font-family: 'Orbitron', sans-serif;
  font-size: 13px; letter-spacing: 0.1em;
  box-shadow: 0 10px 40px rgba(0,180,255,0.4);
  opacity: 0;
  transition: all 0.4s cubic-bezier(.2,.9,.3,1.2);
  z-index: 300;
  pointer-events: none;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}
.reveal.in {
  opacity: 1; transform: translateY(0);
}

@media (max-width: 600px) {
  .section { padding: 80px 0; }
  .hero { padding-top: 120px; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 22px; }
  .donut { width: 240px; height: 240px; }
  .donut-num { font-size: 40px; }
  .hide-mobile { display: none; }
}
