:root {
  --go-bg: #07111f;
  --go-bg-2: #0b1829;
  --go-ink: #f7fbff;
  --go-muted: #9fb2c7;
  --go-card: rgba(255, 255, 255, 0.08);
  --go-card-strong: rgba(255, 255, 255, 0.13);
  --go-line: rgba(255, 255, 255, 0.14);
  --go-white: #ffffff;
  --go-red: #ff3b30;
  --go-red-dark: #c91f17;
  --go-amber: #ffb020;
  --go-cyan: #12d6ff;
  --go-green: #2ce59b;
  --go-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --go-radius: 28px;
  --go-radius-sm: 18px;
  --go-max: 1180px;
  --go-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--go-font);
  color: var(--go-ink);
  background:
    radial-gradient(circle at 12% 5%, rgba(18, 214, 255, 0.17), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(255, 59, 48, 0.15), transparent 34%),
    linear-gradient(135deg, var(--go-bg), #03070d 74%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input, textarea, select { font: inherit; }

.container { width: min(100% - 32px, var(--go-max)); margin-inline: auto; }
.section { padding: 72px 0; }
.section-tight { padding: 42px 0; }
.stack { display: grid; gap: 18px; }
.grid { display: grid; gap: 18px; }
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(7, 17, 31, 0.78);
  border-bottom: 1px solid var(--go-line);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1.1rem;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--go-red), var(--go-amber));
  color: #120404;
  box-shadow: 0 0 32px rgba(255, 59, 48, 0.38);
  letter-spacing: -0.08em;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 20px;
  color: var(--go-muted);
  font-size: 0.94rem;
}
.nav-links a:hover { color: var(--go-white); }
.nav-actions { display: none; align-items: center; gap: 10px; }
.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--go-line);
  color: var(--go-white);
  background: var(--go-card);
  border-radius: 14px;
}
.mobile-panel {
  display: none;
  border-top: 1px solid var(--go-line);
  padding: 12px 0 18px;
}
.mobile-panel.is-open { display: block; }
.mobile-panel a { display: block; padding: 14px 0; color: var(--go-muted); }
.mobile-panel .btn { margin-top: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #180606;
  background: linear-gradient(135deg, var(--go-red), var(--go-amber));
  box-shadow: 0 14px 34px rgba(255, 59, 48, 0.27);
}
.btn-secondary { background: rgba(255,255,255,0.09); border-color: var(--go-line); color: var(--go-white); }
.btn-cyan { background: rgba(18, 214, 255, 0.13); color: var(--go-cyan); border-color: rgba(18, 214, 255, 0.28); }
.btn-full { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; filter: grayscale(0.15); }

.hero { padding: 58px 0 50px; }
.hero-grid { display: grid; gap: 28px; align-items: center; }
.eyebrow-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--go-line);
  color: var(--go-muted);
  font-weight: 800;
  font-size: 0.82rem;
}
.badge-red { color: #fff; background: rgba(255, 59, 48, 0.16); border-color: rgba(255, 59, 48, 0.32); }
.badge-cyan { color: var(--go-cyan); background: rgba(18,214,255,0.1); border-color: rgba(18,214,255,0.26); }
.badge-green { color: var(--go-green); background: rgba(44,229,155,0.11); border-color: rgba(44,229,155,0.25); }
.badge-amber { color: var(--go-amber); background: rgba(255,176,32,0.1); border-color: rgba(255,176,32,0.25); }

h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.55rem, 8vw, 5.8rem); line-height: 0.93; letter-spacing: -0.075em; margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 5vw, 3.35rem); line-height: 1; letter-spacing: -0.055em; margin-bottom: 16px; }
h3 { font-size: 1.18rem; letter-spacing: -0.025em; margin-bottom: 10px; }
p { color: var(--go-muted); line-height: 1.68; }
.lead { font-size: clamp(1.06rem, 2.4vw, 1.35rem); max-width: 680px; }
.hero-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }

.card, .glass-card {
  border: 1px solid var(--go-line);
  background: linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045));
  border-radius: var(--go-radius);
  box-shadow: var(--go-shadow);
  backdrop-filter: blur(20px);
}
.card { padding: 22px; }
.card-soft { background: rgba(255,255,255,0.96); color: #081321; }
.card-soft p, .card-soft .muted { color: #536579; }
.card-soft .field label { color: #26384a; }

.dispatch-orb {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  padding: 24px;
}
.orb {
  width: 190px;
  height: 190px;
  margin: 34px auto;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(18,214,255,0.55), rgba(255,59,48,0.38) 42%, rgba(255,255,255,0.07) 66%);
  box-shadow: 0 0 90px rgba(18,214,255,0.34), 0 0 90px rgba(255,59,48,0.2);
  animation: pulseOrb 2.6s ease-in-out infinite;
}
.ring {
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(18,214,255,0.22);
  border-radius: 999px;
  animation: rotateSlow 16s linear infinite;
}
.ring::after { content: ""; position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--go-cyan); top: 14%; right: 18%; box-shadow: 0 0 22px var(--go-cyan); }

.kpi-row { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
.kpi { padding: 18px; border: 1px solid var(--go-line); border-radius: 20px; background: rgba(255,255,255,0.06); }
.kpi strong { display: block; font-size: 1.4rem; letter-spacing: -0.04em; }
.kpi span { color: var(--go-muted); font-size: 0.9rem; }

.stepper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  margin: 22px 0 28px;
}
.step {
  min-width: 0;
  padding: 10px 8px;
  border: 1px solid var(--go-line);
  border-radius: 15px;
  background: rgba(255,255,255,0.06);
  color: var(--go-muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
}
.step.is-active { color: #130606; background: linear-gradient(135deg, var(--go-red), var(--go-amber)); }
.step.is-done { color: var(--go-cyan); border-color: rgba(18,214,255,0.32); }

.choice-card {
  text-align: left;
  width: 100%;
  cursor: pointer;
  color: var(--go-white);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.choice-card:hover, .choice-card.is-selected { border-color: rgba(18,214,255,0.58); transform: translateY(-2px); background: rgba(18,214,255,0.09); }
.choice-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 18px; background: rgba(255,59,48,0.16); color: var(--go-red); font-size: 1.5rem; margin-bottom: 16px; }

.form-grid { display: grid; gap: 16px; }
.field { display: grid; gap: 8px; }
.field label { color: var(--go-ink); font-weight: 800; font-size: 0.92rem; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  color: var(--go-white);
  min-height: 50px;
  padding: 13px 14px;
  outline: none;
}
.field textarea { min-height: 116px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--go-cyan); box-shadow: 0 0 0 4px rgba(18,214,255,0.12); }
.field option { color: #06111d; }
.upload-box {
  border: 1px dashed rgba(18,214,255,0.42);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  background: rgba(18,214,255,0.06);
  color: var(--go-muted);
}

.notice {
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(255,176,32,0.32);
  background: rgba(255,176,32,0.09);
}
.notice strong { color: var(--go-amber); }
.notice.danger { border-color: rgba(255,59,48,0.34); background: rgba(255,59,48,0.09); }
.notice.cyan { border-color: rgba(18,214,255,0.3); background: rgba(18,214,255,0.08); }

.timeline { display: grid; gap: 14px; }
.timeline-item { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.dot { width: 14px; height: 14px; margin-top: 6px; border-radius: 50%; background: rgba(255,255,255,0.22); box-shadow: 0 0 0 6px rgba(255,255,255,0.04); }
.timeline-item.is-active .dot { background: var(--go-cyan); box-shadow: 0 0 0 7px rgba(18,214,255,0.13), 0 0 22px rgba(18,214,255,0.45); }
.timeline-item.is-done .dot { background: var(--go-green); }
.timeline-item h4 { margin: 0 0 4px; letter-spacing: -0.025em; }
.timeline-item p { margin: 0; font-size: 0.92rem; }

.status-list { display: grid; gap: 10px; }
.status-pill { display: flex; justify-content: space-between; align-items: center; gap: 12px; border: 1px solid var(--go-line); border-radius: 18px; padding: 14px; color: var(--go-muted); background: rgba(255,255,255,0.045); }
.status-pill.is-active { color: var(--go-white); border-color: rgba(18,214,255,0.38); background: rgba(18,214,255,0.09); }
.status-pill.is-done { color: var(--go-green); }

.route-panel {
  min-height: 280px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: var(--go-radius);
  border: 1px solid var(--go-line);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    radial-gradient(circle at 40% 44%, rgba(18,214,255,0.28), transparent 30%),
    rgba(255,255,255,0.05);
  background-size: 36px 36px, 36px 36px, auto, auto;
}
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.photo-box { min-height: 100px; display: grid; place-items: center; border: 1px dashed var(--go-line); border-radius: 18px; color: var(--go-muted); background: rgba(255,255,255,0.05); }

.footer { border-top: 1px solid var(--go-line); padding: 34px 0; color: var(--go-muted); }
.footer-grid { display: grid; gap: 18px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-links a:hover { color: var(--go-white); }

.muted { color: var(--go-muted); }
.text-cyan { color: var(--go-cyan); }
.text-amber { color: var(--go-amber); }
.text-green { color: var(--go-green); }
.divider { height: 1px; background: var(--go-line); margin: 18px 0; }

.faq-item { border-bottom: 1px solid var(--go-line); padding: 18px 0; }
.faq-item summary { cursor: pointer; font-weight: 900; letter-spacing: -0.02em; }
.faq-item p { margin: 12px 0 0; }

.state-box { display: none; margin-top: 14px; }
.state-box.is-visible { display: block; }

@keyframes pulseOrb { 0%, 100% { transform: scale(0.96); opacity: .78; } 50% { transform: scale(1.04); opacity: 1; } }
@keyframes rotateSlow { to { transform: rotate(360deg); } }

@media (min-width: 720px) {
  .hero-actions { flex-direction: row; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .form-grid.two { grid-template-columns: repeat(2, 1fr); }
  .kpi-row { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr auto; align-items: center; }
}
@media (min-width: 980px) {
  .nav-links, .nav-actions { display: flex; }
  .menu-toggle { display: none; }
  .mobile-panel { display: none !important; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .section { padding: 92px 0; }
  .card { padding: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition: none !important; }
}

/* NAIAQ GO update: payment step, provider pathway, and badge spacing polish */
.card .badge {
  margin-bottom: 14px;
}
.eyebrow-row {
  gap: 12px;
  margin-bottom: 28px;
}
.badge + h1,
.badge + h2,
.badge + h3 {
  margin-top: 14px;
}
.card h3:last-child,
.notice p:last-child,
.card p:last-child {
  margin-bottom: 0;
}
.card > * + * {
  margin-top: 12px;
}
.card > .badge + h3,
.card > .badge + h2 {
  margin-top: 14px;
}
.pricing-card .price-list {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}
.price-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--go-line);
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
}
.price-list strong {
  color: var(--go-white);
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.price-list span {
  color: var(--go-muted);
  text-align: right;
  line-height: 1.45;
}
.consent-field label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
  color: var(--go-ink);
}
.consent-field input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--go-cyan);
}
@media (max-width: 719px) {
  .stepper {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-list > div {
    align-items: flex-start;
    flex-direction: column;
  }
  .price-list span {
    text-align: left;
  }
}
/* NAIAQ GO targeted polish: footer legal links and provider CTA spacing */
.footer-links {
  row-gap: 10px;
}
.footer-links a {
  line-height: 1.4;
}
.provider-cta-card {
  max-width: 920px;
  margin-inline: auto;
}
.provider-cta-card .hero-actions {
  margin-top: 24px;
  margin-bottom: 12px;
}
@media (max-width: 719px) {
  .footer-links {
    gap: 10px 14px;
  }
}


/* Phase 1 public-safety form and state polish */
.selected-files {
  color: var(--go-cyan);
  font-size: 0.9rem;
  line-height: 1.5;
}
.consent-field a,
.field a {
  color: var(--go-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}
button[disabled],
.btn[disabled] {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
}
.notice[aria-live="polite"] {
  scroll-margin-top: 96px;
}
.photo-box {
  padding: 14px;
  text-align: center;
  line-height: 1.45;
}
