:root {
  --bg: #0a1224;
  --bg-soft: #101a31;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --text: #152033;
  --muted: #56637a;
  --line: #dbe4f0;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #0f172a;
  --success: #0f766e;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  --radius: 20px;
  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(219, 228, 240, 0.8);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 16px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.brand-text {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover,
.footer-nav a:hover,
.text-link:hover {
  color: var(--primary);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111827;
  margin: 5px 0;
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(37,99,235,0.22), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
  margin: 0 0 14px;
}

.hero h1,
.section-head h2,
.two-col h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}

.hero-lead,
.section-head p,
.two-col p {
  font-size: 1.07rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions,
.pill-row,
.preview-top,
.preview-links,
.audit-callout,
.footer-grid,
.field-row,
.logo-strip .container {
  display: flex;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 22px;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}

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

.btn-primary {
  color: #fff;
  background: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  color: var(--accent);
  background: #fff;
  border: 1px solid var(--line);
}

.btn-dark {
  color: #fff;
  background: var(--accent);
}

.btn-block {
  width: 100%;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  font-weight: 600;
  color: #243247;
}

.hero-card {
  padding: 8px;
}

.profile-preview {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.preview-top {
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.preview-top p {
  margin: 4px 0 0;
  color: var(--muted);
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  font-weight: 800;
  color: var(--primary-dark);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.stat-grid article,
.card,
.step,
.price-card,
.landing-card,
.funnel-card,
.lead-form,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.stat-grid article {
  padding: 16px;
}
.stat-grid span {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
}
.stat-grid small {
  color: var(--muted);
}

.preview-section h2 {
  font-size: 1rem;
  margin: 0 0 8px;
}
.preview-section p {
  margin: 0 0 18px;
  color: var(--muted);
}

.preview-links {
  justify-content: center;
  padding: 12px;
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--primary-dark);
  font-weight: 700;
}

.logo-strip {
  padding: 18px 0 8px;
}

.logo-strip .container {
  flex-direction: column;
  gap: 14px;
}

.pill-row {
  flex-wrap: wrap;
  gap: 10px;
}

.pill-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  color: #324256;
  font-weight: 600;
}

.section {
  padding: 82px 0;
}

.section-alt {
  background: var(--surface-soft);
}

.section-head {
  margin-bottom: 34px;
}

.feature-grid,
.steps,
.pricing-grid,
.landing-links {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.steps {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.step,
.landing-card {
  padding: 24px;
}

.card h3,
.step h3,
.landing-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

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

.step-num {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #dbeafe;
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 18px;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  position: relative;
  padding: 28px;
  box-shadow: var(--shadow);
}

.price-card.featured {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.badge {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #dbeafe;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.tier {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.price-card h3 {
  margin: 8px 0 6px;
  font-size: 2.3rem;
}
.tier-sub {
  margin: 0 0 18px;
  color: var(--muted);
}
.price-card ul {
  margin: 0 0 24px;
  padding-left: 18px;
  color: #324256;
}

.audit-callout {
  margin-top: 22px;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.audit-callout p {
  margin: 6px 0 0;
  color: var(--muted);
}

.landing-links {
  grid-template-columns: repeat(3, 1fr);
}

.landing-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.two-col,
.lead-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.funnel-card {
  padding: 24px;
}

.funnel-card ol {
  margin: 0 0 20px;
  padding-left: 22px;
}
.funnel-card li + li {
  margin-top: 12px;
}

.text-link {
  font-weight: 800;
  color: var(--primary-dark);
}

.lead-section {
  background:
    radial-gradient(circle at top right, rgba(37,99,235,0.16), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.lead-form {
  padding: 24px;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.field label {
  margin-bottom: 8px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font: inherit;
  color: var(--text);
  background: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(37,99,235,0.18);
  border-color: var(--primary);
}

.checkbox-field {
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
}
.checkbox-field input {
  width: auto;
  margin-top: 5px;
}

.form-message {
  margin: 14px 0 0;
  color: var(--success);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 0 18px;
}

summary {
  padding: 18px 0;
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 0 0 18px;
  color: var(--muted);
}

.site-footer {
  background: var(--bg);
  color: #e5edf8;
  padding: 42px 0;
}

.footer-grid {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-copy {
  color: #a9b6cb;
  margin: 14px 0 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}
.footer-nav a {
  color: #dbe4f0;
}

@media (max-width: 1024px) {
  .hero-grid,
  .two-col,
  .lead-grid,
  .feature-grid,
  .steps,
  .pricing-grid,
  .landing-links,
  .hero-points {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .two-col,
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps,
  .pricing-grid,
  .landing-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-nav {
    position: absolute;
    right: 16px;
    top: 76px;
    width: min(320px, calc(100% - 32px));
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .feature-grid,
  .steps,
  .pricing-grid,
  .landing-links,
  .field-row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .audit-callout,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    padding-top: 46px;
  }

  .hero h1,
  .section-head h2,
  .two-col h2 {
    font-size: clamp(1.85rem, 8vw, 2.8rem);
  }
}