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

:root {
  --bg: #08090f;
  --bg-surface: #0e1019;
  --bg-card: #11141f;
  --fg: #f0ede6;
  --fg-muted: #8a8a9a;
  --accent: #ff5c2b;
  --accent-dim: #c44720;
  --border: #1e2236;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAVIGATION === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 32px;
  background: rgba(8, 9, 15, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: -0.02em;
  background: var(--accent);
  color: var(--bg);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
}

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

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,92,43,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,92,43,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

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

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255,92,43,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
}

.hero-headline .line {
  display: block;
}

.hero-headline .accent {
  color: var(--accent);
}

.hero-sub {
  max-width: 520px;
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  width: fit-content;
  background: var(--bg-surface);
}

.stat {
  padding: 24px 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
}

.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
  max-width: 90px;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--border);
}

/* === SECTIONS SHARED === */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 40px;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

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

.step {
  padding: 48px 40px;
  background: var(--bg-surface);
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.step-icon {
  color: var(--accent);
  margin-bottom: 24px;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

.step-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === NICHE SPECTRUM === */
.niche-spectrum {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
}

.niche-header {
  margin-bottom: 64px;
}

.niche-sub {
  max-width: 540px;
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
}

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

.niche-card {
  padding: 40px 36px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}

.niche-card:hover {
  background: var(--bg-surface);
}

.niche-icon {
  color: var(--accent);
  margin-bottom: 4px;
}

.niche-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.niche-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === OUTCOMES === */
.outcomes {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.outcomes-headline {
  margin-bottom: 20px;
}

.outcomes-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.outcomes-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.outcome-item:last-child {
  border-bottom: none;
}

.outcome-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--bg);
}

.outcome-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.outcome-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.outcome-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  padding: 160px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-surface) 100%);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === FOOTER === */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  background: var(--accent);
  color: var(--bg);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}

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

.footer-note {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .niche-grid {
    grid-template-columns: 1fr 1fr;
  }
  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-stats {
    flex-direction: column;
    width: 100%;
  }
  .stat-divider {
    width: 100%;
    height: 1px;
  }
  .stat {
    padding: 20px 24px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 120px 20px 60px;
  }
  .hero-headline {
    font-size: 52px;
  }
  .section-inner {
    padding: 0 20px;
  }
  .niche-grid {
    grid-template-columns: 1fr;
  }
  .step {
    padding: 32px 24px;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}