/* ============================================
   VERDEX — Ultra Premium Dark Theme v3
   Full Enhancement — Every pixel perfected
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@500;600;700;800&family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --color-bg: #010301;
  --color-bg-2: #020802;
  --color-surface: #040a04;
  --color-surface-light: #081608;
  --color-surface-glass: rgba(4, 16, 4, 0.6);
  --color-primary: #22c55e;
  --color-primary-light: #4ade80;
  --color-primary-dark: #16a34a;
  --color-primary-glow: rgba(34, 197, 94, 0.4);
  --color-accent: #86efac;
  --color-accent-2: #a7f3d0;
  --color-text: #f0fdf4;
  --color-text-muted: #86a389;
  --color-text-dim: rgba(134, 163, 137, 0.5);
  --color-border: rgba(34, 197, 94, 0.12);
  --color-border-hover: rgba(34, 197, 94, 0.35);
  --font-display: 'Syne', 'Space Grotesk', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(34, 197, 94, 0.15);
  --shadow-glow-strong: 0 0 60px rgba(34, 197, 94, 0.25), 0 0 120px rgba(34, 197, 94, 0.1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
  text-rendering: optimizeLegibility;
}

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

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

::selection {
  background: rgba(34, 197, 94, 0.3);
  color: #f0fdf4;
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 80px;
  height: 128px;
  animation: preloaderSpin 2s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(34, 197, 94, 0.6)) drop-shadow(0 0 80px rgba(34, 197, 94, 0.2));
}

@keyframes preloaderSpin {
  0% { transform: rotateY(0deg) scale(1); filter: drop-shadow(0 0 40px rgba(34, 197, 94, 0.6)); }
  50% { transform: rotateY(180deg) scale(1.15); filter: drop-shadow(0 0 80px rgba(34, 197, 94, 0.8)); }
  100% { transform: rotateY(360deg) scale(1); filter: drop-shadow(0 0 40px rgba(34, 197, 94, 0.6)); }
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary), var(--color-primary-light), var(--color-accent));
  z-index: 9998;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--color-primary-glow);
}

/* ============ BACKGROUND EFFECTS ============ */
.ambient-glow {
  position: fixed;
  top: -20%; left: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: -2;
  animation: pulseGlow 8s ease-in-out infinite;
  opacity: 1 !important;
  visibility: visible !important;
}

.ambient-glow-secondary {
  position: fixed;
  bottom: -20%; right: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(34,197,94,0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: -2;
  animation: pulseGlow 10s ease-in-out infinite reverse;
  opacity: 1 !important;
  visibility: visible !important;
}

.ambient-glow-center {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(34,197,94,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -2;
  animation: pulseGlow 12s ease-in-out infinite;
  opacity: 1 !important;
  visibility: visible !important;
}

.green-corner-tl, .green-corner-br {
  position: fixed;
  width: 400px; height: 400px;
  pointer-events: none;
  z-index: -1;
  opacity: 1 !important;
}

.green-corner-tl {
  top: 0; left: 0;
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
}

.green-corner-br {
  bottom: 0; right: 0;
  background: radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
}

.green-side-accent {
  position: fixed;
  top: 0; left: 0;
  width: 3px; height: 100vh;
  background: linear-gradient(180deg, transparent, var(--color-primary), transparent);
  z-index: 9995;
  opacity: 0.3;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.grid-overlay {
  position: fixed;
  top: -10%; left: -10%;
  width: 120%; height: 120%;
  background-image:
    linear-gradient(rgba(34, 197, 94, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 197, 94, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: -1;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* ============ PARTICLE CANVAS ============ */
.particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* ============ CURSOR ============ */
.cursor-glow {
  position: fixed;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ============ LOGO FILTER ============ */
.logo-filter {
  filter: drop-shadow(0 0 12px var(--color-primary)) drop-shadow(0 0 24px rgba(34, 197, 94, 0.25));
  transition: filter 0.3s ease;
  animation: logoPulse 4s infinite ease-in-out;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 12px var(--color-primary)) drop-shadow(0 0 24px rgba(34, 197, 94, 0.25)); }
  50% { filter: drop-shadow(0 0 24px var(--color-primary-light)) drop-shadow(0 0 48px rgba(34, 197, 94, 0.4)); }
}

/* ============ TYPOGRAPHY ============ */
.gradient-text {
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary-light), var(--color-primary));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(74, 222, 128, 0.4);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  will-change: transform;
  letter-spacing: 0.3px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 400px;
  height: 400px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #000;
  box-shadow: 0 4px 24px rgba(34, 197, 94, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
  font-weight: 700;
}

.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(34, 197, 94, 0.5), 0 0 24px rgba(34, 197, 94, 0.3) inset;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(34, 197, 94, 0.4);
  color: var(--color-primary-light);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: var(--color-primary);
  color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.15);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(0,0,0,0.3);
  border-radius: 100px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(1, 3, 1, 0.7);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 32px;
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.5));
  transition: transform 0.6s ease;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  transition: width 0.3s ease;
  border-radius: 1px;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px !important;
  font-size: 0.9rem !important;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 8px 12px;
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  border-color: var(--color-primary);
  background: rgba(34, 197, 94, 0.1);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 50%);
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 200px;
  background: linear-gradient(to top, var(--color-bg), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--color-primary-light);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease;
  backdrop-filter: blur(8px);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.pulse-dot {
  width: 8px; height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.02;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.2s both;
  letter-spacing: -3px;
}

.hero-title .gradient-text {
  display: block;
  text-transform: uppercase;
  letter-spacing: -3px;
}

.hero-title .outline-text {
  display: block;
  font-size: 0.85em;
  opacity: 0.85;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.4s both;
  line-height: 1.8;
  font-weight: 400;
}

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

.hero-stats {
  display: flex;
  gap: 48px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.stat {
  display: flex;
  flex-direction: column;
  position: relative;
}

.stat::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(180deg, transparent, var(--color-border), transparent);
}

.stat:last-child::after {
  display: none;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary-light);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ============ HERO VISUAL ============ */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeIn 1s ease 0.5s both;
}

.logo-orbit {
  position: relative;
  width: 420px; height: 420px;
}

.hero-animation {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 350px; height: 350px;
  object-fit: contain;
  filter: drop-shadow(0 0 80px rgba(34, 197, 94, 0.4)) drop-shadow(0 0 160px rgba(34, 197, 94, 0.15));
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

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

.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring-1 {
  width: 100%; height: 100%;
  animation: orbit1 20s linear infinite;
}

.orbit-ring-2 {
  width: 75%; height: 75%;
  border-color: rgba(34, 197, 94, 0.08);
  animation: orbit2 15s linear infinite reverse;
}

@keyframes orbit1 {
  from { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(0deg); }
  to { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg); }
}

@keyframes orbit2 {
  from { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(0deg); }
  to { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-360deg); }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  animation: fadeIn 1s ease 1s both;
  z-index: 3;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
  40% { transform: translateY(10px) rotate(45deg); }
  60% { transform: translateY(5px) rotate(45deg); }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
}

.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; width: 120px; height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-surface), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-surface), transparent);
}

.marquee-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-dim);
  letter-spacing: 4px;
  text-transform: uppercase;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
.section {
  padding: 140px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-primary-light);
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ============ ABOUT CARDS ============ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-card {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.about-card:hover::before {
  opacity: 1;
}

.about-card:hover::after {
  transform: scaleX(1);
}

.about-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.3));
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.3px;
  font-weight: 600;
}

.about-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
  background: linear-gradient(180deg, var(--color-bg) 0%, rgba(34, 197, 94, 0.02) 50%, var(--color-bg) 100%);
}

.hiw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

.hiw-column {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.hiw-column::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.04), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hiw-column:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.hiw-column:hover::before {
  opacity: 1;
}

.hiw-column-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 32px;
  color: var(--color-primary-light);
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.hiw-step {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  padding: 12px;
  border-radius: var(--radius-sm);
}

.hiw-step:hover {
  background: rgba(34, 197, 94, 0.04);
  transform: translateX(6px);
}

.hiw-step:last-child { margin-bottom: 0; }

.hiw-step-number {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary-light);
  flex-shrink: 0;
  transition: var(--transition);
}

.hiw-step:hover .hiw-step-number {
  background: var(--color-primary);
  color: #000;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.hiw-step h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.hiw-step p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* Fee Structure */
.fee-structure {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.fee-structure h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 36px;
  letter-spacing: -0.5px;
}

.fee-bars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.fee-bar {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}

.fee-bar:hover {
  border-color: var(--color-primary);
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(34, 197, 94, 0.15);
  background: rgba(34, 197, 94, 0.08);
}

.fee-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-primary-light);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.fee-label {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.fee-total {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.fee-total strong {
  color: var(--color-primary-light);
  font-size: 1.5rem;
  font-family: var(--font-display);
}

/* ============ ECOSYSTEM ============ */
.ecosystem {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-2) 50%, var(--color-bg) 100%);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.eco-card {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.eco-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.eco-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.eco-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.eco-card:hover::before {
  opacity: 1;
}

.eco-card:hover::after {
  transform: scaleX(1);
}

.eco-card.featured {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), var(--color-surface-glass));
  border-color: rgba(34, 197, 94, 0.25);
}

.eco-card.featured::after {
  transform: scaleX(1);
}

.eco-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(34, 197, 94, 0.06);
  position: absolute;
  top: 16px; right: 28px;
  letter-spacing: -2px;
}

.eco-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.eco-card p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  line-height: 1.7;
  font-size: 0.95rem;
}

.eco-list {
  list-style: none;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.eco-list li {
  padding: 8px 0;
  color: var(--color-text);
  font-size: 0.92rem;
  position: relative;
  padding-left: 24px;
  transition: var(--transition-fast);
}

.eco-list li:hover {
  padding-left: 28px;
  color: var(--color-primary-light);
}

.eco-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.85rem;
}

.eco-status {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.eco-status.soon {
  background: rgba(34, 197, 94, 0.12);
  color: var(--color-primary-light);
  animation: pulse 2s infinite;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

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

.token-card, .token-allocation, .token-utility {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.token-card:hover, .token-allocation:hover, .token-utility:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.token-card.main {
  text-align: center;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), var(--color-surface-glass));
  position: relative;
  overflow: hidden;
}

.token-card.main::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.token-symbol {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary-light), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
}

.token-supply {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  margin: 16px 0;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.token-status {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px;
  color: var(--color-primary-light);
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.token-allocation h3, .token-utility h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.allocation-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(34, 197, 94, 0.08);
  transition: var(--transition);
}

.allocation-item:hover {
  background: rgba(34, 197, 94, 0.04);
  padding-left: 12px;
  border-radius: 8px;
}

.allocation-color {
  width: 14px; height: 14px;
  border-radius: 4px;
  background: var(--color);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.2);
  flex-shrink: 0;
}

.allocation-label {
  flex: 1;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.allocation-value {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--color-primary-light);
  font-size: 0.95rem;
}

.token-utility ul {
  list-style: none;
}

.token-utility li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(34, 197, 94, 0.08);
  color: var(--color-text-muted);
  transition: var(--transition);
  font-size: 0.92rem;
  line-height: 1.6;
}

.token-utility li:hover {
  padding-left: 12px;
  color: var(--color-text);
}

.token-utility li strong {
  color: var(--color-text);
  font-weight: 600;
}

/* ============ ROADMAP ============ */
.roadmap {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-2) 50%, var(--color-bg) 100%);
}

.roadmap-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-primary), rgba(34, 197, 94, 0.1), transparent);
}

.roadmap-item {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  position: relative;
  transition: var(--transition);
}

.roadmap-item:hover {
  transform: translateX(8px);
}

.roadmap-dot {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  transition: var(--transition);
}

.roadmap-item:hover .roadmap-dot {
  border-color: var(--color-primary);
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.3);
}

.roadmap-item.completed .roadmap-dot {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.3);
}

.roadmap-item.completed .roadmap-dot::after {
  content: "✓";
  color: #000;
  font-weight: 700;
}

.roadmap-item.active .roadmap-dot {
  background: var(--color-surface);
  border-color: var(--color-primary);
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.4);
  animation: pulse 2s infinite;
}

.roadmap-item.active .roadmap-dot::after {
  content: "";
  width: 12px; height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
}

.roadmap-content {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  flex: 1;
  transition: var(--transition);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.roadmap-item:hover .roadmap-content {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-sm);
}

.roadmap-phase {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.roadmap-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 8px 0 12px;
  letter-spacing: -0.5px;
}

.roadmap-content p {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============ TRAILER ============ */
.trailer {
  background: linear-gradient(180deg, var(--color-bg-2) 0%, var(--color-bg) 50%, var(--color-bg-2) 100%);
}

.trailer-stage {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--color-border);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  transition: var(--transition);
}

.trailer-stage:hover {
  transform: scale(1.02);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.7), var(--shadow-glow-strong);
}

.trailer-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 60%);
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}

.trailer-animation {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.trailer-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px;
  background: linear-gradient(to top, rgba(1, 3, 1, 0.95), rgba(1, 3, 1, 0.6), transparent);
  z-index: 2;
  text-align: center;
}

.trailer-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--color-primary-light);
  letter-spacing: -0.5px;
}

.trailer-overlay p {
  color: var(--color-text-muted);
  margin: 0;
}

/* ============ SWAP / WAITLIST CTA ============ */
.swap-cta {
  padding: 100px 0;
}

.swap-card {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), var(--color-surface-glass));
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.swap-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 50%);
  animation: rotate 25s linear infinite;
}

.swap-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-primary-light), var(--color-primary), transparent);
}

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

.swap-icon svg {
  width: 64px; height: 100px;
  margin-bottom: 28px;
  filter: drop-shadow(0 0 30px rgba(34, 197, 94, 0.4));
  position: relative;
  z-index: 1;
}

.swap-card h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  letter-spacing: -1.5px;
}

.swap-card > p {
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  line-height: 1.7;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.waitlist-form input {
  flex: 1;
  padding: 18px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(34, 197, 94, 0.2);
  background: rgba(1, 3, 1, 0.8);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.waitlist-form input::placeholder {
  color: var(--color-text-dim);
}

.waitlist-form input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.2), 0 0 48px rgba(34, 197, 94, 0.05);
  background: rgba(4, 10, 4, 0.9);
}

.waitlist-form .btn {
  white-space: nowrap;
  padding: 18px 32px;
  font-size: 0.95rem;
}

/* Waitlist form states */
.waitlist-form.loading .btn {
  pointer-events: none;
  opacity: 0.7;
}

.waitlist-form.loading .btn::after {
  content: '';
  width: 16px; height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid #000;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
}

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

/* Form Messages */
#formMessage {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-success {
  color: var(--color-primary-light) !important;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: inline-block;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-error {
  color: #f87171 !important;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: inline-block;
}

@keyframes successPop {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Success Celebration */
.celebration-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9990;
  overflow: hidden;
}

.celebration-particle {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: celebrateFloat 2s ease-out forwards;
}

@keyframes celebrateFloat {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.countdown div {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: var(--radius);
  padding: 20px 28px;
  min-width: 90px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.countdown div:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.15);
}

.countdown span {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-primary-light);
  letter-spacing: -1px;
  transition: transform 0.2s ease;
}

.countdown label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* ============ WHITEPAPER CTA ============ */
.whitepaper-cta {
  padding: 100px 0;
}

.whitepaper-card {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 72px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  transition: var(--transition);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.whitepaper-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.whitepaper-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.whitepaper-content h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  margin: 18px 0;
  letter-spacing: -1.5px;
}

.whitepaper-content p {
  color: var(--color-text-muted);
  margin-bottom: 36px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.whitepaper-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.whitepaper-preview {
  display: flex;
  justify-content: center;
}

.paper-stack {
  position: relative;
  width: 220px; height: 280px;
  perspective: 600px;
}

.paper {
  position: absolute;
  width: 200px; height: 260px;
  background: var(--color-surface-light);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.paper-1 {
  transform: rotate(-8deg) translateX(-10px);
  background: linear-gradient(135deg, #0a1a0a, #0d1f0d);
}

.paper-2 {
  transform: rotate(-4deg) translateX(-5px);
  background: linear-gradient(135deg, #0d1f0d, #112611);
}

.paper-3 {
  transform: rotate(0deg);
  background: linear-gradient(135deg, var(--color-surface-light), #0a1a0a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.whitepaper-card:hover .paper-1 {
  transform: rotate(-12deg) translateX(-18px) translateY(-4px);
}

.whitepaper-card:hover .paper-2 {
  transform: rotate(-6deg) translateX(-10px) translateY(-2px);
}

.whitepaper-card:hover .paper-3 {
  transform: rotate(2deg) translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(34, 197, 94, 0.1);
}

.paper-3 span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary-light);
  letter-spacing: -0.5px;
}

.paper-3 small {
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 100px 0 48px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
}

.footer-brand .logo {
  margin-bottom: 4px;
}

.footer-brand p {
  color: var(--color-text-muted);
  margin-top: 20px;
  max-width: 300px;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  margin-bottom: 24px;
  color: var(--color-text);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: var(--color-text-muted);
  transition: var(--transition-fast);
  position: relative;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-primary-light);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(34, 197, 94, 0.08);
  padding-top: 36px;
  text-align: center;
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.disclaimer {
  margin-top: 12px;
  font-size: 0.78rem !important;
  opacity: 0.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============ CINEMATIC EFFECTS ============ */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tilt-card:hover {
  box-shadow: 0 30px 60px rgba(34, 197, 94, 0.12);
}

/* Shimmer */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Count Up */
.count-up {
  font-variant-numeric: tabular-nums;
}

/* Floating */
.float-slow {
  animation: floatSlow 8s ease-in-out infinite;
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .logo-orbit { width: 300px; height: 300px; }
  .hero-animation { width: 220px; height: 220px; }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-grid { grid-template-columns: 1fr; }
  .fee-bars { grid-template-columns: 1fr; }
  .tokenomics-grid { grid-template-columns: 1fr; }
  .whitepaper-card { grid-template-columns: 1fr; text-align: center; padding: 56px 40px; }
  .whitepaper-actions { justify-content: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stat::after { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-toggle { display: block; }
  .hero { padding: 120px 0 60px; }
  .hero-title { font-size: 2.8rem; letter-spacing: -2px; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
  .about-grid, .ecosystem-grid { grid-template-columns: 1fr; }
  .section { padding: 100px 0; }
  .countdown { gap: 12px; flex-wrap: wrap; }
  .countdown span { font-size: 2rem; }
  .countdown div { min-width: 70px; padding: 16px 20px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form input { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .swap-card { padding: 48px 24px; border-radius: var(--radius-lg); }
  .swap-card h2 { font-size: 2rem; }
  .whitepaper-card { padding: 40px 24px; border-radius: var(--radius-lg); }
  .cursor-glow { display: none; }
  .green-side-accent { display: none; }
  body { cursor: auto; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; letter-spacing: -1.5px; }
  .hero-badge { font-size: 0.75rem; }
  .section-title { font-size: 1.8rem; }
  .countdown { gap: 8px; }
  .countdown div { min-width: 60px; padding: 12px 14px; }
  .countdown span { font-size: 1.6rem; }
  .swap-card h2 { font-size: 1.7rem; }
  .about-card, .eco-card { padding: 28px 20px; }
}
