:root {
  --navy: #0d2740;
  --navy-deep: #071a2d;
  --blue: #4da5de;
  --green: #79c843;
  --ink: #172536;
  --muted: #5e6b78;
  --surface: #ffffff;
  --surface-soft: #f4f7f9;
  --line: #dce4e9;
  --shadow: 0 24px 70px rgba(7, 26, 45, 0.16);
  color-scheme: light;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(77, 165, 222, 0.14), transparent 32rem),
    linear-gradient(180deg, #f8fbfd 0%, #eef3f6 100%);
}
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--navy-deep);
  border-radius: 0.4rem;
  transform: translateY(-200%);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }
.site-header { background: rgba(255, 255, 255, 0.94); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand-logo { width: min(360px, 68vw); height: auto; display: block; }
.pilot-badge {
  flex: none;
  padding: 0.45rem 0.8rem;
  color: var(--navy);
  background: #edf7e7;
  border: 1px solid #cce9ba;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(2.5rem, 6vw, 5.5rem);
}
.eyebrow, .card-kicker {
  margin: 0 0 0.8rem;
  color: #357b18;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  max-width: 13ch;
  color: var(--navy-deep);
  font-size: clamp(2.35rem, 5.4vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.lede { max-width: 42rem; margin: 1.6rem 0 0; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.7; }
.benefits { margin: 2.2rem 0; padding: 0; display: grid; gap: 1rem; list-style: none; }
.benefits li { display: grid; grid-template-columns: 2.8rem 1fr; gap: 0.9rem; align-items: start; color: #445362; line-height: 1.55; }
.benefit-number { color: var(--blue); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; padding-top: 0.22rem; }
.benefits strong { color: var(--ink); }
.privacy-note { padding: 1rem 1.1rem; color: #52606c; background: rgba(255,255,255,0.7); border-left: 4px solid var(--green); border-radius: 0 0.5rem 0.5rem 0; font-size: 0.88rem; line-height: 1.5; }
.privacy-note strong { color: var(--navy); }

.navigator-card { min-height: 650px; display: flex; flex-direction: column; overflow: hidden; background: var(--surface); border: 1px solid rgba(13, 39, 64, 0.1); border-radius: 1.1rem; box-shadow: var(--shadow); }
.card-header { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; color: #fff; background: linear-gradient(120deg, var(--navy-deep), var(--navy)); }
.card-kicker { margin-bottom: 0.2rem; color: #a6d989; }
.card-header h2 { margin: 0; font-size: 1.55rem; letter-spacing: -0.02em; }
.status-indicator { display: flex; align-items: center; gap: 0.55rem; font-size: 0.78rem; color: #d7e5ef; }
.status-dot { width: 0.55rem; height: 0.55rem; border-radius: 50%; background: #f2c14e; box-shadow: 0 0 0 4px rgba(242,193,78,0.13); }
.status-indicator.ready .status-dot { background: var(--green); box-shadow: 0 0 0 4px rgba(121,200,67,0.15); }
.status-indicator.error .status-dot { background: #f17b72; box-shadow: 0 0 0 4px rgba(241,123,114,0.15); }

.gate { flex: 1; display: grid; align-content: center; justify-items: center; padding: 2.5rem; text-align: center; }
.gate-icon { width: 3.5rem; height: 3.5rem; display: grid; place-items: center; color: #347b17; background: #edf7e7; border: 1px solid #cfe8bf; border-radius: 50%; font-size: 1.45rem; font-weight: 800; }
.gate h3 { margin: 1.1rem 0 0.55rem; color: var(--navy); font-size: 1.4rem; }
.gate > p { max-width: 30rem; margin: 0; color: var(--muted); line-height: 1.55; }
.turnstile-container { min-height: 70px; margin-top: 1.4rem; }
.gate-message { min-height: 1.5rem; margin-top: 0.8rem !important; font-size: 0.85rem; }
.button { margin-top: 0.9rem; padding: 0.7rem 1.1rem; color: #fff; background: var(--navy); border: 0; border-radius: 0.45rem; cursor: pointer; font-weight: 700; }
.button:hover { background: #16456e; }
.button:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.webchat { flex: 1; min-height: 558px; background: var(--surface); }
.webchat > div { height: 100%; }
.noscript-message { margin: 2rem; padding: 1rem; color: #7e2f28; background: #fff0ee; border-radius: 0.5rem; }

.site-footer { padding: 1.3rem 0; color: #667481; background: var(--navy-deep); }
.footer-inner { display: flex; justify-content: space-between; gap: 1rem; color: #b7c5d0; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; }

@media (max-width: 900px) {
  .page-grid { grid-template-columns: 1fr; align-items: start; }
  h1 { max-width: 15ch; }
  .navigator-card { min-height: 680px; }
}
@media (max-width: 560px) {
  .shell { width: min(100% - 1rem, 1180px); }
  .header-inner { min-height: 70px; }
  .brand-logo { width: min(275px, 72vw); }
  .pilot-badge { font-size: 0.66rem; padding-inline: 0.6rem; }
  .page-grid { padding-block: 2rem; gap: 2.2rem; }
  .intro { padding-inline: 0.5rem; }
  .navigator-card { min-height: 720px; border-radius: 0.8rem; }
  .card-header { padding: 1rem; align-items: flex-start; flex-direction: column; }
  .gate { padding: 1.5rem 1rem; }
  .webchat { min-height: 600px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
