/* ========================================
   PuliGo Token — Design System & Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- Custom Properties --- */
:root {
  --bg: #0B0614;
  --section-bg: #160D24;
  --purple: #8B5CF6;
  --purple-dark: #6D28D9;
  --purple-light: #A78BFA;
  --cyan: #22D3EE;
  --cyan-dark: #06B6D4;
  --cyan-glow: rgba(34, 211, 238, 0.3);
  --purple-glow: rgba(139, 92, 246, 0.3);
  --text: #FFFFFF;
  --text-muted: #A78BFA;
  --text-dim: #7C6BA3;
  --card-bg: rgba(22, 13, 36, 0.7);
  --card-border: rgba(139, 92, 246, 0.15);
  --glass-bg: rgba(11, 6, 20, 0.75);
  --glass-border: rgba(139, 92, 246, 0.2);
  --gradient-purple-cyan: linear-gradient(135deg, var(--purple), var(--cyan));
  --gradient-bg: linear-gradient(180deg, #0B0614 0%, #160D24 50%, #0B0614 100%);
  --font: 'Outfit', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
}

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

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  outline: none;
}

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

.gradient-text {
  background: var(--gradient-purple-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.4rem;
  z-index: 1001;
}

.nav-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--purple);
  box-shadow: 0 0 15px var(--purple-glow);
}

.nav-logo span {
  background: var(--gradient-purple-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-purple-cyan);
  transition: width 0.3s ease;
}

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

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

.nav-cta {
  padding: 10px 24px;
  background: var(--gradient-purple-cyan);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bg) !important;
  transition: var(--transition);
  box-shadow: 0 0 20px var(--cyan-glow);
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--cyan-glow), 0 0 60px rgba(34, 211, 238, 0.15);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

/* Animated BG Gradient */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(34, 211, 238, 0.1) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 50%, rgba(109, 40, 217, 0.08) 0%, transparent 70%);
  animation: hero-bg-shift 20s ease-in-out infinite alternate;
}

@keyframes hero-bg-shift {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-2%, 3%) rotate(1deg); }
  66% { transform: translate(2%, -2%) rotate(-1deg); }
  100% { transform: translate(-1%, 1%) rotate(0.5deg); }
}

/* Grid Lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.float-item {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  animation: float-orbit linear infinite;
  will-change: transform;
}

.float-item:nth-child(1) {
  top: 10%;
  left: 8%;
  animation-duration: 22s;
  font-size: 2.5rem;
  opacity: 0.2;
}

.float-item:nth-child(2) {
  top: 20%;
  right: 12%;
  animation-duration: 18s;
  animation-delay: -3s;
}

.float-item:nth-child(3) {
  bottom: 25%;
  left: 15%;
  animation-duration: 25s;
  animation-delay: -7s;
  font-size: 1.8rem;
}

.float-item:nth-child(4) {
  top: 45%;
  right: 8%;
  animation-duration: 20s;
  animation-delay: -5s;
  font-size: 2.2rem;
  opacity: 0.12;
}

.float-item:nth-child(5) {
  bottom: 15%;
  right: 20%;
  animation-duration: 28s;
  animation-delay: -10s;
  font-size: 1.5rem;
}

.float-item:nth-child(6) {
  top: 60%;
  left: 5%;
  animation-duration: 24s;
  animation-delay: -2s;
  font-size: 2rem;
  opacity: 0.1;
}

.float-item:nth-child(7) {
  top: 8%;
  left: 45%;
  animation-duration: 30s;
  animation-delay: -8s;
  font-size: 1.6rem;
  opacity: 0.08;
}

.float-item:nth-child(8) {
  bottom: 35%;
  right: 35%;
  animation-duration: 19s;
  animation-delay: -12s;
  font-size: 2.8rem;
  opacity: 0.1;
}

@keyframes float-orbit {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(30px, -50px) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translate(-20px, -80px) rotate(180deg) scale(0.95);
  }
  75% {
    transform: translate(40px, -30px) rotate(270deg) scale(1.05);
  }
  100% {
    transform: translate(0, 0) rotate(360deg) scale(1);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan);
  width: fit-content;
  animation: tag-glow 3s ease-in-out infinite;
}

@keyframes tag-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(34, 211, 238, 0.1); }
  50% { box-shadow: 0 0 25px rgba(34, 211, 238, 0.2); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-title .highlight {
  background: var(--gradient-purple-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 500px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-purple-cyan);
  color: var(--bg);
  box-shadow: 0 0 25px var(--purple-glow);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 40px var(--purple-glow), 0 8px 32px rgba(139, 92, 246, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--purple);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.1);
}

.btn-secondary:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--cyan-glow);
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 8px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-purple-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  width: 380px;
  height: 380px;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  animation: hero-float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 40px var(--purple-glow)) drop-shadow(0 0 80px rgba(139, 92, 246, 0.15));
}

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

.hero-glow-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(139, 92, 246, 0.2);
  animation: ring-pulse 4s ease-in-out infinite;
  z-index: 1;
}

.hero-glow-ring:nth-child(2) {
  inset: -45px;
  border-color: rgba(34, 211, 238, 0.1);
  animation-delay: -1.5s;
  animation-duration: 5s;
}

.hero-glow-ring:nth-child(3) {
  inset: -70px;
  border-color: rgba(139, 92, 246, 0.05);
  animation-delay: -3s;
  animation-duration: 6s;
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.5; }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scroll-line {
  0% { opacity: 1; }
  100% { opacity: 0.3; }
}

/* ========================================
   SECTIONS — COMMON
   ======================================== */
section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: var(--section-bg);
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

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

.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 340px;
  height: 340px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 2px solid var(--card-border);
  box-shadow: 0 0 40px var(--purple-glow);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
}

.about-feature {
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px var(--purple-glow);
}

.about-feature-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.about-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ========================================
   WHY SECTION (Features)
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 40px 32px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-purple-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  border-color: var(--purple);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(139, 92, 246, 0.15);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: rgba(34, 211, 238, 0.1);
  border-color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========================================
   TOKENOMICS SECTION
   ======================================== */
.tokenomics-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.tokenomics-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.token-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.token-detail-row:hover {
  border-color: var(--purple);
  box-shadow: 0 4px 20px var(--purple-glow);
}

.token-detail-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.token-detail-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cyan);
}

.tokenomics-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* Donut Chart */
.donut-chart {
  width: 280px;
  height: 280px;
  position: relative;
}

.donut-chart svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.donut-chart circle {
  fill: none;
  stroke-width: 28;
  cx: 140;
  cy: 140;
  r: 110;
}

.donut-segment-1 {
  stroke: var(--purple);
  stroke-dasharray: 0 691.15;
  animation: donut-fill-1 1.5s ease forwards;
  animation-play-state: paused;
}

.donut-segment-2 {
  stroke: var(--cyan);
  stroke-dasharray: 0 691.15;
  animation: donut-fill-2 1.5s ease 0.3s forwards;
  animation-play-state: paused;
}

.donut-segment-3 {
  stroke: var(--purple-dark);
  stroke-dasharray: 0 691.15;
  animation: donut-fill-3 1.5s ease 0.6s forwards;
  animation-play-state: paused;
}

.donut-segment-4 {
  stroke: var(--purple-light);
  stroke-dasharray: 0 691.15;
  animation: donut-fill-4 1.5s ease 0.9s forwards;
  animation-play-state: paused;
}

.donut-chart.animate circle {
  animation-play-state: running;
}

@keyframes donut-fill-1 { to { stroke-dasharray: 311.02 691.15; } } /* 45% Liquidity Pool */
@keyframes donut-fill-2 { to { stroke-dasharray: 207.35 691.15; } } /* 30% Presale */
@keyframes donut-fill-3 { to { stroke-dasharray: 103.67 691.15; } } /* 15% Marketing */
@keyframes donut-fill-4 { to { stroke-dasharray: 69.12 691.15; } }  /* 10% Team */

.donut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.donut-center-value {
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--gradient-purple-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.donut-center-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.donut-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Fair Launch Badge */
.fair-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: var(--radius);
  margin-top: 16px;
  animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(34, 211, 238, 0.1); }
  50% { box-shadow: 0 0 30px rgba(34, 211, 238, 0.2); }
}

.fair-badge-icon {
  font-size: 2rem;
}

.fair-badge-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cyan);
}

.fair-badge-sub {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Contract Address */
.contract-box {
  margin-top: 24px;
  padding: 18px 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.contract-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contract-address {
  font-size: 0.85rem;
  color: var(--cyan);
  font-family: monospace;
  word-break: break-all;
}

.copy-btn {
  padding: 8px 16px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid var(--purple);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.copy-btn:hover {
  background: var(--purple);
  color: var(--bg);
}

/* ========================================
   HOW TO BUY SECTION
   ======================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  padding: 32px 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  transition: var(--transition);
  text-align: center;
  position: relative;
}

.step-card:hover {
  border-color: var(--purple);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--purple-glow);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-purple-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bg);
  margin: 0 auto 20px;
  box-shadow: 0 0 20px var(--purple-glow);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.steps-cta {
  text-align: center;
  margin-top: 48px;
}

/* ========================================
   ROADMAP SECTION
   ======================================== */
.roadmap-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--purple), var(--cyan), var(--purple));
  border-radius: 3px;
}

.roadmap-phase {
  position: relative;
  padding-left: 72px;
  padding-bottom: 48px;
}

.roadmap-phase:last-child {
  padding-bottom: 0;
}

.roadmap-dot {
  position: absolute;
  left: 13px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--purple);
  z-index: 2;
  transition: var(--transition);
}

.roadmap-phase:hover .roadmap-dot {
  border-color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow);
  background: var(--cyan);
}

.roadmap-card {
  padding: 28px 32px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.roadmap-phase:hover .roadmap-card {
  border-color: var(--purple);
  box-shadow: 0 8px 32px var(--purple-glow);
}

.roadmap-phase-label {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.roadmap-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.roadmap-card .date {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.roadmap-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.roadmap-card ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.roadmap-card ul li::before {
  content: '◈';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-size: 0.7rem;
  top: 3px;
}

/* ========================================
   COMMUNITY / CTA SECTION
   ======================================== */
.community-section {
  position: relative;
  overflow: hidden;
}

.community-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.community-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.community-content .section-title {
  margin-bottom: 20px;
}

.community-content .section-subtitle {
  margin: 0 auto 40px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px var(--purple-glow);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: var(--cyan);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 48px 0 24px;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
}

.footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: var(--transition);
}

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

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.footer-social-icon:hover {
  border-color: var(--cyan);
  background: rgba(34, 211, 238, 0.1);
  box-shadow: 0 0 15px var(--cyan-glow);
}

.footer-social-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
  transition: var(--transition);
}

.footer-social-icon:hover svg {
  fill: var(--cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(139, 92, 246, 0.06);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 12px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

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

  .hero-description {
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-wrapper {
    width: 300px;
    height: 300px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-features {
    max-width: 500px;
    margin: 12px auto 0;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tokenomics-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(11, 6, 20, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right 0.4s ease;
    z-index: 1000;
    border-left: 1px solid var(--glass-border);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-image-wrapper {
    width: 240px;
    height: 240px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  section {
    padding: 70px 0;
  }

  .about-image img {
    width: 260px;
    height: 260px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .donut-chart {
    width: 220px;
    height: 220px;
  }

  .float-item:nth-child(n+5) {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    justify-content: center;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }
}
