:root {
  --bg: #0F0F1A;
  --bg-alt: #16162A;
  --fg: #F0EDE6;
  --accent: #FF6B35;
  --accent-dim: rgba(255, 107, 53, 0.12);
  --muted: #7A7A9A;
  --surface: #1C1C35;
  --border: rgba(240, 237, 230, 0.07);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1100px;
}

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

html { scroll-behavior: smooth; }

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

/* Hero */
.hero {
  padding: 100px 24px 80px;
  border-bottom: 1px solid var(--border);
}

.hero-inner { max-width: var(--max-w); margin: 0 auto; }

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--fg);
}

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

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

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  max-width: 580px;
}

.stat {
  flex: 1;
  padding: 24px 28px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
}

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

/* Sections */
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

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

.section-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 560px;
}

/* Features */
.features { padding: 100px 0; border-bottom: 1px solid var(--border); }

.features h2 { margin-bottom: 56px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg-alt);
  padding: 36px 32px;
  border-right: 1px solid var(--border);
}

.feature-card:last-child { border-right: none; }

.feature-icon {
  color: var(--accent);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Niches */
.niches { padding: 100px 0; border-bottom: 1px solid var(--border); background: var(--bg-alt); }

.niches-text { margin-bottom: 56px; }

.niches-body {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin-top: 16px;
  line-height: 1.7;
}

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

.niche-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px 28px;
  background: var(--bg);
}

.niche-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.niche-item h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

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

/* Process */
.process { padding: 100px 0; border-bottom: 1px solid var(--border); }

.process h2 { margin-bottom: 56px; }

.step-list { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-top: 6px;
  min-width: 28px;
}

.step-body h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-body p {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.65;
}

/* Closing */
.closing { padding: 120px 0; border-bottom: 1px solid var(--border); }

.closing-inner { max-width: 680px; }

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.closing-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* Footer */
footer {
  padding: 60px 24px;
  background: var(--bg-alt);
}

.footer-inner { max-width: var(--max-w); margin: 0 auto; }

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--fg);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  max-width: 360px;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 72px 20px 56px; }
  .hero-sub { font-size: 16px; margin-bottom: 40px; }
  .hero-stat-row { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid var(--border); }
  .niche-grid { grid-template-columns: 1fr; }
  .step { gap: 20px; }
  .features, .niches, .process, .closing { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 42px; }
  .stat { padding: 20px 20px; }
  .step-body h4 { font-size: 17px; }
}