@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --bg: #0a0a0f;
  --bg-subtle: #12121a;
  --bg-card: #1a1a25;
  --fg: #e8e6e1;
  --fg-muted: #9a9890;
  --accent: #e8a838;
  --accent-dim: #c48a2a;
  --accent-glow: rgba(232, 168, 56, 0.12);
  --grid-line: rgba(232, 168, 56, 0.06);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, var(--accent-glow), transparent),
    repeating-linear-gradient(90deg, var(--grid-line) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, var(--grid-line) 0 1px, transparent 1px 80px);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232, 168, 56, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  max-width: 800px;
  margin-bottom: 24px;
  color: var(--fg);
}

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

.hero .lede {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.6;
}

/* ---- STATS BAR ---- */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  background: var(--bg-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* ---- PROBLEM ---- */
.problem {
  padding: 100px 0;
}

.problem-header {
  max-width: 640px;
  margin-bottom: 56px;
}

.problem-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.problem-header p {
  color: var(--fg-muted);
  font-size: 18px;
}

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s;
}

.problem-card:hover {
  border-color: rgba(232, 168, 56, 0.2);
}

.problem-card .card-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.problem-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 15px;
}

/* ---- FEATURES ---- */
.features {
  padding: 100px 0;
  background:
    radial-gradient(circle at 80% 50%, var(--accent-glow), transparent 60%),
    var(--bg-subtle);
}

.features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.features-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.features-header p {
  color: var(--fg-muted);
  font-size: 18px;
}

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

.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dim);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  display: block;
}

.feature-item h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.feature-item p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 0;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, var(--accent-glow), transparent);
}

.closing h2 {
  font-size: clamp(32px, 5vw, 52px);
  max-width: 700px;
  margin: 0 auto 20px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 19px;
  max-width: 520px;
  margin: 0 auto;
}

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 8px;
}

.footer-sub {
  color: var(--fg-muted);
  font-size: 14px;
}

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

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0f;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(232, 168, 56, 0.25);
}

.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(232, 168, 56, 0.35);
}

.hero-action-note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .problem-cards { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 80px 0 60px; }
  body { font-size: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .stat-number { font-size: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
}