:root {
  --bg: #0F0E0C;
  --surface: #1A1915;
  --surface-2: #252320;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.15);
  --text: #F2EDE6;
  --text-dim: #8A8480;
  --border: rgba(242, 237, 230, 0.08);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 64px 80px;
  min-height: 80vh;
  align-items: center;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
}
.hero-headline br { display: block; }
.hero-lede {
  margin-top: 28px;
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 460px;
}

/* HERO GRAPHIC */
.hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
}
.asset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 420px;
}
.asset-card {
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  background: var(--surface);
}
.card-1 { background: linear-gradient(135deg, #1A1915 0%, #2A2520 100%); }
.card-2 { background: linear-gradient(135deg, #1D2030 0%, #252545 100%); }
.card-3 { background: linear-gradient(135deg, #1C2A20 0%, #243525 100%); }
.card-4 { background: linear-gradient(135deg, #2A1C1C 0%, #402525 100%); }
.asset-shimmer {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(245,166,35,0.08) 0%, transparent 100%);
}
.asset-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.card-1 .asset-label { color: var(--accent); }
.card-2 .asset-label { color: #9B9FFF; }
.card-3 .asset-label { color: #6ECF8E; }
.card-4 .asset-label { color: #FF8E8E; }

/* HOW */
.how {
  padding: 80px 64px;
  border-top: 1px solid var(--border);
}
.how-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 48px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.step p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature {
  background: var(--bg);
  padding: 40px 36px;
}
.feature-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 64px;
  background: var(--surface);
}
.manifesto-inner { max-width: 760px; }
blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.manifesto-sub {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 120px 64px;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 20px;
  color: var(--text-dim);
}

/* FOOTER */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  border-top: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav, .how, .features, .manifesto, .closing, .footer { padding-left: 32px; padding-right: 32px; }
  .hero { padding: 72px 32px 60px; grid-template-columns: 1fr; gap: 60px; min-height: auto; }
  .how-steps { grid-template-columns: 1fr; gap: 36px; }
  .features { grid-template-columns: 1fr 1fr; }
  .closing { padding: 80px 32px; }
}
@media (max-width: 600px) {
  .nav, .how, .features, .manifesto, .closing, .footer { padding-left: 20px; padding-right: 20px; }
  .features { grid-template-columns: 1fr; }
  .hero { padding: 56px 20px 48px; }
  .asset-grid { max-width: 300px; }
}