:root {
  --bg: #0a0a0f;
  --bg-subtle: #12121a;
  --bg-card: #16161f;
  --fg: #e8e6e3;
  --fg-muted: #8a8794;
  --accent: #f97316;
  --accent-glow: rgba(249, 115, 22, 0.15);
  --accent-subtle: #c2410c;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 16px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', 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);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  position: relative;
}

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

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

.lede {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.7;
  position: relative;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.1s ease;
}

.btn-hero-primary:hover {
  background: var(--accent-subtle);
  transform: translateY(-1px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  padding: 15px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.btn-hero-secondary:hover {
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.15);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}

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

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

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* === PROCESS === */
.process {
  padding: 100px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}

.process h2,
.features h2,
.pricing h2,
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: flex-start;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.process-connector {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  align-self: center;
  margin-top: 24px;
}

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

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

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

.feature-card:hover {
  border-color: rgba(249, 115, 22, 0.2);
}

.feature-large {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(249, 115, 22, 0.04) 100%);
  border-color: rgba(249, 115, 22, 0.12);
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

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

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

/* === PRICING === */
.pricing {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Promo banner above the cards */
.promo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(249, 115, 22, 0.06) 100%);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 12px;
  padding: 16px 28px;
  margin-bottom: 48px;
  text-align: center;
}

.promo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--fg);
  letter-spacing: 0.01em;
}

.promo-fire {
  font-size: 1.2rem;
}

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

/* 4-column override */
.pricing-grid.four-col {
  grid-template-columns: repeat(4, 1fr);
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pricing-card:hover {
  border-color: rgba(249, 115, 22, 0.2);
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.08) 0%, var(--bg-card) 100%);
}

.pricing-card.featured:hover {
  border-color: var(--accent);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--bg);
  background: var(--accent);
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Price block: original (strikethrough) + discounted price */
.plan-price-block {
  margin-bottom: 24px;
}

.plan-original {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: line-through;
  opacity: 0.6;
  margin-bottom: 4px;
}

.plan-original span {
  font-size: 0.85rem;
}

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

.plan-cents {
  font-size: 1.3rem;
  font-weight: 600;
}

.plan-per {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.plan-promo-note {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: 6px;
}

.pricing-card ul {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}

.pricing-card li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 20px;
  position: relative;
}

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

.pricing-card li:last-child {
  border-bottom: none;
}

/* CTA buttons inside pricing cards */
.btn-plan {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  margin-top: auto;
}

.btn-plan:hover {
  border-color: rgba(249, 115, 22, 0.4);
  color: var(--fg);
}

.btn-plan-featured {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-plan-featured:hover {
  background: var(--accent-subtle);
  border-color: var(--accent-subtle);
  color: #fff;
}

/* Value comparison note */
.pricing-value-note {
  margin-top: 40px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--fg-muted);
  padding: 16px 24px;
  background: var(--bg-subtle);
  border-radius: 10px;
  border: 1px solid var(--border);
}

/* === CLOSING === */
.closing {
  padding: 120px 24px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  margin-bottom: 24px;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* === 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;
  margin-bottom: 8px;
}

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

/* === HERO SAMPLE CTA === */
.btn-hero-sample {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  padding: 18px 44px;
  border-radius: 14px;
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.3), 0 4px 20px rgba(249, 115, 22, 0.2);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  margin-bottom: 16px;
  min-width: 260px;
}

.btn-hero-sample:hover {
  background: var(--accent-subtle);
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(249, 115, 22, 0.4), 0 8px 30px rgba(249, 115, 22, 0.25);
}

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

.hero-trust {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
  position: relative;
  letter-spacing: 0.02em;
}

/* === PRICING FREE NUDGE === */
.pricing-free-nudge {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  margin-top: 10px;
  padding: 4px 0;
  transition: color 0.2s ease;
  opacity: 0.7;
}

.pricing-free-nudge:hover {
  color: var(--accent);
  opacity: 1;
}

.pricing-free-nudge--light {
  color: rgba(249, 115, 22, 0.7);
}

.pricing-free-nudge--light:hover {
  color: var(--accent);
  opacity: 1;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .pricing-grid.four-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; min-height: 80vh; }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-connector {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
    justify-self: center;
    margin-top: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-large {
    grid-column: 1;
  }

  .pricing-grid,
  .pricing-grid.four-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card.featured {
    order: -1;
  }

  .promo-banner {
    flex-direction: column;
    gap: 8px;
    padding: 14px 20px;
  }

  .process, .features, .pricing { padding: 60px 20px; }
  .closing { padding: 80px 20px; }
}