/* Typography */
:root {
  --bg: #111214;
  --bg-2: #18181c;
  --fg: #f0f0f0;
  --fg-muted: #8a8a96;
  --accent: #00e887;
  --accent-dim: rgba(0, 232, 135, 0.12);
  --border: rgba(255,255,255,0.08);
  --card-bg: #1a1a1f;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* Navigation */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  margin-left: 24px;
  padding: 7px 14px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent-dim);
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--accent);
  color: var(--bg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  max-width: 120px;
}

/* Proof Card */
.proof-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.proof-header {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.proof-amount {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--accent);
}
.proof-amount span { font-size: 20px; color: var(--fg-muted); }
.proof-detail {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.proof-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.proof-line {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}
.proof-line::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}
.proof-term {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Offer */
.offer {
  background: var(--bg-2);
  padding: 100px 48px;
}
.offer-inner { max-width: 1200px; margin: 0 auto; }
.offer-label, .pricing-label, .process-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.offer-headline {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 56px;
  max-width: 600px;
}
.offer-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.pillar {
  padding: 40px;
  border: 1px solid var(--border);
  margin-right: -1px;
  margin-bottom: -1px;
}
.pillar-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-dim);
  border-radius: 8px;
  margin-bottom: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300e887' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pillar-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.pillar-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Pricing */
.pricing { padding: 100px 48px; max-width: 1200px; margin: 0 auto; }
.pricing-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 48px;
}
.pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.plan {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  position: relative;
}
.plan:last-child { border-right: none; }
.plan-featured {
  background: var(--card-bg);
}
.plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--accent);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 700;
}
.plan-name {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.plan-price {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--accent);
  margin-bottom: 8px;
}
.plan-price span { font-size: 16px; color: var(--fg-muted); }
.plan-clients {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.plan-result {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-top: 12px;
}
.pricing-note {
  margin-top: 40px;
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 600px;
}

/* Process */
.process { background: var(--bg-2); padding: 100px 48px; }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 64px;
}
.process-steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
}
.step-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.step-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* Closing */
.closing { padding: 100px 48px; max-width: 1200px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 32px;
}
.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 16px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.footer-desc {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-meta {
  font-size: 12px;
  color: var(--fg-muted);
  display: flex;
  gap: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .nav, .hero, .offer, .pricing, .process, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 48px; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 22px; }
  .offer-pillars { grid-template-columns: 1fr; }
  .pricing-plans { grid-template-columns: 1fr; }
  .plan { border-right: none; border-bottom: 1px solid var(--border); }
  .plan:last-child { border-bottom: none; }
  .step { grid-template-columns: 48px 1fr; gap: 20px; }
  .step-num { font-size: 32px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .nav-tagline { display: none; }
}