:root {
  --bg: #0b1220;
  --bg-soft: #111a2d;
  --text: #f4f7ff;
  --muted: #a6b0c5;
  --primary: #4f8cff;
  --border: #223252;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: radial-gradient(circle at top, #1a2f52 0%, var(--bg) 55%);
  color: var(--text);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  color: #d6e2ff;
  text-decoration: none;
}

.hero-content {
  text-align: center;
  padding: 3.5rem 0 4rem;
}

.badge {
  display: inline-block;
  margin: 0;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #d8e3ff;
  background: rgba(79, 140, 255, 0.12);
}

h1 {
  margin: 1rem 0 0.5rem;
  font-size: clamp(2rem, 6vw, 3.3rem);
  line-height: 1.1;
}

.subtitle {
  margin: 0 auto 1.5rem;
  max-width: 650px;
  color: var(--muted);
}

.cta-group {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: var(--primary);
  padding: 0.7rem 1rem;
  border-radius: 0.7rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
}

.stats {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.stats div {
  display: flex;
  flex-direction: column;
  min-width: 140px;
  padding: 0.75rem;
  background: rgba(17, 26, 45, 0.7);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.stats strong {
  font-size: 1.15rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.features {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 2.5rem;
}

.card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1rem;
}

.card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.quickstart {
.pricing,
.testimonials,
.join {
  margin-bottom: 2.5rem;
}

.pricing-grid,
.quote-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(79, 140, 255, 0.2);
}

.price {
  margin: 0.3rem 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
}

.join {
  text-align: center;
}

.footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 1rem 0;
}

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-content {
    text-align: left;
  }

  .cta-group {
    justify-content: flex-start;
  }

  .stats {
    justify-content: flex-start;
  }
}
