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

:root {
  /* Colors */
  --surface: #10131a;
  --surface-dim: #10131a;
  --surface-bright: #363940;
  --surface-container-lowest: #0b0e14;
  --surface-container-low: #191c22;
  --surface-container: #1d2026;
  --surface-container-high: #272a31;
  --surface-container-highest: #32353c;
  --on-surface: #e1e2eb;
  --on-surface-variant: #bacbbc;
  --inverse-surface: #e1e2eb;
  --inverse-on-surface: #2e3037;
  --outline: #849587;
  --outline-variant: #3b4a3f;
  --primary: #bbffd1;
  --on-primary: #00391f;
  --primary-container: #14f195;
  --on-primary-container: #00693d;
  --secondary: #d8b9ff;
  --on-secondary: #450086;
  --secondary-container: #7505db;
  --on-secondary-container: #dbbdff;
  --tertiary: #ffedd1;
  --on-tertiary: #402d00;
  --tertiary-container: #ffcc5c;
  --on-tertiary-container: #755600;
  --background: #0b0e14;
  --on-background: #e1e2eb;
  --surface-glass: rgba(20, 241, 149, 0.05);
  --glow-green: rgba(20, 241, 149, 0.5);
  --glow-purple: rgba(153, 69, 255, 0.5);
  --danger-red: #E63946;

  /* Typography */
  --font-headline: 'Sora', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --unit: 8px;
  --container-max: 1200px;
  --gutter: 24px;
  --margin-desktop: 48px;
  --margin-mobile: 16px;

  /* Radii */
  --rounded-sm: 0.25rem;
  --rounded: 0.5rem;
  --rounded-md: 0.75rem;
  --rounded-lg: 1rem;
  --rounded-xl: 1.5rem;
  --rounded-full: 9999px;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--on-background);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 18px;
}

/* Typography Classes */
.headline-xl {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.headline-lg {
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.body-lg {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.label-caps {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.data-mono {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

/* Layout */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 100px 0;
  position: relative;
}

/* Glassmorphism & Neon */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(20, 241, 149, 0.1);
  border-radius: var(--rounded-lg);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.glass-card:hover {
  border-color: rgba(20, 241, 149, 0.4);
  box-shadow: 0 0 20px var(--glow-green);
  transform: translateY(-5px);
}

.glow-text {
  text-shadow: 0 0 20px var(--glow-green);
  color: var(--primary-container);
}

.glow-text-purple {
  text-shadow: 0 0 20px var(--glow-purple);
  color: var(--secondary-container);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--rounded-full);
  font-family: var(--font-headline);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(90deg, #9945FF 0%, #14F195 100%);
  color: var(--surface-container-lowest);
  box-shadow: 0 4px 15px rgba(20, 241, 149, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(20, 241, 149, 0.6), 0 0 40px rgba(153, 69, 255, 0.4);
  transform: scale(1.05);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary-container);
  color: var(--primary-container);
}

.btn-outline:hover {
  background: rgba(20, 241, 149, 0.1);
  box-shadow: 0 0 15px var(--glow-green);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  z-index: 1000;
  background: rgba(11, 14, 20, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.nav-logo img {
  height: 40px;
}

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

.nav-links a {
  color: var(--on-surface);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 14px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-container);
  text-shadow: 0 0 10px var(--glow-green);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 20px rgba(20, 241, 149, 0.4); }
  50% { box-shadow: 0 0 40px rgba(20, 241, 149, 0.8); }
  100% { box-shadow: 0 0 20px rgba(20, 241, 149, 0.4); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* Sections */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: radial-gradient(circle at center, rgba(153, 69, 255, 0.1) 0%, rgba(11, 14, 20, 1) 70%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 24px;
}

.hero-text p {
  margin-bottom: 40px;
  color: var(--on-surface-variant);
}

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

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 0 30px rgba(20, 241, 149, 0.3));
}

.hero-bg-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  z-index: -1;
  opacity: 0.5;
  mix-blend-mode: screen;
}

/* Tokenomics Grid */
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

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

.token-stat .value {
  font-size: 32px;
  color: var(--primary-container);
  font-family: var(--font-headline);
  margin-bottom: 8px;
}

.contract-box {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contract-address {
  background: rgba(0,0,0,0.5);
  padding: 16px 24px;
  border-radius: var(--rounded);
  border: 1px solid var(--outline-variant);
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--primary);
}

.contract-address button {
  background: transparent;
  border: none;
  color: var(--on-surface);
  cursor: pointer;
  transition: color 0.3s;
}

.contract-address button:hover {
  color: var(--primary-container);
}

/* Footer / Socials */
.social-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

.social-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--on-surface);
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.social-icon:hover {
  background: rgba(20, 241, 149, 0.1);
  border-color: var(--primary-container);
  color: var(--primary-container);
  transform: translateY(-5px);
  box-shadow: 0 0 15px var(--glow-green);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .nav-links {
    display: none;
  }
}
