@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #04121f;
  --bg-alt: #071c2f;
  --card: #0b2842;
  --primary: #4cfac0;
  --primary-dark: #39c395;
  --accent: #ffb347;
  --text: #f2f7fb;
  --text-muted: rgba(242, 247, 251, 0.75);
  --border: rgba(255, 255, 255, 0.08);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, rgba(76, 250, 192, 0.12), transparent 45%), var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 4rem 0;
}

header {
  padding: 1.5rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-actions a {
  color: var(--text);
  text-decoration: none;
  margin-left: 1rem;
  font-weight: 500;
}

.hero {
  display: grid;
  gap: 2.5rem;
  padding: 5rem 0 4rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(76, 250, 192, 0.08);
  border: 1px solid rgba(76, 250, 192, 0.4);
  font-size: 0.95rem;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  line-height: 1.2;
}

.hero p {
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), #34f0a8);
  color: #04121f;
  box-shadow: 0 12px 35px rgba(76, 250, 192, 0.25);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.metric-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
}

.metric-card h3 {
  font-size: 1.9rem;
}

.section {
  margin: 4rem 0;
}

.section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  border-radius: 1.2rem;
  padding: 1.8rem;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

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

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 3.5rem;
}

.step:not(:last-child) {
  margin-bottom: 2rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(76, 250, 192, 0.15);
  border: 1px solid rgba(76, 250, 192, 0.4);
  display: grid;
  place-items: center;
  font-weight: 600;
}

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

.price {
  font-size: 3rem;
  font-weight: 600;
  margin: 1rem 0;
}

.faq {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.faq h4 {
  font-size: 1.1rem;
}

footer {
  padding: 2.5rem 0 1.5rem;
  text-align: center;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 720px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }
  .cta-group {
    flex-direction: column;
  }
  .metrics {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}
.founder {
  margin-top: 0.35rem;
  font-weight: 600;
  color: var(--accent);
}
