:root {
  color-scheme: light;
  --bg: #f4f7ff;
  --ink: #0b1220;
  --muted: #4c5663;
  --accent: #1f5bff;
  --accent-dark: #1644c4;
  --accent-soft: rgba(31, 91, 255, 0.14);
  --sand: #e7eeff;
  --stone: #dfe6f8;
  --cream: #ffffff;
  --shadow: 0 4px 18px rgba(12, 18, 32, 0.08);
  --radius: 22px;
  --font: "Space Grotesk", "Neue Montreal", "Segoe UI", system-ui, sans-serif;
  --font-sans: "Manrope", "Space Grotesk", "Segoe UI", system-ui, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background: radial-gradient(circle at top, #f8faff 0%, #eef3ff 45%, #e9efff 100%);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.bg-orb {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.12;
  z-index: 0;
}

.bg-orb--one {
  top: -150px;
  right: -180px;
  background: radial-gradient(circle, rgba(31, 91, 255, 0.16) 0%, rgba(31, 91, 255, 0) 72%);
}

.bg-orb--two {
  bottom: -170px;
  left: -170px;
  background: radial-gradient(circle, rgba(118, 165, 255, 0.18) 0%, rgba(118, 165, 255, 0) 72%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(31, 91, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 91, 255, 0.05) 1px, transparent 1px);
  background-size: 100px 100px;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(244, 247, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 20px;
}

.logo.small {
  font-size: 18px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1f5bff 0%, #6aa6ff 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-family: var(--font);
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.nav a {
  padding: 8px 10px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav a:hover {
  background: rgba(17, 18, 20, 0.06);
  color: var(--ink);
}

.header-actions {
  display: flex;
  gap: 12px;
}

.primary,
.ghost,
.button-inline {
  border-radius: 999px;
  border: none;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.primary {
  background: linear-gradient(135deg, #1f5bff 0%, #0e3fd8 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(31, 91, 255, 0.2);
}

.primary:hover {
  background: var(--accent-dark);
}

.ghost {
  background: transparent;
  border: 1px solid rgba(31, 91, 255, 0.25);
  color: var(--ink);
}

.ghost:hover {
  border-color: rgba(17, 18, 20, 0.3);
}

.button-inline {
  background: transparent;
  border: 1px solid rgba(17, 18, 20, 0.2);
  color: var(--ink);
  padding: 8px 14px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 72px 0 96px;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font);
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero-copy .accent {
  color: var(--accent);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
}

.hero-card {
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 18, 20, 0.08);
  overflow: hidden;
}

.hero-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: linear-gradient(120deg, #e6eeff 0%, #f4f7ff 100%);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.hero-card__header span {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.hero-card__body {
  padding: 24px;
}

.hero-card__body h3 {
  margin: 12px 0 10px;
  font-size: 20px;
}

.hero-card__body p {
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-card__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.hero-card__grid ul {
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 8px;
}

.chip {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
}

.hero-card__footer {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(17, 18, 20, 0.08);
  font-size: 12px;
  color: var(--muted);
}

.logos {
  padding: 24px 0 60px;
  text-align: center;
  color: var(--muted);
}

.logo-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

.how {
  padding: 80px 0;
}

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

.steps article {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  box-shadow: var(--shadow);
}

.step-badge {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 16px;
}

.personalized {
  padding: 80px 0;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.feature-list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.feature-list li::before {
  content: "•";
  margin-right: 8px;
  color: var(--accent);
}

.feature-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  box-shadow: var(--shadow);
}

.feature-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.feature-card__body {
  margin-top: 20px;
}

.checklist {
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.checklist input {
  accent-color: var(--accent);
  margin-right: 8px;
}

.prompt {
  margin-top: 12px;
  background: #eef3ff;
  padding: 14px;
  border-radius: 16px;
  font-style: italic;
  color: var(--ink);
}

.value {
  padding: 80px 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value-grid article {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  box-shadow: var(--shadow);
}

.pricing {
  padding: 80px 0;
}

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

.pricing-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.pricing-card__header {
  display: grid;
  gap: 6px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font);
  color: var(--ink);
}

.price-note {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.pricing-card.featured {
  border: 2px solid rgba(31, 91, 255, 0.35);
  box-shadow: 0 6px 24px rgba(31, 91, 255, 0.12);
}

.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.pricing-card ul li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--accent);
}

.faq {
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.faq details {
  background: var(--cream);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(17, 18, 20, 0.08);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq p {
  margin-top: 12px;
  color: var(--muted);
}

.cta {
  padding: 80px 0 100px;
}

.cta-inner {
  background: linear-gradient(135deg, #1f5bff 0%, #0e3fd8 100%);
  color: #fff;
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 32px rgba(31, 91, 255, 0.18);
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  border-top: 1px solid rgba(17, 18, 20, 0.08);
  padding: 32px 0 48px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .header-actions {
    display: none;
  }

  .nav {
    position: absolute;
    top: 72px;
    right: 4vw;
    background: var(--cream);
    padding: 16px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-card {
    order: -1;
  }
}

@media (max-width: 700px) {
  .hero-card__footer {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-card,
  .steps article,
  .feature-card,
  .value-grid article,
  .pricing-card {
    animation: floatIn 0.8s ease both;
  }

  .hero-card {
    animation-delay: 0.1s;
  }

  @keyframes floatIn {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
