:root {
  --navy-950: #061326;
  --navy-900: #0a1e38;
  --navy-800: #10345e;
  --navy-700: #164c83;
  --teal-600: #087f82;
  --teal-500: #12aaa7;
  --teal-400: #3dc4bf;
  --teal-100: #dff7f4;
  --ink: #10233f;
  --slate: #536276;
  --muted: #65758a;
  --line: #dbe4ec;
  --paper: #f6f8fb;
  --ivory: #fbfaf7;
  --white: #ffffff;
  --success: #087f5b;
  --danger: #b42318;
  --shadow-sm: 0 8px 24px rgba(6, 19, 38, 0.045);
  --shadow-md: 0 18px 48px rgba(6, 19, 38, 0.075);
  --shadow-lg: 0 32px 80px rgba(6, 19, 38, 0.14);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --container: 1200px;
  --header-height: 78px;
  --font-sans: Inter, Avenir Next, Avenir, Helvetica Neue, Arial, sans-serif;
  --font-serif: Iowan Old Style, Baskerville, Times New Roman, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
body { overflow-x: hidden; overflow-x: clip; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid #20aaa7;
  outline-offset: 3px;
}
button:focus:not(:focus-visible), a:focus:not(:focus-visible) { outline: none; }
::selection { color: var(--navy-950); background: var(--teal-100); }

.skip-link {
  position: fixed; z-index: 9999; top: 12px; left: 12px;
  transform: translateY(-180%); padding: 10px 14px; border-radius: 8px;
  color: var(--white); background: var(--navy-950); transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 850px); margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 14px;
  color: var(--teal-600); font-size: .77rem; font-weight: 800;
  letter-spacing: .16em; line-height: 1.2; text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 1px; background: currentColor; content: ""; }
.eyebrow.light { color: #7ce0da; }
.display {
  margin: 0; font-family: var(--font-serif); font-size: clamp(3.1rem, 7vw, 6.7rem);
  font-weight: 500; letter-spacing: -.055em; line-height: .96;
}
h1, h2, h3, h4, p { margin-top: 0; }
h2 {
  margin-bottom: 20px; font-family: var(--font-serif); font-size: clamp(2.25rem, 4.4vw, 4.45rem);
  font-weight: 500; letter-spacing: -.045em; line-height: 1.02;
}
h3 { margin-bottom: 10px; font-size: 1.15rem; line-height: 1.35; }
.lede { max-width: 760px; color: var(--slate); font-size: clamp(1.06rem, 1.7vw, 1.28rem); line-height: 1.7; }
.section { position: relative; padding: clamp(82px, 10vw, 140px) 0; }
.section.soft { background: var(--paper); }
.section.ivory { background: var(--ivory); }
.section.dark { color: var(--white); background: var(--navy-950); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.section-head > div:first-child { max-width: 760px; }
.section-head .lede { max-width: 460px; margin-bottom: 6px; }

.site-header {
  position: sticky; z-index: 1000; top: 0; height: var(--header-height);
  border-bottom: 1px solid rgba(16,35,63,.08); background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px); transition: box-shadow 180ms ease, background 180ms ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 34px rgba(6,19,38,.08); background: rgba(255,255,255,.97); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 28px; }
.brand { display: inline-flex; align-items: center; min-width: 230px; gap: 12px; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-name { color: var(--navy-900); font-family: var(--font-serif); font-size: 1.48rem; letter-spacing: -.035em; }
.brand-sub { margin-top: 5px; color: var(--teal-600); font-size: .63rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  position: relative; padding: 12px 13px; border-radius: 4px; color: #34465d;
  font-size: .89rem; font-weight: 670; transition: color 160ms ease, background 160ms ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--navy-900); background: #eef5f8; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 6px; background: var(--white); cursor: pointer; }
.menu-toggle span { display: block; width: 19px; height: 2px; margin: 4px auto; border-radius: 2px; background: var(--navy-900); transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 21px; border: 1px solid transparent; border-radius: 6px;
  font-size: .92rem; font-weight: 780; line-height: 1; cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .68; cursor: wait; transform: none; box-shadow: none; }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--navy-800), var(--navy-950)); box-shadow: 0 14px 30px rgba(6,19,38,.17); }
.btn-primary:hover { box-shadow: 0 18px 40px rgba(6,19,38,.24); }
.btn-teal { color: #041f26; background: linear-gradient(135deg, #79e0d7, #28bab7); box-shadow: 0 14px 32px rgba(18,170,167,.2); }
.btn-teal:hover { box-shadow: 0 18px 38px rgba(18,170,167,.29); }
.btn-ghost { color: var(--navy-900); border-color: #cad9e4; background: rgba(255,255,255,.72); }
.btn-ghost:hover { border-color: #9fb8c8; background: var(--white); }
.btn-light { color: var(--navy-950); background: var(--white); box-shadow: 0 18px 38px rgba(0,0,0,.16); }
.btn-icon { width: 17px; height: 17px; transition: transform 160ms ease; }
.btn:hover .btn-icon { transform: translateX(3px); }

.hero {
  position: relative; min-height: calc(100vh - var(--header-height)); overflow: hidden; color: var(--white);
  background: radial-gradient(circle at 72% 22%, rgba(35,188,183,.19), transparent 28%), radial-gradient(circle at 12% 70%, rgba(32,92,157,.28), transparent 30%), linear-gradient(135deg, #07172c 0%, #0b2544 56%, #08182e 100%);
}
.hero::before {
  position: absolute; top: 40px; right: -120px; width: 680px; height: 680px;
  background: url("../img/logo-mark-v2-512.webp") center / contain no-repeat; content: ""; opacity: .045; transform: rotate(8deg);
}
.hero::after {
  position: absolute; right: 0; bottom: 0; left: 0; height: 38%;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: linear-gradient(to bottom, transparent, black); content: ""; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2; display: grid; min-height: calc(100vh - var(--header-height));
  grid-template-columns: minmax(0,1.12fr) minmax(380px,.88fr); align-items: center;
  gap: clamp(48px,7vw,96px); padding: 86px 0 100px;
}
.hero-copy { max-width: 760px; }
.hero .display { max-width: 900px; }
.hero .display em { color: #72d9d2; font-style: normal; }
.hero-description { max-width: 690px; margin: 28px 0 34px; color: #d7e3ef; font-size: clamp(1.05rem,1.6vw,1.28rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-note { display: flex; align-items: center; gap: 11px; margin-top: 25px; color: #aebfd0; font-size: .83rem; }
.hero-note svg { width: 17px; color: #62d5cf; }
.hero-panel {
  position: relative; padding: 30px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  box-shadow: 0 40px 90px rgba(0,0,0,.24); backdrop-filter: blur(22px);
}
.hero-panel::before { position: absolute; top: -1px; right: 38px; left: 38px; height: 1px; background: linear-gradient(90deg, transparent, rgba(114,217,210,.8), transparent); content: ""; }
.panel-label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; color: #c7d6e4; font-size: .73rem; font-weight: 760; letter-spacing: .14em; text-transform: uppercase; }
.live-badge { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid rgba(92,213,205,.28); border-radius: var(--radius-pill); color: #9ceae5; background: rgba(25,169,165,.08); font-size: .67rem; letter-spacing: .1em; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #58ddd4; box-shadow: 0 0 0 7px rgba(88,221,212,.12); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 5px rgba(88,221,212,.10); } 50% { box-shadow: 0 0 0 10px rgba(88,221,212,.02); } }
.metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.metric { min-height: 142px; padding: 20px; border: 1px solid rgba(255,255,255,.11); border-radius: 8px; background: rgba(5,20,37,.34); }
.metric-value { display: block; color: var(--white); font-family: var(--font-serif); font-size: 2.55rem; letter-spacing: -.05em; line-height: 1; }
.metric-label { display: block; margin-top: 11px; color: #bcd0df; font-size: .8rem; font-weight: 660; line-height: 1.4; }
.panel-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 14px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; color: #c9d7e3; background: rgba(6,19,38,.31); font-size: .78rem; }
.panel-footer strong { color: #83dfda; }

.proof-strip { position: relative; z-index: 3; margin-top: -39px; }
.proof-inner { display: grid; overflow: hidden; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: 10px; background: var(--white); box-shadow: var(--shadow-md); }
.proof-item { position: relative; display: flex; min-height: 118px; align-items: center; gap: 15px; padding: 24px; }
.proof-item:not(:last-child)::after { position: absolute; top: 26px; right: 0; bottom: 26px; width: 1px; background: var(--line); content: ""; }
.proof-icon, .card-icon, .feature-icon { display: inline-flex; flex: 0 0 auto; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 7px; color: var(--teal-600); background: var(--teal-100); }
.proof-icon svg, .card-icon svg, .feature-icon svg { width: 22px; height: 22px; }
.proof-copy strong { display: block; color: var(--navy-900); font-size: .93rem; }
.proof-copy span { display: block; margin-top: 2px; color: var(--muted); font-size: .75rem; line-height: 1.35; }

.split-intro { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); align-items: start; gap: clamp(50px,8vw,110px); }
.pillar-list { display: grid; gap: 18px; }
.pillar { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.pillar:first-child { padding-top: 0; }
.pillar-number { color: var(--teal-600); font-family: var(--font-serif); font-size: 1.55rem; line-height: 1.2; }
.pillar h3 { margin-bottom: 6px; color: var(--navy-900); font-size: 1.06rem; }
.pillar p { margin: 0; color: var(--slate); font-size: .93rem; }

.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.capability-card { position: relative; min-height: 275px; overflow: hidden; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 12px 30px rgba(6,19,38,.04); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.capability-card::after { display: none; }
.capability-card:hover { transform: translateY(-3px); border-color: #bad7df; box-shadow: var(--shadow-md); }
.capability-card h3 { margin-top: 30px; color: var(--navy-900); font-size: 1.18rem; }
.capability-card p { margin-bottom: 0; color: var(--slate); font-size: .91rem; }

.engagement-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.engagement-card { min-height: 260px; padding: 26px 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.035)); }
.engagement-card.featured { border-color: rgba(71,206,198,.42); background: linear-gradient(160deg, rgba(32,171,166,.17), rgba(255,255,255,.04)); }
.engagement-index { color: #62d5cf; font-family: var(--font-serif); font-size: 1.25rem; }
.engagement-card h3 { margin: 42px 0 12px; color: var(--white); font-size: 1rem; }
.engagement-card p { margin-bottom: 0; color: #b8c9d8; font-size: .82rem; }

.coverage-layout { display: grid; grid-template-columns: minmax(0,.82fr) minmax(500px,1.18fr); align-items: center; gap: clamp(50px,7vw,90px); }
.coverage-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 38px 0 0; }
.coverage-number { padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.coverage-number strong { display: block; color: var(--navy-900); font-family: var(--font-serif); font-size: 2.15rem; line-height: 1; }
.coverage-number span { display: block; margin-top: 7px; color: var(--muted); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.state-panel { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: var(--shadow-md); }
.state-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.state-panel-head strong { font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; }
.state-panel-head span { color: var(--success); font-size: .72rem; font-weight: 800; }
.state-grid { display: grid; grid-template-columns: repeat(9,1fr); gap: 8px; }
.state-chip { display: grid; aspect-ratio: 1/1; place-items: center; border: 1px solid #d6e5ea; border-radius: 4px; color: var(--navy-800); background: linear-gradient(145deg,#f7fbfc,#eaf6f5); font-size: .65rem; font-weight: 850; letter-spacing: .03em; }
.state-chip.territory { color: var(--white); border-color: var(--teal-600); background: var(--teal-600); }
.state-note { display: flex; align-items: start; gap: 10px; margin-top: 20px; color: var(--muted); font-size: .76rem; }
.state-note svg { width: 17px; flex: 0 0 auto; color: var(--teal-600); }

.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.service-card { min-height: 180px; padding: 25px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.service-card small { color: var(--teal-600); font-size: .67rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.service-card h3 { margin-top: 34px; color: var(--navy-900); font-size: 1rem; }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: .8rem; }
.clinical-note { display: flex; align-items: start; gap: 12px; margin-top: 24px; padding: 18px 21px; border-left: 3px solid var(--teal-500); color: var(--slate); background: #eff9f8; font-size: .84rem; }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.process-step { position: relative; padding-top: 25px; border-top: 2px solid #c9d9e4; }
.process-step::before { position: absolute; top: -7px; left: 0; width: 12px; height: 12px; border: 3px solid var(--white); border-radius: 50%; background: var(--teal-500); box-shadow: 0 0 0 1px var(--teal-500); content: ""; }
.process-step span { color: var(--teal-600); font-family: var(--font-serif); font-size: 1.25rem; }
.process-step h3 { margin: 32px 0 10px; color: var(--navy-900); font-size: 1rem; }
.process-step p { margin-bottom: 0; color: var(--slate); font-size: .83rem; }

.leadership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.leader-card { overflow: hidden; border: 1px solid #d7e0e8; border-radius: 8px; background: var(--white); box-shadow: 0 10px 28px rgba(6,19,38,.045); }
.leader-visual { position: relative; height: 455px; overflow: hidden; background: linear-gradient(135deg,#e7eef3,#f8fafc); }
.leader-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.leader-visual.asad img { object-position: center 17%; filter: saturate(1.08) contrast(1.03) brightness(1.02); }
.leader-visual.patel { display: grid; place-items: center; background: radial-gradient(circle at 50% 38%, #f9fbfc 0%, #dfe7ec 62%, #cbd8df 100%); }
.leader-visual.patel img { width: 94%; height: 94%; object-fit: contain; }
.leader-body { padding: 38px; }
.leader-body h3 { margin: 0; color: var(--navy-900); font-family: var(--font-serif); font-size: 2rem; font-weight: 500; letter-spacing: -.032em; }
.leader-title { margin: 10px 0 24px; padding-bottom: 20px; border-bottom: 1px solid #d9e2ea; color: var(--teal-600); font-size: .73rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.leader-body p { color: #55687d; font-size: .91rem; }

.leader-card { transition: border-color 180ms ease, box-shadow 180ms ease; }
.leader-card:hover { border-color: #c8d4de; box-shadow: 0 16px 42px rgba(6,19,38,.07); }
.leader-body p:last-child { margin-bottom: 0; }
.leader-visual::after {
  position: absolute; right: 0; bottom: 0; left: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8,127,130,.55), transparent); content: "";
}

.quote-band { overflow: hidden; color: var(--white); background: linear-gradient(135deg,var(--navy-950),#123e68); }
.quote-band-inner { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; padding: 78px 0; }
.quote-band-inner::after { position: absolute; top: -90px; right: 10%; width: 420px; height: 420px; background: url("../img/logo-mark-v2-512.webp") center/contain no-repeat; content: ""; opacity: .06; }
.quote-band h2 { position: relative; z-index: 2; max-width: 850px; margin: 0; font-size: clamp(2.2rem,4vw,4.2rem); }
.quote-band .btn { position: relative; z-index: 2; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-button { display: grid; width: 100%; grid-template-columns: 1fr auto; align-items: center; gap: 20px; padding: 25px 2px; border: 0; color: var(--navy-900); background: transparent; text-align: left; cursor: pointer; }
.faq-button span:first-child { font-size: 1.02rem; font-weight: 730; }
.faq-symbol { position: relative; width: 28px; height: 28px; border: 1px solid #c8d8e1; border-radius: 50%; }
.faq-symbol::before, .faq-symbol::after { position: absolute; top: 50%; left: 50%; width: 11px; height: 1px; background: var(--navy-800); content: ""; transform: translate(-50%,-50%); transition: transform 160ms ease; }
.faq-symbol::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item.open .faq-symbol::after { transform: translate(-50%,-50%) rotate(0deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 280ms ease; }
.faq-answer-inner { max-width: 850px; padding: 0 52px 28px 2px; color: var(--slate); font-size: .92rem; }

.form-shell { display: grid; overflow: hidden; grid-template-columns: minmax(340px,.75fr) minmax(0,1.25fr); border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: var(--shadow-md); }
.form-aside { position: relative; overflow: hidden; padding: 46px; color: var(--white); background: radial-gradient(circle at 20% 10%, rgba(53,202,195,.2), transparent 30%), linear-gradient(150deg,var(--navy-950),var(--navy-800)); }
.form-aside::after { position: absolute; right: -115px; bottom: -100px; width: 360px; height: 360px; background: url("../img/logo-mark-v2-512.webp") center/contain no-repeat; content: ""; opacity: .075; }
.form-aside h2 { position: relative; z-index: 1; margin-bottom: 18px; font-size: clamp(2.15rem,4vw,3.8rem); }
.form-aside p { position: relative; z-index: 1; color: #c5d5e3; }
.form-aside-list { position: relative; z-index: 1; display: grid; gap: 16px; margin: 38px 0 0; padding: 0; list-style: none; }
.form-aside-list li { display: flex; align-items: center; gap: 11px; color: #d8e5ee; font-size: .86rem; }
.form-aside-list svg { width: 18px; color: #60d7d0; }
.form-main { padding: 46px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1/-1; }
.field label, .field-label { color: var(--navy-900); font-size: .76rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #cbd8e2; border-radius: 6px; outline: none; color: var(--ink); background: #fbfcfd; transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.field input, .field select { min-height: 49px; padding: 0 14px; }
.field textarea { min-height: 128px; padding: 13px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal-500); background: var(--white); box-shadow: 0 0 0 4px rgba(18,170,167,.12); }
.field small { color: var(--muted); font-size: .68rem; }
.checkbox-row { display: flex; align-items: start; gap: 10px; color: var(--slate); font-size: .76rem; }
.checkbox-row input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--teal-600); }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 24px; }
.form-note { max-width: 420px; color: var(--muted); font-size: .69rem; line-height: 1.5; }
.form-status { display: none; margin-top: 18px; padding: 13px 15px; border-radius: 10px; font-size: .82rem; }
.form-status.show { display: block; }
.form-status.pending { color: #164c83; border: 1px solid #b8d6e9; background: #eef7fc; }
.form-status.success { color: #075c43; border: 1px solid #a9e2d0; background: #eafaf4; }
.form-status.error { color: #8f1f17; border: 1px solid #f0b8b2; background: #fff1ef; }
.status-link { display: inline-block; margin-top: 4px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.form-noscript { margin: 0 0 18px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); }
.form-noscript a { color: var(--teal-700); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
html:not(.js-enabled) form[data-async-form] button[type="submit"] { display: none; }
html:not(.js-enabled) .faq-answer { max-height: none !important; }
html:not(.js-enabled) .faq-button { cursor: default; }
html:not(.js-enabled) .faq-symbol { display: none; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.page-hero { position: relative; overflow: hidden; padding: 104px 0 96px; color: var(--white); background: radial-gradient(circle at 75% 25%, rgba(55,201,194,.18), transparent 30%), linear-gradient(135deg,#07182d,#0f345b); }
.page-hero::after { position: absolute; top: -100px; right: -90px; width: 520px; height: 520px; background: url("../img/logo-mark-v2-512.webp") center/contain no-repeat; content: ""; opacity: .055; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 980px; margin: 0; font-family: var(--font-serif); font-size: clamp(3rem,6.5vw,6.1rem); font-weight: 500; letter-spacing: -.055em; line-height: .98; }
.page-hero p { max-width: 760px; margin: 27px 0 0; color: #d3e0eb; font-size: 1.13rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; color: #8edfd9; font-size: .72rem; font-weight: 780; letter-spacing: .11em; text-transform: uppercase; }
.content-prose { color: var(--slate); font-size: .96rem; }
.content-prose h2 { margin-top: 56px; margin-bottom: 16px; color: var(--navy-900); font-size: clamp(1.9rem,3.2vw,3rem); }
.content-prose h3 { margin-top: 32px; color: var(--navy-900); }
.content-prose a { color: var(--teal-600); text-decoration: underline; text-underline-offset: 3px; }
.content-prose ul, .content-prose ol { padding-left: 24px; }
.content-prose li { margin-bottom: 8px; }
.legal-meta { margin-bottom: 35px; padding: 15px 18px; border: 1px solid var(--line); border-radius: 6px; color: var(--muted); background: var(--paper); font-size: .82rem; }
.brand-banner { overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: var(--shadow-sm); }
.brand-banner img { width: 100%; }
.leadership-grid > *, .provider-callout > * { min-width: 0; }
.provider-callout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 42px; padding: 46px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); box-shadow: var(--shadow-sm); }
.provider-callout h2 { margin-bottom: 12px; font-size: clamp(2.1rem,3.6vw,3.55rem); }
.provider-points { display: grid; gap: 13px; }
.provider-point { display: flex; align-items: center; gap: 12px; color: var(--slate); font-size: .88rem; }
.provider-point svg { width: 19px; color: var(--teal-600); }

.site-footer { color: #c6d2de; background: #061326; }
.footer-main { display: grid; grid-template-columns: 1.35fr .65fr .65fr .8fr; gap: 50px; padding: 70px 0 52px; }
.footer-brand { max-width: 350px; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { margin-top: 22px; color: #9eb0c0; font-size: .84rem; }
.footer-column h3 { margin-bottom: 17px; color: var(--white); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: #aabac8; font-size: .82rem; transition: color 150ms ease; }
.footer-links a:hover { color: #78ddd7; }
.footer-contact a { display: block; margin-bottom: 9px; color: #d8e3eb; font-size: .82rem; }
.footer-contact span { color: #8ea3b5; font-size: .73rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 24px 0 32px; border-top: 1px solid rgba(255,255,255,.1); color: #8297a9; font-size: .7rem; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-disclaimer { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.07); color: #71879a; font-size: .66rem; line-height: 1.55; }

.reveal { opacity: 1; transform: none; }
.js-enabled .reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms cubic-bezier(.2,.75,.25,1), transform 700ms cubic-bezier(.2,.75,.25,1); }
.js-enabled .reveal.is-visible { opacity: 1; transform: translateY(0); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--teal-600); font-size: .83rem; font-weight: 800; }
.text-link svg { width: 15px; transition: transform 160ms ease; }
.text-link:hover svg { transform: translateX(3px); }
.badge-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.badge { padding: 8px 12px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-pill); color: #c8dae6; background: rgba(255,255,255,.05); font-size: .69rem; font-weight: 720; }
.screen-reader-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

@media (max-width: 1080px) {
  .header-actions .btn { display: none; }
  .menu-toggle { display: none; }
  .site-header { height: auto; min-height: var(--header-height); }
  .header-inner { min-height: var(--header-height); flex-wrap: wrap; }
  .site-nav { order: 3; width: 100%; display: flex; overflow-x: auto; padding: 0 0 10px; scrollbar-width: thin; }
  .site-nav a { flex: 0 0 auto; }
  html:not(.js-enabled) .site-nav .mobile-cta { display: inline-flex; }
  .js-enabled .site-header { height: var(--header-height); min-height: 0; }
  .js-enabled .header-inner { min-height: 0; flex-wrap: nowrap; }
  .js-enabled .site-nav { display: none; }
  .js-enabled .menu-toggle { display: block; }
  .js-enabled .site-nav.mobile-visible { position: fixed; z-index: 999; top: var(--header-height); right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; align-items: stretch; overflow-y: auto; padding: 30px 24px; background: rgba(255,255,255,.985); }
  .js-enabled .site-nav.mobile-visible a { padding: 16px 10px; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1.08rem; }
  .js-enabled .site-nav.mobile-visible .mobile-cta { display: inline-flex; margin-top: 22px; border: 0; border-radius: 6px; color: var(--white); background: var(--navy-900); justify-content: center; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 72px; }
  .hero-panel { max-width: 720px; }
  .proof-inner { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2)::after { display: none; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split-intro, .coverage-layout, .provider-callout { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .engagement-grid { grid-template-columns: repeat(3,1fr); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1.25fr .75fr .75fr; }
  .footer-column:last-child { grid-column: 1/-1; }
}

@media (max-width: 780px) {
  :root { --header-height: 70px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .brand { min-width: auto; }
  .brand img { width: 40px; height: 40px; }
  .brand-name { font-size: 1.25rem; }
  .brand-sub { font-size: .55rem; }
  .hero-inner { min-height: auto; padding: 66px 0 90px; }
  .hero .display { font-size: clamp(3.1rem,16vw,5rem); }
  .hero-panel { padding: 21px; border-radius: 12px; }
  .metric { min-height: 125px; padding: 17px; }
  .metric-value { font-size: 2.1rem; }
  .proof-strip { margin-top: -28px; }
  .proof-inner { grid-template-columns: 1fr; }
  .proof-item { min-height: 96px; }
  .proof-item:not(:last-child)::after { top: auto; right: 24px; bottom: 0; left: 24px; width: auto; height: 1px; }
  .proof-item:nth-child(2)::after { display: block; }
  .proof-item:nth-child(-n+2) { border-bottom: 0; }
  .section-head { display: block; }
  .card-grid, .engagement-grid, .leadership-grid, .process-grid { grid-template-columns: 1fr; }
  .coverage-layout { gap: 42px; }
  .state-panel { padding: 20px; }
  .state-grid { grid-template-columns: repeat(6,1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .leader-visual { height: 420px; }
  .quote-band-inner { grid-template-columns: 1fr; padding: 64px 0; }
  .form-shell { grid-template-columns: 1fr; }
  .form-aside, .form-main { padding: 31px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .btn { width: 100%; }
  .page-hero { padding: 82px 0 78px; }
  .page-hero h1 { font-size: clamp(3rem,15vw,5rem); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-brand, .footer-column:last-child { grid-column: 1/-1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
  .header-inner { gap: 12px; }
  .brand-copy { max-width: 210px; }
  .brand-name { font-size: 1.13rem; }
  .brand-sub { letter-spacing: .16em; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .metrics-grid, .coverage-numbers { grid-template-columns: 1fr; }
  .state-grid { grid-template-columns: repeat(5,1fr); }
  .leader-visual { height: 370px; }
  .leader-body { padding: 26px 22px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand, .footer-column:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .js-enabled .reveal { opacity: 1; transform: none; }
}

/* Inline icon sizing inside action controls */
.btn > svg,
.text-link > svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

/* Navigation polish */
.site-nav .mobile-cta { display: none; }
.site-nav a,
.btn { white-space: nowrap; max-width: 100%; }
@media (max-width: 1080px) {
  .js-enabled .site-nav.mobile-visible .mobile-cta { display: inline-flex; }
}


@media (max-width: 480px) {
  .provider-callout { padding: 30px 20px; gap: 30px; }
  .provider-callout .btn { width: 100%; min-height: 52px; padding-inline: 16px; white-space: normal; line-height: 1.25; text-align: center; }
  .form-aside, .form-main { padding-inline: 20px; }
}

@media (max-width: 340px) {
  .container, .narrow { width: min(calc(100% - 20px), var(--container)); }
  .brand-sub { display: none; }
  .hero .display, .page-hero h1 { font-size: 2.75rem; }
  .metric { min-height: 112px; }
  .state-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================================
   Mobile refinement & performance pass — July 2026
   ========================================================= */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body { min-width: 320px; }
a, button { touch-action: manipulation; }
img { height: auto; }

/* Clean, controlled icon sizing. Prevents intrinsic SVG dimensions from
   widening flex rows or forcing mobile Safari to scale the page. */
.clinical-note svg {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  margin-top: 1px;
}
.clinical-note > span {
  min-width: 0;
  overflow-wrap: anywhere;
}

/* Leadership wordmark: intentionally restrained on large screens and
   aspect-ratio-safe on phones. */
.brand-banner-section { padding-block: clamp(48px, 6vw, 82px); }
.brand-banner {
  width: min(100%, 1040px);
  margin-inline: auto;
}
.brand-banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: contain;
}

/* The header mark is icon-only; the adjacent live text supplies the name. */
.brand img {
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1080px) {
  /* Backdrop blur on a sticky element is a frequent source of iOS Safari
     repaint jitter. A solid surface is visually cleaner and materially
     smoother on touch devices. */
  .site-header,
  .site-header.is-scrolled {
    background: #fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .site-header { overflow: visible; }
  .menu-toggle { position: relative; z-index: 1301; flex: 0 0 auto; }

  /* Full-height mobile navigation. JS temporarily moves this node to body,
     avoiding Safari's fixed-position issues inside sticky/filtered parents. */
  .js-enabled .site-nav.mobile-visible {
    position: fixed;
    z-index: 1300;
    inset: var(--header-height) 0 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    max-height: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 12px max(22px, env(safe-area-inset-right)) calc(28px + env(safe-area-inset-bottom)) max(22px, env(safe-area-inset-left));
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 24px 54px rgba(6,19,38,.14);
  }
  .js-enabled .site-nav.mobile-visible > a {
    display: flex !important;
    min-height: 56px;
    flex: 0 0 auto;
    align-items: center;
    padding: 13px 8px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--navy-900);
    font-size: 1.02rem;
    font-weight: 720;
    line-height: 1.25;
    white-space: normal;
  }
  .js-enabled .site-nav.mobile-visible .mobile-cta {
    display: flex !important;
    min-height: 52px;
    margin-top: 20px;
    padding-inline: 18px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: var(--navy-900);
    justify-content: center;
  }
  html.nav-open,
  body.nav-open {
    overflow: hidden;
    overscroll-behavior: none;
  }
}

@media (max-width: 780px) {
  html { scroll-behavior: auto; }
  .container, .narrow { width: min(calc(100% - 32px), var(--container)); }
  .section { padding-block: 70px; }
  .section-head { margin-bottom: 34px; }
  h2 { font-size: clamp(2.05rem, 10.4vw, 3.2rem); }
  .lede { font-size: 1rem; line-height: 1.65; }

  .hero {
    min-height: auto;
    contain: paint;
  }
  .hero::before {
    top: 80px;
    right: -110px;
    width: 410px;
    height: 410px;
    opacity: .032;
  }
  .hero::after { display: none; }
  .hero-inner {
    min-height: auto;
    gap: 36px;
    padding: 48px 0 72px;
  }
  .hero .display {
    max-width: 100%;
    font-size: clamp(2.85rem, 13vw, 4.15rem);
    letter-spacing: -.045em;
    line-height: .99;
  }
  .hero-description {
    margin: 22px 0 27px;
    font-size: 1rem;
    line-height: 1.66;
  }
  .hero-note { align-items: flex-start; line-height: 1.5; }
  .hero-note svg { margin-top: 2px; flex: 0 0 17px; }
  .hero-panel {
    padding: 19px;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(17,49,83,.92);
    box-shadow: 0 20px 46px rgba(0,0,0,.20);
  }
  .metrics-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .metric { min-height: 112px; padding: 15px; }
  .metric-value { font-size: 2rem; }
  .metric-label { font-size: .69rem; line-height: 1.4; }
  .panel-footer { align-items: flex-start; gap: 12px; flex-direction: column; }
  .live-dot { animation: none; box-shadow: 0 0 0 5px rgba(88,221,212,.08); }

  .proof-strip { margin-top: -18px; }
  .proof-item { min-height: 84px; padding-block: 18px; }

  /* Mobile pages are intentionally static rather than reveal-animated.
     This removes transform/repaint jitter while scrolling in Safari. */
  .js-enabled .reveal,
  .js-enabled .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-hero { padding: 68px 0 62px; }
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 11.8vw, 4rem);
    letter-spacing: -.045em;
    overflow-wrap: anywhere;
  }
  .page-hero p { font-size: 1rem; }

  .brand-banner-section { padding-block: 42px; }
  .brand-banner {
    border-radius: 6px;
    box-shadow: 0 8px 22px rgba(6,19,38,.04);
  }
  .brand-banner img {
    width: 100%;
    max-height: 220px;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .clinical-note {
    gap: 14px;
    padding: 17px 16px;
    font-size: .8rem;
    line-height: 1.55;
  }
  .clinical-note svg { width: 32px; height: 32px; flex-basis: 32px; }

  .leader-visual { height: clamp(320px, 103vw, 405px); }
  .leader-body { padding: 28px 22px; }
  .leader-body h3 { font-size: clamp(1.65rem, 8.2vw, 2rem); }
  .leader-body p { font-size: .88rem; line-height: 1.62; }

  .service-card { min-height: 0; }
  .service-card h3 { margin-top: 22px; }
  .provider-callout { padding: 30px 20px; }
}

@media (max-width: 380px) {
  .metrics-grid { grid-template-columns: 1fr; }
  .metric { min-height: 104px; }
  .hero .display { font-size: 2.72rem; }
  .brand-name { font-size: 1.06rem; }
  .brand-sub { font-size: .5rem; letter-spacing: .13em; }
}


/* =========================================================
   V3 executive refinement — concise homepage, coverage map,
   and attached mobile navigation sheet.
   ========================================================= */

/* Homepage information architecture */
.home-brief-grid {
  display: grid;
  grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr);
  align-items: start;
  gap: clamp(54px,7vw,96px);
}
.home-brief-copy { position: sticky; top: calc(var(--header-height) + 42px); }
.home-brief-copy .lede { max-width: 610px; }
.home-capability-list { border-top: 1px solid var(--line); }
.home-capability {
  display: grid;
  grid-template-columns: 48px minmax(0,1fr) 28px;
  align-items: start;
  gap: 20px;
  padding: 25px 4px;
  border-bottom: 1px solid var(--line);
  transition: border-color 160ms ease, background 160ms ease, padding 160ms ease;
}
.home-capability:hover { padding-inline: 14px; border-color: #bdd2dd; background: rgba(239,247,249,.72); }
.home-capability-index {
  color: var(--teal-600);
  font-family: var(--font-serif);
  font-size: 1.42rem;
  line-height: 1.1;
}
.home-capability h3 { margin-bottom: 7px; color: var(--navy-900); font-size: 1.08rem; }
.home-capability p { margin-bottom: 0; color: var(--slate); font-size: .88rem; line-height: 1.6; }
.home-capability svg { width: 20px; margin-top: 4px; color: var(--teal-600); transition: transform 160ms ease; }
.home-capability:hover svg { transform: translateX(4px); }

.coverage-map-layout {
  display: grid;
  grid-template-columns: minmax(0,1.28fr) minmax(340px,.72fr);
  align-items: center;
  gap: clamp(44px,6vw,84px);
}
.coverage-map-card {
  position: relative;
  overflow: hidden;
  padding: clamp(18px,3vw,34px);
  border: 1px solid #d7e2e9;
  border-radius: 12px;
  background: linear-gradient(145deg,#ffffff,#f2f7f9);
  box-shadow: 0 22px 54px rgba(6,19,38,.07);
}
.coverage-map-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72);
  pointer-events: none;
  content: "";
}
.coverage-map-card img {
  width: 100%;
  filter: drop-shadow(0 14px 20px rgba(6,19,38,.09));
}
.coverage-map-copy .lede { font-size: 1.05rem; }
.coverage-stat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 28px 0; }
.coverage-stat {
  min-height: 96px;
  padding: 18px;
  border: 1px solid #d9e3ea;
  border-radius: 8px;
  background: rgba(255,255,255,.76);
}
.coverage-stat strong { display: block; color: var(--navy-900); font-family: var(--font-serif); font-size: 1.85rem; font-weight: 500; line-height: 1; }
.coverage-stat span { display: block; margin-top: 8px; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .09em; line-height: 1.4; text-transform: uppercase; }
.engagement-line { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px; }
.engagement-line span { padding: 8px 11px; border: 1px solid #cfe0e5; border-radius: 999px; color: #294760; background: #f7fbfb; font-size: .72rem; font-weight: 760; }
.coverage-disclaimer { margin: 20px 0 0; color: var(--muted); font-size: .72rem; line-height: 1.55; }

.process-compact {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid #cfdce5;
  border-bottom: 1px solid #cfdce5;
}
.process-compact article { position: relative; padding: 28px 26px 30px; border-right: 1px solid #cfdce5; }
.process-compact article:last-child { border-right: 0; }
.process-compact span { color: var(--teal-600); font-family: var(--font-serif); font-size: 1.18rem; }
.process-compact h3 { margin: 20px 0 8px; color: var(--navy-900); font-size: .98rem; }
.process-compact p { margin: 0; color: var(--slate); font-size: .79rem; line-height: 1.58; }

.home-leadership-shell {
  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr);
  align-items: center;
  gap: clamp(50px,7vw,92px);
}
.home-leadership-copy .lede { max-width: 580px; }
.leadership-mini-grid { display: grid; gap: 14px; }
.leader-mini {
  display: grid;
  grid-template-columns: 126px minmax(0,1fr) 24px;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  min-height: 146px;
  border: 1px solid #d7e1e8;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(6,19,38,.045);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.leader-mini:hover { transform: translateY(-2px); border-color: #bdd1dc; box-shadow: 0 16px 36px rgba(6,19,38,.075); }
.leader-mini-image { width: 126px; height: 146px; overflow: hidden; background: #eef3f6; }
.leader-mini-image img { width: 100%; height: 100%; object-fit: cover; }
.leader-mini-image.asad img { object-position: center 17%; filter: saturate(1.08) contrast(1.03); }
.leader-mini-image.patel { display: grid; place-items: center; background: radial-gradient(circle at 50% 35%,#fff,#dfe7ec 70%); }
.leader-mini-image.patel img { width: 94%; height: 94%; object-fit: contain; }
.leader-mini-copy { min-width: 0; padding-block: 18px; }
.leader-mini-copy strong { display: block; color: var(--navy-900); font-family: var(--font-serif); font-size: 1.36rem; font-weight: 500; line-height: 1.15; }
.leader-mini-copy span { display: block; margin-top: 7px; color: var(--teal-600); font-size: .67rem; font-weight: 850; letter-spacing: .11em; line-height: 1.4; text-transform: uppercase; }
.leader-mini-copy p { margin: 12px 0 0; color: var(--slate); font-size: .78rem; line-height: 1.55; }
.leader-mini > svg { width: 18px; color: var(--teal-600); }

/* Mobile navigation is a real sheet attached directly to the fixed header. */
.nav-backdrop {
  position: fixed;
  z-index: 1280;
  inset: var(--header-height) 0 0;
  border: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  background: rgba(6,19,38,.42);
  transition: opacity 170ms ease;
}
.nav-backdrop.is-visible { opacity: 1; pointer-events: auto; }

@keyframes nav-sheet-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  body { padding-top: var(--header-height); }
  .site-header,
  .site-header.is-scrolled {
    position: fixed;
    z-index: 1302;
    inset: 0 0 auto;
    width: 100%;
    background: #fff;
    box-shadow: 0 8px 24px rgba(6,19,38,.07);
  }
  .js-enabled .site-nav.mobile-visible {
    position: fixed;
    z-index: 1300;
    top: var(--header-height);
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: auto;
    max-height: calc(100vh - var(--header-height) - 12px);
    max-height: calc(100dvh - var(--header-height) - 12px);
    overflow-y: auto;
    padding: 8px max(22px,env(safe-area-inset-right)) calc(20px + env(safe-area-inset-bottom)) max(22px,env(safe-area-inset-left));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid #cbd8e1;
    border-radius: 0 0 14px 14px;
    background: #fff;
    box-shadow: 0 26px 56px rgba(6,19,38,.20);
    animation: nav-sheet-in 180ms ease both;
  }
  .js-enabled .site-nav.mobile-visible > a { min-height: 52px; padding-block: 12px; }
  .js-enabled .site-nav.mobile-visible .mobile-cta { min-height: 50px; margin-top: 14px; }
  .home-brief-copy { position: static; }
}

@media (max-width: 920px) {
  .home-brief-grid,
  .coverage-map-layout,
  .home-leadership-shell { grid-template-columns: 1fr; }
  .coverage-map-card { order: 2; }
  .coverage-map-copy { order: 1; }
  .process-compact { grid-template-columns: repeat(2,1fr); }
  .process-compact article:nth-child(2) { border-right: 0; }
  .process-compact article:nth-child(-n+2) { border-bottom: 1px solid #cfdce5; }
}

@media (max-width: 780px) {
  .section.home-section { padding-block: 62px; }
  .home-brief-grid { gap: 38px; }
  .home-capability { grid-template-columns: 38px minmax(0,1fr) 22px; gap: 14px; padding-block: 21px; }
  .home-capability:hover { padding-inline: 4px; background: transparent; }
  .home-capability-index { font-size: 1.22rem; }
  .coverage-map-layout { gap: 32px; }
  .coverage-map-card { padding: 10px; border-radius: 9px; box-shadow: 0 14px 34px rgba(6,19,38,.055); }
  .coverage-map-card img { filter: none; }
  .coverage-stat-grid { margin-block: 22px; }
  .coverage-stat { min-height: 86px; padding: 15px; }
  .coverage-stat strong { font-size: 1.58rem; }
  .process-compact { grid-template-columns: 1fr; }
  .process-compact article,
  .process-compact article:nth-child(2) { border-right: 0; border-bottom: 1px solid #cfdce5; padding: 22px 4px 24px; }
  .process-compact article:last-child { border-bottom: 0; }
  .process-compact h3 { margin-top: 12px; }
  .leadership-mini-grid { gap: 12px; }
  .leader-mini { grid-template-columns: 96px minmax(0,1fr) 18px; min-height: 118px; gap: 14px; }
  .leader-mini-image { width: 96px; height: 118px; }
  .leader-mini-copy { padding-block: 14px; }
  .leader-mini-copy strong { font-size: 1.16rem; }
  .leader-mini-copy p { display: none; }
  .quote-band-inner { padding-block: 60px; }
}

@media (max-width: 420px) {
  .coverage-stat-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .coverage-stat span { font-size: .62rem; }
  .leader-mini { grid-template-columns: 84px minmax(0,1fr) 16px; }
  .leader-mini-image { width: 84px; height: 112px; }
  .leader-mini-copy strong { font-size: 1.04rem; }
  .leader-mini-copy span { font-size: .58rem; }
}


/* Final information-density refinement */
@media (max-width: 780px) {
  .site-footer .footer-main {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 30px 22px;
  }
  .site-footer .footer-brand,
  .site-footer .footer-contact { grid-column: 1 / -1; }
  .site-footer .footer-brand p { max-width: 520px; }
  .site-footer .footer-bottom { align-items: flex-start; gap: 14px; }
  .site-footer .footer-legal-links { flex-wrap: wrap; gap: 10px 16px; }
  .footer-disclaimer { padding-bottom: calc(24px + env(safe-area-inset-bottom)); }
}

@media (max-width: 780px) {
  .proof-inner { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .proof-item {
    min-height: 126px;
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    padding: 16px 14px;
  }
  .proof-item::after { display: none !important; }
  .proof-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .proof-copy strong { font-size: .75rem; line-height: 1.3; }
  .proof-copy span { font-size: .62rem; line-height: 1.4; }
  .proof-icon { width: 28px; height: 28px; flex-basis: 28px; }
  .site-footer .footer-main { padding: 50px 0 36px; }
  .footer-brand p { margin-top: 14px; }
  .footer-column h3 { margin-bottom: 13px; }
  .footer-links { gap: 8px; }
  .footer-bottom { padding: 20px 0 22px; }
  .footer-disclaimer { padding-top: 14px; font-size: .62rem; }
}
