:root {
  --bg: #080C14;
  --surface: #0F1929;
  --surface-2: #15233D;
  --accent: #3B9EFF;
  --accent-warm: #FFB340;
  --accent-green: #34D399;
  --text: #F0F4FF;
  --text-muted: #8899AA;
  --border: #1A2B44;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav-badge {
  font-size: 12px;
  background: var(--surface-2);
  color: var(--accent-warm);
  padding: 4px 12px;
  border-radius: 99px;
  font-weight: 500;
  border: 1px solid rgba(255,179,64,0.2);
}

/* Section base */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -1px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 520px;
  margin-top: 12px;
}

/* Hero */
.hero {
  padding: 80px 40px 100px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(59,158,255,0.1);
  border: 1px solid rgba(59,158,255,0.2);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 20px;
  max-width: 460px;
  line-height: 1.5;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 28px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-warm);
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hero cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  transition: border-color 0.2s;
}
.hero-card--featured {
  background: var(--surface-2);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(59,158,255,0.15), 0 8px 32px rgba(59,158,255,0.08);
}
.card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.card-price {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.card-period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}
.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.card-features li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.hero-card--featured .card-features li {
  color: #CBD5E1;
}

/* Packages */
.packages {
  padding: 90px 0;
  border-bottom: 1px solid var(--border);
}
.packages .section-headline {
  margin-bottom: 56px;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.package-item {
  background: var(--surface);
  padding: 36px 28px;
  transition: background 0.2s;
}
.package-item:hover {
  background: var(--surface-2);
}
.pkg-icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 16px;
}
.package-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.package-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Features */
.features {
  padding: 90px 0;
  border-bottom: 1px solid var(--border);
}
.features-header {
  margin-bottom: 56px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.feature {
  background: var(--surface);
  padding: 40px 36px;
  transition: background 0.2s;
}
.feature:hover {
  background: var(--surface-2);
}
.feat-number {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.feature h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.feature p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* How */
.how {
  padding: 90px 0;
  border-bottom: 1px solid var(--border);
}
.how .section-headline {
  margin-bottom: 52px;
}
.steps {
  display: flex;
  align-items: center;
  gap: 40px;
}
.step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
}
.step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-warm);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-arrow {
  font-size: 24px;
  color: var(--border);
  flex-shrink: 0;
}

/* Manifesto */
.manifesto {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.manifesto-text {
  max-width: 760px;
}
.manifesto-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 28px;
}
.manifesto-text p {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.manifesto-text strong {
  color: var(--text);
  font-weight: 600;
}

/* Closing */
.closing {
  padding: 90px 0;
}
.closing-box {
  max-width: 800px;
}
.closing-box h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing-box p {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
}
.footer-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    flex-direction: column;
  }
  .step-arrow {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 24px 80px;
  }
  .navbar {
    padding: 16px 24px;
  }
  .section-inner {
    padding: 0 24px;
  }
  .packages {
    padding: 60px 0;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .features {
    padding: 60px 0;
  }
  .how {
    padding: 60px 0;
  }
  .manifesto {
    padding: 60px 0;
  }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .hero-stats {
    gap: 20px;
  }
  .stat-val {
    font-size: 22px;
  }
}