:root {
  --bg: #0d0f0e;
  --surface: #141714;
  --accent: #e8a838;
  --accent-dim: rgba(232, 168, 56, 0.12);
  --text: #f5f2ee;
  --text-muted: #8a8a7a;
  --steel: #4a4a47;
  --border: rgba(245, 242, 238, 0.08);
  --font-display: 'Fraunces', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  background: rgba(13, 15, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand-mark {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.2rem 0.45rem;
  border: 1px solid rgba(232, 168, 56, 0.3);
  letter-spacing: 0.05em;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2.5rem 4rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(232, 168, 56, 0.04) 100%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.hero-stat {
  border-right: 1px solid var(--border);
  padding-right: 4rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  line-height: 1.4;
}
.stat-sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 1.2rem;
  opacity: 0.8;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}
.hero-rule {
  max-width: 1100px;
  margin: 3rem auto 0;
  width: 100%;
  height: 1px;
  background: var(--border);
}
.hero-lane {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  width: 100%;
}
.lane-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ── PROOF ── */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2.5rem;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.proof-col { padding: 0 2rem; }
.proof-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.proof-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.5;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ── FEATURES ── */
.features {
  padding: 7rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.features-header {
  margin-bottom: 4rem;
}
.features-header h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature-card {
  background: var(--bg);
  padding: 2.5rem;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--surface); }
.feature-icon {
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── PRICING ── */
.pricing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 2.5rem;
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.pricing-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.pricing-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.05em;
  line-height: 1;
}
.pricing-unit {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--text-muted);
}
.pricing-note {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4rem;
}
.pricing-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: var(--bg);
  margin-bottom: 1.5rem;
}
.comparison-left { text-align: right; }
.comp-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.comp-value {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.comp-cost {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #e05c5c;
  margin-top: 0.3rem;
  text-decoration: line-through;
  text-decoration-color: rgba(224, 92, 92, 0.4);
}
.comparison-savings { text-align: center; }
.savings-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: #5ce0a8;
  letter-spacing: -0.04em;
  line-height: 1;
}
.savings-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  line-height: 1.5;
}
.pricing-context {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── HOW IT WORKS ── */
.howitworks {
  padding: 7rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hiw-header {
  margin-bottom: 4rem;
}
.hiw-header h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.hiw-sub {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.hiw-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: var(--border);
}
.hiw-step {
  background: var(--bg);
  padding: 2.5rem;
}
.step-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.hiw-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}
.hiw-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CLOSING ── */
.closing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 8rem 2.5rem;
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--accent);
}
.closing p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── FOOTER ── */
.footer {
  padding: 3rem 2.5rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 2rem;
  }
  .proof-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .proof-divider { display: none; }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .pricing-comparison {
    flex-direction: column;
    gap: 1.5rem;
  }
  .comparison-left { text-align: center; }
  .hiw-steps {
    grid-template-columns: 1fr;
  }
  .nav-tagline { display: none; }
  .footer-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}