/* JetBlue Virtual — coming-soon holding page.
   Rebuilt from the Claude Design export (variant B, "Framed daylight").
   Values (colours, gradients, clamp() type scale) are carried verbatim from the export. */

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;                 /* variable weight axis — one file covers 400–800 */
  font-display: swap;
  src: url('/fonts/plus-jakarta-sans-latin-wght.woff2') format('woff2');
}

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

/* Make the `hidden` attribute authoritative. Without this, an author rule that
   sets `display` (e.g. `.notify-success { display: flex }`) overrides the UA
   `[hidden] { display: none }`, so a hidden element stays visible. The email
   card's success/error states rely on this being correct. */
[hidden] { display: none !important; }

:root {
  --navy: #05204F;
  --blue-900: #0B3F9E;
  --blue-600: #0B5FE0;
  --sky-500: #1C86F0;
  --ink: #10233F;
  --muted: #5C7191;
  --bg: #F5F8FC;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; }

.eyebrow {
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .11em;
  color: var(--blue-600);
}

/* --- Hero ------------------------------------------------------------- */
.hero { padding: clamp(10px, 1.6vw, 18px); }

.hero-frame {
  position: relative;
  min-height: min(92svh, 860px);
  border-radius: clamp(20px, 2.6vw, 32px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #DCEBFA;
}

.hero-bg,
.ramp-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg { object-position: 55% 62%; }

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(245, 248, 252, .94) 0%,
    rgba(245, 248, 252, .78) 26%,
    rgba(245, 248, 252, 0) 52%,
    rgba(5, 32, 79, 0) 78%,
    rgba(5, 32, 79, .35) 100%);
}

.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(18px, 4vw, 44px);
}

.logo-badge {
  background: linear-gradient(150deg, var(--navy), var(--blue-900));
  border-radius: 14px;
  padding: 9px 14px;
  display: inline-flex;
}
.logo-badge img {
  width: clamp(104px, 11vw, 126px);
  height: auto;
}

.site-domain {
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .1em;
  color: var(--blue-900);
}

.hero-copy {
  position: relative;
  padding: clamp(16px, 3vw, 28px) clamp(18px, 4vw, 44px) 0;
  max-width: 820px;
}
.hero-copy h1 {
  margin: 0;
  font-weight: 800;
  font-size: clamp(40px, 7.4vw, 84px);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--navy);
}
.hero-tagline {
  margin: 14px 0 0;
  font-weight: 600;
  font-size: clamp(16px, 2.1vw, 21px);
  line-height: 1.45;
  color: #10335F;
  max-width: 32ch;
  text-wrap: pretty;
}

.hero-cta {
  position: relative;
  margin-top: auto;
  padding: 0 clamp(12px, 3vw, 32px) clamp(12px, 3vw, 32px);
}

.notify-card {
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 22px;
  padding: clamp(16px, 2.4vw, 22px);
  max-width: 560px;
  box-shadow: 0 24px 50px -24px rgba(5, 32, 79, .55);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.notify-title {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.3;
  color: var(--navy);
}

.notify-form {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.notify-form input[type="email"] {
  flex: 1 1 200px;
  min-width: 0;
  outline: 0;
  background: #F1F6FD;
  border: 1px solid #D9E5F4;
  color: var(--ink);
  border-radius: 12px;
  padding: 15px 16px;
  font: 500 15px/1 'Plus Jakarta Sans', sans-serif;
}
.notify-form input[type="email"]::placeholder { color: var(--muted); }
.notify-form input[type="email"]:focus {
  border-color: var(--blue-600);
  background: #fff;
}
.notify-form button {
  flex: 1 0 auto;
  border: 0;
  cursor: pointer;
  background: linear-gradient(150deg, var(--navy), var(--blue-600));
  color: #fff;
  border-radius: 12px;
  padding: 15px 22px;
  font: 700 15px/1 'Plus Jakarta Sans', sans-serif;
  transition: filter .15s ease;
}
.notify-form button:hover { filter: brightness(1.1); }
.notify-form button:disabled { opacity: .7; cursor: default; }

/* Honeypot — visually gone, still submitted by bots. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.notify-fine {
  margin: 11px 0 0;
  font-weight: 500;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--muted);
}
.notify-error {
  margin: 10px 0 0;
  font-weight: 600;
  font-size: 12.5px;
  line-height: 1.4;
  color: #B42318;
}

.notify-success {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink);
}
.notify-check {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  background: #E4F7F3;
  color: #0B7A6B;
  display: grid;
  place-items: center;
}

/* --- Numbers --------------------------------------------------------- */
/* Content sections run to the same width as the full-bleed photos so the page
   holds one width top to bottom (the photos are doing the work — widen the
   content to meet them, don't shrink them). Body prose is capped separately so
   it never stretches to a full-bleed measure. */
.numbers {
  padding: clamp(40px, 7vw, 80px) clamp(24px, 4vw, 56px) 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 14px;
}
.stat {
  border-radius: 20px;
  padding: 22px 22px 20px;
  color: #fff;
}
.stat-1 { background: linear-gradient(150deg, var(--navy), var(--blue-900)); }
.stat-2 { background: linear-gradient(150deg, var(--blue-900), var(--blue-600)); }
.stat-3 { background: linear-gradient(150deg, var(--blue-600), var(--sky-500)); }
.stat-value {
  font-weight: 800;
  font-size: clamp(40px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-label {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.45;
  margin-top: 10px;
}
.stat-1 .stat-label { color: #CFE4FA; }
.stat-2 .stat-label { color: #DDEBFF; }
.stat-3 .stat-label { color: #EAF3FF; }

/* --- Why this one ---------------------------------------------------- */
.why {
  padding: clamp(40px, 7vw, 80px) clamp(24px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.why-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.why-copy h2 {
  margin: 12px 0 0;
  font-weight: 800;
  font-size: clamp(26px, 3.6vw, 36px);
  line-height: 1.15;
  letter-spacing: -.01em;
  text-wrap: pretty;
}
.why-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-icon {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.icon-blue { background: linear-gradient(150deg, #E8F0FE, #D6E6FF); color: var(--blue-600); }
.icon-teal { background: linear-gradient(150deg, #E4F7F3, #CFF1EA); color: #0B7A6B; }
.icon-sky  { background: linear-gradient(150deg, #E3F4FF, #CDEBFF); color: #0A6BAD; }
.why-point-title {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.3;
}
.why-point-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 4px;
  max-width: 60ch;   /* keep the supporting prose readable even as the section widens */
}
.why-figure {
  margin: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 22px 48px -26px rgba(10, 42, 99, .6);
}
.why-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% 50%;
}

/* --- Closing band (Boston ramp) -------------------------------------- */
.ramp { padding: 0 clamp(10px, 1.6vw, 18px) clamp(10px, 1.6vw, 18px); }
.ramp-frame {
  position: relative;
  border-radius: clamp(20px, 2.6vw, 32px);
  overflow: hidden;
  min-height: clamp(380px, 48vw, 560px);
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.ramp-bg { object-position: 52% 45%; }
.ramp-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
    rgba(5, 32, 79, .92) 0%,
    rgba(5, 32, 79, .55) 38%,
    rgba(5, 32, 79, 0) 70%);
}
.ramp-content {
  position: relative;
  width: 100%;
  padding: clamp(22px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}
.ramp-eyebrow {
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .11em;
  color: #BFE6FF;
}
.ramp-title {
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.15;
  margin-top: 10px;
  max-width: 20ch;
}
.btn-light {
  border: 0;
  cursor: pointer;
  background: #fff;
  color: var(--blue-900);
  border-radius: 12px;
  padding: 14px 22px;
  font: 700 14px/1 'Plus Jakarta Sans', sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: filter .15s ease;
}
.btn-light:hover { filter: brightness(.96); }

.disclaimer {
  padding: 18px clamp(8px, 2vw, 24px) 8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .notify-form button, .btn-light { transition: none; }
}
