/* ═══════════════════════════════════════════════════════════
   AmpuHealth Shared Stylesheet
   Consumer Palette per Brand Standard v1.3
   Effective 2026-05-05
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --blue:        #0066CC;   /* Electric Blue, v1.3 */
  --blue-deep:   #004C99;
  --yellow:      #F0A800;   /* Golden Yellow, v1.3 */
  --navy:        #002060;   /* Deep Navy */
  --white:       #FFFFFF;
  --off:         #F4F6FB;
  --border:      #C8D3E8;
  --text:        #111827;
  --text-soft:   #1A1A1A;
  --muted:       #475569;
  --tint-blue-light: #C8D8F4;
  --tint-blue-mid:   #A8C0DC;
  --error:       #B91C1C;
  --error-bg:    #FEE2E2;
  --success:     #047857;
  --success-bg:  #D1FAE5;
  /* Dark surface (Deep Navy) tokens */
  --on-navy-secondary:   rgba(255, 255, 255, 0.72);
  --on-navy-help:        rgba(255, 255, 255, 0.6);
  --on-navy-border:      rgba(255, 255, 255, 0.22);
  --on-navy-fill:        rgba(255, 255, 255, 0.06);
  --on-navy-fill-hover:  rgba(255, 255, 255, 0.12);
}

/* ── RESET ──────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  /* Page is designed in fixed light/navy palette. Opt out of iOS Safari
     and Chrome dark-mode auto-adjustment so white cards keep dark text. */
  color-scheme: light;
}

/* ── BASE ───────────────────────────────────────────────── */
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--text); text-decoration-color: var(--blue); }
a:hover { color: var(--blue-deep); }

/* ── SKIP LINK ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 1000;
}
.skip-link:focus {
  position: absolute;
  left: 8px;
  top: 8px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

/* ── WORDMARK ───────────────────────────────────────────── */
.wordmark {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
/* Light context: Ampu in Electric Blue, Health in Golden Yellow. Logo color exemption per WCAG 1.4.3. */
.wordmark .ampu   { color: var(--blue); }
.wordmark .health { color: var(--yellow); }
/* Dark context: Ampu in White, Health in Golden Yellow */
.wordmark.on-dark .ampu   { color: var(--white); }
.wordmark.on-dark .health { color: var(--yellow); }

.wordmark-icon { display: block; flex-shrink: 0; }
.wordmark-text { display: inline; line-height: 1; }

/* ── NAVIGATION ─────────────────────────────────────────── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-inner .wordmark { font-size: 22px; min-height: 44px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-soft);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.nav-links a:hover { color: var(--blue-deep); border-bottom-color: var(--blue); }
.nav-links a.is-active { border-bottom-color: var(--yellow); color: var(--text-soft); }

.nav-cta {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-soft) !important;
  background: var(--yellow);
  padding: 10px 26px !important;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: #D89700; color: var(--text-soft) !important; border-bottom-color: transparent !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-soft);
  margin: 5px 0;
  border-radius: 1px;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: background 0.15s, transform 0.05s;
  text-align: center;
}
.btn-primary {
  background: var(--text-soft);
  color: var(--white);
}
.btn-primary:hover { background: #2D2D2D; color: var(--white); }
.btn-primary:active { transform: translateY(1px); }

.btn-secondary {
  background: var(--white);
  color: var(--text-soft);
  border: 2px solid var(--text-soft);
}
.btn-secondary:hover { background: var(--text-soft); color: var(--white); }

/* ── HERO SPLIT (squeeze, two-column on desktop) ────────── */
.hero-split {
  background: var(--navy);
  color: var(--white);
  padding: 40px 24px 56px;
  position: relative;
  overflow: hidden;
}
.hero-split-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.hero-split .hero-content { padding-top: 8px; }
.hero-split h1,
.hero-split .lead,
.hero-split .hero-trust { color: var(--white); }
.hero-split h1 {
  font-family: 'Barlow', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.hero-split .lead {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 18px;
  font-weight: 500;
  max-width: 540px;
}
.hero-split .hero-trust { color: var(--on-navy-secondary); }
.hero-form-col .form-card {
  background: var(--navy);
  border: 1px solid var(--on-navy-border);
  border-radius: 6px;
  padding: 36px 32px;
  box-shadow: 0 24px 56px -8px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* In-hero pain grid (immediately follows H1) */
.pain-grid-hero {
  margin-top: 18px;
  margin-bottom: 22px;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pain-grid-hero .pain-card { padding: 14px 18px; }
.pain-grid-hero .pain-card p { font-size: 15.5px; line-height: 1.25; }

/* Form sticks alongside the hero column on desktop */
@media (min-width: 981px) {
  .hero-form-col {
    position: sticky;
    top: 88px;
  }
}

/* ── FORM CARD: light variant inside hero ───────────────── */
.hero-form-col .form-card {
  background: var(--white);
  border-color: var(--border);
  box-shadow: 0 24px 56px -8px rgba(0, 32, 96, 0.18), 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 26px 24px;
}
.hero-form-col .form-eyebrow { color: var(--blue-deep); }
.hero-form-col .form-title { color: var(--text-soft); }
.hero-form-col .form-reassure { color: var(--muted); }
.hero-form-col .field-label { color: var(--text-soft); }
.hero-form-col .label-optional { color: var(--muted); }
.hero-form-col .field-help { color: var(--muted); }
.hero-form-col .field input[type="text"],
.hero-form-col .field input[type="email"],
.hero-form-col .field input[type="tel"] {
  color: var(--text-soft);
  background: var(--white);
  border-color: var(--border);
}
.hero-form-col .field input::placeholder { color: var(--muted); opacity: 0.7; }
.hero-form-col .field input:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
}
.hero-form-col .field input:-webkit-autofill,
.hero-form-col .field input:-webkit-autofill:hover,
.hero-form-col .field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text-soft);
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset;
  caret-color: var(--text-soft);
}
.hero-form-col legend { color: var(--text-soft); }
.hero-form-col .tier-card { background: var(--off); border-color: var(--border); }
.hero-form-col .tier-card:hover { border-color: var(--blue); background: var(--white); }
.hero-form-col .tier-card:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2); }
.hero-form-col .tier-card:has(input:checked) {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}
.hero-form-col .tier-card:has(input:checked)::after {
  background: var(--blue);
  box-shadow: inset 0 0 0 3px var(--white), 0 0 0 1px var(--blue);
}
.hero-form-col .tier-name { color: var(--text-soft); }
.hero-form-col .tier-price { color: var(--blue-deep); }
.hero-form-col .tier-price .per { color: var(--muted); }
.hero-form-col .tier-desc { color: var(--text); }
.hero-form-col .consent { background: var(--off); border-color: var(--border); }
.hero-form-col .consent.sms-consent { border-left-color: var(--blue); }
.hero-form-col .consent label { color: var(--text); }
.hero-form-col .consent label a { color: var(--blue-deep); text-decoration-color: var(--blue); }
.hero-form-col .consent label a:hover { color: var(--blue-deep); }
.hero-form-col .consent-tldr { color: var(--muted); }
.hero-form-col .form-message.error {
  background: var(--error-bg);
  color: var(--error);
  border-color: rgba(185, 28, 28, 0.3);
}
.hero-form-col .post-submit-line { color: var(--text-soft); }

.hero-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 24px;
  display: inline-block;
  padding: 6px 12px;
  background: var(--yellow);
  border-radius: 3px;
}
.hero-trust {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--on-navy-secondary);
}

/* Shift content was previously hoisted into hero on desktop. Now lives in
   its own section below the hero on all viewports. */

/* Sky-Blue motif backdrop */
.hero-motif {
  position: absolute;
  left: -180px;
  bottom: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  z-index: 1;
}
.hero-motif::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 80px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.6;
}
@media (max-width: 980px) {
  .hero-motif { display: none; }
}

/* ── SECTION HERO (secondary pages) ─────────────────────── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 32px 24px 28px;
}
.page-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: 'Barlow', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 8px;
}
.page-hero .lead {
  font-size: 17px;
  line-height: 1.45;
  color: var(--white);
  font-weight: 500;
  max-width: 680px;
}

/* ── SECTIONS ───────────────────────────────────────────── */
.section {
  padding: 44px 24px;
}
.section-inner {
  max-width: 880px;
  margin: 0 auto;
}
.section-narrow .section-inner { max-width: 720px; }

.section-alt { background: var(--off); }

.section h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-soft);
  letter-spacing: -0.25px;
  margin-bottom: 14px;
}
.section h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.section p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 12px;
}
.section p.large {
  font-size: 22px;
  line-height: 1.45;
  color: var(--text-soft);
  font-weight: 500;
}

.eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--yellow);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 10px;
}

/* ── PROBLEM CARDS ──────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.pain-card {
  background: var(--white);
  border-left: 4px solid var(--yellow);
  padding: 24px 26px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.04);
}
.pain-card p {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-soft);
  margin: 0;
}

/* ── COMPLIANCE LINE ────────────────────────────────────── */
.compliance-line {
  background: var(--white);
  border: 2px solid var(--yellow);
  border-radius: 4px;
  padding: 16px 22px;
  margin: 24px 0 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-soft);
}

.consent-tldr {
  font-size: 13px;
  color: var(--on-navy-secondary);
  margin: 0 0 10px;
  font-weight: 600;
}

/* ── BULLET LIST ────────────────────────────────────────── */
.feature-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
}
.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--blue);
}

/* ── PROCESS STEPS ──────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 28px;
}
.step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 6px;
}
.step-body p {
  font-size: 16px;
  color: var(--text);
  margin: 0;
  line-height: 1.55;
}

/* ── TIER CARDS (display, not form) ─────────────────────── */
.tier-display-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.tier-display-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tier-display-card.featured {
  border-color: var(--blue);
  box-shadow: 0 12px 32px -8px rgba(0, 102, 204, 0.25);
}
.tier-tag {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--yellow);
  color: var(--text-soft);
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 3px;
}
.tier-display-card .tier-name {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.tier-display-card .tier-price-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.tier-display-card .tier-price-amount {
  font-family: 'Barlow', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--text-soft);
  line-height: 1;
}
.tier-display-card .tier-price-per {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.tier-display-card .tier-summary {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.5;
}
.tier-display-card .tier-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.tier-display-card .tier-tag-pill {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--off);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.tier-display-card.featured .tier-tag-pill {
  background: rgba(240, 168, 0, 0.18);
  border-color: var(--yellow);
}
.tier-display-card .tier-tags-label {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  width: 100%;
  margin-bottom: 4px;
}
.tier-display-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier-display-card ul li {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}
.tier-display-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--blue);
}

/* ── FOUNDERS ───────────────────────────────────────────── */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.founder-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 26px;
}
.founder-card .founder-name {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 4px;
}
.founder-card .founder-role {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 16px;
}
.founder-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* ── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: 32px 24px;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.25px;
}
.cta-band p {
  font-size: 15px;
  color: var(--on-navy-secondary);
  margin-bottom: 14px;
  font-weight: 500;
}
.cta-band .btn-primary {
  background: var(--yellow);
  color: var(--text-soft);
}
.cta-band .btn-primary:hover { background: #D89700; color: var(--text-soft); }

/* ── FORM (waitlist), Deep Navy form card per v1.2 Sec 08 ─ */
.form-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--navy);
  border: 1px solid var(--on-navy-border);
  border-radius: 6px;
  padding: 44px 40px;
  box-shadow: 0 20px 48px -8px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.form-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 6px;
}
.form-title {
  font-family: 'Barlow', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.25px;
  margin-bottom: 6px;
  line-height: 1.1;
}
.form-reassure {
  font-size: 14px;
  color: var(--on-navy-secondary);
  margin-bottom: 16px;
}

form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 4px; }
.field-phone-group { gap: 8px; }
.field-label {
  font-family: 'Barlow', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
}
.label-optional {
  color: var(--on-navy-help);
  font-weight: 500;
  font-size: 13px;
  margin-left: 6px;
}
.field-help { font-size: 13px; color: var(--on-navy-help); }
.field input[aria-invalid="true"] { border-color: var(--error); box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.25); }
.field-error { color: var(--error); font-size: 13px; margin-top: 4px; }
fieldset.has-error { border: 2px solid var(--error) !important; border-radius: 5px; padding: 8px; }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  width: 100%;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--white);
  background: var(--on-navy-fill);
  border: 1.5px solid var(--on-navy-border);
  border-radius: 4px;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.field input::placeholder { color: rgba(255, 255, 255, 0.4); }
.field input:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--on-navy-fill-hover);
  box-shadow: 0 0 0 3px rgba(61, 165, 224, 0.35);
}
.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--white);
  -webkit-box-shadow: 0 0 0 1000px var(--navy) inset;
  caret-color: var(--white);
}

fieldset { border: none; display: flex; flex-direction: column; gap: 6px; }
legend {
  font-family: 'Barlow', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.tier-grid { display: flex; flex-direction: column; gap: 6px; }
.tier-card {
  display: block;
  cursor: pointer;
  padding: 12px 16px;
  background: var(--on-navy-fill);
  border: 2px solid var(--on-navy-border);
  border-radius: 5px;
  transition: all 0.15s;
  position: relative;
}
.tier-card:hover { border-color: var(--blue); background: var(--on-navy-fill-hover); }
.tier-card:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(61, 165, 224, 0.35);
}
.tier-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.tier-card:has(input:checked) {
  border-color: var(--yellow);
  background: var(--on-navy-fill-hover);
  box-shadow: 0 0 0 3px rgba(240, 168, 0, 0.25);
}
.tier-card:has(input:checked)::after {
  content: "";
  position: absolute;
  top: 16px; right: 18px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: inset 0 0 0 3px var(--navy), 0 0 0 1px var(--yellow);
}
.tier-row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 2px; }
.tier-name {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.tier-price {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--yellow);
}
.tier-price .per { font-size: 12px; color: var(--on-navy-help); font-weight: 500; }
.tier-desc { font-size: 13px; color: var(--on-navy-secondary); padding-right: 32px; line-height: 1.4; }

.consent {
  background: var(--on-navy-fill);
  border: 1px solid var(--on-navy-border);
  border-radius: 4px;
  padding: 12px 14px;
}
.consent.sms-consent {
  border-left: 3px solid var(--yellow);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
.consent.sms-consent.is-revealed { max-height: 200px; opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .consent.sms-consent {
    transition: max-height 200ms ease-out, opacity 150ms ease-out;
  }
}
.consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 12.5px;
  color: var(--on-navy-secondary);
  line-height: 1.5;
}
.consent label a { color: var(--white); text-decoration: underline; text-decoration-color: var(--yellow); }
.consent label a:hover { color: var(--white); }
.consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--yellow);
  cursor: pointer;
}

.submit-btn {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-soft);
  background: var(--yellow);
  border: none;
  border-radius: 4px;
  padding: 14px 20px;
  cursor: pointer;
  transition: background 0.15s, transform 0.05s;
  margin-top: 2px;
}
.submit-btn:hover:not(:disabled) { background: #D89700; }
.submit-btn:active:not(:disabled) { transform: translateY(1px); }
.submit-btn:disabled { background: rgba(240, 168, 0, 0.4); color: rgba(26, 26, 26, 0.6); cursor: not-allowed; }
.btn-spinner { display: none; width: 18px; height: 18px; vertical-align: middle; margin-right: 6px; }
@media (prefers-reduced-motion: no-preference) {
  @keyframes btn-spin { to { transform: rotate(360deg); } }
  .submit-btn.is-submitting .btn-spinner { display: inline-block; animation: btn-spin 0.7s linear infinite; }
}

.form-message {
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  display: none;
}
.form-message.error {
  display: block;
  background: rgba(185, 28, 28, 0.18);
  color: #FCA5A5;
  border: 1px solid rgba(252, 165, 165, 0.4);
}

.success { text-align: center; padding: 16px 0; }
.success-mark {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-soft);
}
.success h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 700;
}
.success p { font-size: 16px; color: var(--on-navy-secondary); margin-bottom: 8px; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  border-top: 4px solid var(--yellow);
  background: var(--white);
  padding: 28px 24px 20px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.site-footer .wordmark { font-size: 24px; margin-bottom: 12px; }
.footer-meta {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.footer-meta a { color: var(--muted); text-decoration: none; }
.footer-meta a:hover { color: var(--blue-deep); }

.footer-col-title {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 12px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
}
.footer-links a:hover { color: var(--blue-deep); }

.footer-disclaimer {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted);
}
.footer-bottom {
  max-width: 1080px;
  margin: 16px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--muted);
}

/* ── INFO STRIP (about page) ────────────────────────────── */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.info-block .info-label {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 6px;
}
.info-block .info-value { font-size: 15px; color: var(--text); }
.info-block .info-value a { color: var(--text); text-decoration: none; }
.info-block .info-value a:hover { color: var(--blue-deep); }

/* ── UTILITY ────────────────────────────────────────────── */
[hidden] { display: none !important; }
.mt-32 { margin-top: 18px; }
.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.founders-line {
  font-family: 'Barlow', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--text-soft);
  margin-top: 8px;
}
.fineprint {
  font-size: 14.5px;
  color: var(--muted);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ── MOBILE NAV OVERLAY ─────────────────────────────────── */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.4);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.nav-backdrop.is-open { opacity: 1; }
body.nav-open { overflow: hidden; }

/* ── MODAL ──────────────────────────────────────────────── */
html.modal-open { overflow: hidden; }
.modal[hidden] { display: none !important; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.modal.is-open .modal-backdrop { opacity: 1; }
.modal-dialog {
  position: relative;
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 56px -8px rgba(0, 0, 0, 0.35);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
.modal.is-open .modal-dialog { transform: translateY(0); opacity: 1; }
.modal-dialog h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 8px;
  line-height: 1.1;
}
.modal-summary {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.modal-share-prompt {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 12px;
}
.share-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.share-actions .btn {
  font-size: 16px;
  padding: 12px 16px;
}
.share-fallback {
  margin: 0 0 12px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.share-fallback-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}
.share-fallback ul {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
}
.share-fallback a {
  font-size: 14px;
  color: var(--blue-deep);
  text-decoration: underline;
  text-decoration-color: var(--blue);
}
.share-feedback {
  font-size: 13px;
  color: var(--success);
  min-height: 18px;
  margin-bottom: 12px;
}
.modal-done { width: 100%; }

.post-submit-line {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  padding: 24px 0;
}

@media (prefers-reduced-motion: reduce) {
  .modal-backdrop, .modal-dialog { transition: none !important; }
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 640px;
  }
  .hero-split { padding: 32px 20px 44px; }
  .hero-split h1 { font-size: 36px; margin-bottom: 14px; }
  .hero-split .lead { font-size: 16px; margin-bottom: 16px; }
  .hero-form-col .form-card { padding: 32px 28px; }
  .pain-grid-hero { grid-template-columns: 1fr; }

  /* U-M1: flatten hero-content so siblings reorder around the form */
  .hero-split .hero-content { display: contents; }
  .hero-split .hero-eyebrow { order: 1; }
  .hero-split h1 { order: 2; }
  .hero-split .lead { order: 3; }
  .hero-form-col { order: 4; }
  .hero-split .pain-grid-hero { order: 5; margin-top: 8px; }
  .hero-split .hero-trust { order: 6; }
}

@media (max-width: 860px) {
  .page-hero { padding: 24px 20px 22px; }
  .page-hero h1 { font-size: 30px; }
  .page-hero .lead { font-size: 15px; }

  .section { padding: 32px 20px; }
  .section h2 { font-size: 28px; }
  .section p.large { font-size: 17px; }

  .pain-grid { grid-template-columns: 1fr; }
  .tier-display-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .info-strip { grid-template-columns: 1fr; gap: 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }

  /* U-M4: surface featured tier first on mobile (DOM order preserved for SR) */
  .tier-display-card.featured { order: -1; }

  .form-card { padding: 32px 24px; }
  .form-title { font-size: 28px; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 16px -4px rgba(17, 24, 39, 0.08);
    z-index: 100;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-links.is-open { transform: translateY(0); opacity: 1; }
  .nav-links[hidden] { display: none !important; }
  .nav-links li { padding: 0 24px; }
  .nav-links li a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child { padding: 12px 24px 0; }
  .nav-links li:last-child a {
    border-bottom: none;
    padding: 12px 18px;
    text-align: center;
  }

  /* U-M2: footer link tap targets */
  .footer-links { gap: 0; }
  .footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 0;
  }

  .step { padding: 20px 22px; gap: 18px; }
  .step-num { width: 44px; height: 44px; font-size: 22px; }
  .step-body h3 { font-size: 19px; }

  .cta-band h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero-split h1 { font-size: 36px; }
  .pain-card p { font-size: 18px; }
  .tier-display-card .tier-price-amount { font-size: 36px; }
  .hero-form-col .form-card { padding: 26px 22px; }

  /* U-M6: compliance line tightening */
  .compliance-line { border-width: 1px; padding: 12px 16px; }

  /* U-M7: pain card padding */
  .pain-card { padding: 16px 18px; }
  .pain-grid-hero .pain-card { padding: 14px 16px; }

  /* U-M8: consent label readability */
  .consent label { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .nav-links, .nav-backdrop { transition: none !important; }
}

/* ── LIFECYCLE GRID (post-pre-register) ─────────────────── */
.lifecycle-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
  padding: 0;
}
.lifecycle-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lifecycle-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lifecycle-card h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-soft);
  line-height: 1.2;
  margin: 2px 0 0;
}
.lifecycle-card p {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text);
  margin: 0;
}
@media (max-width: 860px) {
  .lifecycle-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .lifecycle-grid { grid-template-columns: 1fr; }
}

/* ── MISCONCEPTION CARDS ────────────────────────────────── */
.misconception-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
  margin-bottom: 14px;
}
.misconception-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  border-radius: 4px;
  padding: 22px 24px;
}
.misconception-card h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-soft);
  line-height: 1.2;
  margin-bottom: 8px;
}
.misconception-card p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}
@media (max-width: 600px) {
  .misconception-grid { grid-template-columns: 1fr; }
}

/* ── COMPARE GRID (insurance vs AmpuHealth) ─────────────── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}
.compare-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 26px;
}
.compare-col-new {
  border-color: var(--blue);
  box-shadow: 0 12px 28px -10px rgba(0, 102, 204, 0.18);
}
.compare-col h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.compare-col-new h3 { color: var(--blue-deep); }
.compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compare-col ul li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text);
}
.compare-col ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.compare-col-new ul li::before {
  background: var(--yellow);
  border: 2px solid var(--blue);
  width: 12px;
  height: 12px;
  top: 7px;
}
@media (max-width: 720px) {
  .compare-grid { grid-template-columns: 1fr; }
}

/* ── NO-PILLS (program descriptors) ─────────────────────── */
.pill-frame {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 28px 0 12px;
}
.no-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 8px;
}
.no-pill {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--off);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
}

/* ── CATALOG CALLOUT ────────────────────────────────────── */
.catalog-callout {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  border-radius: 4px;
  padding: 20px 24px;
  margin: 0 0 24px;
}
.catalog-callout-line {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-soft);
  line-height: 1.25;
  margin: 0 0 6px;
}
.catalog-callout-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   NAVY THEME
   <body class="theme-navy">
   Marketing pages: index, how-it-works, tiers, about, 404.
   Privacy and dashboard remain on the default light theme.
   White card components stay light and pop on the navy field.
   ═══════════════════════════════════════════════════════════ */

body.theme-navy {
  background: var(--navy);
  color: var(--white);
}

/* ── NAV ────────────────────────────────────────────────── */
body.theme-navy .site-nav {
  background: var(--navy);
  border-bottom-color: var(--on-navy-border);
}
body.theme-navy .site-nav .wordmark .ampu { color: var(--white); }
body.theme-navy .nav-links a { color: var(--white); }
body.theme-navy .nav-links a:hover {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}
body.theme-navy .nav-links a.is-active {
  color: var(--white);
  border-bottom-color: var(--yellow);
}
body.theme-navy .nav-toggle span { background: var(--white); }

@media (max-width: 860px) {
  body.theme-navy .nav-links {
    background: var(--navy);
    border-bottom-color: var(--on-navy-border);
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.4);
  }
  body.theme-navy .nav-links li a {
    border-bottom-color: var(--on-navy-border);
  }
}

/* ── SECTION TEXT INVERSION ─────────────────────────────── */
body.theme-navy .section h2,
body.theme-navy .section h3,
body.theme-navy .section p,
body.theme-navy .section p.large {
  color: var(--white);
}
body.theme-navy .section-alt { background: transparent; }
body.theme-navy .feature-list li { color: var(--white); }
body.theme-navy .founders-line { color: var(--white); }
body.theme-navy .founders-line a {
  color: var(--white);
  text-decoration-color: var(--yellow);
}
body.theme-navy .founders-line a:hover { color: var(--yellow); }

/* ── NO-PILLS NAVY VARIANT ──────────────────────────────── */
body.theme-navy .no-pill {
  color: var(--white);
  background: var(--on-navy-fill);
  border-color: var(--on-navy-border);
}
body.theme-navy .pill-frame { color: var(--on-navy-help); }

/* ── INFO STRIP (About) ─────────────────────────────────── */
body.theme-navy .info-strip { border-top-color: var(--on-navy-border); }
body.theme-navy .info-block .info-label,
body.theme-navy .info-block .info-value { color: var(--white); }
body.theme-navy .info-block .info-value a {
  color: var(--white);
  text-decoration-color: var(--yellow);
}
body.theme-navy .info-block .info-value a:hover { color: var(--yellow); }

/* ── FINEPRINT ──────────────────────────────────────────── */
body.theme-navy .fineprint {
  color: var(--on-navy-secondary);
  border-top-color: var(--on-navy-border);
}

/* ── FOOTER ─────────────────────────────────────────────── */
body.theme-navy .site-footer {
  background: var(--navy);
  border-top-color: var(--yellow);
}
body.theme-navy .site-footer .wordmark .ampu { color: var(--white); }
body.theme-navy .footer-meta,
body.theme-navy .footer-meta a { color: var(--on-navy-secondary); }
body.theme-navy .footer-meta a:hover { color: var(--yellow); }
body.theme-navy .footer-col-title { color: var(--white); }
body.theme-navy .footer-links a { color: var(--on-navy-secondary); }
body.theme-navy .footer-links a:hover { color: var(--yellow); }
body.theme-navy .footer-disclaimer {
  color: var(--on-navy-help);
  border-top-color: var(--on-navy-border);
}
body.theme-navy .footer-bottom { color: var(--on-navy-help); }

/* ── SECTION RHYTHM · subtle yellow rule between sections ── */
body.theme-navy .section + .section {
  position: relative;
}
body.theme-navy .section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--yellow);
  opacity: 0.7;
}

/* ── COMPLIANCE LINE · navy-theme inline variant ────────── */
/* Inline disclosures on navy pages use a transparent fill with yellow
   border so they read as a notice, not as a content card. The footer
   disclaimer is .footer-disclaimer (separate class) and is unaffected. */
body.theme-navy .compliance-line {
  background: transparent;
  border-color: var(--yellow);
  color: var(--white);
}

/* ── NAVY THEME · CARD TEXT RESTORATION ─────────────────── */
/* The .section h2/h3/p rule above is broad and would white-out text
   inside white card components. These restore card-internal text. */
body.theme-navy .step-body h3 { color: var(--text-soft); }
body.theme-navy .step-body p { color: var(--text); }
body.theme-navy .misconception-card h3 { color: var(--text-soft); }
body.theme-navy .misconception-card p { color: var(--text); }
body.theme-navy .lifecycle-card h3 { color: var(--text-soft); }
body.theme-navy .lifecycle-card p { color: var(--text); }
body.theme-navy .compare-col h3 { color: var(--text-soft); }
body.theme-navy .compare-col-new h3 { color: var(--blue-deep); }
body.theme-navy .founder-card p { color: var(--text); }
body.theme-navy .tier-display-card .tier-summary { color: var(--text); }
body.theme-navy .catalog-callout .catalog-callout-line { color: var(--text-soft); }
body.theme-navy .catalog-callout .catalog-callout-sub { color: var(--muted); }

/* Utility p classes need bumped specificity to override section p */
body.theme-navy p.fineprint {
  color: var(--on-navy-secondary);
  border-top-color: var(--on-navy-border);
}
body.theme-navy p.pill-frame {
  color: var(--on-navy-help);
}
