:root {
  --bg: #0c0c0f;
  --bg-elevated: #141418;
  --bg-card: #1a1a20;
  --fg: #e8e6e1;
  --fg-muted: #8a877f;
  --accent: #e8a832;
  --accent-soft: rgba(232, 168, 50, 0.12);
  --accent-glow: rgba(232, 168, 50, 0.25);
  --green: #4ade80;
  --red: #f87171;
  --radius: 12px;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
  background: radial-gradient(ellipse at 50% 0%, var(--accent-glow) 0%, transparent 60%), var(--bg);
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero-inner {
  max-width: 800px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
  border: 1px solid rgba(232, 168, 50, 0.2);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero .lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  max-width: 140px;
  text-align: center;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(232, 168, 50, 0.2);
}

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

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

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 56px;
  text-align: center;
}

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

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

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

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

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

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

/* FEATURES */
.features {
  padding: 100px 24px;
  background: var(--bg-elevated);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,168,50,0.3), transparent);
}

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

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

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

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

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.feature-row:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

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

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

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

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

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 48px;
}

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

.compare-col {
  border-radius: var(--radius);
  padding: 36px 32px;
}

.compare-col.old {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
}

.compare-col.new {
  background: var(--accent-soft);
  border: 1px solid rgba(232, 168, 50, 0.25);
}

.compare-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.compare-col.old .compare-label { color: var(--fg-muted); }
.compare-col.new .compare-label { color: var(--accent); }

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

.compare-col.old li {
  color: var(--fg-muted);
  font-size: 0.92rem;
  padding-left: 24px;
  position: relative;
}

.compare-col.old li::before {
  content: '\2715';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.8rem;
}

.compare-col.new li {
  color: var(--fg);
  font-size: 0.92rem;
  padding-left: 24px;
  position: relative;
}

.compare-col.new li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

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

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,168,50,0.3), transparent);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 24px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.closing-vision {
  color: var(--accent) !important;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem !important;
}

/* CTA BUTTON */
.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: #0c0c0f;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
}

.btn-cta:hover {
  background: #f0b540;
  box-shadow: 0 0 24px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-cta:active {
  transform: translateY(0);
}

/* FOOTER */
.site-footer {
  padding: 40px 24px;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.04);
  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);
}

/* PRICING */
.pricing {
  padding: 100px 24px;
  background: var(--bg);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,168,50,0.3), transparent);
}

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

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.pricing-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.3s;
}

.pricing-card:hover {
  border-color: rgba(232, 168, 50, 0.3);
}

.pricing-card-emphasis {
  background: var(--accent-soft);
  border-color: rgba(232, 168, 50, 0.25);
}

.pricing-card-emphasis:hover {
  border-color: rgba(232, 168, 50, 0.5);
}

.pricing-card-top {
  margin-bottom: 24px;
}

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.pricing-cta {
  display: block;
  text-align: center;
  background: var(--accent);
  color: #0c0c0f;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 28px;
  transition: background 0.2s, transform 0.15s;
}

.pricing-cta:hover {
  background: #f0b848;
  transform: translateY(-1px);
}

.pricing-cta-emphasis {
  background: var(--fg);
  color: var(--bg);
}

.pricing-cta-emphasis:hover {
  background: #fff;
  transform: translateY(-1px);
}

.pricing-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
}

.check-icon {
  color: var(--green);
  font-size: 0.9rem;
  min-width: 16px;
  margin-top: 2px;
  font-weight: 700;
}

.pricing-card-emphasis .check-icon {
  color: var(--green);
}

.pricing-features strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--fg);
}

.pricing-features span {
  color: var(--fg-muted);
  line-height: 1.5;
}

.pricing-guarantee {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.guarantee-icon {
  color: var(--accent);
  font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .comparison {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  .stat-divider {
    width: 50px;
    height: 1px;
  }
  .feature-row {
    flex-direction: column;
    gap: 8px;
  }
  .feature-number {
    min-width: auto;
  }
  .hero {
    padding: 60px 20px 40px;
    min-height: auto;
  }
  .problem, .features, .pricing, .how, .closing {
    padding: 60px 20px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}