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

:root {
  --bg: #080E1A;
  --bg-card: #0d1520;
  --bg-card-hover: #111e2e;
  --fg: #F5F5F0;
  --fg-muted: #9CA3AF;
  --accent: #B4FF00;
  --accent-dim: rgba(180, 255, 0, 0.12);
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(180, 255, 0, 0.2);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1100px;
  --section-py: 96px;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 32px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  background: rgba(8, 14, 26, 0.85);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* ===== SECTION EYEBROW ===== */
.section-eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 32px 96px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
  width: fit-content;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 40px;
  max-width: 440px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proof-num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.proof-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
.flow-visual {
  width: 100%;
}
.flow-visual svg {
  width: 100%;
  height: auto;
}

/* ===== PROBLEM ===== */
.problem {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) 32px;
}
.problem-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  max-width: 680px;
}
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.problem-stat {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
}
.pstat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.pstat-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
}
.problem-quote {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.problem-quote p {
  font-family: var(--font-head);
  font-size: 15px;
  font-style: italic;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.problem-quote span {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ===== HOW ===== */
.how {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) 32px;
}
.how-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr 260px;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.step-connector {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}
.step-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  letter-spacing: -0.04em;
  line-height: 1;
}
.step-content h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.step-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
}
.step-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-visual svg {
  width: 100%;
  max-width: 200px;
}

/* ===== SERVICES ===== */
.services {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) 32px;
}
.services-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--bg-card);
  padding: 36px 32px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--bg-card-hover); }
.svc-icon {
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-tags span {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 500;
}

/* ===== NICHES ===== */
.niches {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) 32px;
}
.niches-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.niches-sub {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 48px;
}
.niche-pills {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.niche-pill {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  background: var(--bg-card);
  transition: background 0.2s, border-color 0.2s;
}
.niche-pill:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
}
.pill-icon {
  margin-top: 2px;
  flex-shrink: 0;
}
.niche-pill strong {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.niche-pill span {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.niche-cta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.niche-cta p {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ===== NUMBERS ===== */
.numbers {
  background: var(--accent);
}
.numbers-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 32px;
}
.num-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.num-item {
  text-align: center;
}
.num-val {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--bg);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.num-desc {
  font-size: 12px;
  color: rgba(8, 14, 26, 0.6);
  line-height: 1.4;
  max-width: 120px;
}
.num-sep {
  width: 1px;
  height: 50px;
  background: rgba(8, 14, 26, 0.15);
}

/* ===== CLOSING ===== */
.closing {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) 32px;
  text-align: center;
}
.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 40px;
}
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 16px;
}
.closing-sub {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 56px;
  font-weight: 600;
}
.closing-manifesto {
  max-width: 640px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.closing-manifesto p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.closing-manifesto p:last-child { margin-bottom: 0; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 400px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-sep { opacity: 0.4; }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 48px 20px 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .flow-visual { display: none; }
  .hero-proof { gap: 16px; }
  .problem-stats { grid-template-columns: 1fr; gap: 32px; }
  .step { grid-template-columns: 60px 1fr; }
  .step-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .num-row { flex-direction: column; gap: 32px; }
  .num-sep { display: none; }
  .how, .niches, .closing { padding-left: 20px; padding-right: 20px; }
  .services-inner, .problem-inner { padding-left: 20px; padding-right: 20px; }
  .numbers-inner { padding-left: 20px; padding-right: 20px; }
  .footer { padding: 40px 20px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .proof-item { min-width: calc(50% - 8px); }
}
