:root {
  --bg: #07101d;
  --bg-2: #0a1626;
  --panel: #0e1b2c;
  --ink: #f7fbff;
  --muted: #aab8c8;
  --cyan: #10b7d2;
  --cyan-2: #22d3ee;
  --blue: #0e7fd7;
  --line: rgba(255,255,255,.10);
  --surface: #ffffff;
  --surface-muted: #f4f8fb;
  --text-dark: #10243b;
  --shadow: 0 24px 70px rgba(0,0,0,.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: var(--surface);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 15, 28, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  font-weight: 800;
  font-size: 1.05rem;
  margin-right: auto;
}

.brand small {
  font-size: .78rem;
  color: #a7b7c9;
  font-weight: 600;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: left center;
  border-radius: 10px;
}

.desktop-nav {
  display: flex;
  gap: 24px;
}

.desktop-nav a {
  text-decoration: none;
  color: #c8d4e2;
  font-size: .92rem;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 12px 30px rgba(16, 183, 210, .22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(16, 183, 210, .30);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  border-radius: 12px;
  font-size: .9rem;
}

.button-secondary {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 82% 12%, rgba(15, 183, 210, .18), transparent 30%),
    linear-gradient(135deg, #06101d 0%, #071525 58%, #091c31 100%);
  padding: 100px 0 88px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 120px;
  background:
    linear-gradient(165deg, transparent 45%, rgba(16,183,210,.17) 46%, rgba(16,183,210,.17) 53%, transparent 54%),
    linear-gradient(175deg, transparent 48%, rgba(14,127,215,.35) 49%, rgba(14,127,215,.35) 58%, transparent 59%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: .25;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  background: var(--cyan);
  left: -180px;
  top: 80px;
}

.hero-glow-two {
  width: 320px;
  height: 320px;
  background: var(--blue);
  right: -130px;
  bottom: 10px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 66px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  margin: 22px 0 22px;
  max-width: 680px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, #22d3ee, #0e87e4);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 680px;
  color: #c0cedc;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.pilot-note {
  margin-top: 20px;
  color: #8da3b8;
  font-size: .88rem;
  font-weight: 600;
}

.hero-art {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.12);
  background: #020b18;
}

.hero-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: contain;
  object-position: center;
}

.trust-strip {
  background: white;
  border-bottom: 1px solid #e8eef4;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  padding: 28px 30px;
  border-right: 1px solid #e8eef4;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong {
  display: block;
  color: #0d2c4b;
  margin-bottom: 4px;
}

.trust-grid span {
  color: #66798d;
  font-size: .92rem;
}

.section {
  padding: 94px 0;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.section h2,
.final-cta h2 {
  margin: 14px 0 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.section-copy {
  font-size: 1.08rem;
  color: #53677b;
}

.section-copy p:first-child {
  margin-top: 0;
}

.section-dark {
  color: white;
  background:
    radial-gradient(circle at 10% 0%, rgba(16,183,210,.15), transparent 30%),
    linear-gradient(135deg, #081320, #0a192a);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.section-heading.centered .section-kicker {
  justify-content: center;
}

.section-heading p {
  color: #9fb0c1;
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
}


.feature-card h3 {
  margin: 0 0 8px;
}

.feature-card p {
  margin: 0;
  color: #aab9c8;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  padding: 26px;
  border-radius: 20px;
  background: var(--surface-muted);
  border: 1px solid #e5edf4;
}

.step-number {
  color: var(--cyan);
  font-size: 1.6rem;
  font-weight: 900;
}

.step h3 {
  margin: 0 0 6px;
}

.step p {
  margin: 0;
  color: #5f7285;
}

.cta-section {
  padding-top: 24px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 46px;
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at 20% 20%, rgba(34,211,238,.18), transparent 28%),
    linear-gradient(135deg, #071220, #0b1e34);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.cta-panel p {
  color: #b3c2d0;
  max-width: 760px;
}

.cta-action {
  display: grid;
  gap: 12px;
  min-width: 220px;
}

.cta-action span {
  max-width: 220px;
  color: #8ea3b7;
  font-size: .8rem;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

details {
  padding: 22px 24px;
  border-radius: 18px;
  background: var(--surface-muted);
  border: 1px solid #e5edf4;
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: #0c2d4d;
}

details p {
  margin-bottom: 0;
  color: #5e7184;
}

.final-cta {
  color: white;
  background: linear-gradient(135deg, #0e7fd7, #10b7d2);
  padding: 68px 0;
}

.final-cta .section-kicker {
  color: white;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta .button {
  background: white;
  color: #0d578c;
  box-shadow: none;
  min-width: 190px;
}

footer {
  color: #a7b7c6;
  background: #06101b;
  padding: 30px 0;
}

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

.footer-inner strong {
  color: white;
  margin-right: 8px;
}

.footer-inner p {
  margin: 0;
  font-size: .9rem;
}

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

  .hero-grid,
  .split,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-art {
    max-width: 720px;
  }

  .trust-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div {
    border-right: 0;
    border-bottom: 1px solid #e8eef4;
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header .button-small {
    display: none;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 30px 24px;
  }

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