:root {
  --bg-dark: #0a0a0f;
  --bg-section: #111118;
  --bg-card: #1a1a24;
  --fg: #f0f0f5;
  --fg-muted: #9090a0;
  --accent: #ff4d2d;
  --accent-glow: #ff6b4d;
  --accent-secondary: #ffb800;
  --gradient-start: #ff4d2d;
  --gradient-mid: #ff6b4d;
  --gradient-end: #ffb800;
  --green: #00e676;
  --radius: 16px;
  --radius-sm: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === NAV === */
.nav {
  padding: 24px 40px;
  position: relative;
  z-index: 10;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === HERO === */
.hero {
  position: relative;
  padding: 40px 40px 80px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -100px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-secondary);
  bottom: -100px;
  left: -100px;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--green);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 77, 45, 0.15);
  border: 1px solid rgba(255, 77, 45, 0.3);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-glow);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--accent-secondary);
}

.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 200px;
  display: block;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* === PROBLEM === */
.problem {
  padding: 100px 40px;
  background: var(--bg-section);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.problem-label,
.features-label,
.how-label,
.fund-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}

.problem h2,
.features h2,
.how-it-works h2,
.fund h2,
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.3s;
}

.problem-card:hover {
  border-color: rgba(255, 77, 45, 0.3);
}

.problem-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === FEATURES === */
.features {
  padding: 100px 40px;
  background: var(--bg-dark);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 45, 0.2);
}

.feature-highlight {
  background: linear-gradient(135deg, rgba(255, 77, 45, 0.12), rgba(255, 184, 0, 0.08));
  border-color: rgba(255, 77, 45, 0.25);
}

.feature-number {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === HOW IT WORKS / PRICING === */
.how-it-works {
  padding: 100px 40px;
  background: var(--bg-section);
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.price-featured {
  background: linear-gradient(135deg, rgba(255, 77, 45, 0.12), rgba(255, 184, 0, 0.06));
  border-color: var(--accent);
  transform: scale(1.04);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.price-age {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--fg), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-amount span {
  font-size: 20px;
  font-weight: 500;
}

.price-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.price-note {
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
}

/* === FUND === */
.fund {
  padding: 100px 40px;
  background: var(--bg-dark);
}

.fund-inner {
  max-width: 900px;
  margin: 0 auto;
}

.fund-content {
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.08), rgba(0, 230, 118, 0.02));
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: var(--radius);
  padding: 60px 48px;
}

.fund-label {
  color: var(--green);
}

.fund h2 {
  margin-bottom: 24px;
}

.fund-content > p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 700px;
}

.fund-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 230, 118, 0.15);
  flex-wrap: wrap;
}

.fund-stat strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--green);
}

.fund-stat span {
  font-size: 14px;
  color: var(--fg-muted);
}

/* === CLOSING === */
.closing {
  padding: 120px 40px;
  text-align: center;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 77, 45, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-top: 24px;
}

.closing-tagline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--fg) !important;
  margin-top: 40px !important;
}

/* === FOOTER === */
.footer {
  padding: 48px 40px;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 14px;
  color: var(--fg-muted);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: var(--fg-muted);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    padding: 24px 20px 60px;
    min-height: auto;
  }

  .nav {
    padding: 20px;
  }

  .hero h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .problem,
  .features,
  .how-it-works,
  .fund,
  .closing {
    padding: 64px 20px;
  }

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

  .price-featured {
    transform: none;
  }

  .fund-content {
    padding: 36px 24px;
  }

  .fund-stats {
    flex-direction: column;
    gap: 24px;
  }

  .problem h2,
  .features h2,
  .how-it-works h2,
  .fund h2,
  .closing h2 {
    font-size: 32px;
  }

  .footer {
    padding: 36px 20px;
  }
}