:root {
  --navy: #0f1f38;
  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --warm-bg: #fafaf8;
  --warm-mid: #f3f1ed;
  --text-primary: #0f1f38;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --border: #e5e2dc;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--warm-bg);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-mark {
  color: var(--amber);
  font-size: 0.875rem;
}
.nav-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-admin-link {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
}
.nav-admin-link:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy);
  color: var(--amber);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.15s;
}
.nav-cta:hover { background: #1a3352; }

/* HERO */
.hero {
  padding: 5rem 2.5rem 4rem;
  background: var(--warm-bg);
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.lede {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
}
.stat-card {
  background: var(--navy);
  color: white;
  border-radius: 4px;
  padding: 2rem;
  text-align: left;
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--amber);
  margin-bottom: 0.25rem;
}
.stat-sub {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.stat-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-bottom: 1.5rem;
}
.cost-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.cost-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}
.cost-note {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* PROOF STRIP */
.proof {
  background: var(--navy);
  padding: 3.5rem 2.5rem;
}
.proof-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.proof-column {
  text-align: left;
}
.proof-icon {
  font-size: 1.25rem;
  color: var(--amber);
  margin-bottom: 1rem;
}
.proof-stat {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.proof-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* HOW IT WORKS */
.how {
  padding: 5rem 2.5rem;
  background: var(--warm-bg);
}
.how-header {
  max-width: 1120px;
  margin: 0 auto 3.5rem;
}
.how-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 0.5rem;
}
.how-steps {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.step-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* PRICING */
.pricing {
  padding: 5rem 2.5rem;
  background: var(--warm-mid);
}
.pricing-header {
  max-width: 1120px;
  margin: 0 auto 3rem;
}
.pricing-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 0.5rem;
}
.pricing-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-tier {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
}
.pricing-tier.featured {
  border-color: var(--navy);
  border-width: 2px;
  padding-top: 2.5rem;
}
.tier-badge {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  background: var(--navy);
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem;
  text-align: center;
  border-radius: 4px 4px 0 0;
}
.tier-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.tier-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}
.tier-features {
  list-style: none;
  margin-bottom: 1.5rem;
}
.tier-features li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--warm-mid);
}
.tier-features li::before {
  content: '—';
  color: var(--amber);
  margin-right: 0.5rem;
  font-size: 0.75rem;
}
.tier-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
}
.pricing-footnote {
  max-width: 1120px;
  margin: 2rem auto 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: center;
}

/* MANIFESTO */
.manifesto {
  padding: 5rem 2.5rem;
  background: var(--navy);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* CLOSING */
.closing {
  padding: 5rem 2.5rem 6rem;
  background: var(--warm-bg);
  text-align: center;
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}
.closing p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
  background: var(--warm-bg);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stat { max-width: 360px; }
  .proof-inner { grid-template-columns: 1fr; gap: 2rem; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero, .how, .pricing, .manifesto, .closing { padding-left: 1.25rem; padding-right: 1.25rem; }
  nav { padding: 1rem 1.25rem; }
  .how-steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}