*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #060F1E;
  --navy-card:  #0A1628;
  --navy-mid:   #0D1F35;
  --teal:       #1D9E75;
  --teal-light: #1ECFB4;
  --gold:       #C9A84C;
  --sky:        #8899BB;
  --offwhite:   #F4F6FA;
  --muted:      #4A5D78;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--offwhite);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(6, 15, 30, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(29, 158, 117, 0.12);
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--offwhite);
}

.nav-logo span { color: var(--teal); }

.nav-cta {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover { background: var(--teal-light); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(29, 158, 117, 0.12) 0%, rgba(29, 158, 117, 0) 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--teal);
  opacity: 0.6;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--offwhite);
  margin-bottom: 20px;
}

.hero-title .accent { color: var(--teal); }

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--sky);
  max-width: 480px;
  margin: 0 0 36px;
  font-weight: 400;
  line-height: 1.5;
}

/* Hero phone mockup */
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-phone img {
  width: 100%;
  max-width: 380px;
  border-radius: 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(29, 158, 117, 0.25) 0%, rgba(29, 158, 117, 0) 65%);
  pointer-events: none;
  z-index: 0;
}

.phone-glow-gold {
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2) 0%, rgba(201, 168, 76, 0) 65%);
}

/* Waitlist form */
.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 460px;
  width: 100%;
  margin: 0 0 16px;
}

/* Optional name field spans its own full-width row above email + button */
.waitlist-form .wl-name { flex: 1 1 100%; }

.waitlist-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(136, 153, 187, 0.25);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--offwhite);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-form input::placeholder { color: var(--muted); }
.waitlist-form input:focus { border-color: var(--teal); }

.waitlist-form button {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.waitlist-form button:hover { background: var(--teal-light); transform: translateY(-1px); }
.waitlist-form button:disabled { opacity: 0.6; cursor: not-allowed; }

.form-subtext {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 460px;
}

.form-subtext a { color: var(--sky); text-decoration: underline; }

/* Success / error states */
.form-success,
.form-error {
  display: none;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  padding: 14px 20px;
  font-weight: 600;
  max-width: 460px;
  margin: 0 0 16px;
  font-size: 0.95rem;
}

.form-success {
  background: rgba(29, 158, 117, 0.12);
  border: 1px solid rgba(29, 158, 117, 0.3);
  color: var(--teal-light);
}

.form-error {
  background: rgba(224, 85, 85, 0.1);
  border: 1px solid rgba(224, 85, 85, 0.3);
  color: #f29999;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy-card);
  border-top: 1px solid rgba(29, 158, 117, 0.1);
  border-bottom: 1px solid rgba(29, 158, 117, 0.1);
  padding: 28px 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
}

/* ── SECTIONS ── */
section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--offwhite);
  margin-bottom: 20px;
}

.section-body {
  font-size: 1.05rem;
  color: var(--sky);
  max-width: 600px;
  line-height: 1.7;
}

/* ── WHAT IS section ── */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 60px;
}

.what-text .section-body { max-width: 100%; }

/* Career screen image wrap */
.route-card-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.route-card-img {
  width: 100%;
  max-width: 340px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.route-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(29, 158, 117, 0.18) 0%, rgba(29, 158, 117, 0) 65%);
  pointer-events: none;
  z-index: 0;
}

/* ── SCREEN SHOWCASE (Airports section) ── */
.screen-showcase {
  padding-top: 40px;
  padding-bottom: 40px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.showcase-grid.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.showcase-grid.reverse .showcase-phone { order: 1; }
.showcase-grid.reverse .showcase-text { order: 2; }

.showcase-phone {
  position: relative;
  display: flex;
  justify-content: center;
}

.showcase-phone img {
  width: 100%;
  max-width: 340px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.showcase-text .section-body { max-width: 100%; }

/* ── FEATURES ── */
.features-section {
  background: var(--navy-card);
  border-top: 1px solid rgba(29, 158, 117, 0.08);
  border-bottom: 1px solid rgba(29, 158, 117, 0.08);
}

.features-section section { padding: 80px 24px; }

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

.feature-card {
  background: var(--navy);
  border: 1px solid rgba(136, 153, 187, 0.1);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(29, 158, 117, 0.3);
  transform: translateY(-3px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(29, 158, 117, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.feature-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--offwhite);
  margin-bottom: 8px;
}

.feature-body {
  font-size: 0.875rem;
  color: var(--sky);
  line-height: 1.6;
}

/* ── COMING SOON ── */
.coming-soon { text-align: center; }
.coming-soon .section-title { margin: 0 auto 16px; }
.coming-soon .section-body { margin: 0 auto 48px; }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Bottom waitlist */
.waitlist-block {
  background: var(--navy-card);
  border: 1px solid rgba(29, 158, 117, 0.15);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-block h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--offwhite);
  margin-bottom: 10px;
}

.waitlist-block p {
  font-size: 0.9rem;
  color: var(--sky);
  margin-bottom: 28px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-card);
  border-top: 1px solid rgba(136, 153, 187, 0.08);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky);
}

.footer-logo span { color: var(--teal); }

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

.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--sky); }

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px 24px;
  text-align: center;
  line-height: 1.5;
}

/* ── POPUP ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 15, 30, 0.8);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.popup-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.popup {
  background: var(--navy-card);
  border: 1px solid rgba(29, 158, 117, 0.2);
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.3s;
}

.popup-overlay.visible .popup { transform: translateY(0); }

.popup-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.popup-close:hover { color: var(--offwhite); }

.popup h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--offwhite);
  margin-bottom: 10px;
}

.popup p {
  font-size: 0.875rem;
  color: var(--sky);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Teal glow divider */
.teal-rule {
  width: 48px;
  height: 2px;
  background: var(--teal);
  margin: 0 auto 32px;
  border-radius: 2px;
}

/* ── PRIVACY PAGE ── */
.policy-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}

.policy-wrap h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.policy-wrap .updated {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 40px;
}

.policy-wrap h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--teal);
  margin: 36px 0 12px;
}

.policy-wrap p,
.policy-wrap li {
  color: var(--sky);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.policy-wrap ul { padding-left: 20px; }

.policy-wrap a { color: var(--teal-light); text-decoration: underline; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-copy { align-items: center; }
  .hero-title { text-align: center; }
  .hero-eyebrow::before { display: none; }
  .waitlist-form { margin: 0 auto 16px; }
  .form-subtext { margin: 0 auto; }
  .form-success, .form-error { margin: 0 auto 16px; }

  .hero-phone { order: -1; }
  .hero-phone img { max-width: 300px; }

  .showcase-grid,
  .showcase-grid.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .showcase-grid.reverse .showcase-phone { order: -1; }
  .showcase-text .section-body { margin: 0 auto; }
}

@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .hero { padding: 120px 20px 60px; }
  .what-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-bar { gap: 32px; padding: 24px 20px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-block { padding: 36px 24px; }
  footer { flex-direction: column; text-align: center; padding: 24px 20px; }
}

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

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

