:root {
  --bg: #0f0f0e;
  --bg-warm: #1a1917;
  --fg: #e8e4dc;
  --fg-muted: #a09a8e;
  --accent: #c9a84c;
  --accent-soft: rgba(201, 168, 76, 0.12);
  --serif: 'Newsreader', 'Georgia', serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius: 12px;
  --max-width: 1080px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 40px;
  position: relative;
  background: linear-gradient(170deg, #1a1710 0%, #0f0f0e 50%, #12110f 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 40% at 20% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

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

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.75;
}

.hero-verse {
  max-width: var(--max-width);
  margin: 60px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hero-verse blockquote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--fg-muted);
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  max-width: 600px;
}

.hero-verse cite {
  display: block;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--accent);
  margin-top: 8px;
  font-family: var(--sans);
  font-weight: 600;
}

/* PROBLEM */
.problem {
  padding: 120px 24px;
  background: var(--bg);
}

.problem-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.problem-label,
.how-label,
.features-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.problem h2,
.how h2,
.features h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 48px;
  max-width: 700px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.problem-card {
  background: var(--bg-warm);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 32px;
}

.problem-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 14px;
}

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

/* HOW IT WORKS */
.how {
  padding: 120px 24px;
  background: var(--bg-warm);
}

.how-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.how-step {
  flex: 1;
  padding: 32px;
}

.how-divider {
  width: 1px;
  min-height: 180px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3), transparent);
  align-self: stretch;
}

.step-number {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}

.how-step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.how-step p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* FEATURES */
.features {
  padding: 120px 24px;
  background: var(--bg);
}

.features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-warm);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 36px;
}

.feature-highlight {
  border-color: rgba(201, 168, 76, 0.2);
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, var(--bg-warm) 100%);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

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

/* CLOSING */
.closing {
  padding: 140px 24px;
  background: linear-gradient(170deg, var(--bg-warm) 0%, var(--bg) 100%);
  text-align: center;
}

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

.cross-mark {
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 28px;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.closing-tagline {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--accent);
}

/* FOOTER */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: var(--bg);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.footer-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

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

/* HERO ACTIONS */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #0f0f0e;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
}

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

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--fg-muted);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}

.hero-btn-ghost:hover { color: var(--fg); }

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

  .how-steps {
    flex-direction: column;
  }

  .how-divider {
    width: 60px;
    min-height: 1px;
    height: 1px;
    margin: 0 auto;
  }

  .hero {
    min-height: 80vh;
    padding: 60px 20px 40px;
  }

  .problem,
  .how,
  .features {
    padding: 80px 20px;
  }

  .closing {
    padding: 100px 20px;
  }
}