:root {
  --bg: #FAFAF5;
  --fg: #1A1714;
  --accent: #C9A84C;
  --accent-light: rgba(201,168,76,0.12);
  --midnight: #0C1117;
  --warm-gray: #6B6560;
  --border: rgba(26,23,20,0.08);
  --radius: 3px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.1;
  font-weight: 600;
}
/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--midnight);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(201,168,76,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(201,168,76,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0C1117 0%, #111820 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 32px;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-lede {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.hero-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 48px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
/* STATS */
.stats {
  background: #0C1117;
  padding: 56px 32px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.stats-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 16px 24px;
}
.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}
/* FEATURES */
.features {
  padding: 96px 32px;
}
.features-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}
.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: var(--radius);
}
.feature-body h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-body p {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.65;
}
/* MANIFESTO */
.manifesto {
  background: #F4EFE6;
  padding: 96px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 32px;
}
.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.35;
  margin-bottom: 40px;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}
.manifesto-body {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.8;
}
/* CLOSING */
.closing {
  background: var(--midnight);
  padding: 120px 32px;
  text-align: center;
}
.closing-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 24px;
  line-height: 1.15;
}
.closing-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
/* FOOTER */
.footer {
  background: #080B0F;
  padding: 28px 32px;
}
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
/* MOBILE */
@media (max-width: 640px) {
  .features-inner { grid-template-columns: 1fr; gap: 36px; }
  .stats-inner { flex-direction: column; gap: 0; }
  .stat-divider { width: 80px; height: 1px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero-headline { font-size: 48px; }
}