:root {
  --bg: #FDF6EE;
  --surface: #F5EDE3;
  --fg: #1C1410;
  --fg-muted: #8B7D6B;
  --accent: #4A1942;
  --accent-light: #7A336A;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-visual {
  position: relative;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 40px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #C9A96E 0%, transparent 70%);
  top: -100px; left: -80px;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #7A336A 0%, transparent 70%);
  bottom: -60px; right: -60px;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 32px;
  min-width: 280px;
  color: #fff;
}
.card-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.card-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  padding: 8px 0;
}
.card-row.muted { opacity: 0.45; }
.card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.card-dot.live {
  background: #4ADE80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 60px 60px;
  background: var(--bg);
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── SECTION SHARED ──────────────────────────────── */
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--accent);
  margin-bottom: 28px;
}
.section-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 560px;
}

/* ── WHAT IT IS ───────────────────────────────────── */
.whatitis {
  background: var(--surface);
  padding: 100px 40px;
}
.whatitis-inner {
  max-width: 680px;
}

/* ── FEATURES ─────────────────────────────────────── */
.features {
  background: var(--bg);
  padding: 100px 40px;
}
.features-inner {
  max-width: 1100px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}
.feature-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--gold-light);
  transition: transform 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
}
.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── MANIFESTO ───────────────────────────────────── */
.manifesto {
  background: var(--accent);
  padding: 100px 40px;
}
.manifesto-inner {
  max-width: 700px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.4;
  margin-bottom: 36px;
}
.manifesto-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  font-weight: 300;
}
.manifesto-body + .manifesto-body {
  margin-top: 16px;
}

/* ── CLOSING ──────────────────────────────────────── */
.closing {
  background: var(--bg);
  padding: 100px 40px;
}
.closing-inner {
  max-width: 900px;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 560px;
  font-weight: 300;
  margin-bottom: 60px;
}
.closing-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
  font-weight: 300;
  max-width: 140px;
}

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  background: var(--accent);
  padding: 48px 40px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-visual {
    min-height: 320px;
    padding: 60px 24px;
  }
  .hero-content {
    padding: 48px 24px 60px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .closing-stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .whatitis, .features, .manifesto, .closing {
    padding: 72px 24px;
  }
}