:root {
  --bg: #0a0a0d;
  --surface: #111116;
  --surface-2: #18181f;
  --amber: #f5a623;
  --amber-dim: rgba(245, 166, 35, 0.15);
  --amber-glow: rgba(245, 166, 35, 0.06);
  --white: #f0ede6;
  --muted: #6e6b63;
  --muted-light: #9e9a92;
  --border: rgba(255,255,255,0.06);
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(10,10,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--amber);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 140px 48px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-geo {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}
.hero-geo-1 {
  width: 600px; height: 600px;
  background: var(--amber);
  top: -200px; right: -100px;
}
.hero-geo-2 {
  width: 400px; height: 400px;
  background: #d4780a;
  bottom: 0; left: -150px;
}
.hero-geo-3 {
  width: 300px; height: 300px;
  background: #fff;
  top: 40%; right: 20%;
  opacity: 0.03;
}

.hero-content {
  max-width: 820px;
  position: relative;
  z-index: 1;
}
.hero-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 32px;
  padding: 6px 14px;
  border: 1px solid var(--amber-dim);
  border-radius: 100px;
  background: var(--amber-glow);
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--amber);
}
.hero-sub {
  font-size: 18px;
  color: var(--muted-light);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* PROOF */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.proof-mark {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--amber);
  line-height: 0.6;
  margin-bottom: 16px;
}
.proof-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--muted-light);
  line-height: 1.7;
  max-width: 420px;
}
.proof-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.pillar-icon {
  color: var(--amber);
  flex-shrink: 0;
}

/* FEATURES */
.features {
  padding: 120px 48px;
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 72px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.feature-card {
  background: var(--surface);
  padding: 48px 40px;
  position: relative;
  border: 1px solid var(--border);
}
.feature-num {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.feature-card p {
  font-size: 15px;
  color: var(--muted-light);
  line-height: 1.7;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
  background: var(--surface-2);
}
.manifesto-inner { max-width: 860px; margin: 0 auto; }
.manifesto-rule {
  width: 60px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 48px;
}
.manifesto-rule:last-child { margin-bottom: 0; margin-top: 48px; }
.manifesto-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--muted-light);
  line-height: 1.8;
}

/* CLOSING */
.closing {
  padding: 160px 48px;
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 32px;
}
.closing-headline em {
  font-style: italic;
  color: var(--amber);
}
.closing-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--amber);
}
.footer-domain {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 16px;
  border-left: 1px solid var(--border);
}
.footer-meta {
  font-size: 13px;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-stats { gap: 28px; }
  .stat-num { font-size: 28px; }
  .proof { padding: 60px 24px; }
  .proof-inner { grid-template-columns: 1fr; gap: 40px; }
  .proof-pillars { grid-template-columns: 1fr 1fr; }
  .features { padding: 80px 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 80px 24px; }
  .closing { padding: 100px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-headline { letter-spacing: -1px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 20px 32px; }
  .proof-pillars { grid-template-columns: 1fr; }
}