:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --fg-primary: #f0ede6;
  --fg-secondary: #8a8694;
  --fg-muted: #5a5666;
  --accent: #d4a853;
  --accent-glow: rgba(212, 168, 83, 0.15);
  --accent-soft: #c49a3c;
  --border: rgba(255,255,255,0.06);
  --radius: 16px;
}

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

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
  width: fit-content;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  max-width: 900px;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--fg-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* ===== PROBLEM ===== */
.problem {
  padding: 120px 40px;
  position: relative;
}

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

.problem-left h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.problem-left h2 span {
  color: var(--fg-muted);
  text-decoration: line-through;
  text-decoration-color: var(--accent-soft);
}

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

.problem-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.pain-card:hover {
  border-color: rgba(212, 168, 83, 0.2);
}

.pain-card .label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}

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

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

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

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

.features-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.features-header p {
  color: var(--fg-secondary);
  font-size: 1.1rem;
  max-width: 500px;
}

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

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

.feature-card::before {
  content: attr(data-num);
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  line-height: 1;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

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

.feature-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--accent);
  background: var(--accent-glow);
  border-radius: 100px;
  font-weight: 500;
}

/* ===== NUMBERS ===== */
.numbers {
  padding: 100px 40px;
}

.numbers-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat h3 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--accent);
  letter-spacing: -0.03em;
}

.stat p {
  color: var(--fg-secondary);
  font-size: 0.95rem;
  margin-top: 8px;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 40px;
  background: var(--bg-secondary);
  text-align: center;
}

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

.pricing-badge {
  display: inline-block;
  padding: 5px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.pricing h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.pricing p {
  color: var(--fg-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 36px;
}

.pricing-cta {
  margin-top: 0;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 40px;
  text-align: center;
  position: relative;
}

.closing-cta {
  margin-top: 36px;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}

.closing h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  position: relative;
}

.closing p {
  color: var(--fg-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
}

/* ===== FOOTER ===== */
footer {
  padding: 40px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.85rem;
}

footer a {
  color: var(--fg-secondary);
  text-decoration: none;
}

/* ===== CTA BUTTONS (hero) ===== */
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.15s;
}
.cta-btn-primary:hover {
  background: var(--accent-soft);
  color: #0a0a0f;
  transform: translateY(-1px);
}
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  background: rgba(255,255,255,0.05);
  color: var(--fg-secondary);
  border: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.15s;
}
.cta-btn-secondary:hover {
  color: var(--fg-primary);
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 40px; min-height: 80vh; }
  .problem { padding: 80px 24px; }
  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
  .features { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .numbers { padding: 60px 24px; }
  .numbers-inner { grid-template-columns: 1fr; gap: 32px; }
  .pricing { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
  footer { padding: 32px 24px; }
}