:root {
  --bg-1: #030d2a;
  --bg-2: #041437;
  --ink: #0f1e3d;
  --paper: #ffffff;
  --muted: #6f82a7;
  --line: rgba(16, 34, 74, 0.13);
  --blue: #1d62e9;
  --teal: #22d6d0;
  --teal-deep: #06a9bf;
  --purple: #7857ff;
  --shadow-soft: 0 14px 30px rgba(7, 26, 64, 0.14);
  --shadow-hero: 0 24px 70px rgba(5, 17, 46, 0.55);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ecf2fd 0%, #f8fbff 45%, #ffffff 100%);
  line-height: 1.55;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(700px 360px at 12% -5%, rgba(34, 214, 208, 0.14), transparent 70%),
    radial-gradient(900px 440px at 100% -6%, rgba(120, 87, 255, 0.13), transparent 68%);
}

.topbar-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 12px 20px;
}

.topbar {
  width: min(1180px, 96vw);
  margin: 0 auto;
  padding: 10px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 34, 74, 0.1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.status-pill {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(30, 98, 209, 0.25);
  background: linear-gradient(135deg, rgba(29, 98, 233, 0.12), rgba(34, 214, 208, 0.14));
  color: #1a4da8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand img {
  width: clamp(170px, 24vw, 290px);
  display: block;
}

.brand {
  align-self: center;
}

.topnav {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding-top: 6px;
}

.topnav a {
  text-decoration: none;
  color: #32466e;
  font-weight: 700;
  font-size: 0.95rem;
}

.topnav a:hover {
  color: var(--blue);
}

.topbar > .status-pill,
.topbar > .btn {
  align-self: flex-start;
  margin-top: 4px;
}

.shell {
  width: min(1180px, 96vw);
  margin: 8px auto 46px;
  display: grid;
  gap: 18px;
}

.hero {
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 44px);
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 24px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(118deg, rgba(3, 19, 53, 0.82), rgba(7, 33, 88, 0.68)),
    radial-gradient(circle at 0% 0%, rgba(34, 214, 208, 0.3), transparent 40%),
    radial-gradient(circle at 98% 8%, rgba(120, 87, 255, 0.26), transparent 45%),
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
  color: #ecf4ff;
  box-shadow: var(--shadow-hero);
  border: 1px solid rgba(137, 166, 225, 0.2);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -150px;
  top: -180px;
  background: radial-gradient(circle, rgba(34, 214, 208, 0.22), transparent 70%);
}

.hero::after {
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.28;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.6px) 0 0/150px 130px,
    radial-gradient(circle at 72% 28%, rgba(128, 232, 255, 0.9) 0 1.2px, transparent 1.8px) 0 0/180px 150px,
    radial-gradient(circle at 46% 74%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.5px) 0 0/170px 140px,
    radial-gradient(circle at 86% 62%, rgba(123, 170, 255, 0.75) 0 1px, transparent 1.5px) 0 0/190px 160px;
  opacity: 0.5;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: rgba(206, 236, 255, 0.92);
}

.launch-note {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(168, 219, 255, 0.38);
  background: rgba(255, 255, 255, 0.09);
  color: #d7eeff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2rem, 5.3vw, 4.1rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.subheadline {
  margin: 10px 0 14px;
  font-weight: 800;
  font-size: clamp(1rem, 2.4vw, 1.48rem);
  color: #39ddff;
  text-shadow: 0 0 12px rgba(57, 221, 255, 0.34);
}

.hero-copy {
  background: linear-gradient(125deg, rgba(12, 30, 72, 0.45), rgba(9, 36, 83, 0.2));
  border: 1px solid rgba(183, 213, 255, 0.22);
  border-radius: 18px;
  padding: clamp(16px, 2vw, 24px);
  backdrop-filter: blur(5px);
}

.hero-copy p {
  max-width: 60ch;
  margin: 0;
  color: rgba(230, 243, 255, 0.92);
}

.hero-cta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-surface {
  width: 100%;
  min-height: 320px;
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(142deg, rgba(255, 255, 255, 0.96), rgba(227, 240, 255, 0.88));
  border: 1px solid rgba(210, 228, 255, 0.95);
  box-shadow: 0 16px 42px rgba(5, 22, 60, 0.24);
  position: relative;
}

.preview-grid {
  margin-top: 104px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.preview-grid div {
  height: 64px;
  border-radius: 11px;
  background: linear-gradient(145deg, #0f2c67, #1a4ea5);
  opacity: 0.88;
}

.preview-grid div:nth-child(3n) {
  background: linear-gradient(145deg, #0aa3bd, #1cc8d8);
}

.metric-card {
  position: absolute;
  border-radius: 12px;
  padding: 11px 13px;
  min-width: 175px;
  background: #fff;
  border: 1px solid #dfebff;
  box-shadow: var(--shadow-soft);
}

.metric-card span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: #6d7f9d;
}

.metric-card strong {
  display: block;
  margin-top: 2px;
  font-size: 2rem;
  line-height: 1.1;
  color: #122752;
}

.metric-card small {
  display: block;
  color: #385987;
  font-weight: 700;
}

.metric-primary {
  left: -14px;
  top: 16px;
}

.metric-secondary {
  right: 12px;
  bottom: 12px;
  z-index: 4;
  border-color: #c8e8ff;
  background: linear-gradient(145deg, #ffffff, #f2f9ff);
}

.stats-row {
  margin-top: -6px;
  background:
    linear-gradient(105deg, rgba(6, 29, 77, 0.96), rgba(17, 73, 146, 0.93) 58%, rgba(7, 138, 173, 0.9));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(151, 183, 240, 0.34);
  box-shadow: 0 16px 30px rgba(8, 30, 77, 0.24);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  position: relative;
}

.stats-row::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 35%);
}

.stats-row article {
  padding: 18px 14px;
  text-align: center;
  border-right: 1px solid rgba(196, 223, 255, 0.28);
  position: relative;
  z-index: 1;
}

.stats-row article:last-child {
  border-right: none;
}

.stats-row strong {
  display: block;
  font-size: clamp(1.1rem, 2.1vw, 1.55rem);
  line-height: 1.1;
  font-family: "Sora", "Manrope", sans-serif;
  color: #f6fbff;
  letter-spacing: -0.02em;
}

.stats-row span {
  color: rgba(223, 239, 255, 0.92);
  font-weight: 700;
  font-size: 0.98rem;
}

.panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(104, 142, 209, 0.24);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(241, 249, 255, 0.94) 62%, rgba(234, 245, 255, 0.94));
  box-shadow: var(--shadow-soft);
  padding: clamp(20px, 2.5vw, 34px);
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(34, 214, 208, 0.85), rgba(29, 98, 233, 0.8), rgba(120, 87, 255, 0.8));
  pointer-events: none;
}

#problem-solution {
  background:
    radial-gradient(320px 140px at 0% 0%, rgba(34, 214, 208, 0.18), transparent 70%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(240, 249, 255, 0.95) 55%, rgba(235, 247, 255, 0.95));
}

#pilot-access {
  background:
    radial-gradient(300px 140px at 100% 0%, rgba(120, 87, 255, 0.16), transparent 70%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(242, 247, 255, 0.95) 58%, rgba(236, 248, 255, 0.95));
}

#contact-form {
  background:
    radial-gradient(300px 140px at 0% 0%, rgba(29, 98, 233, 0.16), transparent 70%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(240, 247, 255, 0.95) 58%, rgba(232, 247, 250, 0.95));
}

.panel h2 {
  margin: 0 0 10px;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: #132959;
}

.panel p {
  margin: 0 0 10px;
  color: #37527f;
  font-size: 1.05rem;
}

.feature-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li {
  border: 1px solid rgba(18, 43, 88, 0.13);
  border-radius: 12px;
  padding: 12px 14px;
  color: #203f72;
  background: #f7fbff;
}

.section-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pilot-form,
.contact-form {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.pilot-form {
  grid-template-columns: minmax(240px, 1fr) 220px auto;
}

.contact-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.input {
  width: 100%;
  border: 1px solid rgba(20, 43, 90, 0.2);
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
  color: #132959;
  background: #ffffff;
}

.input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 98, 233, 0.18);
}

.textarea {
  min-height: 130px;
  resize: vertical;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 11px 18px;
  font-weight: 800;
  font-size: 0.98rem;
  transition: transform .14s ease, box-shadow .14s ease, filter .14s ease;
  cursor: pointer;
  font-family: "Sora", "Manrope", sans-serif;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #326bf2);
  color: #fff;
  box-shadow: 0 10px 20px rgba(29, 98, 233, 0.26);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: #fff;
  box-shadow: 0 10px 20px rgba(12, 168, 191, 0.26);
}

.btn-light {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  color: #123065;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(207, 228, 255, 0.46);
  color: #ebf5ff;
}

.site-footer {
  text-align: center;
  padding: 10px 0 2px;
  color: #60759d;
  font-weight: 600;
}

.site-footer a {
  color: #1a58d0;
  text-decoration: none;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .metric-primary,
  .metric-secondary {
    position: static;
    margin-bottom: 10px;
  }

  .preview-grid {
    margin-top: 8px;
  }
}

@media (max-width: 880px) {
  .topnav {
    display: none;
  }

  .status-pill {
    display: none;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row article:nth-child(2n) {
    border-right: none;
  }

  .pilot-form {
    grid-template-columns: 1fr;
  }

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

  .btn {
    width: 100%;
  }

  .section-actions {
    display: grid;
  }
}
