/* === TOKENS === */
:root {
  --ink: #0f1523;
  --ink-light: #1a2235;
  --cream: #f0ebe3;
  --cream-dim: #c8c0b5;
  --amber: #c8a96e;
  --amber-dim: #9a7d4e;
  --surface: #151c2d;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* === NAV === */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 64px;
  border-bottom: 1px solid rgba(240, 235, 227, 0.08);
}
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__mark { font-size: 20px; color: var(--amber); }
.nav__name { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: 0.04em; color: var(--cream); }
.nav__tagline { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-dim); font-weight: 300; }

/* === HERO === */
.hero { padding: 80px 64px 64px; }

.hero__stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 64px;
  padding: 28px 0;
  border-top: 1px solid rgba(240, 235, 227, 0.1);
  border-bottom: 1px solid rgba(240, 235, 227, 0.1);
}
.hero__stat { padding: 0 40px; }
.hero__stat:first-child { padding-left: 0; }
.hero__stat-number { display: block; font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--amber); line-height: 1; }
.hero__stat-label { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-dim); margin-top: 6px; }
.hero__stat-divider { width: 1px; height: 48px; background: rgba(240, 235, 227, 0.12); }

.hero__body { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.hero__sub { margin-top: 28px; font-size: 16px; font-weight: 300; color: var(--cream-dim); max-width: 420px; line-height: 1.7; }

.hero__card {
  background: var(--surface);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 4px;
  padding: 28px;
  position: relative;
}
.hero__card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--amber) 0%, transparent 50%);
  opacity: 0.15;
  pointer-events: none;
}
.hero__card-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
.hero__card-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--cream); line-height: 1.3; margin-bottom: 16px; }
.hero__card-meta { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.hero__card-meta span { font-size: 12px; color: var(--cream-dim); }
.hero__card-meta span::before { content: '— '; color: var(--amber-dim); }
.hero__card-action { display: flex; justify-content: space-between; align-items: center; }
.hero__card-btn { font-size: 12px; font-weight: 500; color: var(--amber); }
.hero__card-status { font-size: 11px; color: var(--amber-dim); letter-spacing: 0.05em; }

/* === WHAT IT DOES === */
.what { padding: 96px 64px; border-top: 1px solid rgba(240, 235, 227, 0.08); }
.what__header { max-width: 560px; margin-bottom: 64px; }
.what__title { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--cream); line-height: 1.15; margin-bottom: 20px; }
.what__body { font-size: 15px; color: var(--cream-dim); line-height: 1.75; }
.what__columns { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; }
.what__col {}
.what__icon { font-size: 28px; color: var(--amber); margin-bottom: 20px; }
.what__col-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--cream); margin-bottom: 12px; }
.what__col-body { font-size: 14px; color: var(--cream-dim); line-height: 1.7; }

/* === HOW IT WORKS === */
.works { padding: 96px 64px; background: var(--ink-light); }
.works__header { margin-bottom: 56px; }
.works__eyebrow { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); display: block; margin-bottom: 12px; }
.works__title { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--cream); line-height: 1.15; }
.works__steps { display: flex; flex-direction: column; gap: 0; }
.works__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(240, 235, 227, 0.08);
  align-items: start;
}
.works__step:last-child { border-bottom: none; }
.works__step-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: rgba(200, 169, 110, 0.25); line-height: 1; padding-top: 4px; }
.works__step-title { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--cream); margin-bottom: 12px; }
.works__step-body { font-size: 14px; color: var(--cream-dim); line-height: 1.75; max-width: 560px; }

/* === MANIFESTO === */
.manifesto { padding: 96px 64px; border-top: 1px solid rgba(240, 235, 227, 0.08); }
.manifesto__inner { max-width: 720px; }
.manifesto__quote {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  color: var(--amber);
  line-height: 1.4;
  margin-bottom: 40px;
  padding-left: 32px;
  border-left: 2px solid var(--amber);
}
.manifesto__details { display: flex; flex-direction: column; gap: 20px; }
.manifesto__details p { font-size: 15px; color: var(--cream-dim); line-height: 1.8; }

/* === CLOSING === */
.closing { padding: 120px 64px; border-top: 1px solid rgba(240, 235, 227, 0.08); }
.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 32px;
}
.closing__sub { font-size: 16px; color: var(--cream-dim); max-width: 460px; line-height: 1.7; }

/* === FOOTER === */
.footer { padding: 40px 64px; border-top: 1px solid rgba(240, 235, 227, 0.08); display: flex; align-items: center; justify-content: space-between; }
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__mark { font-size: 16px; color: var(--amber); }
.footer__name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--cream); }
.footer__note { font-size: 12px; color: var(--cream-dim); font-style: italic; }
.footer__copy { font-size: 11px; color: rgba(200, 192, 181, 0.4); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav__tagline { display: none; }
  .hero { padding: 48px 24px 40px; }
  .hero__stat-row { flex-direction: column; gap: 20px; border-bottom: none; }
  .hero__stat { padding: 0; border-bottom: 1px solid rgba(240, 235, 227, 0.1); padding-bottom: 20px; }
  .hero__stat-divider { display: none; }
  .hero__body { grid-template-columns: 1fr; gap: 40px; }
  .what { padding: 64px 24px; }
  .what__columns { grid-template-columns: 1fr; gap: 32px; }
  .works { padding: 64px 24px; }
  .works__step { grid-template-columns: 1fr; gap: 12px; }
  .works__step-num { font-size: 32px; }
  .manifesto { padding: 64px 24px; }
  .manifesto__quote { font-size: 22px; }
  .closing { padding: 80px 24px; }
  .footer { flex-direction: column; gap: 12px; padding: 32px 24px; text-align: center; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 36px; }
  .what__title { font-size: 32px; }
  .works__title { font-size: 28px; }
  .closing__headline { font-size: 32px; }
}