@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;
}

a,
a:visited {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--primary-dark);
}

footer a,
footer a:visited {
  color: var(--primary);
}

footer a:hover,
footer a:focus {
  color: var(--primary-dark);
}

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

header {
  padding: 1rem 0 0.5rem;
}

.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;
}

.nav-disabled {
  margin-left: 1rem;
  color: rgba(242, 247, 251, 0.55);
  font-weight: 500;
}

.nav-visual {
  text-align: center;
  margin: 0.15rem auto 0.25rem;
}

.nav-visual img {
  max-width: 520px;
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.nav-hero-text {
  text-align: center;
  margin: 0 auto 0.6rem;
  color: var(--text-muted);
  font-size: 1rem;
}

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

.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;
  margin-bottom: 1.2rem;
}

.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;
}
.portal-cta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}
.portal-cta .btn {
  text-decoration: none;
}

.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);
}


.lead-form {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  background: rgba(255,255,255,0.02);
  max-width: 520px;
}
.lead-form form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.lead-form label, .lead-modal form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.lead-form input,
.lead-form textarea,
.lead-modal form input,
.lead-modal form textarea {
  border-radius: 0.8rem;
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  background: rgba(0,0,0,0.2);
  color: var(--text);
  font-family: inherit;
}
.turnstile-wrapper {
  margin: 0.5rem 0;
}
.form-status {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.form-status.success,
.form-status.error {
  display: block;
  padding: 0.65rem 0.9rem;
  border-radius: 0.9rem;
}
.form-status.success {
  color: var(--primary);
  background: rgba(76, 250, 192, 0.08);
}
.form-status.error {
  color: #ff7a7a;
  background: rgba(255, 122, 122, 0.12);
}
.plan-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.lead-toast {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.6rem 1rem;
  border-radius: 0.9rem;
  background: rgba(255,255,255,0.04);
  min-height: 1.2rem;
}
.lead-toast.success {
  color: var(--primary);
  background: rgba(76, 250, 192, 0.08);
}
.lead-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1000;
}
.lead-modal.visible {
  display: flex;
}
.lead-modal-content {
  width: min(500px, 92vw);
  background: #031524;
  border-radius: 1.4rem;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
  box-shadow: 0 30px 120px rgba(0,0,0,0.45);
}
.lead-modal-close {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  float: right;
  cursor: pointer;
}
.modal-intro {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.lead-modal form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
