:root {
  --bg: #0B1120;
  --surface: #131C2E;
  --surface-2: #1A2540;
  --accent: #F59E0B;
  --accent-dim: #B47208;
  --text: #F1F5F9;
  --text-dim: #94A3B8;
  --text-muted: #64748B;
  --border: #1E2D4A;
  --radius: 12px;
  --container: 1100px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* HEADER */
.site-header {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.wordmark {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.tagline {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* HERO */
.hero {
  padding: 100px 0 80px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-dim);
  max-width: 460px;
  line-height: 1.7;
}
.hero-cta {
  display: inline-block;
  margin-top: 32px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-cta:hover { background: var(--accent-dim); }

/* STAT CARD */
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
.stat-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  color: var(--text-dim);
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* WORKFLOW PREVIEW */
.workflow-preview {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.wf-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.wf-step:last-child { border-bottom: none; }
.wf-step.done { color: var(--text); }
.wf-step.active { color: var(--accent); }
.wf-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.wf-step.done .wf-icon { background: var(--accent); color: var(--bg); }
.wf-step.active .wf-icon { background: var(--accent-dim); color: var(--text); }

/* SECTION LABEL */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
}

/* PROBLEM */
.problem { padding: 80px 0; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.problem-card {
  background: var(--surface);
  padding: 40px;
}
.problem-icon {
  display: block;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}
.problem-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
.problem-card p { color: var(--text-dim); font-size: 0.9375rem; }

/* HOW IT WORKS */
.how-it-works { padding: 80px 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step { position: relative; }
.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--surface-2);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.step p { color: var(--text-dim); font-size: 0.9rem; }

/* PRICING */
.pricing { padding: 80px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.pricing-card.featured {
  border-color: var(--accent);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
  white-space: nowrap;
}
.pricing-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.pricing-note { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 28px; }
.pricing-features { list-style: none; }
.pricing-features li {
  color: var(--text-dim);
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }

/* TESTIMONIALS */
.testimonials { padding: 80px 0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial-quote {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 16px;
  font-style: italic;
  line-height: 1.6;
}
.testimonial-source { color: var(--text-muted); font-size: 0.875rem; }
.med-spa-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.med-spa-tags span {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 8px 20px;
  font-size: 0.875rem;
  color: var(--text-dim);
}

/* CLOSING */
.closing {
  padding: 80px 0 100px;
  border-top: 1px solid var(--border);
}
.closing-statement {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text);
  max-width: 800px;
  line-height: 1.4;
}

/* FOOTER */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-sub { color: var(--text-muted); font-size: 0.875rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-headline { font-size: 2.5rem; }
  .steps { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .closing-statement { font-size: 1.375rem; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 0 60px; }
  .hero-headline { font-size: 2rem; }
  .stat-number { font-size: 3rem; }
  .steps { grid-template-columns: 1fr; }
}