:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #18182a;
  --fg: #e8e8ed;
  --fg-muted: #8888a0;
  --fg-dim: #55556a;
  --accent: #6366f1;
  --accent-light: #818cf8;
  --accent-glow: rgba(99, 102, 241, 0.15);
  --green: #22c55e;
  --border: #2a2a3d;
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-icon {
  color: var(--accent);
  font-size: 1.25rem;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 100px;
}

/* HERO */
.hero {
  padding: 10rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-light);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 100px;
  margin-bottom: 2rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-accent {
  background: linear-gradient(135deg, var(--accent-light), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.3s;
}
.hero-card:hover {
  border-color: var(--accent);
}
.hero-card-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}
.hero-card-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.hero-card-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* STATS */
.stats {
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.stat {
  text-align: center;
  flex: 1;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--fg) 30%, var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 0.4rem;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* HOW */
.how {
  padding: 6rem 2rem;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-light);
  margin-bottom: 1rem;
}
.how-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 3.5rem;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.how-step {
  padding: 2rem;
  border-left: 2px solid var(--border);
  transition: border-color 0.3s;
}
.how-step:hover {
  border-color: var(--accent);
}
.step-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid rgba(99, 102, 241, 0.3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
}
.how-step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.how-step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* SECTORS */
.sectors {
  padding: 6rem 2rem;
  background: var(--bg-elevated);
}
.sectors-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sectors h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.sectors-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.sectors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.sector-pill {
  padding: 0.65rem 1.3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
  transition: all 0.3s;
  cursor: default;
}
.sector-pill:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

/* CLOSING */
.closing {
  padding: 6rem 2rem 5rem;
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  border-radius: 2px;
  margin: 0 auto 2.5rem;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-right {
  font-size: 0.8rem;
  color: var(--fg-dim);
}

/* HERO CTA BUTTONS */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
}
.hero-cta-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.15);
  transform: translateY(-1px);
}
.hero-cta-arrow {
  transition: transform 0.2s;
}
.hero-cta-primary:hover .hero-cta-arrow {
  transform: translateX(3px);
}
.hero-cta-ghost {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-cta-ghost:hover {
  color: var(--fg);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.hero-trust span {
  font-size: 0.82rem;
  color: var(--fg-dim);
  letter-spacing: 0.01em;
}

/* PRICING */
.pricing {
  padding: 6rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-header {
  margin-bottom: 3.5rem;
}
.pricing-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.pricing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  position: relative;
  transition: border-color 0.3s;
}
.pricing-card:hover {
  border-color: var(--fg-dim);
}
.pricing-card-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(99, 102, 241, 0.08) 0%, var(--bg-card) 60%);
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.2), 0 20px 40px rgba(0, 0, 0, 0.3);
}
.pricing-card-featured:hover {
  border-color: var(--accent-light);
}
.pricing-badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-plan-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}
.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 0.1rem;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--fg);
}
.price-currency {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 0.3rem;
}
.price-period {
  font-size: 0.9rem;
  color: var(--fg-dim);
  margin-bottom: 0.35rem;
  margin-left: 0.1rem;
}
.pricing-target {
  font-size: 0.85rem;
  color: var(--fg-dim);
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}
.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}
.pricing-check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-cta {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.25s;
}
.pricing-cta-primary {
  background: var(--accent);
  color: #fff;
}
.pricing-cta-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.25);
  transform: translateY(-1px);
}
.pricing-cta-secondary {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
}
.pricing-cta-secondary:hover {
  border-color: var(--accent);
  color: var(--fg);
  background: var(--accent-glow);
}
.pricing-footer-note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--fg-dim);
  letter-spacing: 0.01em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 8rem 1.25rem 3rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .stats-inner {
    flex-direction: column;
    gap: 2rem;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .how {
    padding: 4rem 1.25rem;
  }
  .sectors {
    padding: 4rem 1.25rem;
  }
  .closing {
    padding: 4rem 1.25rem 3rem;
  }
  .nav {
    padding: 1rem 1.25rem;
  }
  .nav-tag {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .hero-cta-primary {
    width: 100%;
    justify-content: center;
  }
  .hero-trust {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
  }
  .pricing {
    padding: 4rem 1.25rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .pricing-header {
    margin-bottom: 2.5rem;
  }
}