:root {
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-900: #0f172a;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-900: #1e3a8a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--slate-900);
  background: var(--slate-50);
  line-height: 1.55;
}

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

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

.container {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav-wrap {
  min-height: 4.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand-badge {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: var(--blue-600);
  box-shadow: 0 0 0 7px rgba(59, 130, 246, 0.2);
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--slate-600);
  font-weight: 500;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--slate-900);
}

.nav-actions {
  display: inline-flex;
  gap: 0.65rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.6rem 1.05rem;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease;
}

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

.button-solid {
  background: var(--blue-600);
  color: white;
  box-shadow: none;
}

.button-solid:hover {
  background: #1e40af;
}

.button-outline {
  background: white;
  border-color: #bfd1f3;
  color: var(--blue-900);
}

.button-outline:hover {
  border-color: #9db7e8;
}

.button-ghost {
  color: var(--slate-700);
}

.button-ghost:hover {
  color: var(--slate-900);
  background: rgba(148, 163, 184, 0.12);
}

.hero {
  padding: 5.2rem 0 4.8rem;
}

.hero-body {
  text-align: center;
  max-width: 960px;
}

.hero h1 {
  margin: 0;
  font-family: "Lexend", sans-serif;
  font-size: clamp(2.2rem, 5.3vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero-lead {
  margin: 1.25rem auto 0;
  max-width: 680px;
  color: var(--slate-700);
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-metrics {
  margin: 1.45rem auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  color: var(--slate-700);
  font-size: 0.96rem;
}

.hero-metrics li {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
}

.section-head {
  max-width: 700px;
}

.section-head h2 {
  margin: 0;
  font-family: "Lexend", sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0.72rem 0 0;
  font-size: 1.06rem;
  color: var(--slate-700);
}

.section-head-light h2,
.section-head-light p {
  color: white;
}

.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.primary-features {
  position: relative;
  overflow: hidden;
  background: var(--blue-600);
  padding: 4.8rem 0 5rem;
}

.section-bg {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-44%, -42%);
  max-width: none;
  width: 1400px;
  opacity: 0.55;
  pointer-events: none;
}

.feature-shell {
  position: relative;
}

.feature-tabs {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.feature-tabs article {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.95rem;
  backdrop-filter: blur(2px);
}

.feature-tabs h3 {
  margin: 0;
  font-family: "Lexend", sans-serif;
  font-size: 1.03rem;
  color: white;
}

.feature-tabs p {
  margin: 0.58rem 0 0;
  color: var(--blue-100);
  font-size: 0.93rem;
}

.feature-shots {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.feature-shots img {
  border-radius: 12px;
  border: 1px solid rgba(191, 219, 254, 0.45);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.3);
}

.secondary-features {
  padding: 5rem 0;
}

.secondary-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.info-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.info-card h3 {
  margin: 0;
  font-family: "Lexend", sans-serif;
  font-size: 1.08rem;
}

.info-card p {
  margin: 0.62rem 0 0;
  color: var(--slate-700);
}

.info-card img {
  margin-top: 0.85rem;
  border-radius: 11px;
  border: 1px solid #d1deef;
}

.pricing {
  background: var(--slate-900);
  padding: 5rem 0;
}

.pricing-grid {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.plan-card {
  border-radius: 24px;
  padding: 1.3rem;
  color: white;
}

.plan-card.base {
  background: rgba(51, 65, 85, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.34);
}

.plan-card.highlight {
  background: rgba(30, 64, 175, 0.9);
  border: 1px solid rgba(191, 219, 254, 0.45);
}

.plan-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.73rem;
  color: var(--blue-200);
  font-weight: 600;
}

.plan-price {
  margin: 0.5rem 0 0;
  font-family: "Lexend", sans-serif;
  font-size: clamp(2rem, 3.6vw, 2.95rem);
  line-height: 1;
}

.plan-price span {
  font-size: 1rem;
  color: var(--blue-100);
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.plan-copy {
  margin: 0.65rem 0 0;
  color: var(--blue-100);
}

.plan-card ul {
  margin: 0.85rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.35rem;
  color: var(--blue-100);
}

.pricing-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.faq {
  position: relative;
  overflow: hidden;
  background: var(--slate-50);
  padding: 5rem 0;
}

.faq-bg {
  inset: 0 auto auto 50%;
  transform: translate(-30%, -26%);
  width: 1400px;
  opacity: 0.4;
}

.faq-shell {
  position: relative;
}

.faq-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-grid article {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 1rem;
}

.faq-grid h3 {
  margin: 0;
  font-family: "Lexend", sans-serif;
  font-size: 1.03rem;
}

.faq-grid p {
  margin: 0.58rem 0 0;
  color: var(--slate-700);
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  background: var(--slate-50);
}

.footer-wrap {
  padding: 1.45rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--slate-600);
}

.footer-wrap nav {
  display: inline-flex;
  gap: 1rem;
}

.footer-wrap nav a:hover {
  color: var(--slate-900);
}

@media (max-width: 1024px) {
  .feature-tabs,
  .feature-shots,
  .secondary-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-bg,
  .faq-bg {
    width: 1200px;
  }
}

@media (max-width: 780px) {
  .nav-links {
    display: none;
  }

  .feature-tabs,
  .feature-shots,
  .secondary-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4.2rem;
  }

  .hero-metrics {
    flex-direction: column;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
