/* Base */
:root {
  --bg: #0d0d0d;
  --bg-alt: #141414;
  --fg: #f5f5f0;
  --fg-dim: #8a8a82;
  --accent: #f5a623;
  --accent-dim: #c47d0e;
  --steel: #2a2a2a;
  --border: #242424;
}

*, *::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: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-dim);
  font-weight: 400;
}

/* Hero */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 64px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-lede {
  font-size: 18px;
  color: var(--fg-dim);
  max-width: 560px;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 48px;
}

.hero-rule {
  width: 64px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.stat { padding: 0; }

.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--fg);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.45;
  max-width: 200px;
  font-weight: 300;
}

/* Proof */
.proof {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.proof-quote {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.proof-context {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.7;
  font-weight: 300;
}

/* How it works */
.how {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.step {
  padding: 32px 40px 32px 0;
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; }
.step:nth-child(2) { padding-left: 40px; }
.step:nth-child(3) { padding-left: 40px; }

.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.65;
  font-weight: 300;
}

/* Offer / Pricing */
.offer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.tier {
  background: var(--bg);
  padding: 36px 32px;
  position: relative;
}

.tier-featured {
  background: #1c1c1c;
  border: 1px solid var(--accent);
}

.tier-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: #0d0d0d;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.tier-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 16px;
}

.tier-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.tier-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-dim);
}

.tier-features {
  list-style: none;
}

.tier-features li {
  font-size: 14px;
  color: var(--fg-dim);
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-weight: 300;
}

.tier-features li::before {
  content: "—";
  color: var(--accent);
  margin-right: 10px;
  font-size: 12px;
}

/* Differentiator */
.diff {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.diff-inner { }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.diff-item {
  padding: 40px 40px 40px 0;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.diff-item:nth-child(2n) {
  border-right: none;
  padding-left: 40px;
}

.diff-item:nth-child(3),
.diff-item:nth-child(4) {
  border-bottom: none;
}

.diff-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.diff-item h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.diff-item p {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.7;
  font-weight: 300;
}

/* Closing */
.closing {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 96px 24px;
}

.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.closing-body {
  font-size: 17px;
  color: var(--fg-dim);
  max-width: 560px;
  margin: 0 auto 16px;
  line-height: 1.65;
  font-weight: 300;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}

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

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--accent);
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero-stats { grid-template-columns: 1fr; gap: 24px; }
  .proof-inner { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 0; }
  .step:nth-child(2), .step:nth-child(3) { padding-left: 0; }
  .tiers { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-item { border-right: none; padding: 32px 0; }
  .diff-item:nth-child(2n) { padding-left: 0; }
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}