:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #18181f;
  --fg-primary: #f0ede6;
  --fg-secondary: #9b978e;
  --accent: #e8a838;
  --accent-glow: rgba(232, 168, 56, 0.15);
  --border: rgba(240, 237, 230, 0.08);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 70% 20%, var(--accent-glow) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(232, 168, 56, 0.05) 0%, transparent 60%),
    var(--bg-primary);
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 1px solid rgba(232, 168, 56, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.accent { color: var(--accent); }

.lede {
  font-size: 1.15rem;
  color: var(--fg-secondary);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-stat-row {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg-primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-secondary);
  letter-spacing: 0.02em;
}

/* ── PROBLEM ── */
.problem {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problem-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.problem-left p {
  color: var(--fg-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.problem-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pain-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
}

.pain-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pain-text {
  color: var(--fg-secondary);
  font-size: 0.95rem;
}

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

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 4rem;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
}

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

.feature-block {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s ease;
}

.feature-block:hover {
  border-color: rgba(232, 168, 56, 0.3);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.feature-block h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

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

/* ── CLOSING ── */
.closing {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.closing-text {
  color: var(--fg-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.closing-vision {
  color: var(--accent);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 4rem 1.5rem 3rem; }
  .hero-stat-row { flex-direction: column; gap: 1.5rem; }
  .problem-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .closing { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .features-header h2, .problem-left h2, .closing h2 { font-size: 1.6rem; }
  .feature-block { padding: 1.8rem 1.5rem; }
}