:root {
  --bg: #0a0a0f;
  --bg-surface: #12121a;
  --bg-elevated: #1a1a26;
  --fg: #e8e6e1;
  --fg-muted: #8a8a96;
  --accent: #ff5c35;
  --accent-glow: rgba(255, 92, 53, 0.15);
  --green: #22c55e;
  --red: #ef4444;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1120px;
}

* { 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;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  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-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 92, 53, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.03em;
  margin-bottom: 32px;
  width: fit-content;
}

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

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

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-bottom: 28px;
}

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

.hero .lede {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.hero-stat .number.red { color: var(--red); }
.hero-stat .number.green { color: var(--green); }
.hero-stat .number.accent { color: var(--accent); }

.hero-stat .label {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* CTA BUTTON */
.hero-ctas {
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(255, 92, 53, 0.3);
}

.btn-primary:hover {
  background: #e04f2a;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(255, 92, 53, 0.4);
}

/* PROBLEM SECTION */
.problem {
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.problem .section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: 48px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
}

.timeline-step {
  background: var(--bg-surface);
  padding: 32px 28px;
  position: relative;
}

.timeline-step:first-child { border-radius: 12px 12px 0 0; }
.timeline-step:last-child { border-radius: 0 0 12px 12px; }

@media (min-width: 768px) {
  .timeline-step:first-child { border-radius: 12px 0 0 12px; }
  .timeline-step:last-child { border-radius: 0 12px 12px 0; }
}

.timeline-step .time {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.timeline-step .event {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 8px;
}

.timeline-step .result {
  font-size: 14px;
  color: var(--red);
  font-weight: 500;
}

.timeline-step .result.good {
  color: var(--green);
}

/* SOLUTION */
.solution {
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.solution .section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.solution h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: 56px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 36px 30px;
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: rgba(255, 92, 53, 0.3);
}

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

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

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

/* NUMBERS */
.numbers {
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.number-card .value {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.number-card .desc {
  font-size: 15px;
  color: var(--fg-muted);
  margin-top: 8px;
}

/* CLOSING */
.closing {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 640px;
  margin: 0 auto 24px;
  position: relative;
}

.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

/* FOOTER */
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-legal a:hover {
  color: var(--accent);
}

/* PRICING */
.pricing {
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing .section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.pricing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: 16px;
}

.pricing-intro {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 56px;
}

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

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  border-color: rgba(255, 92, 53, 0.2);
}

.pricing-card.recommended {
  border-color: rgba(255, 92, 53, 0.4);
  background: var(--bg-elevated);
  box-shadow: 0 0 40px rgba(255, 92, 53, 0.08);
}

.pricing-card.recommended:hover {
  border-color: rgba(255, 92, 53, 0.6);
  box-shadow: 0 0 60px rgba(255, 92, 53, 0.12);
}

.recommended-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 28px;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--fg);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}

.plan-price .currency {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--fg-muted);
  align-self: flex-start;
  margin-top: 4px;
}

.plan-price .amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
}

.plan-price .period {
  font-size: 15px;
  color: var(--fg-muted);
  margin-left: 4px;
}

.plan-price .one-time {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  align-self: center;
}

.plan-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--fg);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li:last-child {
  border-bottom: none;
}

.feature-inherited {
  color: var(--fg-muted);
  font-style: italic;
}

.plan-features .check {
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 24px;
  background: var(--bg-elevated);
  color: var(--fg);
  text-decoration: none;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background .15s, border-color .15s, transform .15s;
}

.btn-secondary:hover {
  background: var(--bg-surface);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.btn-secondary.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(255, 92, 53, 0.3);
}

.btn-secondary.btn-primary:hover {
  background: #e04f2a;
  box-shadow: 0 8px 28px rgba(255, 92, 53, 0.4);
  border-color: transparent;
}

.no-card {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.how-it-works .section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
  display: block;
}

.steps-row {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.step-arrow {
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* STATS BAR */
.stats-bar {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--bg-surface);
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 0 32px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* TESTIMONIALS */
.testimonials {
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonials .section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
  display: block;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s;
}

.testimonial-card:hover {
  border-color: rgba(255, 92, 53, 0.25);
}

.stars {
  display: flex;
  gap: 4px;
}

.star {
  font-size: 18px;
  color: #f59e0b;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}

.testimonial-author strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--fg-muted);
}

/* LOGOS BAR */
.logos-bar {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logos-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
  letter-spacing: 0.03em;
  margin-bottom: 32px;
  text-transform: uppercase;
  font-weight: 500;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.logo-placeholder {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: -0.01em;
  padding: 8px 24px;
  white-space: nowrap;
}

.logo-divider {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
  .hero-stats { gap: 32px; }
  .hero { padding: 80px 0 60px; min-height: auto; }
  .problem, .solution, .numbers, .stats-bar, .testimonials, .how-it-works, .logos-bar { padding: 60px 0; }
  .closing { padding: 80px 0; }
  .timeline { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; align-items: flex-start; }
  .step-arrow { transform: rotate(90deg); }
  .stats-row { gap: 0; }
  .stat-item { padding: 24px 16px; }
  .stat-divider { display: none; }
  .logos-row { gap: 0; }
  .logo-placeholder { padding: 8px 12px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}