:root {
  --bg: #0A0B0E;
  --surface: #111318;
  --surface-2: #181B22;
  --amber: #D4933B;
  --amber-dim: rgba(212, 147, 59, 0.12);
  --amber-glow: rgba(212, 147, 59, 0.06);
  --text: #F0EDE6;
  --text-muted: rgba(240, 237, 230, 0.55);
  --text-faint: rgba(240, 237, 230, 0.25);
  --border: rgba(240, 237, 230, 0.08);
  --font-display: 'Crimson Pro', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 11, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 6px 14px;
  background: var(--amber-dim);
  border: 1px solid rgba(212, 147, 59, 0.3);
  border-radius: 6px;
  color: var(--amber) !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: rgba(212, 147, 59, 0.22);
  border-color: rgba(212, 147, 59, 0.6);
  color: var(--text) !important;
}

/* ─── HERO ─── */
.hero {
  padding: 100px 40px 80px;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-quote {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
}
.hero-quote-line {
  width: 2px;
  min-height: 48px;
  background: var(--amber);
  flex-shrink: 0;
  border-radius: 1px;
}
.hero-quote-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
}
.hero-quote-ref {
  display: block;
  font-size: 12px;
  color: var(--amber);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 0;
}
.progress-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 120px;
}
.bar {
  width: 40px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--amber), rgba(212, 147, 59, 0.3));
  position: relative;
  overflow: hidden;
}
.bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: rgba(255,255,255,0.04);
  border-radius: 0 0 4px 4px;
}
.bar-1 { height: 48px; }
.bar-2 { height: 72px; }
.bar-3 { height: 96px; }
.bar-4 { height: 120px; }
.bar-5 { height: 88px; }

.forge-icon { margin-top: 12px; }

/* ─── HOW ─── */
.how { padding: 100px 40px; border-bottom: 1px solid var(--border); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 64px;
  max-width: 520px;
}
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.how-step:last-child { border-bottom: none; }
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--text-faint);
  line-height: 1;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.step-body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 560px;
  font-weight: 300;
}

/* ─── FEATURES ─── */
.features { padding: 100px 40px; border-bottom: 1px solid var(--border); background: var(--surface); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--surface-2);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s;
}
.feature-card:hover {
  border-color: rgba(212, 147, 59, 0.3);
  background: #1C1F26;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--amber-dim);
  border: 1px solid rgba(212, 147, 59, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}
.feature-card-wide { grid-column: 1 / -1; max-width: 640px; }
.feature-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: var(--amber-dim);
  border: 1px solid rgba(212, 147, 59, 0.35);
  border-radius: 8px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}
.feature-cta:hover {
  background: rgba(212, 147, 59, 0.2);
  border-color: rgba(212, 147, 59, 0.6);
}
.how-cta-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--amber);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.how-cta-link:hover { text-decoration: underline; }

/* ─── MANIFESTO ─── */
.manifesto { padding: 100px 40px; border-bottom: 1px solid var(--border); }
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-quote {
  border-left: 3px solid var(--amber);
  padding-left: 32px;
  margin-bottom: 72px;
  max-width: 640px;
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 16px;
}
.manifesto-attribution {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.manifesto-body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 28px;
}
.manifesto-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 20px;
  font-weight: 300;
}

/* ─── CLOSING ─── */
.closing { padding: 100px 40px 120px; }
.closing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--text);
}
.closing p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 16px;
  font-weight: 300;
}
.closing-footer { margin-top: 64px; }
.closing-tagline {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.tagline-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--amber);
}
.closing-tagline p {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--amber);
  letter-spacing: 0.02em;
}

/* ─── FOOTER ─── */
.footer { padding: 64px 40px 40px; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 64px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.footer-desc { font-size: 13px; color: var(--text-muted); max-width: 240px; font-weight: 300; }
.footer-links { display: flex; gap: 80px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); font-weight: 500; margin-bottom: 4px; }
.footer-col a, .footer-col span { font-size: 13px; color: var(--text-muted); text-decoration: none; font-weight: 300; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 12px; color: var(--text-faint); letter-spacing: 0.05em; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .how-step { grid-template-columns: 56px 1fr; gap: 24px; }
  .step-number { font-size: 36px; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { gap: 40px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { gap: 24px; }
  .hero { padding: 72px 24px 60px; }
  .how, .features, .manifesto, .closing { padding: 72px 24px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .how-step { grid-template-columns: 1fr; gap: 8px; }
  .step-number { font-size: 32px; margin-bottom: 8px; }
  .footer-links { flex-direction: column; gap: 32px; }
}