/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-base: #06060f;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(168,85,247,0.4);
  --purple: #A855F7;
  --purple-dark: #7C3AED;
  --cyan: #06B6D4;
  --cyan-light: #22D3EE;
  --green: #22C55E;
  --orange: #F59E0B;
  --pink: #EC4899;
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #475569;
  --glow-purple: 0 0 40px rgba(168,85,247,0.15), 0 0 80px rgba(168,85,247,0.05);
  --glow-cyan: 0 0 40px rgba(6,182,212,0.15), 0 0 80px rgba(6,182,212,0.05);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, #A855F7 0%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #7C3AED, #A855F7, #06B6D4);
  background-size: 200% 200%;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #9333EA, #C084FC, #22D3EE);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(168,85,247,0.4); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary .rocket { font-style: normal; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  border-color: var(--purple);
  color: var(--text-primary);
  background: rgba(168,85,247,0.08);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}
.btn-outline:hover { border-color: var(--purple); color: var(--text-primary); background: rgba(168,85,247,0.06); }

.btn-lg { padding: 18px 40px; font-size: 16px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(6,6,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { display: flex; align-items: center; }
.logo-text {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #A855F7, #22D3EE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--purple);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 32px;
}

.eth-price-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
}
.eth-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.eth-price-label { color: var(--text-muted); font-family: 'Space Mono', monospace; }
.eth-price-val { color: var(--text-primary); font-weight: 600; font-family: 'Space Mono', monospace; }

.btn-connect {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(6,182,212,0.2));
  border: 1px solid rgba(168,85,247,0.4);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s;
}
.btn-connect:hover {
  background: linear-gradient(135deg, rgba(124,58,237,0.35), rgba(6,182,212,0.35));
  border-color: var(--purple);
  box-shadow: 0 0 20px rgba(168,85,247,0.2);
}
.btn-connect-icon { display: flex; align-items: center; color: var(--purple); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 65px; left: 0; right: 0;
  background: rgba(6,6,15,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  transform: translateY(-110%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-link {
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.mobile-link:hover { background: var(--bg-card); color: var(--text-primary); }
.mobile-connect { margin-top: 16px; text-align: center; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  z-index: 1;
}

.hero-grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 32px;
  animation: fadeInDown 0.6s ease both;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.badge-arrow { opacity: 0.6; }

.hero-title {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.2s both;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-value {
  font-family: 'Space Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}
.stat-plus, .stat-suffix {
  font-family: 'Space Mono', monospace;
  font-size: 20px;
  font-weight: 700;
  color: var(--purple);
  margin-right: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  width: 100%;
  margin-top: 2px;
}
.hero-stat { flex-direction: column; }
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 420px;
  z-index: 1;
}

.eth-orb-container {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eth-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spin linear infinite;
}
.ring-1 {
  width: 200px; height: 200px;
  border-color: rgba(168,85,247,0.15);
  animation-duration: 20s;
}
.ring-2 {
  width: 260px; height: 260px;
  border-color: rgba(6,182,212,0.1);
  animation-duration: 30s;
  animation-direction: reverse;
  border-style: dashed;
}
.ring-3 {
  width: 320px; height: 320px;
  border-color: rgba(168,85,247,0.06);
  animation-duration: 45s;
}

.eth-orb {
  width: 120px; height: 120px;
  background: radial-gradient(circle at 35% 35%, rgba(168,85,247,0.2), rgba(6,182,212,0.1), transparent);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(168,85,247,0.15), 0 0 120px rgba(6,182,212,0.08);
  animation: float 6s ease-in-out infinite;
}

.float-chip {
  position: absolute;
  padding: 8px 14px;
  background: rgba(10,10,20,0.8);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  backdrop-filter: blur(12px);
  white-space: nowrap;
  animation: float ease-in-out infinite;
}
.float-chip:hover { border-color: var(--purple); }

.chip-1 { top: 20px; left: -40px; animation-duration: 5s; animation-delay: 0s; }
.chip-2 { top: 20px; right: -40px; animation-duration: 6.5s; animation-delay: 0.5s; }
.chip-3 { bottom: 50px; left: -60px; animation-duration: 7s; animation-delay: 1s; }
.chip-4 { bottom: 50px; right: -40px; animation-duration: 5.5s; animation-delay: 1.5s; }

/* ===== TICKER ===== */
.ticker-bar {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-bar::before, .ticker-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ticker-bar::before { left: 0; background: linear-gradient(to right, var(--bg-base), transparent); }
.ticker-bar::after { right: 0; background: linear-gradient(to left, var(--bg-base), transparent); }

.ticker-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: tickerScroll 40s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  white-space: nowrap;
}
.t-name { color: var(--text-secondary); }
.t-change.up { color: var(--green); }
.t-change.down { color: #F87171; }

/* ===== SECTIONS ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.section-title-sm {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { border-color: rgba(168,85,247,0.25); background: var(--bg-card-hover); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }

.card-glow:hover { box-shadow: var(--glow-purple); }


.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.icon-purple { background: rgba(168,85,247,0.12); color: var(--purple); }
.icon-cyan { background: rgba(6,182,212,0.12); color: var(--cyan); }
.icon-green { background: rgba(34,197,94,0.12); color: var(--green); }
.icon-orange { background: rgba(245,158,11,0.12); color: var(--orange); }
.icon-pink { background: rgba(236,72,153,0.12); color: var(--pink); }

.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.feature-tag {
  display: inline-flex;
  padding: 4px 10px;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--purple);
}


/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: linear-gradient(180deg, transparent, rgba(124,58,237,0.03) 50%, transparent);
  padding-top: 60px;
}

.steps-container { position: relative; margin-bottom: 60px; }
.step-connector {
  position: absolute;
  top: 52px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--cyan), transparent);
  opacity: 0.3;
  z-index: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.step-card:hover { border-color: rgba(168,85,247,0.25); transform: translateY(-4px); box-shadow: var(--glow-purple); }

.step-number {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: 0.6;
}
.step-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(6,182,212,0.15));
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--purple);
}
.step-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.3px; }
.step-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

.launch-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(6,182,212,0.08));
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: var(--radius-xl);
  gap: 24px;
  flex-wrap: wrap;
}
.launch-cta-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.5px; }
.launch-cta-content p { font-size: 14px; color: var(--text-secondary); }

/* ===== LIVE LAUNCHES ===== */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}
.filter-tab:hover, .filter-tab.active {
  background: rgba(168,85,247,0.1);
  border-color: rgba(168,85,247,0.3);
  color: var(--text-primary);
}

.tokens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.token-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all 0.3s;
  cursor: pointer;
}
.token-card:hover { border-color: rgba(168,85,247,0.3); background: var(--bg-card-hover); transform: translateY(-3px); box-shadow: var(--glow-purple); }

.token-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.token-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.token-name { font-size: 15px; font-weight: 700; }
.token-ticker { font-size: 12px; color: var(--text-muted); font-family: 'Space Mono', monospace; }

.token-progress {
  margin-bottom: 12px;
}
.token-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 6px;
}
.token-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #7C3AED, #A855F7);
  border-radius: 4px;
  transition: width 1s ease;
}
.token-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'Space Mono', monospace;
}

.token-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.token-price { font-size: 13px; font-weight: 600; font-family: 'Space Mono', monospace; }
.token-change {
  font-size: 12px;
  font-weight: 700;
  font-family: 'Space Mono', monospace;
  padding: 3px 8px;
  border-radius: 6px;
}
.token-change.up { color: var(--green); background: rgba(34,197,94,0.1); }
.token-change.down { color: #F87171; background: rgba(248,113,113,0.1); }

.load-more-row { text-align: center; }

/* ===== TOKENOMICS ===== */
.tokenomics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.curve-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
}
.curve-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.curve-label-y {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-family: 'Space Mono', monospace;
}
.curve-label-x {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-family: 'Space Mono', monospace;
}

.bonding-curve-svg { width: 100%; }
.pulse-dot { animation: pulseDot 2s ease-in-out infinite; }

.toke-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.toke-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
}
.toke-stat-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 6px; }
.toke-stat-val { font-family: 'Space Mono', monospace; font-size: 16px; font-weight: 700; color: var(--text-primary); }

.allocation-list { margin-bottom: 28px; }
.alloc-title { font-size: 14px; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.alloc-bar-item { margin-bottom: 14px; }
.alloc-bar-header { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; color: var(--text-secondary); }
.alloc-pct { font-weight: 700; color: var(--text-primary); font-family: 'Space Mono', monospace; }
.alloc-bar-track { height: 6px; background: rgba(255,255,255,0.05); border-radius: 6px; overflow: hidden; }
.alloc-bar-fill { height: 100%; border-radius: 6px; transition: width 1.5s ease; }

.audit-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-secondary);
  flex-wrap: wrap;
}
.audit-badge strong { color: var(--text-primary); }
.audit-divider { color: var(--border); }

/* ===== COMMUNITY ===== */
.community {
  background: linear-gradient(180deg, transparent, rgba(6,182,212,0.03) 50%, transparent);
}
.community-inner { max-width: 800px; margin: 0 auto; }

.socials-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
  cursor: pointer;
}
.social-card:hover { background: var(--bg-card-hover); transform: translateX(4px); }
.social-twitter:hover { border-color: rgba(255,255,255,0.2); }
.social-discord:hover { border-color: rgba(88,101,242,0.4); box-shadow: 0 0 20px rgba(88,101,242,0.1); }
.social-telegram:hover { border-color: rgba(38,169,224,0.4); box-shadow: 0 0 20px rgba(38,169,224,0.1); }

.social-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 12px; flex-shrink: 0; }
.social-twitter .social-icon { background: rgba(255,255,255,0.08); color: #fff; }
.social-discord .social-icon { background: rgba(88,101,242,0.15); color: #5865F2; }
.social-telegram .social-icon { background: rgba(38,169,224,0.12); color: #26A8E0; }

.social-info { flex: 1; }
.social-name { display: block; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.social-count { font-size: 13px; color: var(--text-muted); font-family: 'Space Mono', monospace; }
.social-arrow { color: var(--text-muted); font-size: 18px; transition: transform 0.2s; }
.social-card:hover .social-arrow { color: var(--text-primary); transform: translateX(4px); }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(6,182,212,0.08) 100%);
  border-top: 1px solid rgba(168,85,247,0.15);
  border-bottom: 1px solid rgba(6,182,212,0.1);
}
.cta-banner-content {
  position: relative;
  padding: 80px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; letter-spacing: -1px; margin-bottom: 8px; }
.cta-text p { font-size: 16px; color: var(--text-secondary); }
.cta-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.cta-small { font-size: 12px; color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-top {
  display: flex;
  gap: 80px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand { flex: 1; min-width: 220px; max-width: 280px; }
.footer-logo { margin-bottom: 16px; display: inline-flex; }
.footer-tagline { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 12px; }
.fsocial {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}
.fsocial:hover { border-color: var(--purple); color: var(--text-primary); background: rgba(168,85,247,0.1); }

.footer-links-grid { display: flex; gap: 60px; flex-wrap: wrap; flex: 2; }
.footer-col { display: flex; flex-direction: column; gap: 12px; min-width: 120px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-secondary); margin-bottom: 4px; }
.footer-link { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-link:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 13px; color: var(--text-muted); }

.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
@keyframes pulseDot { 0%, 100% { r: 10; opacity: 0.3; } 50% { r: 14; opacity: 0.15; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes tickerScroll { to { transform: translateX(-50%); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LOGO IMAGE ===== */
.logo-img {
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

/* ===== TOKEN CARDS — image + sparkline ===== */
.token-avatar-wrap { position: relative; width: 40px; height: 40px; flex-shrink: 0; }
.token-avatar-img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.token-avatar-fallback {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.token-sparkline-wrap { margin: 8px 0 10px; }
.token-sparkline { display: block; border-radius: 4px; overflow: hidden; }

/* ===== TOKEN DETAIL MODAL ===== */
.tmodal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4,4,12,0.88);
  backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.tmodal-overlay.open { opacity: 1; pointer-events: all; }

.tmodal-card {
  background: #0d0d1e;
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: var(--radius-xl);
  width: 100%; max-width: 900px;
  max-height: 92vh; overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 90px rgba(0,0,0,0.7), 0 0 80px rgba(168,85,247,0.06);
  transform: translateY(24px); transition: transform 0.3s ease;
}
.tmodal-overlay.open .tmodal-card { transform: translateY(0); }
.tmodal-card::-webkit-scrollbar { width: 4px; }
.tmodal-card::-webkit-scrollbar-thumb { background: rgba(168,85,247,0.3); border-radius: 4px; }

.tmodal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all 0.2s; z-index: 2;
}
.tmodal-close:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }

/* Header */
.tmodal-header {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 24px 24px 0;
}
.tmodal-img-wrap { position: relative; flex-shrink: 0; }
.tmodal-img {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(168,85,247,0.3);
}
.tmodal-img-fallback {
  width: 56px; height: 56px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800; color: #fff;
  border: 2px solid rgba(168,85,247,0.3);
}
.tmodal-title-block { flex: 1; min-width: 140px; }
.tmodal-name { font-size: 20px; font-weight: 800; letter-spacing: -0.3px; }
.tmodal-ticker { font-family: 'Space Mono', monospace; font-size: 13px; color: var(--purple); margin-top: 2px; }
.tmodal-meta { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.tmodal-price-block { text-align: right; }
.tmodal-price { font-family: 'Space Mono', monospace; font-size: 16px; font-weight: 700; }
.tmodal-change { font-family: 'Space Mono', monospace; font-size: 13px; font-weight: 700; margin-top: 2px; }
.tmodal-change.up { color: var(--green); }
.tmodal-change.down { color: #F87171; }
.tmodal-socials { display: flex; gap: 8px; margin-left: auto; }
.tmodal-social-btn {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all 0.2s;
}
.tmodal-social-btn:hover { border-color: var(--purple); color: var(--text-primary); background: rgba(168,85,247,0.08); }

/* Body layout */
.tmodal-body {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 0; padding: 20px 24px 24px;
}
.tmodal-left { min-width: 0; padding-right: 20px; border-right: 1px solid var(--border); }
.tmodal-right { padding-left: 20px; display: flex; flex-direction: column; gap: 20px; }

/* Chart */
.tmodal-chart-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden; margin-bottom: 16px;
  height: 180px;
}
.tmodal-chart { width: 100%; height: 100%; display: block; }

/* Stats row */
.tmodal-stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 10px; margin-bottom: 16px;
}
.tmodal-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.tmodal-stat-label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 4px; }
.tmodal-stat-val { font-family: 'Space Mono', monospace; font-size: 13px; font-weight: 700; }

/* Progress */
.tmodal-progress-section { margin-bottom: 20px; }
.tmodal-progress-header { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.tmodal-progress-bar { height: 6px; background: rgba(255,255,255,0.06); border-radius: 6px; overflow: hidden; }
.tmodal-progress-fill { height: 100%; background: linear-gradient(90deg,#7C3AED,#A855F7); border-radius: 6px; }

/* Trades */
.tmodal-trades-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-secondary); margin-bottom: 10px; }
.tmodal-trades-list { display: flex; flex-direction: column; gap: 4px; max-height: 220px; overflow-y: auto; }
.tmodal-trades-list::-webkit-scrollbar { width: 3px; }
.tmodal-trades-list::-webkit-scrollbar-thumb { background: rgba(168,85,247,0.3); border-radius: 3px; }
.trade-row {
  display: grid; grid-template-columns: 60px 90px 1fr 1fr 50px;
  gap: 8px; align-items: center;
  padding: 7px 10px;
  background: rgba(255,255,255,0.02);
  border-radius: 6px; font-size: 12px;
  font-family: 'Space Mono', monospace;
  transition: background 0.15s;
}
.trade-row:hover { background: rgba(255,255,255,0.04); }
.trade-type { font-weight: 700; }
.trade-type.buy { color: var(--green); }
.trade-type.sell { color: #F87171; }
.trade-wallet { color: var(--text-muted); }
.trade-eth { color: var(--text-primary); }
.trade-tokens { color: var(--text-muted); }
.trade-time { color: var(--text-muted); text-align: right; }

/* Widget */
.tmodal-widget {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.twidget-tabs { display: flex; border-bottom: 1px solid var(--border); }
.twidget-tab {
  flex: 1; padding: 12px; font-size: 14px; font-weight: 700;
  background: transparent; color: var(--text-muted);
  transition: all 0.2s; border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.twidget-tab.active { color: var(--text-primary); border-bottom-color: var(--purple); }
.twidget-tab[data-side="sell"].active { border-bottom-color: #F87171; color: #F87171; }
.twidget-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.twidget-presets { display: flex; gap: 6px; }
.preset-btn {
  flex: 1; padding: 6px 4px; font-size: 12px; font-weight: 600; font-family: 'Space Mono', monospace;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 6px; color: var(--text-secondary); transition: all 0.2s;
}
.preset-btn:hover { border-color: var(--purple); color: var(--text-primary); background: rgba(168,85,247,0.08); }
.twidget-receive {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--text-muted);
  padding: 8px 10px;
  background: rgba(255,255,255,0.02);
  border-radius: 6px;
  font-family: 'Space Mono', monospace;
}
.twidget-receive span:last-child { color: var(--text-primary); font-weight: 600; }
.twidget-submit { width: 100%; justify-content: center; border-radius: 8px; padding: 12px; }

/* About */
.tmodal-about {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
}
.tmodal-about-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 8px; }
.tmodal-desc-text { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

@media (max-width: 680px) {
  .tmodal-body { grid-template-columns: 1fr; }
  .tmodal-left { padding-right: 0; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 0; }
  .tmodal-right { padding-left: 0; }
  .tmodal-stats-row { grid-template-columns: repeat(2,1fr); }
  .trade-row { grid-template-columns: 50px 80px 1fr 40px; }
  .trade-tokens { display: none; }
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4,4,12,0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: #0d0d1e;
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: var(--radius-xl);
  padding: 36px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 80px rgba(168,85,247,0.06);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal-card {
  transform: translateY(0);
}
.modal-card::-webkit-scrollbar { width: 4px; }
.modal-card::-webkit-scrollbar-track { background: transparent; }
.modal-card::-webkit-scrollbar-thumb { background: rgba(168,85,247,0.3); border-radius: 4px; }

.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }

.modal-header { text-align: center; margin-bottom: 28px; }
.modal-logo-badge { font-size: 36px; margin-bottom: 12px; }
.modal-title { font-size: 24px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 6px; }
.modal-subtitle { font-size: 14px; color: var(--text-secondary); }

/* Connect wall */
.modal-connect-wall {
  text-align: center;
  padding: 20px 0 8px;
}
.connect-wall-icon { font-size: 48px; margin-bottom: 16px; }
.modal-connect-wall h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.modal-connect-wall p { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }
.no-metamask-link { display: block; margin-top: 16px; font-size: 13px; color: var(--purple); }

/* Form */
.modal-form { }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.required { color: var(--purple); }
.optional { font-weight: 400; color: var(--text-muted); font-size: 12px; }
.form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: rgba(168,85,247,0.5);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.08);
}
.form-input::placeholder { color: var(--text-muted); }
.form-textarea { resize: none; min-height: 80px; }
.char-counter { font-size: 11px; color: var(--text-muted); text-align: right; margin-top: -10px; }

.ticker-input-wrap { position: relative; }
.ticker-prefix {
  position: absolute;
  left: 13px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  color: var(--purple);
  pointer-events: none;
}
.ticker-input { padding-left: 26px; font-family: 'Space Mono', monospace; text-transform: uppercase; }

/* Image drop zone */
.image-drop-zone {
  border: 1px dashed rgba(168,85,247,0.3);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  overflow: hidden;
}
.image-drop-zone:hover, .image-drop-zone.dragging {
  border-color: var(--purple);
  background: rgba(168,85,247,0.05);
}
.drop-zone-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 14px;
}
.drop-zone-inner svg { color: var(--purple); opacity: 0.6; }
.drop-hint { font-size: 11px; }
.drop-zone-preview {
  width: 100%;
  aspect-ratio: 1;
  max-height: 120px;
  object-fit: contain;
}

.form-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 16px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Cost bar */
.modal-cost-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(168,85,247,0.06);
  border: 1px solid rgba(168,85,247,0.15);
  border-radius: var(--radius-md);
  margin: 20px 0;
  overflow: hidden;
}
.cost-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  gap: 4px;
}
.cost-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }
.cost-val { font-family: 'Space Mono', monospace; font-size: 14px; font-weight: 700; color: var(--text-primary); display: flex; align-items: center; gap: 5px; }
.cost-bar-divider { width: 1px; height: 40px; background: var(--border); }
.network-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--text-muted); }
.network-dot.mainnet { background: var(--green); }
.network-dot.wrong { background: #F87171; }

/* Modal actions */
.modal-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.btn-launch-submit { justify-content: center; width: 100%; padding: 16px; font-size: 16px; border-radius: var(--radius-md); }
.modal-disclaimer { font-size: 11px; color: var(--text-muted); text-align: center; }
.modal-disclaimer a { color: var(--purple); }

/* Spinner */
.spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}

/* TX pending */
.modal-tx-pending {
  text-align: center;
  padding: 20px 0;
}
.tx-spinner {
  width: 60px; height: 60px;
  border: 3px solid rgba(168,85,247,0.2);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 20px;
}
.modal-tx-pending h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.modal-tx-pending p { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.tx-etherscan-link { font-size: 13px; color: var(--cyan); }

/* TX success */
.modal-tx-success {
  text-align: center;
  padding: 20px 0;
}
.success-icon { font-size: 52px; margin-bottom: 16px; }
.modal-tx-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.modal-tx-success p { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .tokens-grid { grid-template-columns: repeat(2, 1fr); }
  .tokenomics-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .hero { flex-direction: column; text-align: center; min-height: auto; padding-top: 100px; }
  .hero-content { max-width: 100%; }
  .hero-subtitle { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; }
  .float-chip { display: none; }

  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }

  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .tokens-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links-grid { gap: 32px; }
  .launch-cta-box { flex-direction: column; text-align: center; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .cta-banner-content { flex-direction: column; text-align: center; }
  .cta-actions { align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .tokens-grid { grid-template-columns: 1fr; }
  .toke-stat-grid { grid-template-columns: 1fr; }
  .modal-card { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
}
