:root {
  --ink: #071426;
  --ink-soft: #415168;
  --navy: #06101f;
  --navy-2: #0a1b31;
  --panel: #0c223d;
  --blue: #2864f0;
  --blue-bright: #3d7cff;
  --cyan: #5ce1f5;
  --violet: #8b7bff;
  --white: #ffffff;
  --mist: #f3f7fb;
  --line: #dce5ef;
  --green: #45e0a8;
  --shadow: 0 24px 70px rgba(16, 42, 80, 0.13);
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(7, 20, 38, 0.08);
  box-shadow: 0 8px 35px rgba(7, 20, 38, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(calc(100% - 64px), 1760px);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 172px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.6vw, 30px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.73);
  transition: color 180ms ease;
  white-space: nowrap;
}

.site-header.scrolled .desktop-nav a {
  color: var(--ink-soft);
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.site-header.scrolled .desktop-nav a:hover {
  color: var(--white);
}

.site-header.scrolled .desktop-nav a:hover {
  color: var(--blue);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.language-ribbon { min-height: 32px; padding: 0 10px; display: inline-flex; align-items: center; gap: 6px; color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); border-radius: 8px; font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.language-ribbon small { font-size: 9px; font-weight: 600; letter-spacing: 0; opacity: .75; }
.site-header.scrolled .language-ribbon { color: #155dc5; background: #edf4ff; border-color: #d5e5fb; }
.mobile-language { width: max-content; color: #155dc5; background: #edf4ff; border-color: #d5e5fb; }

.text-button,
.menu-toggle {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.text-button {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.account-create-button { padding: 9px 13px; color: #fff; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.28); border-radius: 9px; }
.site-header.scrolled .account-create-button { color: var(--blue); background: #edf4ff; border-color: #d6e5ff; }
.hero-account-actions { margin-top: 17px; display: flex; align-items: center; flex-wrap: wrap; gap: 10px 16px; color: #b9cadc; font-size: 12px; }
.hero-account-actions a { padding-bottom: 2px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.55); font-weight: 800; }
.hero-account-actions a:last-child { padding: 8px 12px; color: #071525; background: #fff; border: 0; border-radius: 8px; }
.account-manage { margin-bottom: 10px; text-decoration: none; }

.install-button {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(130, 197, 255, 0.28);
  color: #cceaff;
  background: rgba(64, 144, 255, 0.1);
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

@media (max-width: 1500px) {
  .nav-wrap { width: min(calc(100% - 36px), 1440px); gap: 18px; }
  .brand-logo { width: 150px; }
  .desktop-nav { gap: 16px; }
  .desktop-nav a,.text-button { font-size: 12px; }
  .language-ribbon small { display: none; }
  .button-small { padding-inline: 13px; font-size: 11px; }
}

.install-button:hover {
  color: var(--white);
  background: rgba(64, 144, 255, 0.2);
  border-color: rgba(130, 197, 255, 0.5);
}

.site-header.scrolled .install-button {
  color: var(--blue);
  background: #edf4ff;
  border-color: #d8e6ff;
}

.button-install {
  color: var(--blue);
  background: #edf4ff;
}

.button {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 0;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #3979ff, #1b52d5);
  box-shadow: 0 13px 30px rgba(29, 86, 219, 0.28);
}

.button-primary:hover {
  box-shadow: 0 18px 36px rgba(29, 86, 219, 0.38);
}

.button-small {
  min-height: 43px;
  padding-inline: 18px;
  font-size: 13px;
  border-radius: 10px;
}

.button-large {
  min-height: 57px;
  padding-inline: 28px;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.button-full {
  width: 100%;
}

.arrow-icon {
  font-size: 20px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 57% 38%, rgba(30, 116, 255, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(3, 11, 23, 0.98) 0%, rgba(4, 14, 29, 0.92) 31%, rgba(4, 15, 31, 0.36) 63%, rgba(4, 12, 24, 0.14) 100%),
    linear-gradient(0deg, rgba(3, 10, 20, 0.64), transparent 45%);
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("/assets/hero-atc.png") center / cover no-repeat;
  opacity: 0.9;
  animation: heroReveal 1.2s ease both;
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(110, 188, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 188, 255, 0.16) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, black, transparent 65%);
}

.hero-layout {
  padding-top: 118px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: 80px;
}

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

.eyebrow-pill {
  width: fit-content;
  padding: 8px 13px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #b9d8ff;
  background: rgba(58, 122, 255, 0.12);
  border: 1px solid rgba(104, 161, 255, 0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

.live-dot,
.status-dot {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(92, 225, 245, 0.12), 0 0 13px var(--cyan);
}

.hero h1,
.section-heading h2,
.simulator-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.hero h1 {
  margin-top: 24px;
  font-size: clamp(47px, 5.15vw, 76px);
  text-wrap: balance;
}

.hero h1 span,
.section-heading h2 span,
.simulator-copy h2 span {
  color: #67bbff;
}

.hero-copy > p {
  max-width: 600px;
  margin: 26px 0 0;
  color: rgba(227, 238, 251, 0.7);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
}

.play-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding-left: 2px;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 10px;
  transition: background 180ms ease, transform 180ms ease;
}

.video-link:hover .play-button {
  background: rgba(92, 225, 245, 0.16);
  transform: scale(1.08);
}

.hero-proof {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 35px;
  height: 35px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, #194171, #2a6698);
  border: 2px solid #07162b;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: linear-gradient(145deg, #c9a07b, #725541);
}

.avatar-stack span:nth-child(2) {
  background: linear-gradient(145deg, #617ac5, #384469);
}

.avatar-stack span:last-child {
  background: #173051;
}

.stars {
  color: #ffc95c;
  font-size: 11px;
  letter-spacing: 1px;
}

.stars strong {
  margin-left: 5px;
  color: var(--white);
  letter-spacing: 0;
}

.hero-proof small {
  margin-top: 3px;
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.hero-flight-card {
  align-self: end;
  width: 100%;
  max-width: 370px;
  margin: 0 0 76px auto;
  overflow: hidden;
  background: rgba(6, 23, 43, 0.68);
  border: 1px solid rgba(138, 196, 255, 0.19);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.flight-card-top {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.flight-card-top strong {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  box-shadow: 0 0 9px var(--green);
}

.mini-radar {
  position: relative;
  height: 185px;
  overflow: hidden;
  background:
    linear-gradient(rgba(79, 176, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 176, 255, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 50% 70%, rgba(22, 102, 213, 0.18), transparent 62%);
  background-size: 24px 24px, 24px 24px, auto;
}

.radar-ring {
  position: absolute;
  left: 50%;
  bottom: -30px;
  border: 1px solid rgba(89, 192, 255, 0.23);
  border-radius: 50%;
  transform: translateX(-50%);
}

.ring-one {
  width: 170px;
  height: 170px;
}

.ring-two {
  width: 280px;
  height: 280px;
}

.radar-center {
  position: absolute;
  bottom: 48px;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--cyan);
  transform: translateX(-50%);
}

.radar-sweep {
  position: absolute;
  bottom: 50px;
  left: 50%;
  width: 135px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transform-origin: left;
  animation: radarSweep 5s linear infinite;
}

.flight-point {
  position: absolute;
  color: #9bddff;
  font-family: monospace;
  font-size: 8px;
}

.flight-point i {
  width: 5px;
  height: 5px;
  display: inline-block;
  background: #67e9ff;
  border-radius: 1px;
  box-shadow: 0 0 7px #67e9ff;
}

.point-one { top: 45px; left: 23%; }
.point-two { top: 92px; right: 16%; }
.point-three { top: 124px; left: 14%; }

.flight-metrics {
  padding: 14px 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(3, 13, 26, 0.4);
}

.flight-metrics div {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.flight-metrics div:last-child {
  border-right: 0;
}

.flight-metrics strong,
.flight-metrics span {
  display: block;
}

.flight-metrics strong {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}

.flight-metrics span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transform: translateX(-50%);
}

.scroll-hint span {
  position: relative;
  width: 18px;
  height: 27px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
}

.scroll-hint span::after {
  position: absolute;
  top: 5px;
  left: 7px;
  width: 2px;
  height: 5px;
  content: "";
  background: var(--white);
  border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}

.trust-strip {
  padding: 25px 0;
  background: #f8fafc;
  border-bottom: 1px solid #eef2f6;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.trust-label {
  color: #8c98a7;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.trust-logos {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 4vw, 55px);
  color: #8090a3;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.trust-logos span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.trust-logos i {
  color: #a1adba;
  font-style: normal;
  font-size: 18px;
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 650px;
}

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

.section-kicker {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section-kicker.light {
  color: #71c8ff;
}

.section-heading h2,
.simulator-copy h2 {
  font-size: clamp(36px, 4vw, 51px);
}

.section-heading h2 span {
  color: var(--blue);
}

.section-heading p {
  margin: 20px 0 0;
  color: #69798c;
  font-size: 16px;
  line-height: 1.7;
}

.products-section {
  position: relative;
  background:
    radial-gradient(circle at 8% 12%, rgba(57, 121, 255, 0.06), transparent 20%),
    #fff;
}

.product-showcase {
  position: relative;
  margin-top: 50px;
}

.product-showcase-viewport {
  overflow: hidden;
  background: #071526;
  border: 1px solid #dce6f0;
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(7, 30, 57, 0.16);
  touch-action: pan-y;
}

.product-showcase-track {
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.product-showcase-slide {
  position: relative;
  min-width: 100%;
  margin: 0;
  aspect-ratio: 16 / 7.2;
  overflow: hidden;
  background: #071526;
}

.product-showcase-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(3, 12, 23, 0.88) 100%);
  pointer-events: none;
}

.product-showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
}

.product-showcase-slide figcaption {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 31px;
  left: 34px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 3px 14px;
  color: #fff;
}

.product-showcase-slide figcaption > span {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #9ed9ff;
  background: rgba(32, 112, 226, 0.22);
  border: 1px solid rgba(132, 207, 255, 0.35);
  border-radius: 11px;
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.product-showcase-slide figcaption strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: -0.035em;
}

.product-showcase-slide figcaption small {
  color: rgba(232, 243, 252, 0.72);
  font-size: 12px;
}

.product-carousel-arrow {
  position: absolute;
  z-index: 3;
  top: calc(50% - 31px);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(5, 20, 38, 0.55);
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 180ms ease, transform 180ms ease;
}

.product-carousel-arrow:hover {
  background: var(--blue);
  transform: scale(1.06);
}

.product-carousel-arrow.previous { left: 18px; }
.product-carousel-arrow.next { right: 18px; }

.product-carousel-footer {
  margin-top: 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.product-carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  background: #cbd6e2;
  border-radius: 999px;
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.product-carousel-dots button.active {
  width: 30px;
  background: var(--blue);
}

.product-carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-carousel-toggle {
  width: 30px;
  height: 30px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid #d9e3ed;
  color: #607188;
  background: #fff;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.product-carousel-status {
  color: #8a99aa;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.product-carousel-status strong { color: var(--blue); }

.product-tabs {
  width: fit-content;
  margin: 36px auto 44px;
  padding: 5px;
  display: flex;
  gap: 2px;
  background: #f0f4f8;
  border-radius: 12px;
}

.tab {
  padding: 10px 17px;
  border: 0;
  color: #718094;
  background: transparent;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.tab.active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(24, 49, 80, 0.09);
}

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

.product-card {
  position: relative;
  min-height: 435px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #e6edf4;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(15, 48, 84, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  border-color: #cbdcf1;
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.product-visual {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #091b32;
}

.product-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(79, 169, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 169, 255, 0.09) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(55, 126, 255, 0.22), transparent 60%);
  background-size: 26px 26px, 26px 26px, auto;
}

.visual-map::after {
  position: absolute;
  width: 270px;
  height: 130px;
  top: 32px;
  left: 50%;
  content: "";
  border: 1px solid rgba(98, 216, 255, 0.35);
  border-radius: 50%;
  box-shadow: inset 0 0 45px rgba(19, 106, 215, 0.3), 0 0 35px rgba(18, 110, 226, 0.15);
  transform: translateX(-50%) rotate(-8deg);
}

.visual-map .visual-plane,
.visual-map .visual-plane::before,
.visual-map .visual-plane::after {
  position: absolute;
}

.visual-plane {
  z-index: 2;
  top: 74px;
  left: 48%;
  color: #9eecff;
  font-size: 28px;
  text-shadow: 0 0 20px #36cbff;
  transform: rotate(-18deg);
}

.visual-plane::after {
  top: 14px;
  left: -90px;
  width: 100px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, #55d7ff);
}

.visual-map-2d {
  background: #edf4fa;
}

.visual-map-2d::before {
  background:
    linear-gradient(rgba(31, 91, 147, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 91, 147, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 56% 46%, transparent 0 16%, rgba(33, 96, 168, 0.15) 16.3% 16.8%, transparent 17.2% 30%, rgba(33, 96, 168, 0.12) 30.3% 30.8%, transparent 31%);
  background-size: 22px 22px, 22px 22px, auto;
}

.map-route {
  position: absolute;
  z-index: 2;
  top: 86px;
  left: 40px;
  width: 290px;
  height: 55px;
  border-top: 2px dashed #337eea;
  border-radius: 50%;
  transform: rotate(-9deg);
}

.map-route::before,
.map-route::after {
  position: absolute;
  width: 9px;
  height: 9px;
  content: "";
  background: #1e63d7;
  border: 3px solid #c7dcff;
  border-radius: 50%;
}

.map-route::before { top: -6px; left: 13px; }
.map-route::after { top: -6px; right: 19px; }

.visual-academy {
  background: linear-gradient(145deg, #101d42, #2b255a);
}

.academy-screen {
  position: absolute;
  z-index: 2;
  inset: 28px 46px;
  padding: 16px;
  background: rgba(9, 18, 43, 0.85);
  border: 1px solid rgba(167, 150, 255, 0.35);
  border-radius: 10px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
  transform: perspective(500px) rotateX(4deg) rotateY(-8deg);
}

.academy-screen span {
  width: 58%;
  height: 7px;
  display: block;
  background: #8f82ff;
  border-radius: 6px;
}

.academy-screen i {
  width: 100%;
  height: 46px;
  margin: 12px 0;
  display: block;
  background: linear-gradient(135deg, rgba(96, 216, 255, 0.35), rgba(120, 93, 255, 0.13));
  border-radius: 6px;
}

.academy-screen b {
  width: 75%;
  height: 4px;
  display: block;
  background: rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  box-shadow: 0 9px 0 rgba(255, 255, 255, 0.18), 0 18px 0 rgba(255, 255, 255, 0.12);
}

.product-badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  padding: 6px 9px;
  color: #d9f8ff;
  background: rgba(5, 18, 37, 0.76);
  border: 1px solid rgba(132, 219, 255, 0.2);
  border-radius: 7px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(7px);
}

.product-body {
  padding: 25px 25px 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-eyebrow {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.product-card h3 {
  margin: 8px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.product-card p {
  margin: 0;
  color: #748297;
  font-size: 13px;
  line-height: 1.65;
}

.product-features {
  margin: 17px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.product-features li {
  padding: 5px 8px;
  color: #5f6f84;
  background: #f2f6fa;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 600;
}

.product-footer {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #edf1f5;
}

.product-price {
  font-size: 10px;
  color: #8995a5;
}

.product-price strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.card-link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eef4ff;
  border-radius: 10px;
  font-size: 17px;
  transition: color 180ms ease, background 180ms ease;
}

.product-card:hover .card-link {
  color: var(--white);
  background: var(--blue);
}

.product-card.is-hidden {
  display: none;
}

.simulator-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 40%, rgba(28, 112, 255, 0.17), transparent 28%),
    linear-gradient(145deg, #06101e, #091a30 60%, #061322);
}

.simulator-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(94, 173, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 173, 255, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(90deg, transparent, black);
}

.simulator-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.3fr;
  align-items: center;
  gap: 70px;
}

.simulator-copy h2 span {
  color: #7cc9ff;
}

.simulator-copy > p {
  margin: 22px 0 30px;
  color: rgba(221, 235, 248, 0.61);
  line-height: 1.75;
}

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

.feature-list li {
  display: flex;
  gap: 13px;
}

.feature-check {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: rgba(72, 194, 255, 0.1);
  border: 1px solid rgba(82, 203, 255, 0.2);
  border-radius: 50%;
  font-size: 11px;
}

.feature-list strong,
.feature-list small {
  display: block;
}

.feature-list strong {
  font-size: 13px;
}

.feature-list small {
  margin-top: 5px;
  color: rgba(214, 230, 245, 0.48);
  font-size: 11px;
  line-height: 1.45;
}

.simulator-console {
  position: relative;
  perspective: 1200px;
}

.console-window {
  position: relative;
  z-index: 2;
  padding: 9px;
  background: #0a1728;
  border: 1px solid rgba(115, 175, 230, 0.26);
  border-radius: 18px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
  transform: rotateY(-3deg) rotateX(1deg);
  transform-style: preserve-3d;
}

.console-toolbar {
  height: 40px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
  background: #0b1d32;
  border-radius: 11px 11px 3px 3px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 6px;
  height: 6px;
  background: #27415e;
  border-radius: 50%;
}

.console-mode {
  margin: 0 auto;
  padding: 3px;
  display: flex;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 6px;
}

.console-mode button {
  padding: 4px 9px;
  border: 0;
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  border-radius: 4px;
  font-size: 7px;
  font-weight: 700;
  cursor: pointer;
}

.console-mode button.active {
  color: var(--white);
  background: #235ec8;
}

.console-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #69eac0;
  font-size: 7px;
  font-weight: 800;
}

.console-live i {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
}

.map-stage {
  position: relative;
  aspect-ratio: 1.45;
  overflow: hidden;
  background: #071828;
  border-radius: 3px 3px 10px 10px;
  transition: filter 300ms ease;
}

.map-stage.mode-3d canvas {
  transform: perspective(800px) rotateX(7deg) scale(1.05);
}

.map-stage canvas {
  width: 100%;
  height: 100%;
  transition: transform 400ms ease;
}

.map-overlay-top {
  position: absolute;
  top: 13px;
  right: 14px;
  left: 14px;
  display: flex;
  justify-content: space-between;
  color: rgba(172, 217, 248, 0.55);
  font-family: monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.weather-box {
  position: absolute;
  top: 35px;
  left: 15px;
  width: 85px;
  padding: 9px;
  color: #c6e7fb;
  background: rgba(6, 24, 41, 0.78);
  border: 1px solid rgba(89, 169, 224, 0.2);
  border-radius: 6px;
  backdrop-filter: blur(6px);
}

.weather-box > * {
  display: block;
}

.weather-box small {
  margin-bottom: 6px;
  color: #5a86a5;
  font-size: 6px;
  letter-spacing: 0.1em;
}

.weather-box strong {
  font-family: monospace;
  font-size: 11px;
}

.weather-box strong span,
.weather-box > span {
  color: #64cff3;
}

.weather-box > span {
  margin-top: 4px;
  font-size: 7px;
}

.selected-flight {
  position: absolute;
  right: 16px;
  bottom: 54px;
  width: 180px;
  padding: 10px;
  background: rgba(5, 19, 35, 0.9);
  border: 1px solid rgba(80, 169, 232, 0.22);
  border-radius: 7px;
  backdrop-filter: blur(7px);
}

.selected-flight > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.selected-flight strong {
  color: #d7f3ff;
  font-family: monospace;
  font-size: 9px;
}

.selected-flight i {
  margin-left: auto;
  color: #58d3fb;
  font-size: 6px;
  font-style: normal;
}

.plane-glyph {
  color: var(--cyan);
  font-size: 12px;
}

.selected-flight dl {
  margin: 8px 0 0;
  padding-top: 7px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.selected-flight dl div {
  display: block;
}

.selected-flight dt {
  color: #54758f;
  font-size: 5px;
}

.selected-flight dd {
  margin: 2px 0 0;
  color: #a9cee5;
  font-family: monospace;
  font-size: 7px;
}

.console-stats {
  position: absolute;
  right: 12px;
  bottom: 9px;
  left: 12px;
  height: 34px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #6e93ad;
  background: rgba(5, 18, 32, 0.88);
  border: 1px solid rgba(94, 157, 202, 0.13);
  border-radius: 6px;
  font-size: 7px;
  backdrop-filter: blur(7px);
}

.console-stats div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.console-stats i {
  width: 4px;
  height: 4px;
  background: #4aa8f2;
  border-radius: 50%;
}

.console-stats div:nth-child(2) i { background: var(--green); }
.console-stats div:nth-child(3) i { background: #8e7aff; }

.console-stats strong {
  color: #d8eefb;
  font-family: monospace;
  font-size: 8px;
}

.console-glow {
  position: absolute;
  z-index: 0;
  right: 2%;
  bottom: -10%;
  left: 2%;
  height: 40%;
  background: rgba(28, 122, 255, 0.28);
  filter: blur(70px);
}

.capabilities-section {
  background: #f7f9fc;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 20px;
}

.capabilities-grid .section-heading {
  grid-row: span 2;
  align-self: center;
  padding-right: 65px;
}

.capability-card {
  min-height: 210px;
  padding: 28px;
  background: var(--white);
  border: 1px solid #e7edf4;
  border-radius: 16px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.capability-card:hover {
  box-shadow: 0 18px 42px rgba(23, 53, 92, 0.08);
  transform: translateY(-4px);
}

.capability-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #edf4ff;
  border-radius: 11px;
  font-size: 20px;
}

.capability-card h3 {
  margin: 20px 0 9px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.capability-card p {
  margin: 0;
  color: #758397;
  font-size: 12px;
  line-height: 1.65;
}

.about-company { margin-top: 56px; padding: clamp(28px,5vw,58px); display: grid; grid-template-columns: .6fr 2fr; gap: 50px; color: #dce9f7; background: linear-gradient(135deg,#071525,#0b2946); border-radius: 20px; box-shadow: 0 24px 65px rgba(7,31,57,.14); scroll-margin-top: 100px; opacity: 1 !important; transform: none !important; }
.about-company-label { color: #65baff; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.about-company h3 { max-width: 750px; margin: 0 0 28px; color: #fff; font: 800 clamp(25px,3.2vw,40px)/1.15 "Manrope",sans-serif; letter-spacing: -.035em; }
.about-company-text { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 30px; }
.about-company-text p { margin: 0; padding-left: 17px; position: relative; color: #b9cadd; font-size: 12px; line-height: 1.7; }
.about-company-text p::before { content: ""; position: absolute; top: .65em; left: 0; width: 6px; height: 6px; background: #4aa8ff; border-radius: 50%; }

.stats-row {
  margin-top: 65px;
  padding: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #dde5ee;
}

.stats-row div {
  padding-left: 34px;
  border-left: 1px solid #dde5ee;
}

.stats-row div:first-child {
  padding-left: 0;
  border-left: 0;
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 35px;
  letter-spacing: -0.05em;
}

.stats-row span {
  margin-top: 6px;
  color: #7d8a9b;
  font-size: 11px;
}

.courses-section {
  background: var(--white);
}

.section-heading.split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.inline-link {
  margin-bottom: 5px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.inline-link span {
  font-size: 18px;
  transition: transform 180ms ease;
}

.inline-link:hover span {
  transform: translateX(4px);
}

.course-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}

.course-card {
  overflow: hidden;
  display: block;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e5ebf2;
  border-radius: 18px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.course-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.course-cover {
  position: relative;
  height: 160px;
  padding: 19px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(145deg, #0b2b52, #0d172d);
}

.course-cover.cyan { background: linear-gradient(145deg, #0a3b55, #0b1c32); }
.course-cover.violet { background: linear-gradient(145deg, #28255b, #111735); }

.course-cover::before,
.course-cover::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(120, 211, 255, 0.19);
  border-radius: 50%;
}

.course-cover::before {
  width: 230px;
  height: 230px;
  top: -95px;
  right: -30px;
}

.course-cover::after {
  width: 135px;
  height: 135px;
  top: -50px;
  right: 18px;
}

.course-index {
  position: absolute;
  top: 19px;
  right: 20px;
  color: rgba(255, 255, 255, 0.1);
  font-family: "Manrope", sans-serif;
  font-size: 50px;
  font-weight: 800;
}

.course-level {
  position: relative;
  z-index: 2;
  padding: 6px 9px;
  color: #bfeaff;
  background: rgba(98, 201, 255, 0.12);
  border: 1px solid rgba(130, 219, 255, 0.18);
  border-radius: 6px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.course-body {
  padding: 22px;
}

.course-card h3 {
  margin: 0 0 9px;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  letter-spacing: -0.025em;
}

.course-card p {
  min-height: 40px;
  margin: 0 0 19px;
  color: #798799;
  font-size: 11px;
  line-height: 1.6;
}

.course-meta {
  padding-top: 16px;
  display: flex;
  gap: 17px;
  border-top: 1px solid #edf1f5;
  color: #778599;
  font-size: 9px;
}

.course-meta span:last-child {
  margin-left: auto;
  color: #e9ab35;
}

.testimonial-section {
  padding: 85px 0;
  color: var(--white);
  background: linear-gradient(135deg, #0b2444, #081526);
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 0.2fr 1.5fr 0.55fr;
  align-items: center;
  gap: 45px;
}

.quote-mark {
  align-self: start;
  color: #2970f0;
  font-family: Georgia, serif;
  font-size: 100px;
  line-height: 0.8;
}

blockquote {
  margin: 0;
}

blockquote > p {
  margin: 0;
  color: #e2ecf8;
  font-family: "Manrope", sans-serif;
  font-size: clamp(19px, 2.15vw, 28px);
  font-weight: 500;
  line-height: 1.55;
}

blockquote footer {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #cce8ff;
  background: linear-gradient(145deg, #225b8c, #173654);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

blockquote footer strong,
blockquote footer small {
  display: block;
}

blockquote footer strong {
  font-size: 11px;
}

blockquote footer small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 9px;
}

.quote-score {
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.quote-score strong,
.quote-score span,
.quote-score small {
  display: block;
}

.quote-score strong {
  font-family: "Manrope", sans-serif;
  font-size: 44px;
  letter-spacing: -0.06em;
}

.quote-score span {
  margin: 2px 0 8px;
  color: #ffc45b;
  font-size: 10px;
  letter-spacing: 2px;
}

.quote-score small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
}

.contact-section {
  padding: 95px 0;
  background: #f5f8fc;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 60px;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 75px;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 100%, rgba(38, 102, 239, 0.35), transparent 32%),
    linear-gradient(135deg, #071528, #0a2441);
  border-radius: 28px;
  box-shadow: 0 30px 75px rgba(10, 35, 68, 0.15);
}

.contact-card::after {
  position: absolute;
  right: -100px;
  bottom: -130px;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(91, 178, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(91, 178, 255, 0.035), 0 0 0 120px rgba(91, 178, 255, 0.02);
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 2;
}

.contact-copy h2 {
  font-size: clamp(34px, 3.3vw, 47px);
}

.contact-copy > p {
  margin: 20px 0 28px;
  color: rgba(222, 236, 250, 0.59);
  font-size: 14px;
  line-height: 1.75;
}

.contact-points {
  display: flex;
  gap: 22px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
}

.contact-points i {
  width: 17px;
  height: 17px;
  margin-right: 4px;
  display: inline-grid;
  place-items: center;
  color: var(--green);
  background: rgba(69, 224, 168, 0.11);
  border-radius: 50%;
  font-size: 8px;
  font-style: normal;
}

.contact-form {
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.contact-form label,
.modal label {
  margin-bottom: 13px;
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.modal input {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  outline: 0;
  color: var(--white);
  background: rgba(4, 14, 27, 0.42);
  border-radius: 8px;
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form select option {
  color: var(--ink);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.modal input:focus {
  border-color: rgba(84, 161, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(54, 120, 255, 0.12);
}

.contact-form ::placeholder,
.modal ::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form .button {
  min-height: 48px;
  margin-top: 2px;
  font-size: 11px;
}

.form-status {
  min-height: 16px;
  margin: 10px 0 0;
  color: #7eebc6;
  font-size: 10px;
  text-align: center;
}

.form-status.error {
  color: #ff9d9d;
}

.site-footer {
  padding: 70px 0 22px;
  color: rgba(255, 255, 255, 0.53);
  background: #050c15;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1.1fr;
  gap: 65px;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand .brand-logo {
  width: 205px;
}

.footer-brand p,
.footer-newsletter p {
  margin: 18px 0 0;
  font-size: 11px;
  line-height: 1.7;
}

.footer-column,
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-column strong,
.footer-newsletter strong {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 11px;
}

.footer-column a {
  width: fit-content;
  font-size: 10px;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-newsletter p {
  margin: -2px 0 4px;
}

.footer-newsletter form {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-newsletter input {
  min-width: 0;
  padding: 10px 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font-size: 10px;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.footer-newsletter button {
  border: 0;
  color: var(--cyan);
  background: transparent;
  cursor: pointer;
}

.newsletter-status {
  min-height: 12px;
  color: #6de2ba;
  font-size: 8px;
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 8px;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.modal {
  width: min(calc(100% - 30px), 430px);
  padding: 36px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.modal::backdrop {
  background: rgba(3, 10, 19, 0.78);
  backdrop-filter: blur(7px);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 17px;
  border: 0;
  color: #7b8898;
  background: transparent;
  font-size: 25px;
  cursor: pointer;
}

.modal-brand-logo {
  width: 210px;
  height: auto;
  margin: 0 auto;
}

.auth-tabs {
  margin-top: 24px;
  padding: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: #f0f4f8;
  border-radius: 10px;
}

.auth-tabs button {
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  color: #748397;
  background: transparent;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.auth-tabs button.active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 5px 16px rgba(17, 45, 77, 0.09);
}

.auth-heading h2 {
  margin-bottom: 7px;
}

.auth-heading p {
  margin: 0 0 22px;
  color: #788699;
  font-size: 11px;
  line-height: 1.55;
}

.auth-form .button {
  justify-content: space-between;
}

.auth-form .button b {
  font-size: 17px;
}

.auth-status {
  min-height: 17px;
  margin: 11px 0 0;
  color: #d54858;
  font-size: 10px;
  text-align: center;
}

.auth-status.success {
  color: #168965;
}

.auth-privacy {
  margin-top: 13px;
  display: block;
  color: #96a2b1;
  font-size: 8px;
  text-align: center;
}

.auth-account {
  padding-top: 26px;
  text-align: center;
}

.account-check {
  width: 52px;
  height: 52px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  color: #168965;
  background: #e7f8f2;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
}

.auth-account p {
  margin: 0 0 7px;
  color: #8190a2;
  font-size: 11px;
}

.auth-account > strong {
  display: block;
  overflow: hidden;
  color: var(--blue);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-account .button {
  margin-top: 24px;
}

.modal h2 {
  margin: 21px 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.modal > p {
  margin: 0 0 25px;
  color: #788699;
  font-size: 12px;
}

.modal label {
  color: #66758a;
}

.modal input {
  color: var(--ink);
  background: #f7f9fc;
  border-color: #e3eaf2;
}

.modal ::placeholder {
  color: #a4afbd;
}

.modal .button {
  margin-top: 8px;
}

.modal > small {
  margin-top: 20px;
  display: block;
  color: #8490a0;
  text-align: center;
}

.modal > small a {
  color: var(--blue);
  font-weight: 700;
}

.toast {
  position: fixed;
  z-index: 500;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100% - 48px));
  padding: 14px 18px;
  color: var(--white);
  background: #0b223b;
  border: 1px solid rgba(111, 194, 255, 0.25);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

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

@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.03); }
  to { opacity: 0.9; transform: scale(1); }
}

@keyframes radarSweep {
  to { transform: rotate(360deg); }
}

@keyframes scrollDot {
  0%, 100% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  70% { opacity: 0; transform: translateY(9px); }
}

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-layout {
    gap: 30px;
  }

  .hero-flight-card {
    max-width: 320px;
  }

  .trust-logos span:nth-last-child(-n + 2) {
    display: none;
  }

  .simulator-layout {
    gap: 40px;
  }

  .capabilities-grid .section-heading {
    padding-right: 25px;
  }

  .contact-card {
    padding: 48px;
    gap: 45px;
  }
}

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

  .menu-toggle {
    width: 32px;
    height: 32px;
    display: grid;
    place-content: center;
    gap: 6px;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    background: currentColor;
    border-radius: 2px;
    transition: transform 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: 72px;
    right: 16px;
    left: 16px;
    padding: 22px;
    display: grid;
    gap: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #e5ebf2;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(6, 19, 36, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 12px 7px;
    border-bottom: 1px solid #edf1f5;
    font-weight: 700;
  }

  .mobile-menu .button {
    margin-top: 10px;
    color: var(--white);
  }

  .mobile-menu .button-account {
    margin-top: 6px;
    color: var(--blue);
    background: #edf4ff;
  }

  .hero {
    min-height: 820px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero-flight-card {
    position: absolute;
    right: 20px;
    bottom: 15px;
    width: 270px;
    margin: 0;
    opacity: 0.72;
  }

  .mini-radar {
    height: 120px;
  }

  .scroll-hint {
    display: none;
  }

  .product-showcase-slide {
    aspect-ratio: 16 / 9;
  }

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

  .product-card:last-child,
  .course-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
    justify-self: center;
  }

  .simulator-layout {
    grid-template-columns: 1fr;
  }

  .simulator-copy {
    max-width: 630px;
  }

  .simulator-console {
    max-width: 680px;
  }

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

  .capabilities-grid .section-heading {
    grid-column: 1 / -1;
    grid-row: auto;
    padding: 0 0 25px;
  }

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

  .contact-copy {
    max-width: 600px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
    gap: 40px;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
    max-width: 420px;
  }

  .about-company { grid-template-columns: 1fr; gap: 20px; }
  .about-company-text { grid-template-columns: 1fr; }
}

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

  .nav-wrap {
    height: 68px;
  }

  .brand {
    max-width: 148px;
  }

  .brand-logo {
    width: 148px;
  }

  .site-header.scrolled {
    backdrop-filter: blur(12px);
  }

  .hero {
    min-height: 800px;
    align-items: flex-start;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(3, 11, 23, 0.96) 0%, rgba(4, 14, 29, 0.78) 50%, rgba(4, 12, 24, 0.63) 100%),
      linear-gradient(0deg, rgba(3, 10, 20, 0.7), transparent);
  }

  .hero-media {
    background-position: 61% center;
  }

  .hero-layout {
    padding-top: 128px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(40px, 12vw, 55px);
    line-height: 1.06;
  }

  .hero-copy > p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 28px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .button-large {
    width: 100%;
  }

  .hero-proof {
    margin-top: 26px;
  }

  .hero-flight-card {
    display: none;
  }

  .trust-strip {
    padding: 22px 0;
  }

  .trust-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .trust-logos {
    width: 100%;
    justify-content: space-between;
    gap: 15px;
  }

  .trust-logos span {
    font-size: 11px;
  }

  .trust-logos span:nth-child(n + 4) {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading h2,
  .simulator-copy h2 {
    font-size: 34px;
  }

  .section-heading p {
    font-size: 14px;
  }

  .product-showcase {
    margin-top: 36px;
  }

  .product-showcase-viewport {
    border-radius: 16px;
  }

  .product-showcase-slide {
    aspect-ratio: 4 / 3;
  }

  .product-showcase-slide figcaption {
    right: 16px;
    bottom: 16px;
    left: 16px;
    gap: 2px 10px;
  }

  .product-showcase-slide figcaption > span {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    font-size: 9px;
  }

  .product-showcase-slide figcaption strong {
    font-size: 17px;
  }

  .product-showcase-slide figcaption small {
    display: none;
  }

  .product-carousel-arrow {
    top: calc(50% - 35px);
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .product-carousel-arrow.previous { left: 8px; }
  .product-carousel-arrow.next { right: 8px; }

  .product-tabs {
    margin-top: 30px;
  }

  .product-tabs {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .tab {
    white-space: nowrap;
  }

  .product-grid,
  .course-grid {
    grid-template-columns: 1fr;
  }

  .product-card:last-child,
  .course-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .product-card {
    min-height: 420px;
  }

  .simulator-layout {
    gap: 50px;
  }

  .console-window {
    padding: 6px;
    transform: none;
  }

  .map-stage {
    aspect-ratio: 1.18;
  }

  .selected-flight {
    width: 155px;
  }

  .console-stats {
    gap: 10px;
  }

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

  .capability-card {
    min-height: auto;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
  }

  .stats-row div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .stats-row strong {
    font-size: 30px;
  }

  .section-heading.split {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .testimonial-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .quote-mark {
    font-size: 70px;
  }

  .quote-score {
    padding: 25px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .quote-score strong {
    font-size: 35px;
  }

  .contact-section {
    padding: 70px 0;
  }

  .contact-card {
    width: min(calc(100% - 18px), var(--container));
    padding: 34px 22px;
    gap: 34px;
    border-radius: 22px;
  }

  .contact-copy h2 {
    font-size: 33px;
  }

  .contact-points {
    flex-direction: column;
    gap: 10px;
  }

  .contact-form {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
  }

  .footer-brand,
  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
