:root {
  --future-cyan: #19d4e6;
  --future-ink: #07111f;
  --future-glow: rgba(20, 152, 167, 0.28);
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

body {
  touch-action: pan-y;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

main,
.container,
.hero-grid,
.split,
.card-grid,
.nav-inner,
.footer-inner {
  min-width: 0;
  max-width: 100%;
}

.hero-grid > *,
.split > *,
.card-grid > *,
.link-row > *,
.footer-inner > * {
  min-width: 0;
}

body {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 0%, rgba(25, 212, 230, 0.18), transparent 34rem),
    radial-gradient(circle at 88% 8%, rgba(15, 118, 110, 0.16), transparent 30rem),
    linear-gradient(180deg, #f8fbfd 0%, #eef4f7 48%, #f4f6f8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 152, 167, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 152, 167, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  height: 38vh;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(20, 152, 167, 0.08));
}

.nav {
  box-shadow: 0 18px 70px rgba(7, 17, 31, 0.08);
}

.hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 252, 0.58)),
    radial-gradient(circle at 72% 20%, rgba(25, 212, 230, 0.18), transparent 28rem);
}

.eyebrow {
  color: #087f8c;
}

.hero h1 {
  text-wrap: balance;
}

.lead,
.section p {
  text-wrap: pretty;
}

.hero-card {
  position: relative;
  border: 1px solid rgba(20, 152, 167, 0.24);
  box-shadow:
    0 28px 90px rgba(7, 17, 31, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.76) inset;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(180deg, transparent 55%, rgba(7, 17, 31, 0.18));
}

.hero-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -42%;
  z-index: 2;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(25, 212, 230, 0.24), transparent);
  animation: scanline 8s ease-in-out infinite;
}

.hero-card img {
  transform: scale(1.015);
  transition: transform 0.55s cubic-bezier(.16, 1, .3, 1);
}

.hero-card:hover img {
  transform: scale(1.055);
}

.btn {
  box-shadow: 0 16px 34px rgba(20, 152, 167, 0.24);
  transition: transform 0.24s cubic-bezier(.16, 1, .3, 1), box-shadow 0.24s ease, background 0.24s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(20, 152, 167, 0.34);
  background: #087f8c;
}

.link-pill,
.info-card,
.answer,
.faq-item {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(7, 17, 31, 0.06);
  transition: transform 0.24s cubic-bezier(.16, 1, .3, 1), border-color 0.24s ease, box-shadow 0.24s ease;
}

.link-pill:hover,
.info-card:hover,
.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 152, 167, 0.45);
  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.1);
}

.answer {
  position: relative;
  overflow: hidden;
}

.answer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(25, 212, 230, 0.14), transparent 42%);
}

.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(25, 212, 230, 0.28), transparent 22rem),
    linear-gradient(135deg, #07111f, #0c2430 54%, #063f49);
  box-shadow: 0 28px 80px rgba(7, 17, 31, 0.22);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes scanline {
  0%, 44% { transform: translateY(0); opacity: 0; }
  55% { opacity: 1; }
  100% { transform: translateY(340%); opacity: 0; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero h1,
  .lead,
  .link-row,
  .hero-card,
  .section h2,
  .info-card,
  .answer,
  .faq-item,
  .cta {
    animation: rise-in 0.72s cubic-bezier(.16, 1, .3, 1) both;
  }

  .hero-card { animation-delay: 0.08s; }
  .section h2 { animation-delay: 0.04s; }
  .info-card:nth-child(2) { animation-delay: 0.06s; }
  .info-card:nth-child(3) { animation-delay: 0.12s; }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
