:root {
  --bg: #1a1612;
  --bg-warm: #211d18;
  --bg-card: #2a2520;
  --fg: #e8e0d6;
  --fg-muted: #a89d90;
  --accent: #d4915c;
  --accent-glow: #e8a46f;
  --accent-dark: #b87a4a;
  --border: #3a3530;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 60px;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,145,92,0.08) 0%, transparent 60%), var(--bg);
  position: relative;
}

.hero-badge {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  border: 1px solid var(--accent-dark);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
  display: inline-block;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 28px;
  max-width: 800px;
}

.hero h1 .accent {
  color: var(--accent);
  display: inline-block;
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.stat { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 4px;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

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

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

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.problem-text {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 48px;
}

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

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

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

.features-header {
  margin-bottom: 60px;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

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

.feature-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  min-width: 40px;
  padding-top: 2px;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-content p {
  color: var(--fg-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

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

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

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.how-text {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 48px;
}

.how-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.how-col {
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.how-before {
  background: rgba(180,60,60,0.06);
  border-color: rgba(180,60,60,0.2);
}

.how-after {
  background: rgba(212,145,92,0.06);
  border-color: rgba(212,145,92,0.25);
}

.how-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.how-before .how-label { color: #c46464; }
.how-after .how-label { color: var(--accent); }

.how-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.how-col li {
  font-size: 0.95rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.how-before li::before {
  content: '\2715';
  position: absolute;
  left: 0;
  color: #c46464;
  font-size: 0.85rem;
}

.how-after li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85rem;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 100%, rgba(212,145,92,0.06) 0%, transparent 60%), var(--bg);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.1rem;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero { min-height: 80vh; padding: 60px 20px 40px; }
  .hero-stats { flex-direction: column; gap: 20px; padding: 28px 32px; }
  .stat-divider { width: 40px; height: 1px; }
  .problem-grid { grid-template-columns: 1fr; }
  .how-comparison { grid-template-columns: 1fr; }
  .feature-row { flex-direction: column; gap: 12px; }
  .feature-number { min-width: auto; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-badge { font-size: 11px; letter-spacing: 2px; padding: 6px 16px; }
}