:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --fg: #e8e4df;
  --fg-muted: #9a9590;
  --accent: #d4a853;
  --accent-dim: #b8923f;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 2rem;
  overflow: hidden;
}

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

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.lede em {
  color: var(--accent);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* PROBLEM */
.problem {
  padding: 8rem 2rem;
  background: var(--bg-elevated);
}

.problem-inner {
  max-width: 680px;
  margin: 0 auto;
}

.problem h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.problem-text {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.9;
}

.problem-divider {
  width: 60px;
  height: 1px;
  background: var(--accent-dim);
  margin: 3rem 0;
}

.problem-statement {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
  color: var(--accent);
  line-height: 1.6;
}

/* FEATURES */
.features {
  padding: 8rem 2rem;
}

.features-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 5rem;
}

.feature-block {
  position: relative;
}

.feature-number {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent-dim);
  display: block;
  margin-bottom: 0.8rem;
}

.feature-block h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--fg);
}

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

/* CLOSING */
.closing {
  padding: 10rem 2rem;
  background: var(--bg-elevated);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* FOOTER */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(212, 168, 83, 0.1);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
}

.footer-divider {
  color: var(--fg-muted);
  opacity: 0.4;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .features-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero {
    min-height: 80vh;
  }
  
  .problem,
  .features,
  .closing {
    padding: 5rem 1.5rem;
  }
}