/* Fonts: Fraunces (optical variable serif) + DM Sans */

/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0E0E0F;
  --surface:     #161617;
  --surface-2:   #1E1E20;
  --gold:        #D4A843;
  --gold-light:  #F5C842;
  --gold-dim:    #8A6F2E;
  --cream:       #F5F0E6;
  --muted:       #6B6B70;
  --border:      #2A2A2E;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ─── Navigation ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: linear-gradient(to bottom, rgba(14,14,15,0.95) 0%, rgba(14,14,15,0) 100%);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.02em;
}

/* ─── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(212,168,67,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(212,168,67,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 40px 100px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 36px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 28px;
}

.hero-sub {
  max-width: 560px;
  font-size: 18px;
  font-weight: 400;
  color: rgba(245,240,230,0.65);
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-stat {}

.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

.hero-reveal {}

.hero-reveal-bar {
  width: 280px;
  max-width: 100%;
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}

.hero-reveal-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--gold-dim) 0%, var(--gold) 50%, var(--gold-light) 100%);
  border-radius: 3px;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(0%); }
}

.hero-reveal-label {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  font-family: var(--font-display);
}

/* ─── Proof ────────────────────────────────────────────── */
.proof {
  background: var(--surface);
  padding: 100px 0;
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.proof-header {
  margin-bottom: 48px;
}

.proof-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.proof-card {
  background: var(--surface);
  padding: 32px 28px;
  transition: background 0.2s;
}

.proof-card:hover {
  background: var(--surface-2);
}

.proof-icon {
  color: var(--gold);
  margin-bottom: 16px;
}

.proof-label {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.proof-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── How ──────────────────────────────────────────────── */
.how {
  background: var(--bg);
  padding: 120px 0;
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.how-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.how-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
  max-width: 600px;
  margin-bottom: 72px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 80px;
}

.how-step {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.how-step:first-child {
  border-top: 1px solid var(--border);
}

.how-step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  min-width: 32px;
  padding-top: 4px;
}

.how-step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}

.how-step-content p {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.65;
}

.how-quote {
  padding: 36px 40px;
  background: var(--surface);
  border-left: 3px solid var(--gold);
  max-width: 600px;
}

.how-quote blockquote {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 16px;
}

.how-quote cite {
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
}

/* ─── Expand ───────────────────────────────────────────── */
.expand {
  background: var(--surface);
  padding: 120px 0;
}

.expand-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.expand-text {
  max-width: 540px;
  margin-bottom: 64px;
}

.expand-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.expand-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.2;
}

.expand-body {
  font-size: 16px;
  color: rgba(245,240,230,0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.expand-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  padding: 28px 24px;
}

.expand-item-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.expand-item-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}

.expand-item-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── Manifesto ────────────────────────────────────────── */
.manifesto {
  padding: 100px 0;
  background: var(--bg);
}

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

.manifesto-rule {
  width: 60px;
  height: 1px;
  background: var(--gold-dim);
  margin: 0 auto 48px;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.manifesto-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto;
}

/* ─── Closing ──────────────────────────────────────────── */
.closing {
  background: var(--surface);
  padding: 120px 0;
}

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

.closing-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.closing-num {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.closing-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.6;
}

.closing-line {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: rgba(245,240,230,0.5);
}

/* ─── Footer ───────────────────────────────────────────── */
.footer {
  background: var(--bg);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 15px;
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  margin-bottom: 12px;
}

.footer-note {
  font-size: 13px;
  color: var(--muted);
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner { padding: 120px 24px 80px; }
  .proof-inner, .how-inner, .expand-inner, .manifesto-inner, .closing-inner, .footer-inner { padding: 0 24px; }

  .proof-grid { grid-template-columns: 1fr; }
  .expand-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .hero-headline { font-size: 52px; }
  .closing-num { font-size: 48px; }
  .how-step { gap: 20px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stat-num { font-size: 26px; }
}