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

:root {
  --bg: #0f0f18;
  --bg-2: #13131f;
  --bg-card: #1a1a2e;
  --fg: #f0f0f8;
  --fg-muted: #9090a8;
  --accent: #00e5a0;
  --accent-dim: rgba(0, 229, 160, 0.12);
  --accent-glow: rgba(0, 229, 160, 0.25);
  --border: rgba(255,255,255,0.06);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(15,15,24,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  padding: 5px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.3px;
}

.header-nav { display: flex; gap: 32px; }
.header-nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--fg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,160,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,160,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,229,160,0.12), transparent 70%);
  top: -100px; right: -100px;
}
.glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(100,80,255,0.08), transparent 70%);
  bottom: 0; left: 10%;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,229,160,0.15);
}
.orb-1 {
  width: 500px; height: 500px;
  border-radius: 50%;
  right: -80px; top: 120px;
  background: radial-gradient(circle, rgba(0,229,160,0.03) 0%, transparent 70%);
}
.orb-2 {
  width: 300px; height: 300px;
  border-radius: 50%;
  left: 5%; bottom: 60px;
  background: radial-gradient(circle, rgba(100,80,255,0.05) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,160,0.2);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
  max-width: 700px;
}
.headline-accent {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.hero-lede {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  max-width: 140px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* === PROOF === */
.proof {
  padding: 100px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  max-width: 720px;
  margin: 0 auto;
}
.proof-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.proof-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 32px;
  font-style: italic;
}
.proof-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.proof-body:last-child { margin-bottom: 0; }

/* === FEATURES === */
.features {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 64px;
  max-width: 600px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
}
.section-subtitle {
  margin-top: 16px;
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg-2);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--bg-card); }

.feature-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,160,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === NICHES === */
.niches {
  padding: 100px 24px;
  background: var(--bg-2);
}
.niches .section-header { max-width: 680px; margin: 0 auto 64px; text-align: center; }

.niches-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.niche-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.niche-card:hover {
  border-color: rgba(0,229,160,0.2);
  transform: translateY(-2px);
}

.niche-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,160,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}

.niche-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.niche-problem {
  font-size: 13px;
  color: #ff6b6b;
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 500;
}
.niche-fix {
  font-size: 13px;
  color: var(--accent);
  line-height: 1.5;
}

/* === PRICING === */
.pricing {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing .section-header { max-width: 600px; margin-bottom: 64px; }

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

.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.pricing-card--featured {
  border-color: rgba(0,229,160,0.25);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0,229,160,0.04) 100%);
}
.pricing-tier {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.pricing-period {
  font-size: 20px;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-includes li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.pricing-target {
  text-align: center;
  padding: 32px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,160,0.15);
  border-radius: 16px;
}
.pricing-target p {
  font-size: 18px;
  color: var(--fg);
}
.pricing-target strong { color: var(--accent); }
.pricing-math {
  font-size: 14px !important;
  color: var(--fg-muted) !important;
  margin-top: 8px;
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.manifesto-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 40px;
}
.manifesto-body p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.manifesto-body p:last-child { margin-bottom: 0; }

/* === CLOSING === */
.closing {
  padding: 120px 24px;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}
.closing-cta {
  display: inline-block;
  padding: 20px 40px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,160,0.2);
  border-radius: 12px;
}
.closing-cta-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

/* === FOOTER === */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-desc { font-size: 14px; color: var(--fg-muted); }
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.25); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .niches-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hero-headline { letter-spacing: -1px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
}
@media (max-width: 480px) {
  .niches-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
}