/* ============================================================
   RADIANT RUNWAYS — style.css
   Brand colors (brand book, Mor Media):
     --black  #000000   Pure Black
     --yellow #FFC700   Golden Yellow
     --blue   #0500BF   Ultramarine Blue
     --white  #FFFFFF   Pure White
   Primary font: Enorm — add via @font-face when file is available (see comment below)
   Fallback: Poppins (Google Fonts)
   ============================================================ */

/*
@font-face {
  font-family: 'Enorm';
  src: url('../fonts/Enorm-Bold.woff2') format('woff2');
  font-weight: 700 800;
  font-display: swap;
}
*/

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black:   #000000;
  --yellow:  #FFC700;
  --blue:    #0500BF;
  --white:   #FFFFFF;

  --dark:      #0E0E24;
  --blue-dk:   #04009A;
  --yellow-dk: #D4A800;
  --muted:     rgba(255,255,255,.75);
  --muted-blk: rgba(0,0,0,.6);

  --font: 'Poppins', sans-serif;
  --wrap: 1240px;
  --r:    .6rem;
  --gap:  clamp(5rem, 11vw, 8rem);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: #07071A;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.8;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── Layout ─────────────────────────────────────────────────── */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem); }
.sec  { padding-block: var(--gap); }

/* ── Typography ─────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .85rem;
}
.sec-h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.sec-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.9;
}
.gold { color: var(--yellow); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  border-radius: 2rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn-yellow  { background: var(--yellow);      color: var(--black); border-color: var(--yellow); }
.btn-yellow:hover { background: var(--yellow-dk); border-color: var(--yellow-dk); }
.btn-out-wht { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-out-wht:hover { border-color: var(--white); background: rgba(255,255,255,.07); }
.btn-out-ylw { background: transparent; color: var(--yellow); border-color: var(--yellow); }
.btn-out-ylw:hover { background: var(--yellow); color: var(--black); }
.btn-blk { background: var(--black); color: var(--white); border-color: var(--black); }

/* ── #nav (scoped — does NOT affect footer nav) ──────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1rem 0;
  background: transparent;
  transition: padding .3s, background .3s;
}
#nav.scrolled {
  padding: .6rem 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}
.logo-wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.logo-radiant  { font-size: 1rem; font-weight: 800; letter-spacing: -.02em; color: var(--white); }
.logo-runways  { font-size: .7rem; font-weight: 400; letter-spacing: .04em; color: rgba(255,255,255,.55); }

/* Pill */
.nav-pill {
  display: flex;
  align-items: center;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.12);
  background: radial-gradient(251.65% 89.92% at 50.22% 50.31%, rgba(0,0,0,.06) 0%, rgba(0,0,0,.24) 100%);
  box-shadow: 0 4px 4px 0 rgba(0,0,0,.05) inset;
  backdrop-filter: blur(10px);
  padding: .3rem .4rem;
  gap: .1rem;
}
.nav-pill li { position: relative; }
.nav-pill a {
  display: block;
  padding: .42rem .95rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: rgba(255,255,255,.75);
  border-radius: 2rem;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-pill a:hover,
.nav-pill a.active { background: rgba(255,255,255,.11); color: var(--white); }
.nav-pill .has-drop > a::after { content: ' ▾'; font-size: .6rem; opacity: .5; }

/* Dropdown */
.nav-drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #0A0A1C;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: .65rem .4rem .4rem;
  min-width: 250px;
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
}
.has-drop:hover .nav-drop,
.has-drop:focus-within .nav-drop { display: block; }
.nav-drop a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .55rem .9rem;
  border-radius: .4rem;
  font-size: .77rem;
  color: rgba(255,255,255,.7);
  transition: background .15s, color .15s;
}
.nav-drop a:hover { background: rgba(255,199,0,.07); color: var(--yellow); }
.nav-drop-icon {
  width: 26px; height: 26px;
  background: rgba(5,0,191,.55);
  border-radius: .35rem;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; flex-shrink: 0;
}

.nav-cta { flex-shrink: 0; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: .3rem;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
}

/* Mobile overlay */
.mob-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 300;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.75rem;
}
.mob-menu.open { display: flex; }
.mob-menu a { font-size: 1.3rem; font-weight: 700; color: var(--white); transition: color .2s; }
.mob-menu a:hover { color: var(--yellow); }
.mob-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--white); font-size: 1.5rem; cursor: pointer;
}
.mob-menu .mob-cta { margin-top: 1rem; }

/* ── HERO ────────────────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 6.5rem;
  padding-bottom: 4rem;
  background: radial-gradient(130% 130% at 50% -10%, #3a3aff 0%, #1c1c8a 22%, #0c0c1e 60%, #000 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#hero::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(45% 38% at 8%  40%, rgba(200,150,40,.45) 0%, rgba(160,115,28,.20) 40%, transparent 72%),
    radial-gradient(45% 38% at 92% 40%, rgba(200,150,40,.45) 0%, rgba(160,115,28,.20) 40%, transparent 72%);
  mix-blend-mode: screen;
}
.hero__bars {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 110vh;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
  opacity: 0.2;
  background: repeating-linear-gradient(
    to right,
    rgba(255,255,255,.05) 0px,
    rgba(0,0,0,.50)       39.25px,
    rgba(255,255,255,.05) 50px
  );
}
@media (max-width: 768px) {
  .hero__bars {
    background: repeating-linear-gradient(
      to right,
      rgba(255,255,255,.05) 0px,
      rgba(0,0,0,.50)       23.55px,
      rgba(255,255,255,.05) 30px
    );
  }
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  width: 100%; max-width: var(--wrap);
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,199,0,.1);
  border: 1px solid rgba(255,199,0,.25);
  border-radius: 2rem;
  padding: .35rem 1rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.75rem;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.3; } }

.hero-h1 {
  font-size: clamp(2.2rem, 5.5vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  max-width: 80%;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 80%;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }

/* Airplane frame — mouse-tracking 3D tilt */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.hero-plane-frame {
  position: relative;
  transform: perspective(1000px) rotateX(3deg) rotateY(-5deg);
  filter:
    drop-shadow(-18px 36px 52px rgba(0,0,0,.6))
    drop-shadow(0 10px 28px rgba(5,0,191,.2));
  transition: transform 0.65s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.hero-plane-frame img {
  width: 100%;
  height: auto;
  display: block;
}
/* Floating mockup card on the hero visual */
.hero-float-card {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(10,10,28,.92);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .75rem;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: .85rem;
  min-width: 200px;
}
.float-icon {
  width: 36px; height: 36px;
  background: var(--yellow);
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.float-label { font-size: .72rem; color: var(--muted); }
.float-value { font-size: 1.1rem; font-weight: 800; color: var(--white); }

/* ── Trust strip ─────────────────────────────────────────────── */
.trust-strip {
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.trust-strip-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .875rem;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 2rem;
  background: rgba(255,255,255,.03);
  transition: border-color .2s, background .2s;
}
.trust-chip:hover {
  border-color: rgba(255,199,0,.25);
  background: rgba(255,199,0,.05);
}
.trust-iata {
  font-size: .72rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: .04em;
  font-family: monospace;
}
.trust-name {
  font-size: .68rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
}
.trust-chip--more {
  border-style: dashed;
  border-color: rgba(255,255,255,.07);
}
.trust-chip--more .trust-iata { color: rgba(255,255,255,.4); }
.trust-chip--more .trust-name { color: rgba(255,255,255,.25); }
@media (max-width: 640px) {
  .trust-logos { gap: .4rem; }
  .trust-chip  { padding: .35rem .65rem; }
}

/* ── Stats bar ───────────────────────────────────────────────── */
#stats {
  background: var(--dark);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide-x: 1px solid rgba(255,255,255,.08);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 1rem 2rem;
  border-right: 1px solid rgba(255,255,255,.06);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--yellow);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .5rem;
}

/* ── Problem (full-bleed image) ──────────────────────────────── */
#problem {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.problem-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(.45) saturate(.8);
}
.problem-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.72) 35%, rgba(5,0,191,.2));
}
.problem-content {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-block: var(--gap);
  width: 100%;
}
.problem-left .sec-h2 { font-size: clamp(2.4rem, 5vw, 4rem); max-width: 16ch; }
.problem-left > p {
  font-size: .975rem;
  color: rgba(255,255,255,.80);
  line-height: 1.8;
  max-width: 38ch;
  margin-bottom: 2rem;
}

.pain-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.375rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.pain-item:first-child { padding-top: 0; }
.pain-item:last-child  { border-bottom: none; padding-bottom: 0; }
.pain-num {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,199,0,.14);
  flex-shrink: 0;
  min-width: 2.75rem;
  letter-spacing: -.03em;
}
.pain-title {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .3rem;
  letter-spacing: .01em;
}
.pain-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  margin: 0;
  line-height: 1.65;
}

/* ── Platform (6 modules with mockups) ───────────────────────── */
#platform {
  background: var(--dark);
  padding-block: var(--gap);
}
.platform-header { margin-bottom: 3.5rem; }
.platform-header .sec-h2 { max-width: 18ch; }
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Module card */
.module-card {
  background: radial-gradient(251.65% 89.92% at 50.22% 50.31%, rgba(255,199,0,.03) 0%, rgba(255,199,0,.20) 100%);
  border: 1px solid rgba(255,199,0,.35);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  text-decoration: none;
  color: var(--white);
}
.module-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 3px 3px 4px 0 rgba(255,199,0,.17) inset, 0 20px 60px rgba(0,0,0,.4);
}

/* CSS Mockup screen */
.mockup {
  width: 100%;
  background: #0A0A1E;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.mockup-bar {
  height: 22px;
  background: #12122A;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mockup-bar span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.mockup-body {
  padding: 10px;
  display: flex;
  gap: 8px;
  height: 160px;
}
.mockup-sidebar {
  width: 22%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mockup-sidebar-item {
  height: 8px;
  background: rgba(255,255,255,.06);
  border-radius: 3px;
}
.mockup-sidebar-item.active {
  background: rgba(255,199,0,.25);
  width: 70%;
}
.mockup-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.mockup-top-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.mockup-kpi {
  background: rgba(5,0,191,.3);
  border-radius: 4px;
  height: 40px;
  position: relative;
  overflow: hidden;
}
.mockup-kpi::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: rgba(255,199,0,.15);
}
.mockup-chart {
  flex: 1;
  background: rgba(255,255,255,.03);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.mockup-chart::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(5,0,191,.4), transparent);
  clip-path: polygon(0 100%, 15% 50%, 30% 70%, 50% 30%, 65% 55%, 80% 20%, 100% 40%, 100% 100%);
}
.mockup-rows-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mockup-row {
  height: 9px;
  background: rgba(255,255,255,.05);
  border-radius: 3px;
}
.mockup-row:nth-child(2) { width: 80%; }
.mockup-row:nth-child(3) { width: 60%; }

/* Module card text */
.module-info {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.module-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
}
.module-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.module-card p {
  font-size: .82rem;
  color: var(--white);
  line-height: 1.65;
  flex: 1;
}
.module-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-top: .25rem;
}

/* Mockup with real screenshot image */
.mockup-screenshot {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: top left;
  display: block;
}

/* ── Demo Video Section ──────────────────────────────────────── */
#demo-video {
  background: var(--blue);
  padding-block: 6rem;
}
.video-wrap {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: center;
}
.video-copy .eyebrow { color: var(--yellow); }
.video-copy .sec-h2  { color: var(--white); margin-bottom: 1.5rem; }

.video-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.video-bullets li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  line-height: 1.5;
}
.video-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.video-frame {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 0 2px var(--yellow), 0 30px 80px rgba(0,0,0,.5), 0 0 60px rgba(255,199,0,.12);
}
.video-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
.video-frame:hover img { transform: scale(1.02); }

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  transition: background .3s;
}
.video-frame:hover .video-overlay { background: rgba(0,0,0,.35); }

.play-btn {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--yellow);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
  animation: play-pulse 2.5s ease infinite;
}
.play-btn:hover { transform: scale(1.1); }
.play-btn svg { margin-left: 4px; }
@keyframes play-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(255,199,0,.5); }
  70%  { box-shadow: 0 0 0 20px rgba(255,199,0,0); }
  100% { box-shadow: 0 0 0 0   rgba(255,199,0,0); }
}
.video-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.video-frame.playing img,
.video-frame.playing .video-overlay { display: none; }
.video-frame.playing iframe {
  display: block;
  width: 100%; height: 380px;
  border: none;
}
.video-frame iframe { display: none; }

@media (max-width: 900px) {
  .video-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .video-frame img,
  .video-frame.playing iframe { height: 260px; }
}

/* ── CTA band ────────────────────────────────────────────────── */
#cta-band {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  filter: brightness(.38) saturate(.7);
}
.cta-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,0,191,.4), rgba(0,0,0,.45));
}
.cta-band-content {
  position: relative; z-index: 1;
  text-align: center;
  width: 100%;
  padding-block: var(--gap);
}
.cta-band-content .sec-h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  max-width: 20ch;
  margin-inline: auto;
}
.cta-band-content .sec-sub { margin-inline: auto; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Proof / Social Proof ────────────────────────────────────── */
#proof {
  background: var(--dark);
  padding-block: var(--gap);
  border-top: 1px solid rgba(255,199,0,.1);
  border-bottom: 1px solid rgba(255,199,0,.1);
}
#proof .eyebrow { text-align: center; margin-bottom: 2.5rem; }

.proof-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 4rem;
}
.proof-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.proof-logo-box {
  width: 120px; height: 64px;
  border: 1px dashed rgba(255,199,0,.25);
  border-radius: .625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,199,0,.4);
  transition: border-color .2s, color .2s;
}
.proof-logo-box:hover { border-color: rgba(255,199,0,.55); color: rgba(255,199,0,.7); }
.proof-logo-item span {
  font-size: .6rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  text-align: center;
}

.testimonial-block {
  max-width: 780px;
  margin-inline: auto;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-left: 4px solid var(--yellow);
  border-radius: 1rem;
  padding: 2.5rem 3rem;
}
.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.85);
  font-style: italic;
  margin: 0 0 1.75rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,199,0,.1);
  border: 1px dashed rgba(255,199,0,.35);
  flex-shrink: 0;
}
.testimonial-name {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--white);
}
.testimonial-org {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}

/* ── Module role badge ───────────────────────────────────────── */
.module-for {
  display: inline-block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255,199,0,.08);
  border: 1px solid rgba(255,199,0,.18);
  border-radius: 2rem;
  padding: .2rem .65rem;
  margin-bottom: .5rem;
}

/* ── Credibility ─────────────────────────────────────────────── */
#credibility {
  background: var(--black);
  padding-block: var(--gap);
  border-top: 1px solid rgba(255,255,255,.05);
}
.credibility-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.credibility-copy .sec-h2 { max-width: 22ch; margin-bottom: 1rem; }
.credibility-copy .sec-sub { max-width: 40ch; margin-bottom: 0; }
.credibility-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.credibility-meta span {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.credibility-meta span strong { color: var(--yellow); font-weight: 700; }

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.trust-item {
  background: rgba(5,0,191,.1);
  border: 1px solid rgba(5,0,191,.25);
  border-radius: .875rem;
  padding: 1.5rem;
  transition: border-color .2s, background .2s;
}
.trust-item:hover {
  background: rgba(5,0,191,.18);
  border-color: rgba(5,0,191,.45);
}
.trust-icon {
  font-size: 1.4rem;
  margin-bottom: .75rem;
  line-height: 1;
}
.trust-item h4 {
  font-size: .825rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 .375rem;
  letter-spacing: .02em;
}
.trust-item p {
  font-size: .77rem;
  color: rgba(255,255,255,.45);
  margin: 0;
  line-height: 1.6;
}

/* ── Bottom section bars (CTA + Footer) ─────────────────────── */
.bottom-section {
  position: relative;
  background:
    radial-gradient(circle 700px at 95% 80%, rgba(10,5,220,.75) 0%, rgba(5,2,100,.35) 45%, transparent 70%),
    linear-gradient(to right, rgba(10,5,150,.12) 0%, rgba(10,5,180,.35) 60%, transparent 100%),
    #05051a;
}
.bottom-starburst {
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(200px, 25vw, 400px);
  height: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.bottom-bars {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
  opacity: 0.2;
  background: repeating-linear-gradient(
    to right,
    rgba(255,255,255,.05) 0px,
    rgba(0,0,0,.50)       39.25px,
    rgba(255,255,255,.05) 50px
  );
}

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 2.5rem;
  position: relative;
  overflow: hidden;
}
.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.footer-logo { display: flex; align-items: center; gap: .6rem; }
.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a { font-size: .78rem; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.25); white-space: nowrap; }

/* ── Scroll reveal ───────────────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.rv.lft { transform: translateX(-26px); }
.rv.rgt { transform: translateX(26px); }
.rv.in  { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav-pill, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  /* .hero-plane-frame img height is auto — no override needed */
  .hero-float-card { display: none; }
  .testimonial-block { padding: 1.75rem; }
  .credibility-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .problem-content { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 640px) {
  .platform-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .proof-logos { gap: .875rem; }
  .proof-logo-box { width: 100px; height: 56px; }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT PAGES — shared styles (BMS, Admin App, etc.)
   ═══════════════════════════════════════════════════════════ */

/* ── Product Hero ──────────────────────────────────────────── */
.product-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 75% 50%, rgba(5,0,191,.18), transparent 70%);
  pointer-events: none;
}
.product-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.prod-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.prod-back {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.75rem;
  transition: color .2s;
}
.prod-back:hover { color: var(--yellow); }
.prod-h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.06;
  margin: .5rem 0 1.25rem;
}
.prod-sub {
  font-size: .975rem;
  color: rgba(255,255,255,.6);
  max-width: 46ch;
  line-height: 1.9;
  margin-bottom: 2.25rem;
}
.prod-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}
.prod-trust {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.prod-trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.prod-trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}
.prod-hero-visual { position: relative; }

/* ── BMS UI Mock ───────────────────────────────────────────── */
.bms-ui-mock {
  background: #080816;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(5,0,191,.2),
    0 40px 100px rgba(0,0,0,.6),
    0 0 80px rgba(5,0,191,.1);
}
.bms-ui-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.25rem;
  background: #0E0E24;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.bms-ui-bar-dots { display: flex; gap: 5px; }
.bms-ui-bar-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.bms-ui-bar-dots span:nth-child(1) { background: #FF5F56; }
.bms-ui-bar-dots span:nth-child(2) { background: #FEBC2E; }
.bms-ui-bar-dots span:nth-child(3) { background: #28C840; }
.bms-ui-bar-title {
  flex: 1;
  text-align: center;
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
}
.bms-ui-live {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #28C840;
}
.bms-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #28C840;
  animation: bms-pulse 1.8s ease infinite;
}
@keyframes bms-pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .35; }
}
.bms-ui-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.bms-scan-area {
  background: rgba(5,0,191,.07);
  border: 1px dashed rgba(5,0,191,.3);
  border-radius: .875rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .875rem;
  position: relative;
  overflow: hidden;
}
.bms-scan-area p {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin: 0;
}
.bms-scan-icon svg { filter: drop-shadow(0 0 8px rgba(255,199,0,.3)); }
.bms-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255,199,0,.7), transparent);
  animation: bms-scan 2.2s ease-in-out infinite;
  top: 20%;
}
@keyframes bms-scan {
  0%   { top: 20%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 80%; opacity: 0; }
}
.bms-result {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: .75rem;
}
.bms-result.cleared {
  background: rgba(40,200,64,.1);
  border: 1px solid rgba(40,200,64,.25);
}
.bms-result-icon {
  font-size: 1rem;
  font-weight: 800;
  color: #28C840;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(40,200,64,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bms-result-text strong {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #28C840;
  margin-bottom: .2rem;
}
.bms-result-text span {
  font-size: .66rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .03em;
}
.bms-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: .625rem;
  overflow: hidden;
}
.bms-stat {
  background: rgba(255,255,255,.03);
  padding: .875rem;
  text-align: center;
}
.bms-stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -.02em;
}
.bms-stat span {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

/* Floating accent cards */
.bms-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(8,8,22,.92);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .75rem;
  padding: .75rem 1rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
  min-width: 180px;
}
.bms-float-card strong {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .1rem;
}
.bms-float-card span { font-size: .65rem; color: rgba(255,255,255,.4); }
.bms-float-icon { font-size: 1.25rem; line-height: 1; flex-shrink: 0; }
.bms-float-1 {
  top: -1.5rem; right: -1.5rem;
  animation: float-1 4s ease-in-out infinite;
}
.bms-float-2 {
  bottom: 2rem; left: -2rem;
  animation: float-2 5s ease-in-out infinite;
}
@keyframes float-1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float-2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px);  } }

/* ── Product Problem section ───────────────────────────────── */
#prod-problem {
  position: relative;
  overflow: hidden;
  background: var(--black);
}
#prod-problem .problem-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,.97) 40%, rgba(5,0,191,.12));
}

/* ── Product Video section ─────────────────────────────────── */
#prod-video {
  background: var(--blue);
  padding-block: var(--gap);
}
#prod-video .video-wrap {
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}
.prod-video-copy .sec-h2 { max-width: 18ch; }
.prod-video-copy .sec-sub { max-width: 44ch; }

/* ── Features section ──────────────────────────────────────── */
#prod-features {
  background: var(--dark);
  padding-block: var(--gap);
}
.prod-feat-header {
  text-align: center;
  margin-bottom: 5rem;
}
.prod-feat-header .sec-h2 {
  max-width: 22ch;
  margin-inline: auto;
  margin-bottom: 0;
}
.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-block: 5rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.feat-row--flip .feat-copy  { order: 2; }
.feat-row--flip .feat-visual { order: 1; }
.feat-copy { max-width: 44ch; }
.feat-num {
  display: block;
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: -.05em;
  color: rgba(255,199,0,.07);
  line-height: 1;
  margin-bottom: -.75rem;
}
.feat-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--white);
  margin: 0 0 1rem;
}
.feat-desc {
  font-size: .925rem;
  color: rgba(255,255,255,.5);
  line-height: 1.85;
  margin: 0 0 1.5rem;
}
.feat-outcomes {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.feat-outcomes li {
  position: relative;
  padding-left: 1.25rem;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.feat-outcomes li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}

/* ── Feature visual cards (shared) ─────────────────────────── */
.feat-visual { position: relative; }
.fv-card {
  background: #0A0A1E;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(5,0,191,.15);
}
.fv-card--dark { background: #060614; }
.fv-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .875rem 1.25rem;
  background: #0E0E28;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.fv-badge {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255,199,0,.1);
  border: 1px solid rgba(255,199,0,.2);
  border-radius: 2rem;
  padding: .2rem .65rem;
}
.fv-badge--alert {
  color: #FF5F56;
  background: rgba(255,95,86,.1);
  border-color: rgba(255,95,86,.3);
  animation: bms-pulse 1.8s ease infinite;
}
.fv-doc {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  align-items: flex-start;
}
.fv-doc-photo {
  width: 56px; height: 72px;
  border-radius: .375rem;
  background: linear-gradient(135deg, rgba(5,0,191,.3), rgba(5,0,191,.08));
  border: 1px solid rgba(5,0,191,.3);
  flex-shrink: 0;
}
.fv-doc-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding-top: .25rem;
}
.fv-line { height: 10px; border-radius: 3px; background: rgba(255,255,255,.08); }
.fv-line--name   { width: 70%; background: rgba(255,255,255,.18); height: 12px; }
.fv-line--flight { width: 55%; background: rgba(255,199,0,.15); }
.fv-scan-progress {
  margin: 0 1.25rem .625rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.fv-scan-progress span {
  font-size: .62rem;
  color: rgba(255,255,255,.25);
  letter-spacing: .04em;
}
.fv-scan-bar {
  height: 3px;
  background: rgba(255,255,255,.06);
  border-radius: 2px;
  overflow: hidden;
}
.fv-scan-fill {
  height: 100%;
  width: 72%;
  background: var(--yellow);
  border-radius: 2px;
}
.fv-result {
  margin: 0 1.25rem 1.25rem;
  padding: .75rem 1rem;
  border-radius: .625rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
}
.fv-result--ok   { background: rgba(40,200,64,.1); border: 1px solid rgba(40,200,64,.25); color: #28C840; }
.fv-result--deny { background: rgba(255,95,86,.1); border: 1px solid rgba(255,95,86,.3);  color: #FF5F56; }

/* Watchlist card */
.fv-watch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .875rem 1.25rem;
  background: #0E0E28;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.fv-watch-time { font-size: .62rem; font-family: monospace; color: rgba(255,255,255,.3); }
.fv-watch-lists {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.fv-watch-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .625rem .875rem;
  border-radius: .5rem;
  background: rgba(255,255,255,.03);
  border: 1px solid transparent;
}
.fv-watch-hit { background: rgba(255,95,86,.07); border-color: rgba(255,95,86,.2); }
.fv-watch-item > span:nth-child(2) { flex: 1; font-size: .78rem; color: rgba(255,255,255,.7); }
.fv-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(40,200,64,.2);
  color: #28C840;
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem; font-weight: 800;
  flex-shrink: 0;
}
.fv-x { background: rgba(255,95,86,.2); color: #FF5F56; }
.fv-status-text {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.fv-status-red { color: #FF5F56; }

/* Gate control card */
.fv-gate-wrap {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.fv-gate-status {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: .75rem;
  background: rgba(40,200,64,.1);
  border: 1px solid rgba(40,200,64,.2);
}
.fv-gate-icon { font-size: 1.5rem; font-style: normal; }
.fv-gate-status strong {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #28C840;
}
.fv-gate-status span { font-size: .7rem; color: rgba(255,255,255,.4); }
.fv-gate-bar { display: flex; flex-direction: column; gap: .5rem; }
.fv-gate-progress {
  height: 6px;
  background: rgba(255,255,255,.06);
  border-radius: 3px;
  overflow: hidden;
}
.fv-gate-fill { height: 100%; background: var(--yellow); border-radius: 3px; }
.fv-gate-bar > span { font-size: .68rem; color: rgba(255,255,255,.35); text-align: right; }
.fv-gate-log { display: flex; flex-direction: column; gap: .35rem; }
.fv-log-item {
  font-size: .7rem;
  font-family: monospace;
  color: rgba(255,255,255,.35);
  padding: .375rem .625rem;
  background: rgba(255,255,255,.03);
  border-radius: .25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fv-log-deny { color: rgba(255,95,86,.8); background: rgba(255,95,86,.06); }

/* ── Feature chip grid ─────────────────────────────────────── */
.feat-chip-section {
  padding-top: 4rem;
  border-top: 1px solid rgba(255,255,255,.05);
  margin-top: 2rem;
}
.feat-chip-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.5rem;
}
.feat-chip-grid { display: flex; flex-wrap: wrap; gap: .75rem; }
.feat-chip {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.25rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 2rem;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  transition: background .2s, border-color .2s, color .2s;
}
.feat-chip:hover {
  background: rgba(255,199,0,.07);
  border-color: rgba(255,199,0,.2);
  color: var(--white);
}

/* ── How It Works ──────────────────────────────────────────── */
#prod-how {
  background: var(--black);
  padding-block: var(--gap);
  border-top: 1px solid rgba(255,255,255,.05);
}
.how-steps {
  display: flex;
  align-items: flex-start;
}
.how-step {
  flex: 1;
  text-align: center;
  padding: 0 .75rem;
}
.how-step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255,199,0,.09);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: -.5rem;
}
.how-step-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: .875rem;
}
.how-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 .625rem;
}
.how-step-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin: 0;
  max-width: 18ch;
  margin-inline: auto;
}
.how-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, rgba(255,199,0,.35), rgba(255,199,0,.08));
  margin-top: 5rem;
  flex-shrink: 0;
}

/* ── Benefits ──────────────────────────────────────────────── */
#prod-benefits {
  background: var(--blue);
  padding-block: var(--gap);
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  background: radial-gradient(251.65% 89.92% at 50.22% 50.31%, rgba(255,199,0,.05) 0%, rgba(255,199,0,.32) 100%);
  border: 1px solid var(--yellow);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 3px 3px 4px 0 rgba(255,199,0,.17) inset;
  backdrop-filter: blur(10px);
  transition: background .2s, box-shadow .2s;
}
.benefit-card:hover {
  background: radial-gradient(251.65% 89.92% at 50.22% 50.31%, rgba(255,199,0,.08) 0%, rgba(255,199,0,.32) 100%);
  box-shadow: 3px 3px 12px 0 rgba(255,199,0,.28) inset;
}
.benefit-card-icon { font-size: 2rem; line-height: 1; margin-bottom: 1.25rem; }
.benefit-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 .5rem;
  letter-spacing: -.015em;
}
.benefit-card-sub {
  font-size: .82rem;
  color: var(--white);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.benefit-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.benefit-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.benefit-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--yellow);
}

/* ── FAQ ───────────────────────────────────────────────────── */
#prod-faq {
  background: var(--dark);
  padding-block: var(--gap);
}
.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}
.faq-item { border-bottom: 1px solid rgba(255,255,255,.07); }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,.07); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-family: var(--font);
  font-size: .925rem;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: var(--yellow); }
.faq-arrow {
  font-size: 1rem;
  color: rgba(255,255,255,.3);
  transition: transform .3s ease, color .2s;
  flex-shrink: 0;
  display: inline-block;
}
.faq-item.open .faq-arrow  { transform: rotate(180deg); color: var(--yellow); }
.faq-item.open .faq-q      { color: var(--yellow); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 1.5rem;
}
.faq-a p {
  font-size: .88rem;
  color: var(--white);
  line-height: 1.85;
  margin: 0;
}

/* ── Product CTA ───────────────────────────────────────────── */
#prod-cta {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.prod-cta-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.2) saturate(.6);
}
.prod-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,0,191,.5), rgba(0,0,0,.8));
}
.prod-cta-content {
  position: relative; z-index: 1;
  text-align: center;
  width: 100%;
  padding-block: var(--gap);
}
.prod-cta-content .sec-h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  max-width: 22ch;
  margin-inline: auto;
}
.prod-cta-content .sec-sub { margin-inline: auto; margin-bottom: 2.5rem; }

/* ── Product page responsive ───────────────────────────────── */
@media (max-width: 1100px) {
  .prod-hero-inner { gap: 3rem; }
  .feat-row        { gap: 3rem; }
  .how-connector   { width: 40px; }
}
@media (max-width: 900px) {
  .prod-hero-inner { grid-template-columns: 1fr; }
  .prod-hero-visual { display: none; }
  .feat-row, .feat-row--flip { grid-template-columns: 1fr; gap: 3rem; }
  .feat-row--flip .feat-copy  { order: 1; }
  .feat-row--flip .feat-visual { order: 2; }
  .feat-copy { max-width: 100%; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { flex-direction: column; align-items: center; gap: 1rem; }
  .how-connector {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(255,199,0,.3), rgba(255,199,0,.08));
    margin-top: 0;
  }
  .how-step { max-width: 380px; width: 100%; }
  #prod-video .video-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .bms-float-1, .bms-float-2 { display: none; }
  .benefit-grid { grid-template-columns: 1fr; }
  .feat-chip-grid { gap: .5rem; }
  .feat-chip { font-size: .75rem; padding: .625rem 1rem; }
}


/* ═══════════════════════════════════════════════════════════
   ABO PORTAL — page-specific styles
   ═══════════════════════════════════════════════════════════ */

/* ── ABO hero: yellow radial (different from BMS blue) ─────── */
.product-hero--abo::before {
  background: radial-gradient(ellipse 65% 55% at 72% 55%, rgba(255,199,0,.08), transparent 70%);
}

/* ── ABO UI Mock ───────────────────────────────────────────── */
.abo-ui-mock {
  background: #080816;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,199,0,.12),
    0 40px 100px rgba(0,0,0,.6),
    0 0 80px rgba(255,199,0,.04);
}
.abo-ui-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.25rem;
  background: #0E0E24;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.abo-ui-bar-dots { display: flex; gap: 5px; }
.abo-ui-bar-dots span { width: 9px; height: 9px; border-radius: 50%; }
.abo-ui-bar-dots span:nth-child(1) { background: #FF5F56; }
.abo-ui-bar-dots span:nth-child(2) { background: #FEBC2E; }
.abo-ui-bar-dots span:nth-child(3) { background: #28C840; }
.abo-ui-bar-title {
  flex: 1;
  text-align: center;
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
}
.abo-ui-live {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #28C840;
}
.abo-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #28C840;
  animation: bms-pulse 1.8s ease infinite;
}
.abo-ui-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.abo-section-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
}

/* Revenue KPI cards */
.abo-rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .625rem;
}
.abo-rev-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: .75rem;
  padding: .875rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  align-items: flex-start;
}
.abo-rev-icon { font-size: 1rem; line-height: 1; margin-bottom: .2rem; }
.abo-rev-card strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -.02em;
}
.abo-rev-label {
  font-size: .6rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .04em;
}
.abo-rev-change {
  font-size: .6rem;
  font-weight: 700;
  color: rgba(255,255,255,.25);
  letter-spacing: .04em;
}
.abo-change-up { color: #28C840; }

/* Aircraft list */
.abo-aircraft-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: .75rem;
  overflow: hidden;
}
.abo-aircraft-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .625rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .72rem;
}
.abo-aircraft-item:last-child { border-bottom: none; }
.abo-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.abo-dot-green  { background: #28C840; }
.abo-dot-yellow { background: var(--yellow); }
.abo-dot-gray   { background: rgba(255,255,255,.2); }
.abo-ac-reg  { font-weight: 700; color: var(--white); min-width: 52px; }
.abo-ac-type { flex: 1; color: rgba(255,255,255,.4); }
.abo-ac-status { font-size: .62rem; font-weight: 700; color: rgba(255,255,255,.3); text-align: right; }
.abo-ac-service { color: var(--yellow); }

/* Invoice summary bar */
.abo-invoice-bar {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.abo-inv-badge {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 2rem;
  border: 1px solid;
}
.abo-inv-new     { color: rgba(255,199,0,.8); background: rgba(255,199,0,.08); border-color: rgba(255,199,0,.2); }
.abo-inv-pending { color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.abo-inv-overdue { color: rgba(255,95,86,.8); background: rgba(255,95,86,.08); border-color: rgba(255,95,86,.2); }
.abo-inv-paid    { color: rgba(40,200,64,.8); background: rgba(40,200,64,.08); border-color: rgba(40,200,64,.2); }

/* ── ABO Feature 1: Trip tracking card ─────────────────────── */
.abo-trip-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.abo-trip-ac {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.abo-trip-icon {
  font-size: 1.5rem;
  width: 42px; height: 42px;
  background: rgba(255,199,0,.1);
  border: 1px solid rgba(255,199,0,.2);
  border-radius: .625rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.abo-trip-reg {
  display: block;
  font-size: .88rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em;
}
.abo-trip-type {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
}
.abo-trip-tag {
  margin-left: auto;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 2rem;
  border: 1px solid;
}
.abo-tag-active {
  color: var(--yellow);
  background: rgba(255,199,0,.1);
  border-color: rgba(255,199,0,.25);
}
.abo-trip-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.abo-trip-field { display: flex; flex-direction: column; gap: .15rem; }
.abo-field-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
}
.abo-field-val { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.8); }
.abo-trip-fees { display: flex; gap: .5rem; flex-wrap: wrap; }
.abo-fee-chip {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,199,0,.7);
  background: rgba(255,199,0,.07);
  border: 1px solid rgba(255,199,0,.15);
  border-radius: 2rem;
  padding: .2rem .6rem;
}

/* ── ABO Feature 2: Fuel royalty card ──────────────────────── */
.abo-fuel-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.abo-fuel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.abo-fuel-label {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.abo-fuel-val {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  font-family: monospace;
}
.abo-fuel-current { color: var(--yellow); }
.abo-fuel-divider {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin: .25rem 0;
}
.abo-fuel-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .875rem 1rem;
  background: rgba(255,199,0,.06);
  border: 1px solid rgba(255,199,0,.15);
  border-radius: .625rem;
  margin-top: .25rem;
}
.abo-fuel-total span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}
.abo-fuel-total strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -.02em;
}

/* ── ABO Feature 3: Invoice list card ──────────────────────── */
.abo-inv-list { display: flex; flex-direction: column; }
.abo-inv-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .875rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.abo-inv-row:last-child { border-bottom: none; }
.abo-inv-left { display: flex; flex-direction: column; gap: .2rem; }
.abo-inv-num {
  font-size: .68rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  font-family: monospace;
  letter-spacing: .04em;
}
.abo-inv-desc { font-size: .75rem; color: rgba(255,255,255,.7); }
.abo-inv-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .3rem;
  flex-shrink: 0;
}
.abo-inv-amount {
  font-size: .88rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
}
.abo-inv-status-pill {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .18rem .55rem;
  border-radius: 2rem;
  border: 1px solid;
}
.abo-pill-paid    { color: #28C840; background: rgba(40,200,64,.1); border-color: rgba(40,200,64,.25); }
.abo-pill-pending { color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.abo-pill-new     { color: var(--yellow); background: rgba(255,199,0,.1); border-color: rgba(255,199,0,.25); }
.abo-pill-overdue { color: #FF5F56; background: rgba(255,95,86,.1); border-color: rgba(255,95,86,.25); }

/* ── How It Works — vertical flow layout ───────────────────── */
.how-flow {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 5rem;
  align-items: flex-start;
}
.how-flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.how-flow-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.375rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.how-flow-step:first-child { padding-top: 0; }
.how-flow-step:last-child  { border-bottom: none; padding-bottom: 0; }
.how-flow-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: rgba(255,199,0,.15);
  letter-spacing: -.04em;
  line-height: 1.1;
  min-width: 2.5rem;
  text-align: right;
  flex-shrink: 0;
}
.how-flow-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 .375rem;
  letter-spacing: .01em;
}
.how-flow-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin: 0;
  line-height: 1.65;
}

/* Revenue pipeline visual card */
.how-flow-card {
  background: #0A0A1E;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,199,0,.07);
  position: sticky;
  top: 7rem;
}
.hf-card-label {
  padding: 1rem 1.25rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  background: #0E0E28;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hf-pipeline {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hf-pipe-item {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .625rem 0;
}
.hf-pipe-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255,199,0,.15);
}
.hf-dot-pending {
  background: rgba(255,255,255,.15);
  box-shadow: 0 0 0 3px rgba(255,255,255,.04);
}
.hf-pipe-item > span:nth-child(2) {
  flex: 1;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}
.hf-pipe-val {
  font-size: .68rem;
  color: rgba(255,255,255,.3);
  font-family: monospace;
}
.hf-val-muted { color: rgba(255,255,255,.2); }
.hf-pipe-line {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.08);
  margin-left: 4px;
}
.hf-totals {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(255,199,0,.03);
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.hf-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hf-total-row span {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}
.hf-total-row strong {
  font-size: .9rem;
  font-weight: 800;
  color: var(--white);
}
.hf-val-gold { color: var(--yellow); }

/* ── ABO responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .how-flow { grid-template-columns: 1fr; gap: 3rem; }
  .how-flow-card { position: static; }
}


/* ═══════════════════════════════════════════════════════════
   ADMIN APP — page-specific styles
   ═══════════════════════════════════════════════════════════ */

/* ── Admin hero: strong blue radial ────────────────────────── */
.product-hero--admin::before {
  background: radial-gradient(ellipse 80% 65% at 75% 50%, rgba(5,0,191,.25), transparent 65%);
}

/* ── Admin UI Mock ─────────────────────────────────────────── */
.adm-ui-mock {
  background: #080816;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(5,0,191,.25),
    0 40px 100px rgba(0,0,0,.65),
    0 0 100px rgba(5,0,191,.12);
}
.adm-ui-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.25rem;
  background: #0E0E24;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.adm-ui-bar-dots { display: flex; gap: 5px; }
.adm-ui-bar-dots span { width: 9px; height: 9px; border-radius: 50%; }
.adm-ui-bar-dots span:nth-child(1) { background: #FF5F56; }
.adm-ui-bar-dots span:nth-child(2) { background: #FEBC2E; }
.adm-ui-bar-dots span:nth-child(3) { background: #28C840; }
.adm-ui-bar-title {
  flex: 1;
  text-align: center;
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
}
.adm-ui-notif {
  font-size: .65rem;
  font-weight: 700;
  color: var(--yellow);
  background: rgba(255,199,0,.1);
  border: 1px solid rgba(255,199,0,.2);
  border-radius: 2rem;
  padding: .15rem .5rem;
}
.adm-ui-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.adm-airport-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
}
.adm-airport-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #28C840;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(40,200,64,.2);
  animation: bms-pulse 2s ease infinite;
}

/* KPI grid */
.adm-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5px;
  background: rgba(255,255,255,.06);
  border-radius: .75rem;
  overflow: hidden;
}
.adm-kpi {
  background: rgba(255,255,255,.03);
  padding: .875rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.adm-kpi-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.025em;
  line-height: 1.1;
}
.adm-kpi-label {
  font-size: .58rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.adm-kpi-trend {
  font-size: .6rem;
  font-weight: 600;
  color: rgba(255,255,255,.25);
  margin-top: .1rem;
}
.adm-trend-up   { color: #28C840; }
.adm-trend-warn { color: #FEBC2E; }

/* Revenue chart sparkline */
.adm-chart-wrap { display: flex; flex-direction: column; gap: .5rem; }
.adm-chart-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
}
.adm-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 48px;
  background: rgba(255,255,255,.02);
  border-radius: .5rem;
  padding: .5rem .625rem;
}
.adm-bar {
  flex: 1;
  background: rgba(5,0,191,.4);
  border-radius: 2px 2px 0 0;
  transition: background .2s;
}
.adm-bar--today { background: var(--yellow); }
.adm-bar:hover  { background: rgba(5,0,191,.7); }

/* Activity feed */
.adm-activity { display: flex; flex-direction: column; gap: 0; }
.adm-activity-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .7rem;
}
.adm-activity-item:last-child { border-bottom: none; padding-bottom: 0; }
.adm-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.adm-dot-green { background: #28C840; }
.adm-dot-warn  { background: #FEBC2E; }
.adm-dot-blue  { background: rgba(5,0,191,.8); box-shadow: 0 0 0 2px rgba(5,0,191,.2); }
.adm-ac-text {
  flex: 1;
  color: rgba(255,255,255,.55);
  font-size: .68rem;
}
.adm-ac-text em { color: #FEBC2E; font-style: normal; font-weight: 600; }
.adm-ac-time {
  font-size: .6rem;
  font-family: monospace;
  color: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* ── ADS-B Differentiator Section ──────────────────────────── */
#adsb-section {
  background: var(--black);
  padding-block: var(--gap);
  border-top: 1px solid rgba(5,0,191,.2);
  border-bottom: 1px solid rgba(5,0,191,.2);
  position: relative;
  overflow: hidden;
}
#adsb-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(5,0,191,.15), transparent 70%);
  pointer-events: none;
}
.adsb-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.adsb-copy .sec-h2 { max-width: 14ch; }
.adsb-copy .sec-sub { max-width: 44ch; }
.adsb-tags {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  margin-top: 2rem;
}
.adsb-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
}
.adsb-tag--reg   { color: rgba(255,199,0,.8); }
.adsb-tag--unreg { color: rgba(255,95,86,.8); }

/* Radar */
.adsb-radar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.adsb-radar {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle, rgba(5,0,191,.12) 0%, rgba(0,0,0,.95) 75%);
  border: 1px solid rgba(5,0,191,.35);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(5,0,191,.2), inset 0 0 40px rgba(5,0,191,.08);
}
.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(5,0,191,.18);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.radar-cross {
  position: absolute;
  background: rgba(5,0,191,.12);
}
.radar-cross--h { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.radar-cross--v { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.radar-sweep {
  position: absolute;
  top: 50%; left: 50%;
  width: 50%; height: 1px;
  transform-origin: left center;
  animation: radar-spin 3s linear infinite;
  background: linear-gradient(to right, rgba(5,0,191,.8), transparent);
  box-shadow: 0 0 8px rgba(5,0,191,.5);
}
.radar-sweep::after {
  content: '';
  position: absolute;
  top: -30px; left: 0; right: 0;
  height: 60px;
  background: conic-gradient(from 0deg, rgba(5,0,191,.15), transparent 60deg);
  transform-origin: left center;
}
@keyframes radar-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.radar-blip {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(255,199,0,.6);
}
.radar-blip--unreg {
  background: #FF5F56;
  box-shadow: 0 0 10px rgba(255,95,86,.7);
  animation: blip-unreg 1.4s ease infinite;
  width: 10px; height: 10px;
}
@keyframes blip-unreg {
  0%,100% { box-shadow: 0 0 10px rgba(255,95,86,.7); transform: translate(-50%,-50%) scale(1); }
  50%      { box-shadow: 0 0 20px rgba(255,95,86,.4); transform: translate(-50%,-50%) scale(1.4); }
}
.radar-blip-label {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: #FF5F56;
  white-space: nowrap;
  background: rgba(0,0,0,.8);
  padding: .1rem .35rem;
  border-radius: 2px;
}
.radar-center {
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(5,0,191,.8);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px rgba(5,0,191,.8);
}
.adsb-radar-caption {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  text-align: center;
}

/* ── Admin Feature 1: Revenue card ─────────────────────────── */
.adm-rev-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.adm-rev-header { display: flex; align-items: center; gap: 1rem; }
.adm-rev-total {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.04em;
}
.adm-rev-badge {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 2rem;
  border: 1px solid;
}
.adm-rev-up { color: #28C840; background: rgba(40,200,64,.1); border-color: rgba(40,200,64,.25); }
.adm-rev-breakdown { display: flex; flex-direction: column; gap: .625rem; }
.adm-rev-row {
  display: grid;
  grid-template-columns: 90px 1fr 56px;
  align-items: center;
  gap: .75rem;
  font-size: .72rem;
  color: rgba(255,255,255,.5);
}
.adm-rev-row-val { text-align: right; font-weight: 700; color: rgba(255,255,255,.75); }
.adm-rev-bar-wrap {
  height: 5px;
  background: rgba(255,255,255,.06);
  border-radius: 3px;
  overflow: hidden;
}
.adm-rev-bar {
  height: 100%;
  background: var(--yellow);
  border-radius: 3px;
}
.adm-rev-bar--blue  { background: rgba(5,0,191,.8); }
.adm-rev-bar--white { background: rgba(255,255,255,.25); }
.adm-rev-untracked {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem .875rem;
  background: rgba(254,188,46,.06);
  border: 1px solid rgba(254,188,46,.2);
  border-radius: .5rem;
  font-size: .7rem;
  color: rgba(255,255,255,.45);
}

/* ── Admin Feature 2: Aircraft tracking card ────────────────── */
.adm-track-list { display: flex; flex-direction: column; }
.adm-track-item {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .875rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.adm-track-item:last-child { border-bottom: none; }
.adm-track-unreg { background: rgba(255,95,86,.04); }
.adm-track-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.adm-track-info { flex: 1; display: flex; flex-direction: column; gap: .2rem; }
.adm-track-reg-text { font-size: .82rem; font-weight: 700; color: var(--white); }
.adm-track-type { font-size: .68rem; color: rgba(255,255,255,.35); }
.adm-track-right { display: flex; flex-direction: column; align-items: flex-end; gap: .25rem; }
.adm-track-status {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.adm-status-alert { color: #FF5F56; }
.adm-track-action {
  font-size: .62rem;
  font-weight: 700;
  color: rgba(5,0,191,.8);
  cursor: pointer;
  transition: color .2s;
}
.adm-track-action:hover { color: var(--yellow); }
.adm-action-alert { color: #FF5F56; }

/* ── Admin Feature 3: Report card ──────────────────────────── */
.adm-report-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 1.25rem; }
.adm-report-stat { display: flex; flex-direction: column; gap: .25rem; }
.adm-report-stat strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.04em;
}
.adm-report-stat span { font-size: .75rem; color: rgba(255,255,255,.4); }
.adm-report-bars {
  display: flex;
  gap: 1.25rem;
  align-items: flex-end;
  height: 80px;
}
.adm-report-month {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  height: 100%;
}
.adm-report-month > span { font-size: .65rem; color: rgba(255,255,255,.3); }
.adm-report-bar-wrap {
  flex: 1;
  width: 100%;
  background: rgba(255,255,255,.04);
  border-radius: .375rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.adm-report-fill {
  width: 100%;
  background: rgba(5,0,191,.5);
  border-radius: .375rem .375rem 0 0;
  transition: height .6s ease;
}
.adm-fill-current { background: var(--yellow); }
.adm-report-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: .625rem;
  overflow: hidden;
}
.adm-report-metric {
  background: rgba(255,255,255,.03);
  padding: .75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.adm-report-metric strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -.02em;
}
.adm-report-metric span {
  font-size: .58rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .04em;
}

/* ── 2x2 benefit grid ──────────────────────────────────────── */
.benefit-grid--2x2 {
  grid-template-columns: repeat(2, 1fr);
}

/* ── Admin responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .adsb-inner { grid-template-columns: 1fr; }
  .adsb-radar { width: 260px; height: 260px; }
  .benefit-grid--2x2 { grid-template-columns: 1fr; }
  .adm-kpi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .adsb-radar { width: 220px; height: 220px; }
  .adm-report-bars { height: 60px; }
}


/* ════════════════════════════════════════════════════════════
   COMMERCIAL AIRLINE APP PAGE
   ════════════════════════════════════════════════════════════ */

/* ── Hero accent ───────────────────────────────────────────── */
.product-hero--airline::before {
  background: radial-gradient(ellipse 70% 60% at 85% 30%, rgba(5,0,191,.28) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(255,199,0,.09) 0%, transparent 60%);
}

/* ── Airline UI Mock ───────────────────────────────────────── */
.airline-ui-mock {
  background: #0a0a18;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04);
  font-family: 'Poppins', sans-serif;
}

.airline-ui-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem 1rem;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.airline-ui-bar-dots {
  display: flex;
  gap: .3rem;
}
.airline-ui-bar-dots span {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.airline-ui-bar-dots span:nth-child(1) { background: #FF5F56; }
.airline-ui-bar-dots span:nth-child(2) { background: #FEBC2E; }
.airline-ui-bar-dots span:nth-child(3) { background: #28C840; }

.airline-ui-bar-title {
  flex: 1;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.45);
  text-align: center;
}
.airline-ui-live {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #28C840;
}

.airline-ui-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

/* ── Roster header ─────────────────────────────────────────── */
.airline-roster-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.airline-pax-sync {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: rgba(255,199,0,.7);
  background: rgba(255,199,0,.08);
  border: 1px solid rgba(255,199,0,.15);
  border-radius: 2rem;
  padding: .2rem .55rem;
}

/* ── Flight list ───────────────────────────────────────────── */
.airline-flight-list {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.airline-flight-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .6rem;
  border-radius: .4rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  font-size: .67rem;
}
.airline-flight-row--alert {
  background: rgba(255,199,0,.06);
  border-color: rgba(255,199,0,.18);
}
.airline-fn {
  font-weight: 700;
  color: var(--white);
  min-width: 3.5rem;
  font-family: monospace;
  font-size: .72rem;
  letter-spacing: .02em;
}
.airline-route {
  flex: 1;
  color: rgba(255,255,255,.5);
  font-size: .65rem;
}
.airline-time {
  font-family: monospace;
  font-size: .65rem;
  color: rgba(255,255,255,.35);
  min-width: 2.5rem;
  text-align: right;
}
.airline-status {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .15rem .4rem;
  border-radius: .25rem;
}
.airline-status--dep  { background: rgba(40,200,64,.12);  color: #28C840; border: 1px solid rgba(40,200,64,.2); }
.airline-status--board{ background: rgba(255,199,0,.12);  color: var(--yellow); border: 1px solid rgba(255,199,0,.2); }
.airline-status--sched{ background: rgba(5,0,191,.18);    color: rgba(150,140,255,.9); border: 1px solid rgba(5,0,191,.3); }

/* ── Discrepancy panel ─────────────────────────────────────── */
.airline-discrepancy {
  background: rgba(255,95,86,.06);
  border: 1px solid rgba(255,95,86,.2);
  border-radius: .5rem;
  padding: .65rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.airline-disc-header {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .65rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
}
.airline-disc-icon {
  font-size: .75rem;
  color: #FF5F56;
}
.airline-disc-compare {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.airline-disc-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
}
.airline-disc-sep {
  font-size: .6rem;
  font-weight: 700;
  color: rgba(255,255,255,.2);
  padding: 0 .25rem;
}
.airline-disc-label {
  font-size: .52rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .03em;
  text-align: center;
}
.airline-disc-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(255,255,255,.8);
  letter-spacing: -.02em;
  font-family: monospace;
}
.airline-disc-mismatch { color: #FF5F56; }
.airline-disc-delta    { color: var(--yellow); font-size: .9rem; }
.airline-disc-action {
  font-size: .58rem;
  color: rgba(255,199,0,.6);
  text-align: center;
  font-style: italic;
}


/* ════════════════════════════════════════════════════════════
   BEFORE / AFTER SECTION
   ════════════════════════════════════════════════════════════ */
#ba-section {
  background: var(--black);
  padding: 7rem 0;
}
.ba-panels {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.ba-panel {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ba-panel--before {
  background: linear-gradient(135deg, rgba(255,95,86,.08) 0%, rgba(10,10,20,1) 60%);
  border-right: 1px solid rgba(255,255,255,.06);
}
.ba-panel--after {
  background: linear-gradient(135deg, rgba(5,0,191,.1) 0%, rgba(40,200,64,.05) 100%);
}
.ba-panel-header {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.ba-panel-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255,95,86,.15);
  border: 1px solid rgba(255,95,86,.3);
  display: grid;
  place-items: center;
  font-size: .8rem;
  color: #FF5F56;
  font-weight: 700;
  flex-shrink: 0;
}
.ba-icon--check {
  background: rgba(40,200,64,.12);
  border-color: rgba(40,200,64,.25);
  color: #28C840;
}
.ba-panel-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.ba-panel-tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,95,86,.7);
  background: rgba(255,95,86,.08);
  border: 1px solid rgba(255,95,86,.15);
  border-radius: 2rem;
  padding: .2rem .65rem;
}
.ba-tag--after {
  color: rgba(40,200,64,.8);
  background: rgba(40,200,64,.08);
  border-color: rgba(40,200,64,.18);
}
.ba-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 0;
  padding: 0;
}
.ba-list li {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.ba-list--before li::before {
  content: '✕';
  position: absolute;
  left: 0;
  font-size: .65rem;
  color: #FF5F56;
  top: .15rem;
}
.ba-list--after li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-size: .65rem;
  color: #28C840;
  top: .15rem;
}
.ba-divider {
  width: 3.5rem;
  background: rgba(255,255,255,.03);
  border-left: 1px solid rgba(255,255,255,.05);
  border-right: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ba-arrow {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 900;
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════════════════
   FEATURE VISUALS — AIRLINE
   ════════════════════════════════════════════════════════════ */

/* ── Flight roster card ────────────────────────────────────── */
.fv-roster-body {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.fv-roster-route {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: .5rem;
}
.fv-route-point {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .1rem;
  min-width: 3.5rem;
}
.fv-route-point--right {
  align-items: flex-end;
}
.fv-route-point strong {
  font-size: .9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em;
}
.fv-route-point span:not(.fv-route-time) {
  font-size: .6rem;
  color: rgba(255,255,255,.35);
}
.fv-route-time {
  font-size: .62rem;
  font-family: monospace;
  color: var(--yellow);
  font-weight: 600;
}
.fv-route-line {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0;
}
.fv-route-dot {
  width: .4rem;
  height: .4rem;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}
.fv-route-track {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.15), rgba(255,255,255,.08));
}
.fv-route-icon {
  font-size: .85rem;
  padding: 0 .3rem;
  flex-shrink: 0;
  color: var(--yellow);
}
.fv-roster-details {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.fv-roster-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .7rem;
}
.fv-roster-actions {
  display: flex;
  gap: .5rem;
}
.fv-action-btn {
  flex: 1;
  padding: .45rem .75rem;
  border-radius: .375rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  border: none;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
}
.fv-action-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.5);
}

/* ── Passenger reconciliation card ─────────────────────────── */
.fv-recon-body {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.fv-recon-compare {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,95,86,.12);
  border-radius: .5rem;
}
.fv-recon-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.fv-recon-col--bms {
  background: rgba(255,95,86,.07);
  border: 1px solid rgba(255,95,86,.18);
  border-radius: .4rem;
  padding: .5rem;
}
.fv-recon-vs {
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255,255,255,.2);
  flex-shrink: 0;
}
.fv-recon-label {
  font-size: .55rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.35);
  text-align: center;
  line-height: 1.3;
}
.fv-recon-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.03em;
  font-family: monospace;
}
.fv-recon-mismatch { color: #FF5F56; }
.fv-recon-source {
  font-size: .52rem;
  color: rgba(255,255,255,.25);
  font-style: italic;
}
.fv-recon-delta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem .75rem;
  background: rgba(255,199,0,.06);
  border: 1px solid rgba(255,199,0,.15);
  border-radius: .375rem;
}
.fv-recon-delta-label {
  font-size: .65rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .03em;
}
.fv-recon-delta-val {
  font-size: .85rem;
  font-weight: 800;
  color: var(--yellow);
  font-family: monospace;
}
.fv-recon-note {
  font-size: .65rem;
  color: rgba(40,200,64,.7);
  text-align: center;
  font-style: italic;
}

/* ── ADS-B feed card ───────────────────────────────────────── */
.fv-feed-body {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.fv-feed-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem .5rem;
  border-radius: .375rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
}
.fv-feed-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.fv-feed-flight {
  font-size: .72rem;
  font-weight: 700;
  color: var(--white);
  font-family: monospace;
  letter-spacing: .02em;
}
.fv-feed-detail {
  font-size: .58rem;
  color: rgba(255,255,255,.3);
  font-family: monospace;
}
.fv-feed-badge {
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .18rem .45rem;
  border-radius: .25rem;
  flex-shrink: 0;
}
.fv-feed-badge--cap  {
  background: rgba(40,200,64,.12);
  border: 1px solid rgba(40,200,64,.22);
  color: #28C840;
}
.fv-feed-badge--plan {
  background: rgba(5,0,191,.18);
  border: 1px solid rgba(5,0,191,.35);
  color: rgba(150,140,255,.9);
}
.fv-feed-divider {
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: .25rem 0;
}
.fv-feed-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.05);
  border-radius: .4rem;
  overflow: hidden;
}
.fv-feed-metric {
  background: rgba(255,255,255,.03);
  padding: .5rem .4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
}
.fv-feed-metric strong {
  font-size: .9rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -.02em;
}
.fv-feed-metric span {
  font-size: .52rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .03em;
  text-align: center;
}


/* ════════════════════════════════════════════════════════════
   LANDING AUTHORIZATION PAGE
   ════════════════════════════════════════════════════════════ */

/* ── Hero accent ───────────────────────────────────────────── */
.product-hero--lauth::before {
  background: radial-gradient(ellipse 60% 55% at 90% 15%, rgba(255,199,0,.15) 0%, transparent 65%),
              radial-gradient(ellipse 55% 45% at 10% 90%, rgba(5,0,191,.22) 0%, transparent 60%);
}

/* ── Landing Auth UI Mock ──────────────────────────────────── */
.lauth-ui-mock {
  background: #07070f;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
  font-family: 'Poppins', sans-serif;
}

.lauth-ui-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem 1rem;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.lauth-ui-bar-dots {
  display: flex;
  gap: .3rem;
}
.lauth-ui-bar-dots span {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
}
.lauth-ui-bar-dots span:nth-child(1) { background: #FF5F56; }
.lauth-ui-bar-dots span:nth-child(2) { background: #FEBC2E; }
.lauth-ui-bar-dots span:nth-child(3) { background: #28C840; }

.lauth-ui-bar-title {
  flex: 1;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.4);
  text-align: center;
}
.lauth-ui-live {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #28C840;
}

.lauth-ui-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* ── Trip list ─────────────────────────────────────────────── */
.lauth-trip-list {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.lauth-trip-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .55rem;
  border-radius: .375rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  font-size: .67rem;
}
.lauth-trip-row--approved {
  background: rgba(40,200,64,.04);
  border-color: rgba(40,200,64,.12);
}
.lauth-trip-row--pending {
  background: rgba(255,199,0,.04);
  border-color: rgba(255,199,0,.12);
}
.lauth-trip-ac {
  font-weight: 700;
  font-family: monospace;
  font-size: .72rem;
  color: var(--white);
  min-width: 3.5rem;
  letter-spacing: .02em;
}
.lauth-trip-info {
  flex: 1;
  color: rgba(255,255,255,.45);
  font-size: .63rem;
}
.lauth-trip-status {
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .15rem .4rem;
  border-radius: .25rem;
  flex-shrink: 0;
}
.lauth-status--appr { background: rgba(40,200,64,.12);  color: #28C840;  border: 1px solid rgba(40,200,64,.22); }
.lauth-status--pend { background: rgba(255,199,0,.12);  color: var(--yellow); border: 1px solid rgba(255,199,0,.22); }
.lauth-status--new  { background: rgba(5,0,191,.18);    color: rgba(150,140,255,.9); border: 1px solid rgba(5,0,191,.3); }

/* ── Dependency gate (hero mock) ───────────────────────────── */
.lauth-gate {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,199,0,.1);
  border-radius: .5rem;
  padding: .75rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.lauth-gate-header {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.lauth-gate-title {
  font-size: .72rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
}
.lauth-gate-sub {
  font-size: .58rem;
  color: rgba(255,255,255,.3);
}
.lauth-gate-deps {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.lauth-dep {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .5rem;
  border-radius: .35rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
}
.lauth-dep--ok {
  border-color: rgba(40,200,64,.15);
  background: rgba(40,200,64,.04);
}
.lauth-dep--wait {
  border-color: rgba(255,199,0,.15);
  background: rgba(255,199,0,.04);
}
.lauth-dep-icon {
  font-size: .7rem;
  font-weight: 700;
  color: #28C840;
  width: 1.1rem;
  text-align: center;
  flex-shrink: 0;
}
.lauth-dep-icon--wait { color: var(--yellow); }
.lauth-dep-body {
  display: flex;
  flex-direction: column;
  gap: .05rem;
  flex: 1;
}
.lauth-dep-label {
  font-size: .6rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .03em;
}
.lauth-dep-val {
  font-size: .56rem;
  color: rgba(255,255,255,.3);
  font-family: monospace;
}
.lauth-gate-btn {
  width: 100%;
  padding: .5rem;
  border-radius: .375rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .03em;
  border: none;
  font-family: 'Poppins', sans-serif;
  cursor: not-allowed;
}
.lauth-gate-btn--locked {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.3);
  border: 1px solid rgba(255,255,255,.08);
}
.lauth-gate-btn--active {
  background: var(--yellow);
  color: var(--black);
  cursor: pointer;
}


/* ── Feature visual: Dependency gate (all green) ───────────── */
.fv-gate-body {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.fv-gate-trip {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem .6rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: .375rem;
}
.fv-gate-ac {
  font-size: .85rem;
  font-weight: 800;
  color: var(--white);
  font-family: monospace;
  letter-spacing: .02em;
}
.fv-gate-info {
  font-size: .62rem;
  color: rgba(255,255,255,.4);
}
.fv-gate-deps {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.fv-gate-dep {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .6rem;
  border-radius: .375rem;
  border: 1px solid rgba(255,255,255,.05);
  background: rgba(255,255,255,.02);
}
.fv-gate-dep--ok {
  border-color: rgba(40,200,64,.18);
  background: rgba(40,200,64,.05);
}
.fv-gate-dep-icon {
  font-size: .7rem;
  font-weight: 700;
  color: #28C840;
  width: 1rem;
  flex-shrink: 0;
}
.fv-gate-dep-label {
  font-size: .65rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  min-width: 6rem;
}
.fv-gate-dep-val {
  font-size: .6rem;
  color: rgba(255,255,255,.35);
  font-family: monospace;
}
.fv-gate-btn {
  width: 100%;
  padding: .6rem;
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: .4rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}


/* ── Feature visual: Escort card ───────────────────────────── */
.fv-escort-body {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.fv-escort-section {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.fv-escort-label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.fv-escort-officers {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.fv-officer {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .55rem;
  border-radius: .35rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  font-size: .67rem;
}
.fv-officer--assigned {
  background: rgba(40,200,64,.04);
  border-color: rgba(40,200,64,.12);
}
.fv-officer-dot {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.fv-dot-green { background: #28C840; box-shadow: 0 0 0 2px rgba(40,200,64,.2); }
.fv-dot-dim   { background: rgba(255,255,255,.2); }
.fv-officer-name {
  flex: 1;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}
.fv-officer-badge {
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .12rem .35rem;
  border-radius: .2rem;
}
.fv-badge-assigned {
  background: rgba(40,200,64,.12);
  color: #28C840;
  border: 1px solid rgba(40,200,64,.2);
}
.fv-badge-avail {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.08);
}


/* ── Feature visual: After-hours card ─────────────────────── */
.fv-ahours-body {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.fv-ahours-time {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  padding: .75rem;
  background: rgba(5,0,191,.1);
  border: 1px solid rgba(5,0,191,.2);
  border-radius: .5rem;
}
.fv-ahours-clock {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  font-family: monospace;
  letter-spacing: -.02em;
}
.fv-ahours-range {
  font-size: .65rem;
  color: rgba(255,255,255,.4);
  font-family: monospace;
}
.fv-ahours-details {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.fv-ahours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .7rem;
}
.fv-ahours-actions {
  display: flex;
  gap: .5rem;
}


/* ── Feature visual: Real-time visibility ──────────────────── */
.fv-rtvis-body {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.fv-rtvis-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.05);
  border-radius: .5rem;
  overflow: hidden;
}
.fv-rtvis-counter {
  background: rgba(255,255,255,.03);
  padding: .65rem .5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
}
.fv-rtvis-num {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -.03em;
  font-family: monospace;
}
.fv-rtvis-num--ok   { color: #28C840; }
.fv-rtvis-num--pend { color: var(--yellow); }
.fv-rtvis-num--rej  { color: #FF5F56; }
.fv-rtvis-label {
  font-size: .55rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.fv-rtvis-feed {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.fv-rtvis-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .4rem .5rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: .35rem;
}
.fv-rtvis-info {
  display: flex;
  flex-direction: column;
  gap: .08rem;
  flex: 1;
}
.fv-rtvis-event {
  font-size: .67rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}
.fv-rtvis-detail {
  font-size: .58rem;
  color: rgba(255,255,255,.28);
  font-family: monospace;
}


/* ════════════════════════════════════════════════════════════
   PILOT APP PAGE
   ════════════════════════════════════════════════════════════ */

/* ── Hero accent ───────────────────────────────────────────── */
.product-hero--pilot::before {
  background: radial-gradient(ellipse 65% 55% at 15% 20%, rgba(255,199,0,.14) 0%, transparent 65%),
              radial-gradient(ellipse 50% 45% at 90% 80%, rgba(5,0,191,.2) 0%, transparent 60%);
}

/* ── Phone frame ───────────────────────────────────────────── */
.pilot-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.pilot-phone {
  width: 228px;
  background: #07070f;
  border-radius: 2.25rem;
  border: 1.5px solid rgba(255,255,255,.1);
  overflow: hidden;
  box-shadow:
    0 0 0 5px rgba(255,255,255,.04),
    0 0 0 7px rgba(255,255,255,.02),
    0 32px 72px rgba(0,0,0,.65);
  transform: rotate(-3deg);
}
.pilot-phone-notch {
  width: 4.5rem;
  height: .45rem;
  background: rgba(255,255,255,.1);
  border-radius: 2rem;
  margin: .7rem auto .3rem;
}
.pilot-phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem .3rem;
}
.pilot-status-time {
  font-size: .6rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  font-family: monospace;
}
.pilot-status-icons {
  font-size: .42rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .04em;
}
.pilot-phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .3rem .875rem .5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pilot-header-back {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}
.pilot-header-title {
  font-size: .72rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .03em;
}
.pilot-header-bell {
  font-size: .7rem;
  color: rgba(255,255,255,.35);
}

.pilot-phone-inner {
  padding: .6rem .75rem .875rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

/* ── Profile card (in phone) ───────────────────────────────── */
.pilot-profile-card {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .65rem;
  background: rgba(255,199,0,.06);
  border: 1px solid rgba(255,199,0,.12);
  border-radius: .625rem;
}
.pilot-avatar {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: .72rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  letter-spacing: .02em;
}
.pilot-profile-info {
  display: flex;
  flex-direction: column;
  gap: .12rem;
}
.pilot-profile-name {
  font-size: .72rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
}
.pilot-profile-role {
  font-size: .58rem;
  color: rgba(255,255,255,.4);
}
.pilot-profile-status {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .55rem;
  color: #28C840;
  font-weight: 600;
}

/* ── Aircraft section (in phone) ───────────────────────────── */
.pilot-section-label {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
}
.pilot-ac-list {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.pilot-ac-row {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .45rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: .35rem;
  font-size: .62rem;
}
.pilot-ac-reg {
  font-weight: 700;
  color: var(--white);
  font-family: monospace;
  font-size: .65rem;
  min-width: 3.2rem;
  letter-spacing: .02em;
}
.pilot-ac-type {
  flex: 1;
  color: rgba(255,255,255,.38);
  font-size: .58rem;
}
.pilot-ac-badge {
  font-size: .48rem;
  font-weight: 700;
  padding: .1rem .3rem;
  border-radius: .2rem;
}
.pilot-badge-ok {
  background: rgba(40,200,64,.1);
  color: #28C840;
  border: 1px solid rgba(40,200,64,.18);
}

/* ── Document chips (in phone) ─────────────────────────────── */
.pilot-docs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .3rem;
}
.pilot-doc-chip {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .4rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: .375rem;
  font-size: .6rem;
}
.pilot-doc-icon {
  font-size: .7rem;
  flex-shrink: 0;
}
.pilot-doc-label {
  flex: 1;
  color: rgba(255,255,255,.45);
  font-size: .57rem;
}
.pilot-doc-ok {
  font-size: .58rem;
  color: #28C840;
  font-weight: 700;
}

/* ── Create trip button (in phone) ─────────────────────────── */
.pilot-cta-btn {
  width: 100%;
  padding: .5rem;
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: .5rem;
  font-size: .68rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .02em;
  cursor: pointer;
}


/* ── Feature visual: Registration flow ─────────────────────── */
.fv-regflow-body {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.fv-regflow-step {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem .5rem;
  border-radius: .375rem;
  border: 1px solid transparent;
  background: rgba(255,255,255,.02);
}
.fv-regstep--done   { background: rgba(40,200,64,.04); border-color: rgba(40,200,64,.1); }
.fv-regstep--active { background: rgba(255,199,0,.06); border-color: rgba(255,199,0,.15); }
.fv-regstep--pend   { opacity: .5; }

.fv-regstep-num {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .6rem;
  font-weight: 800;
  flex-shrink: 0;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.3);
  border: 1px solid rgba(255,255,255,.08);
}
.fv-regstep-num--done {
  background: rgba(40,200,64,.15);
  color: #28C840;
  border-color: rgba(40,200,64,.25);
}
.fv-regstep-num--active {
  background: rgba(255,199,0,.15);
  color: var(--yellow);
  border-color: rgba(255,199,0,.25);
}
.fv-regstep-copy {
  display: flex;
  flex-direction: column;
  gap: .08rem;
}
.fv-regstep-title {
  font-size: .67rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}
.fv-regstep-sub {
  font-size: .57rem;
  color: rgba(255,255,255,.3);
  font-family: monospace;
}
.fv-regflow-bar {
  height: .3rem;
  background: rgba(255,255,255,.06);
  border-radius: 2rem;
  overflow: hidden;
  margin-top: .4rem;
}
.fv-regflow-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 2rem;
}


/* ── Feature visual: Document upload card ──────────────────── */
.fv-docs-body {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.fv-doc-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem .6rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: .4rem;
}
.fv-doc-icon-wrap {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.fv-doc-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.fv-doc-name {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
}
.fv-doc-detail {
  font-size: .6rem;
  color: rgba(255,255,255,.3);
  font-family: monospace;
}
.fv-doc-expiry {
  font-size: .57rem;
  font-weight: 600;
}
.fv-expiry-ok   { color: #28C840; }
.fv-expiry-warn { color: var(--yellow); }
.fv-doc-status-badge {
  font-size: .55rem;
  font-weight: 700;
  padding: .18rem .4rem;
  border-radius: .25rem;
  flex-shrink: 0;
  text-align: center;
}
.fv-doc-ok {
  background: rgba(40,200,64,.1);
  color: #28C840;
  border: 1px solid rgba(40,200,64,.2);
}
.fv-doc-divider {
  height: 1px;
  background: rgba(255,255,255,.05);
}


/* ── Feature visual: Aircraft list card ────────────────────── */
.fv-aircraft-body {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.fv-aircraft-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .5rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: .375rem;
}
.fv-aircraft-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .08rem;
}
.fv-aircraft-reg {
  font-size: .75rem;
  font-weight: 800;
  color: var(--white);
  font-family: monospace;
  letter-spacing: .02em;
}
.fv-aircraft-type {
  font-size: .58rem;
  color: rgba(255,255,255,.35);
}
.fv-aircraft-badge {
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .15rem .35rem;
  border-radius: .25rem;
  flex-shrink: 0;
}
.fv-ac-ok   { background: rgba(40,200,64,.1); color: #28C840; border: 1px solid rgba(40,200,64,.2); }
.fv-ac-pend { background: rgba(255,199,0,.1); color: var(--yellow); border: 1px solid rgba(255,199,0,.2); }
.fv-aircraft-footer {
  display: flex;
  justify-content: space-between;
  padding: .35rem .5rem 0;
  font-size: .6rem;
  color: rgba(255,255,255,.35);
  border-top: 1px solid rgba(255,255,255,.05);
  margin-top: .15rem;
  padding-top: .4rem;
}


/* ── Feature visual: Approval timeline card ────────────────── */
.fv-approval-body {
  display: flex;
  flex-direction: column;
}
.fv-approval-step {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.fv-approval-connector {
  width: .25rem;
  height: 1.2rem;
  background: rgba(255,255,255,.08);
  margin-left: .6rem;
  border-radius: 2px;
  flex-shrink: 0;
}
.fv-conn-done   { background: #28C840; }
.fv-conn-active { background: linear-gradient(180deg, #28C840, var(--yellow)); }

.fv-appr-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  flex-shrink: 0;
}
.fv-appr-dot--done   { background: #28C840; border-color: transparent; }
.fv-appr-dot--active {
  background: var(--yellow);
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(255,199,0,.2);
}
.fv-appr-content {
  display: flex;
  flex-direction: column;
  gap: .08rem;
  padding: .25rem 0;
}
.fv-appr-title {
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.fv-appr-detail {
  font-size: .58rem;
  color: rgba(255,255,255,.3);
  font-family: monospace;
}
.fv-appr-pend .fv-appr-title { color: rgba(255,255,255,.3); }


/* ── Pilot page — how-flow-card override ───────────────────── */
.pilot-app-page .how-flow-card {
  overflow: visible;
  padding: 1.5rem;
}

/* ── Pilot journey pipeline (how-it-works) ─────────────────── */
.pilot-journey-steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.pj-step {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.pj-dot {
  width: .85rem;
  height: .85rem;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.12);
  flex-shrink: 0;
}
.pj-dot--done {
  background: #28C840;
  border-color: transparent;
}
.pj-dot--active {
  background: var(--yellow);
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(255,199,0,.2);
}
.pj-dot--end {
  background: rgba(255,199,0,.2);
  border-color: rgba(255,199,0,.4);
}
.pj-label {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
}
.pj-step--done .pj-label   { color: rgba(255,255,255,.75); }
.pj-step--active .pj-label { color: var(--yellow); }
.pj-step--pend .pj-label   { color: rgba(255,255,255,.25); }
.pj-connector {
  width: .25rem;
  height: 1.1rem;
  background: rgba(255,255,255,.08);
  margin-left: .3rem;
  border-radius: 2px;
  flex-shrink: 0;
}
.pj-conn-done   { background: #28C840; }
.pj-conn-active { background: linear-gradient(180deg, #28C840 0%, var(--yellow) 100%); }
.pilot-journey-stat {
  margin-top: 1rem;
  padding-top: .875rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.pilot-journey-stat strong {
  font-size: .8rem;
  font-weight: 800;
  color: var(--yellow);
}
.pilot-journey-stat span {
  font-size: .62rem;
  color: rgba(255,255,255,.35);
}


/* ── Pilot App responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .pilot-phone { transform: none; width: 200px; }
  .fv-aircraft-footer { flex-wrap: wrap; gap: .3rem; }
}
@media (max-width: 768px) {
  .pilot-phone { width: 180px; }
  .pilot-profile-card { gap: .4rem; }
}


/* ── Landing Auth responsive ───────────────────────────────── */
@media (max-width: 900px) {
  .fv-gate-deps { gap: .2rem; }
  .fv-rtvis-counters { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .lauth-trip-info { display: none; }
  .fv-ahours-clock { font-size: 1.2rem; }
}


/* ═══════════════════════════════════════════════════════════════
   CONTACT / BOOKING FLOW PAGE
   ═══════════════════════════════════════════════════════════════ */

/* Page-level override — warm near-black background */
body.contact-page {
  background: #0B0900;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.contact-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(255,199,0,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 80%,  rgba(5,0,191,.06)  0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── Header ─────────────────────────────────────────────────── */
.ct-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1.25rem, 5vw, 2.5rem);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.ct-logo { display: flex; align-items: center; gap: .6rem; }
.ct-back-site {
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.ct-back-site:hover { color: var(--white); }

/* ── Main layout ─────────────────────────────────────────────── */
.ct-main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 5vw, 2.5rem) 3rem;
}
.ct-shell {
  width: 100%;
  max-width: 560px;
  animation: ctFadeIn .35s ease;
}
.ct-shell--wide { max-width: 860px; }
.ct-step--hidden { display: none !important; }

@keyframes ctFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Intro ───────────────────────────────────────────────────── */
.ct-intro { margin-bottom: 2rem; }
.ct-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: .6rem;
}
.ct-sub {
  font-size: .92rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  max-width: 48ch;
}

/* ── Form ────────────────────────────────────────────────────── */
.ct-form { display: flex; flex-direction: column; gap: 1.1rem; }
.ct-req  { color: var(--yellow); }

.ct-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ct-field { display: flex; flex-direction: column; gap: .45rem; }
.ct-field label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.75);
}

.ct-field input,
.ct-field select {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .5rem;
  padding: .8rem 1rem;
  font-family: var(--font);
  font-size: .92rem;
  color: var(--white);
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}
.ct-field input::placeholder { color: rgba(255,255,255,.2); }
.ct-field input:focus,
.ct-field select:focus {
  border-color: var(--yellow);
  background: rgba(255,199,0,.04);
}
.ct-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.ct-field select option {
  background: #1A1500;
  color: var(--white);
}

/* ── Phone field (intl-tel-input dark overrides) ─────────────── */
.ct-field .iti { width: 100%; }

.ct-field .iti__tel-input {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .5rem;
  color: var(--white);
  font-family: var(--font);
  font-size: .92rem;
  padding: .8rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}
.ct-field .iti__tel-input:focus {
  border-color: var(--yellow);
  background: rgba(255,199,0,.04);
}
.ct-field .iti__tel-input::placeholder { color: rgba(255,255,255,.2); }

.ct-field .iti__flag-container { height: 100%; }
.ct-field .iti__selected-flag {
  background: rgba(255,255,255,.06);
  border-radius: .5rem 0 0 .5rem;
  border-right: 1px solid rgba(255,255,255,.1);
  padding: 0 .65rem;
}
.ct-field .iti__selected-flag:hover,
.ct-field .iti__selected-flag:focus { background: rgba(255,255,255,.12); }

/* Dropdown */
.iti__dropdown-content {
  background: #1C1400;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .6rem;
  box-shadow: 0 16px 48px rgba(0,0,0,.7);
  overflow: hidden;
}

/* Search box */
.iti__search-box {
  background: rgba(255,255,255,.07) !important;
  border: none !important;
  border-bottom: 1px solid rgba(255,255,255,.1) !important;
  border-radius: 0 !important;
  color: #fff !important;
  font-family: var(--font);
  font-size: .88rem;
  padding: .7rem 1rem !important;
  width: 100%;
  outline: none;
  box-sizing: border-box;
}
.iti__search-box::placeholder { color: rgba(255,255,255,.35) !important; }

/* Country list */
.iti__country-list {
  background: transparent;
  border: none;
  max-height: 220px;
}
.iti__country {
  padding: .55rem 1rem;
  color: var(--white);
}
.iti__country:hover,
.iti__country.iti__highlight { background: rgba(255,199,0,.1); }
.iti__country-name { color: var(--white); }
.iti__dial-code { color: rgba(255,255,255,.45); }
.iti__divider { border-bottom: 1px solid rgba(255,255,255,.08); margin: 0; }
.iti__flag-box { margin-right: .5rem; }

/* ── Error message ───────────────────────────────────────────── */
.ct-error {
  font-size: .82rem;
  color: #FF6B6B;
  background: rgba(255,107,107,.08);
  border: 1px solid rgba(255,107,107,.2);
  border-radius: .5rem;
  padding: .7rem 1rem;
  line-height: 1.6;
}

/* ── Submit button ───────────────────────────────────────────── */
.ct-submit {
  width: 100%;
  margin-top: .5rem;
  padding: .95rem 1.5rem;
  font-size: .95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: opacity .2s;
}
.ct-submit:disabled { opacity: .7; cursor: not-allowed; }
.ct-submit-spinner svg { animation: ctSpin .8s linear infinite; }
@keyframes ctSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Trust line ──────────────────────────────────────────────── */
.ct-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .75rem;
  font-size: .72rem;
  color: rgba(255,255,255,.28);
  letter-spacing: .03em;
}
.ct-trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #28C840;
  flex-shrink: 0;
}

/* ── Calendly panel ──────────────────────────────────────────── */
.ct-calendly-header { margin-bottom: 2rem; }
.ct-meeting-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
  background: rgba(255,199,0,.07);
  border: 1px solid rgba(255,199,0,.15);
  border-radius: 2rem;
  padding: .3rem .8rem;
}
.ct-calendly-wrap {
  border-radius: .875rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  background: var(--white);
}
.calendly-inline-widget { display: block; }

/* ── Footer ──────────────────────────────────────────────────── */
.ct-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.75rem clamp(1.25rem, 5vw, 2.5rem) 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.ct-footer-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .4rem;
}
.ct-footer-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #28C840;
  flex-shrink: 0;
}
.ct-footer-copy { font-size: .72rem; color: rgba(255,255,255,.22); }

/* ── Contact responsive ──────────────────────────────────────── */
@media (max-width: 640px) {
  .ct-shell, .ct-shell--wide { max-width: 100%; }
  .ct-grid-2 { grid-template-columns: 1fr; }
  .ct-cc { width: 6.5rem; }
}


/* ── Airline responsive ────────────────────────────────────── */
@media (max-width: 900px) {
  .ba-panels {
    grid-template-columns: 1fr;
    border-radius: .875rem;
  }
  .ba-divider {
    width: auto;
    height: 3rem;
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
    flex-direction: row;
  }
  .ba-arrow { transform: rotate(90deg); }
  .ba-panel--before { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
}
@media (max-width: 768px) {
  .airline-disc-compare { flex-wrap: wrap; justify-content: center; }
  .airline-disc-col { min-width: 5rem; }
  .fv-recon-compare { flex-direction: column; gap: .5rem; }
}
