:root {
  --bg: #0e0e11;
  --surface: #18181c;
  --surface-2: #22222a;
  --border: #2e2e38;
  --text: #f0eee8;
  --text-muted: #8a8a99;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --green: #4ade80;
  --green-dim: rgba(74, 222, 128, 0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 16px; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* HERO */
.hero {
  padding: 80px 48px 96px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 48px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 80px;
  line-height: 1.4;
}

/* Workflow card */
.workflow-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
}
.workflow-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.workflow-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.workflow-step.done { color: var(--text); }
.workflow-step.active { background: var(--green-dim); color: var(--green); }
.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
.workflow-step.done .step-dot { background: var(--text-muted); }
.workflow-step.active .step-dot { background: var(--green); }
.step-dot.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.workflow-arrow {
  width: 1px;
  height: 12px;
  background: var(--border);
  margin: 4px 0 4px 18px;
}
.workflow-badge {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-dim);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

/* Sections */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 56px;
}

/* SERVICES */
.services { padding: 96px 48px; border-bottom: 1px solid var(--border); }
.services .section-label,
.services .section-title { max-width: 1200px; margin-left: auto; margin-right: auto; }
.services .section-label { margin-bottom: 16px; }
.services .section-title { margin-bottom: 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--accent); }
.service-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.service-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* HOW */
.how { padding: 96px 48px; border-bottom: 1px solid var(--border); }
.how-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.how-left .section-label { margin-bottom: 16px; }
.how-right { display: flex; flex-direction: column; gap: 32px; }
.step-card { padding-left: 0; }
.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.step-heading {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.step-body { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 480px; }

/* TESTIMONIAL */
.testimonial { padding: 96px 48px; border-bottom: 1px solid var(--border); }
.quote-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 96px;
  color: var(--accent);
  line-height: 0.7;
  margin-bottom: 24px;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.quote-attr { display: flex; align-items: center; justify-content: center; gap: 16px; }
.quote-avatar { width: 40px; height: 40px; }
.quote-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}
.quote-context { font-size: 13px; color: var(--text-muted); text-align: left; }

/* PRICING */
.pricing { padding: 96px 48px; border-bottom: 1px solid var(--border); }
.pricing .section-label,
.pricing .section-title { text-align: center; max-width: 1200px; margin-left: auto; margin-right: auto; }
.pricing .section-title { margin-bottom: 56px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--surface-2);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}
.per-month { font-size: 18px; font-weight: 600; color: var(--text-muted); }
.pricing-tagline { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* CLOSING */
.closing { padding: 96px 48px; border-bottom: 1px solid var(--border); }
.closing-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.closing-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* FOOTER */
.footer { padding: 48px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.footer-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.footer-copy { font-size: 12px; color: var(--border); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 56px 24px 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .hero-stats { gap: 32px; }
  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .how { padding: 64px 24px; }
  .how-inner { grid-template-columns: 1fr; gap: 48px; }
  .testimonial { padding: 64px 24px; }
  .pricing { padding: 64px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}