:root {
  --navy-deep: #080f1e;
  --navy-mid: #0d1a33;
  --navy-surface: #132040;
  --navy-border: #1a3060;
  --electric-blue: #1a6bff;
  --sky-blue: #3b9eff;
  --steel-blue: #4a6fa5;
  --white: #ffffff;
  --grey-100: #f3f6fb;
  --grey-300: #aebcd0;
  --grey-500: #74839a;
  --grey-700: #40506a;
  --success: #34d399;
  --danger: #ff5f57;
  --font-display: Geist, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Geist, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --transition: 180ms ease;
  --shadow-glow: 0 0 36px rgba(26, 107, 255, 0.22);
  --shadow-card: 0 18px 48px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.58;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.container-narrow { width: min(820px, calc(100% - 48px)); margin: 0 auto; }
.text-center { text-align: center; }
.muted, p { color: var(--grey-300); }
.text-dark, .section-light p, .section-light .muted { color: var(--grey-700); }

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 68px;
  background: rgba(13, 26, 51, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--navy-border);
  transition: box-shadow 260ms ease, background 260ms ease;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.42); background: rgba(8, 15, 30, 0.96); }
.nav-inner { height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 760; font-size: 19px; letter-spacing: 0; color: var(--white); }
.brand img { width: 34px; height: 34px; border-radius: 7px; object-fit: cover; transition: transform var(--transition); }
.brand:hover img { transform: rotate(5deg); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a:not(.btn) {
  color: var(--grey-300);
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:not(.btn):hover { color: var(--white); background: rgba(255, 255, 255, 0.05); }
.nav-links a.active { color: var(--electric-blue); }
.nav-links .cloud-link { color: var(--sky-blue); display: inline-flex; align-items: center; gap: 7px; }
.nav-links .cloud-link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--sky-blue);
  animation: dotPulse 1.8s ease-in-out infinite;
}
.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  padding: 0;
  font-weight: 750;
}
.mobile-toggle svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}
.mobile-menu {
  display: none;
  background: rgba(8, 15, 30, 0.98);
  border-top: 1px solid var(--navy-border);
  padding: 12px 0 18px;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--grey-300);
  font-weight: 650;
  border-radius: 8px;
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--white); background: rgba(59, 158, 255, 0.12); }
.mobile-menu a.mobile-cta {
  justify-content: center;
  margin-top: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--electric-blue), #0e55d7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 720;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible {
  outline: 2px solid var(--sky-blue);
  outline-offset: 3px;
}
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--electric-blue), #0e55d7);
  box-shadow: 0 12px 28px rgba(26, 107, 255, 0.26);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #4aa7ff, #1a6bff);
  box-shadow: 0 0 0 1px rgba(126, 190, 255, 0.35), var(--shadow-glow);
}
.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}
.btn-secondary:hover {
  color: var(--white);
  background: rgba(59, 158, 255, 0.16);
  border-color: rgba(59, 158, 255, 0.55);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.section-light .btn-secondary { color: var(--navy-deep); background: var(--white); border-color: #d8e0ec; }
.section-light .btn-secondary:hover { color: var(--white); background: var(--electric-blue); border-color: var(--electric-blue); }

.page-main { padding-top: 68px; }
.hero {
  min-height: calc(86vh - 68px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
}
.hero-feature { min-height: calc(82vh - 68px); }
.hero-compact { min-height: auto; }
.hero::before, .hero::after, .hero-bg-grid, .cloud-particles {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero::before {
  background: radial-gradient(ellipse at 18% 6%, rgba(26, 107, 255, 0.18), transparent 50%),
              radial-gradient(ellipse at 86% 88%, rgba(59, 158, 255, 0.1), transparent 52%);
}
.hero-bg-grid {
  background-image:
    linear-gradient(rgba(26, 107, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 107, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 74%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
  padding: 56px 0;
}
.hero-centered {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
  padding: 64px 0;
  text-align: center;
}
.hero-compact .hero-grid,
.hero-compact .hero-centered { padding: 48px 0 58px; }
.hero-feature .hero-centered { padding: 72px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--sky-blue);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: var(--electric-blue);
}
h1, h2, h3 { margin: 0; font-family: var(--font-display); line-height: 1.12; letter-spacing: 0; color: var(--white); }
h1 { font-size: clamp(34px, 5.2vw, 58px); font-weight: 760; }
h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 740; }
h3 { font-size: 19px; font-weight: 720; line-height: 1.18; }
.section-light h2, .section-light h3 { color: var(--navy-deep); }
.lead { margin: 18px 0 0; color: var(--grey-300); font-size: clamp(15.5px, 1.5vw, 18px); line-height: 1.68; }
.section-light .lead { color: var(--grey-700); }
.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-centered .hero-actions, .hero-centered .waitlist { justify-content: center; }

.card, .hero-panel, .product-card, .contact-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.card, .hero-panel, .contact-card { padding: 24px; transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition); }
.card:hover, .hero-panel:hover, .contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 107, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24), 0 0 28px rgba(26, 107, 255, 0.12);
}
.section-light .card, .section-light .hero-panel, .section-light .contact-card {
  background: var(--white);
  border-color: #dbe3ef;
  box-shadow: 0 16px 40px rgba(8, 15, 30, 0.08);
}
.product-card {
  padding: 26px;
  background: linear-gradient(150deg, rgba(26, 107, 255, 0.17), rgba(255, 255, 255, 0.045));
}
.product-card h2 { font-size: clamp(25px, 3vw, 38px); }
.card p, .hero-panel p { margin-bottom: 0; }
.card-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 10px;
  color: var(--sky-blue);
  background: rgba(26, 107, 255, 0.12);
  border: 1px solid rgba(59, 158, 255, 0.18);
  font-weight: 720;
}
.card-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.metric-grid, .grid-3, .grid-2 { display: grid; gap: 18px; }
.metric-grid { grid-template-columns: repeat(3, 1fr); margin-top: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.metric {
  padding: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.metric strong { display: block; font-size: 22px; color: var(--white); line-height: 1; font-weight: 740; }
.metric span { display: block; margin-top: 7px; color: var(--grey-300); font-size: 13px; }

.media-panel {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(59, 158, 255, 0.18);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}
.media-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 15, 30, 0) 45%, rgba(8, 15, 30, 0.28) 100%);
}
.media-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.media-panel.tight img { aspect-ratio: 16 / 9; }
.section-light .media-panel { box-shadow: 0 18px 46px rgba(8, 15, 30, 0.13); }
.media-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-size: 13px;
  font-weight: 650;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.65);
}

.trust-strip {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}
.trust-items { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--grey-300);
  font-weight: 750;
  text-align: center;
  border-right: 1px solid var(--navy-border);
}
.trust-item:last-child { border-right: 0; }
.trust-diamond { width: 9px; height: 9px; background: var(--electric-blue); transform: rotate(45deg); box-shadow: 0 0 14px rgba(26, 107, 255, 0.55); }

.section { padding: 78px 0; position: relative; }
.section-light { background: var(--grey-100); color: var(--navy-deep); }
.section-mid { background: var(--navy-mid); border-top: 1px solid var(--navy-border); border-bottom: 1px solid var(--navy-border); }
.section-gradient {
  background: linear-gradient(135deg, #080f1e 0%, #0a1e3d 50%, #0d2660 100%);
  overflow: hidden;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 32px;
}
.section-head p { max-width: 430px; margin: 0; }
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.list { display: grid; gap: 12px; margin: 18px 0 0; padding: 0; list-style: none; }
.list li { display: flex; gap: 11px; color: var(--grey-300); }
.section-light .list li { color: var(--grey-700); }
.list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  flex: 0 0 auto;
  border-radius: 99px;
  background: var(--electric-blue);
  box-shadow: 0 0 12px rgba(26, 107, 255, 0.6);
}

.service-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 26px;
  padding: 44px 0;
  border-bottom: 1px solid var(--navy-border);
}
.service-row:nth-child(even) { background: transparent; margin-inline: 0; padding-inline: 0; border-radius: 0; }
.service-row h2 { font-size: clamp(24px, 3vw, 38px); }
.service-row:last-child { border-bottom: 0; }
.service-number {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--sky-blue);
  background: rgba(26, 107, 255, 0.12);
  border: 1px solid rgba(59, 158, 255, 0.18);
  font-weight: 760;
  font-size: 13px;
}

.cloud-particles {
  background-image: radial-gradient(circle at 1px 1px, rgba(59, 158, 255, 0.2) 1px, transparent 0);
  background-size: 40px 40px;
  animation: particleDrift 18s linear infinite;
  opacity: 0.7;
}
.cloud-hero { background: #050a14; }
.feature-card.mystery { border-style: dashed; opacity: 0.8; }

.waitlist {
  display: flex;
  gap: 12px;
  width: min(700px, 100%);
  margin-top: 26px;
}
.waitlist input { flex: 1; }
input, select, textarea {
  width: 100%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 13px 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 3px rgba(26, 107, 255, 0.2);
}
input::placeholder, textarea::placeholder { color: var(--grey-500); }
select option { color: var(--white); background: var(--navy-mid); }
textarea { min-height: 140px; resize: vertical; }
label { display: grid; gap: 7px; color: var(--grey-300); font-weight: 750; font-size: 13px; }
.form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.success-msg { display: none; margin-top: 14px; color: var(--success); font-weight: 850; }
.success-msg.show { display: block; }

.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--navy-border);
  padding: 62px 0 22px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1.1fr 1fr; gap: 34px; }
.footer h4 { margin: 0 0 14px; color: var(--white); }
.footer p, .footer a, .footer span { color: var(--grey-500); }
.footer a:hover { color: var(--sky-blue); }
.footer-links { display: grid; gap: 8px; }
.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--navy-border);
  color: var(--grey-500);
  font-size: 13px;
}

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }
.fade-up-d5 { transition-delay: 0.5s; }
.fade-up-d6 { transition-delay: 0.6s; }

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.42; transform: scale(0.72); }
}
@keyframes particleDrift {
  0% { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .fade-up { opacity: 1; transform: none; }
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .mobile-toggle { display: inline-flex; }
  .mobile-menu.open { display: block; }
  .mobile-menu.container {
    width: 100%;
    max-width: none;
    padding: 12px 20px 18px;
  }
  .mobile-menu a {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-grid, .split, .grid-3, .grid-2, .footer-grid, .service-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid, .hero-centered, .hero-feature .hero-centered, .hero-compact .hero-grid, .hero-compact .hero-centered { padding: 36px 0 46px; }
  .section { padding: 68px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; max-width: none; }
  .metric-grid, .trust-items, .form-row { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--navy-border); }
  .trust-item:last-child { border-bottom: 0; }
  .waitlist { flex-direction: column; }
  h1 { font-size: clamp(32px, 10vw, 46px); }
  .nav-inner { height: 64px; }
  .nav { height: 64px; }
  .page-main { padding-top: 64px; }
}
