:root {
  --bg: #0e0e10;
  --surface: #161618;
  --surface-2: #1e1e21;
  --amber: #e8a838;
  --amber-dim: #a87428;
  --cream: #f0ebe0;
  --cream-dim: #c8c2b4;
  --text-muted: #8a857c;
  --border: #2a2a2e;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

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

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--amber-dim); border-radius: 2px; }

/* NAV */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(14, 14, 16, 0.92);
  backdrop-filter: blur(12px);
}
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--amber); letter-spacing: -0.01em; }
.nav-tag { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 400; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,168,56,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 900px; margin: 0 auto; }
.hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.5rem; font-weight: 400; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.75rem;
}
.hero-sub { font-size: 1.2rem; max-width: 580px; color: var(--cream-dim); line-height: 1.7; margin-bottom: 2.5rem; font-weight: 300; }
.hero-rule { width: 3rem; height: 1px; background: var(--amber); margin-bottom: 2.5rem; }
.hero-meta { display: flex; gap: 0; align-items: stretch; }
.hero-stat { padding: 0 2.5rem 0 0; }
.hero-stat:first-child { padding-left: 0; }
.stat-number { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--amber); line-height: 1.2; }
.stat-label { display: block; font-size: 0.72rem; color: var(--text-muted); margin-top: 0.3rem; letter-spacing: 0.04em; text-transform: uppercase; }
.hero-divider { width: 1px; background: var(--border); margin-right: 2.5rem; align-self: stretch; }

/* PROOF */
.proof { padding: 5rem 2rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.proof-inner { max-width: 1100px; margin: 0 auto; }
.proof-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2.5rem; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.proof-item { padding: 0 3rem 0 0; border-right: 1px solid var(--border); }
.proof-item:last-child { border-right: none; padding-right: 0; }
.proof-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; color: var(--amber); line-height: 1; margin-bottom: 0.75rem; }
.proof-desc { font-size: 0.85rem; color: var(--cream-dim); line-height: 1.6; }

/* SECTION SHARED */
.section-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.25rem; }
.section-heading { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 4rem; }

/* FEATURES */
.features { padding: 7rem 2rem; }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--border); }
.feature-card { padding: 3rem 3rem 3rem 0; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feature-card:nth-child(even) { border-right: none; padding-right: 0; }
.feature-card:nth-last-child(-n+2) { border-bottom: none; }
.feature-icon { margin-bottom: 1.5rem; }
.feature-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--cream); }
.feature-body { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.7; }

/* PROCESS */
.process { padding: 7rem 2rem; background: var(--surface); }
.process-inner { max-width: 900px; margin: 0 auto; }
.process-steps { }
.step { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-number { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--amber); opacity: 0.4; line-height: 1; padding-top: 0.25rem; }
.step-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--cream); }
.step-body { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.7; }

/* PRICING */
.pricing { padding: 7rem 2rem; }
.pricing-inner { max-width: 900px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 3rem; }
.pricing-card { padding: 2.5rem 2.5rem 2.5rem 0; border-right: 1px solid var(--border); }
.pricing-card:last-child { border-right: none; padding-right: 0; padding-left: 2.5rem; border-left: 1px solid var(--border); }
.pricing-tier { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
.pricing-amount { font-family: var(--font-display); font-size: 2.8rem; font-weight: 900; color: var(--amber); line-height: 1; margin-bottom: 0.5rem; }
.pricing-period { font-size: 1.2rem; font-weight: 400; color: var(--cream-dim); }
.pricing-note { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; }
.pricing-features li { font-size: 0.85rem; color: var(--cream-dim); padding: 0.4rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 0.75rem; }
.pricing-features li::before { content: '→'; color: var(--amber); font-size: 0.8rem; margin-top: 0.1rem; flex-shrink: 0; }
.pricing-clarity { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.04em; }

/* CLOSING */
.closing { padding: 8rem 2rem 7rem; }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-rule { width: 3rem; height: 1px; background: var(--amber); margin: 0 auto 4rem; }
.closing-headline { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; color: var(--cream); margin-bottom: 1.5rem; }
.closing-sub { font-size: 1rem; color: var(--text-muted); margin-bottom: 4rem; }
.closing-tagline { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.tagline-text { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--amber); }
.tagline-sep { color: var(--text-muted); }
.tagline-sub { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.06em; }

/* FOOTER */
.site-footer { padding: 2rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer-logo { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--amber); }
.footer-loc { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-copy { font-size: 0.75rem; color: var(--text-muted); margin-left: auto; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-meta { flex-direction: column; gap: 1.5rem; }
  .hero-divider { display: none; }
  .hero-stat { padding: 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 2rem 0; }
  .proof-item:last-child { border-bottom: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; padding: 2.5rem 0; }
  .feature-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .feature-card:last-child { border-bottom: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { border-right: none; padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
  .pricing-card:last-child { border-left: none; padding-left: 0; }
  .step { grid-template-columns: 50px 1fr; gap: 1rem; }
  .step-number { font-size: 2rem; }
  .footer-inner { flex-direction: column; gap: 0.75rem; }
  .footer-copy { margin-left: 0; }
}