:root {
  --bg: #0A0A0B;
  --fg: #F5F0E8;
  --fg-dim: #8A8580;
  --accent: #FF6B2C;
  --accent-dim: #C44D10;
  --surface: #161614;
  --border: #252522;
  --mono: 'DM Mono', monospace;
  --display: 'Syne', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 40px;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--fg);
}
.nav-tagline {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-left: 6px;
  opacity: 0.8;
}

/* SECTION LABEL */
.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 400;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,44,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-headline {
  font-family: var(--display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-headline br { display: block; }
.hero-sub {
  font-size: 15px;
  color: var(--fg-dim);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  width: fit-content;
  background: var(--surface);
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 20px 32px;
}
.stat-num {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* NICHES */
.niches {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.niches-header {
  margin-bottom: 64px;
}
.niches-title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  max-width: 540px;
}
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.niche-card {
  background: var(--surface);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.niche-icon {
  color: var(--accent);
  width: 32px;
  height: 32px;
}
.niche-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.niche-desc {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.65;
}

/* PIPELINE */
.pipeline {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pipeline-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.pipeline-headline {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}
.pipeline-sub {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.6;
}
.pipeline-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  padding-top: 3px;
}
.step-title {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}
.step-desc {
  font-size: 12px;
  color: var(--fg-dim);
  line-height: 1.65;
}

/* TIERS */
.tiers {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.tiers-headline {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 12px;
}
.tiers-sub {
  font-size: 14px;
  color: var(--fg-dim);
  margin-bottom: 56px;
}
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.tier {
  background: var(--surface);
  padding: 40px 32px;
  position: relative;
}
.tier-basic { border-left: 2px solid var(--border); }
.tier-std { border-left: 2px solid var(--accent); }
.tier-prem { border-left: 2px solid var(--border); }
.tier-badge {
  position: absolute;
  top: 0;
  right: 32px;
  background: var(--accent);
  color: var(--bg);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 5px 10px;
  border-radius: 0 0 4px 4px;
}
.tier-top {
  margin-bottom: 16px;
}
.tier-name {
  display: block;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 12px;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.tier-amount {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 800;
  color: var(--fg);
}
.tier-period {
  font-size: 13px;
  color: var(--fg-dim);
}
.tier-tagline {
  font-size: 12px;
  color: var(--fg-dim);
  margin-bottom: 28px;
  line-height: 1.5;
}
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tier-features li {
  font-size: 12px;
  color: var(--fg);
  padding-left: 16px;
  position: relative;
}
.tier-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 10px;
}

/* PROCESS */
.process {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-inner { max-width: 900px; }
.process-headline {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 56px;
  line-height: 1.1;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.pstep-day {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 400;
}
.pstep-title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.pstep-desc {
  font-size: 12px;
  color: var(--fg-dim);
  line-height: 1.65;
}
.process-footnote {
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}

/* CLOSING */
.closing {
  padding: 140px 40px 120px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,107,44,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--display);
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.75;
  margin-bottom: 36px;
}
.closing-vibe {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* FOOTER */
.footer {
  padding: 32px 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.footer-name {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--fg);
}
.footer-slug {
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
}
.footer-tagline {
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.08em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-headline { font-size: 42px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }
  .niches { padding: 60px 20px; }
  .niches-grid { grid-template-columns: 1fr; }
  .pipeline-content { grid-template-columns: 1fr; gap: 40px; }
  .tiers { padding: 60px 20px; }
  .tier-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .closing { padding: 80px 20px 60px; }
  .footer { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .stat { padding: 16px 20px; }
}