:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --fg: #e8e4df;
  --fg-muted: #8a8580;
  --gold: #c9a96e;
  --gold-soft: rgba(201, 169, 110, 0.15);
  --rose: #b8637a;
  --rose-soft: rgba(184, 99, 122, 0.12);
  --violet: #7c6fbf;
  --violet-soft: rgba(124, 111, 191, 0.10);
  --radius: 16px;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, var(--gold-soft) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  background: var(--gold-soft);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.lede {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* CTA Button */
.hero-cta {
  margin-top: 40px;
}

.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--bg);
  background: var(--gold);
  padding: 14px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Floating orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 12s ease-in-out infinite;
}

.orb-gold {
  width: 300px;
  height: 300px;
  background: var(--gold);
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.orb-rose {
  width: 220px;
  height: 220px;
  background: var(--rose);
  bottom: 20%;
  left: 8%;
  animation-delay: -4s;
}

.orb-violet {
  width: 180px;
  height: 180px;
  background: var(--violet);
  top: 40%;
  left: 25%;
  animation-delay: -8s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* ===== FEATURES ===== */
.features {
  padding: 80px 24px 100px;
  max-width: 1100px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 48px 40px;
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(201, 169, 110, 0.2);
}

.feature-number {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.6;
}

.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== METRICS ===== */
.metrics {
  padding: 80px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.metrics-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.metrics h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
  text-align: center;
}

.metrics-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.metric {
  text-align: center;
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.metric-value {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.metric-sub {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.metric-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.06);
  align-self: center;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 24px;
  text-align: center;
}

.closing-content {
  max-width: 680px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer-brand {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.02em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 36px 28px;
  }

  .metrics-row {
    flex-direction: column;
    align-items: center;
  }

  .metric-divider {
    width: 60px;
    height: 1px;
    margin: 8px 0;
  }

  .metric {
    padding: 16px 24px;
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .orb-gold { width: 200px; height: 200px; }
  .orb-rose { width: 150px; height: 150px; }
  .orb-violet { width: 120px; height: 120px; }
}