:root {
  --bg-soft: #f8fbff;
  --ink: #0f172a;
  --brand: #0e7490;
  --brand-deep: #155e75;
  --line: #d6e5ef;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, sans-serif;
  color: var(--ink);
  background: var(--bg-soft);
}

.bg-grid {
  background-image:
    linear-gradient(to right, rgba(14, 116, 144, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14, 116, 144, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 50%, transparent 100%);
}

.glow {
  position: fixed;
  width: 36rem;
  height: 36rem;
  border-radius: 999px;
  filter: blur(90px);
  z-index: -10;
  pointer-events: none;
}

.glow-a {
  top: -9rem;
  right: -8rem;
  background: rgba(34, 211, 238, 0.32);
}

.glow-b {
  bottom: -15rem;
  left: -10rem;
  background: rgba(14, 116, 144, 0.24);
}

.hero-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(240, 249, 255, 0.9));
  border: 1px solid rgba(14, 116, 144, 0.16);
}

.metric-card {
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(14, 116, 144, 0.16);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.88);
}

.metric-title {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #083344;
}

.metric-desc {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.45;
}

.feature-card {
  padding: 1.15rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 116, 144, 0.45);
  box-shadow: 0 20px 36px -26px rgba(2, 132, 199, 0.55);
}

.feature-title {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.feature-text {
  margin: 0.45rem 0 0;
  color: #334155;
  line-height: 1.5;
  font-size: 0.95rem;
}

.trust-card {
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  padding: 1.4rem;
}

.pricing-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(240, 253, 250, 0.92));
  border: 1px solid rgba(14, 116, 144, 0.2);
  box-shadow: 0 30px 60px -42px rgba(8, 145, 178, 0.5);
}

.price-badge {
  border: 1px solid rgba(14, 116, 144, 0.18);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.9rem;
  padding: 0.95rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.price-label {
  font-size: 0.82rem;
  color: #334155;
}

.price-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.faq-question {
  background: #ffffff;
  color: #0f172a;
  transition: background-color 180ms ease, color 180ms ease;
}

.faq-question:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.faq-question[aria-expanded='true'] {
  background: #e2e8f0;
  color: #0f172a;
}

.faq-question svg {
  color: #334155;
}

.final-cta {
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.92), rgba(236, 254, 255, 0.95));
  border: 1px solid rgba(14, 116, 144, 0.22);
  box-shadow: 0 35px 70px -45px rgba(8, 145, 178, 0.5);
}

.pulse-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--brand);
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -0.2rem;
  border-radius: inherit;
  border: 1px solid rgba(14, 116, 144, 0.55);
  animation: pulse-ring 1.7s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    opacity: 0.9;
    transform: scale(0.78);
  }
  70% {
    opacity: 0;
    transform: scale(1.7);
  }
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .glow {
    width: 26rem;
    height: 26rem;
    filter: blur(70px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible,
  .feature-card,
  .pulse-dot::after {
    transition: none;
    transform: none;
    animation: none;
  }
}
