:root {
  --bg: #0c0c0c;
  --bg-card: #161616;
  --bg-card-alt: #1e1e1e;
  --accent: #ff6b2b;
  --accent-dim: rgba(255, 107, 43, 0.12);
  --fg: #f5f5f0;
  --fg-muted: #a0a0a0;
  --fg-subtle: #666;
  --border: rgba(255,255,255,0.06);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 100px 32px 80px;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,107,43,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 860px; margin: 0 auto; position: relative; }
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255,107,43,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.65;
}
.hero-stat-row {
  display: flex;
  gap: 0;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
}
.hero-stat {
  flex: 1;
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* SHARED SECTION */
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 56px;
}

/* PROOF */
.proof { padding: 80px 32px; background: var(--bg-card); }
.proof-inner { max-width: 1120px; margin: 0 auto; }
.proof-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  margin: 0 0 20px;
  max-width: 780px;
}
.proof-sub {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 56px;
  padding-left: 28px;
}
.proof-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 20px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.proof-item {
  background: var(--bg);
  padding: 36px 32px;
}
.proof-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.proof-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.proof-item p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* OFFERINGS */
.offerings { padding: 100px 32px; }
.offerings-inner { max-width: 1120px; margin: 0 auto; }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.offering-card {
  background: var(--bg-card);
  padding: 32px 28px;
}
.offering-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.offering-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.offering-card p {
  font-size: 0.825rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* NICHES */
.niches { padding: 80px 32px; background: var(--bg-card); }
.niches-inner { max-width: 1120px; margin: 0 auto; }
.niches-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.niche-tag {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 100px;
}
.niches-note {
  font-size: 0.875rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
}

/* PRICING */
.pricing { padding: 100px 32px; }
.pricing-inner { max-width: 1120px; margin: 0 auto; }
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 520px;
  overflow: hidden;
}
.pricing-header {
  padding: 40px 40px 32px;
  background: var(--bg-card-alt);
  border-bottom: 1px solid var(--border);
}
.pricing-tier {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 12px;
}
.pricing-per {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.pricing-features {
  list-style: none;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-features li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  padding-left: 0;
}
.pricing-reveal {
  padding: 28px 40px 36px;
  border-top: 1px solid var(--border);
  background: var(--accent-dim);
}
.pricing-do-the-math {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.pricing-do-the-math-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* PROCESS */
.process { padding: 100px 32px; background: var(--bg-card); }
.process-inner { max-width: 1120px; margin: 0 auto; }
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--fg-subtle);
  padding-top: 4px;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.step-body p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* CLOSING */
.closing { padding: 100px 32px; }
.closing-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* FOOTER */
.footer { padding: 60px 32px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-subtle);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-tagline { display: none; }
  .hero { padding: 72px 20px 60px; }
  .hero-stat-row { flex-direction: column; border-radius: 12px; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 16px; }
  .hero-stat:last-child { border-bottom: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card { max-width: 100%; }
  .step { grid-template-columns: 48px 1fr; gap: 16px; }
  .niches-list { gap: 8px; }
  .offerings, .proof, .pricing, .process, .closing { padding: 60px 20px; }
  .offerings-inner, .proof-inner, .pricing-inner, .process-inner, .niches-inner, .closing-inner { max-width: 100%; }
}
@media (max-width: 480px) {
  .offerings-grid { grid-template-columns: 1fr; }
}