/* Prime Inspections — "midstream leader" system (2026-09-23, Marcus msgs 19132 / 19135 / 19137).
   Same system as UT Quality + RAE Energy: white header with the real logo, full-bleed real photo/video heroes
   (visible on phone AND desktop), short headlines, light body, ONE brand colour (Prime cyan), photo-led
   split sections, hairline (1px) structure, a proof band, strong navy footer. No eyebrow labels, no numbered
   rows, no gradients-as-decoration, no ticker, no neon wave.
   Everything is scoped under .lx so the SPA's portal pages (Tailwind/shadcn) are untouched.
   ONE source file: src/src/lx.css -> bundled into the SPA (imported in main.tsx, AFTER index.css so it wins
   specificity ties with Tailwind preflight) and copied verbatim to /lx.css for the static pages.
   Element-level rules use :where(.lx-page) = zero extra specificity, so Tailwind utility classes inside
   embedded components (careers/contact forms) still win. */

@font-face { font-family: "Titillium Web"; src: url(/fonts/TitilliumWeb-400.woff2) format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Titillium Web"; src: url(/fonts/TitilliumWeb-600.woff2) format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Titillium Web"; src: url(/fonts/TitilliumWeb-700.woff2) format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Inter"; src: url(/fonts/Inter-var.woff2) format("woff2"); font-weight: 100 900; font-display: swap; }

:root {
  --lx-brand: #0880A6;      /* Prime cyan, deepened for AA on white (4.5:1). Logo cyan is #0CB4DD. */
  --lx-brand-dk: #066D8E;
  --lx-brand-lt: #0CB4DD;   /* logo cyan — only on navy */
  --lx-tint: #E8F5FA;
  --lx-ink: #0B1620;
  --lx-body: #36424D;
  --lx-muted: #5E6A75;
  --lx-line: #DDE3E8;
  --lx-bg: #FFFFFF;
  --lx-alt: #F4F6F8;
  --lx-navy: #0B1620;
  --lx-navy2: #111F2C;
  --lx-hdr: 76px;
  --lx-wrap: 1280px;
  --lx-h: "Titillium Web", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --lx-b: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.lx { background: var(--lx-bg); color: var(--lx-body); font-family: var(--lx-b); font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: clip; }
html:has(body.lx), body.lx { overflow-x: hidden; }
body.lx { margin: 0; }
.lx *, .lx *::before, .lx *::after { box-sizing: border-box; }
.lx img { max-width: 100%; height: auto; display: block; }
:where(.lx-page) a { color: var(--lx-brand); text-decoration: none; }
:where(.lx-page) a:hover { color: var(--lx-brand-dk); }
:where(.lx-page) :is(h1, h2, h3, h4) { font-family: var(--lx-h); color: var(--lx-ink); margin: 0 0 .55em; line-height: 1.1; font-weight: 700; letter-spacing: -.012em; }
:where(.lx-page) h2 { font-size: clamp(2rem, 1.35rem + 2.2vw, 3.1rem); }
:where(.lx-page) h3 { font-size: 1.3rem; font-weight: 600; line-height: 1.25; letter-spacing: 0; }
:where(.lx-page) h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: 0; }
:where(.lx-page) p { margin: 0 0 1em; }
:where(.lx-page) ul { margin: 0; padding-left: 1.1em; }
.lx :focus-visible { outline: 2px solid var(--lx-brand); outline-offset: 2px; }
.lx-wrap { width: 100%; max-width: var(--lx-wrap); margin: 0 auto; padding: 0 20px; }
@media (min-width: 900px) { .lx-wrap { padding: 0 40px; } }
.lx-sec { padding: clamp(64px, 8vw, 120px) 0; }
.lx-sec.tight { padding: clamp(48px, 6vw, 80px) 0; }
.lx-alt { background: var(--lx-alt); }
.lx-muted { color: var(--lx-muted); }
.lx-head { max-width: 780px; margin-bottom: clamp(32px, 4vw, 56px); }
.lx-head p { font-size: 1.14rem; color: var(--lx-body); }
.lx-head p:last-child { margin-bottom: 0; }
.lx-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.lx-headrow { display: grid; gap: 16px 48px; align-items: end; margin-bottom: clamp(32px, 4vw, 56px); }
.lx-headrow .lx-head { margin-bottom: 0; }
@media (min-width: 960px) { .lx-headrow { grid-template-columns: 1fr auto; } }
.lx-sub { font-family: var(--lx-h); font-weight: 600; font-size: 1.2rem; color: var(--lx-brand); margin: -4px 0 18px; line-height: 1.3; }
.lx-sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ------------------------------------------------------------------ utility bar + header */
.lx-util { display: none; background: var(--lx-navy); color: #B9C4CE; font-size: .85rem; }
.lx-util .lx-wrap { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 24px; }
.lx-util a { color: #E4EAEF; font-weight: 500; }
.lx-util a:hover { color: #fff; }
.lx-util .r { display: flex; gap: 24px; align-items: center; }
.lx-util .sep { width: 1px; height: 14px; background: rgba(255,255,255,.2); }
@media (min-width: 1100px) { .lx-util { display: block; } }

.lx-header { position: sticky; top: 0; z-index: 60; background: #fff; border-bottom: 1px solid var(--lx-line); }
.lx-header .lx-wrap { display: flex; align-items: center; justify-content: space-between; height: var(--lx-hdr); gap: 20px; }
.lx-logo { display: flex; align-items: center; flex: 0 1 auto; min-width: 0; }
.lx-logo img { max-width: 100%; }
.lx-logo img { height: 26px; width: auto; }
.lx-nav { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.lx-nav > li { position: relative; list-style: none; }
.lx-nav > li > a, .lx-nav .lx-dd-t { display: inline-flex; align-items: center; gap: 6px; font-family: var(--lx-h); font-weight: 600; font-size: 1rem; color: var(--lx-ink); padding: 26px 11px; background: none; border: 0; cursor: pointer; line-height: 1; border-bottom: 2px solid transparent; }
.lx-nav > li > a:hover, .lx-nav .lx-dd-t:hover { color: var(--lx-brand); }
.lx-nav > li > a[aria-current="page"], .lx-nav > li.cur > a { color: var(--lx-brand); border-bottom-color: var(--lx-brand); }
.lx-nav .lx-dd-t::after { content: ""; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-3px); opacity: .7; }
.lx-dd { position: absolute; top: 100%; left: -8px; min-width: 300px; background: #fff; border: 1px solid var(--lx-line); border-top: 2px solid var(--lx-brand); box-shadow: 0 18px 40px rgba(11,22,32,.12); padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .15s, transform .15s, visibility 0s .15s; }
.lx-dd a { display: block; padding: 10px 22px; color: var(--lx-ink); font-size: .96rem; font-weight: 500; line-height: 1.35; }
.lx-dd a:hover { background: var(--lx-alt); color: var(--lx-brand); }
.lx-dd a.all { font-weight: 600; color: var(--lx-brand); border-bottom: 1px solid var(--lx-line); margin-bottom: 6px; padding-bottom: 12px; }
.lx-nav > li:hover .lx-dd, .lx-nav > li:focus-within .lx-dd { opacity: 1; visibility: visible; transform: none; transition: opacity .15s, transform .15s; }
.lx-nav .lx-navcta { margin-left: 12px; }
.lx-nav .lx-navcta a { background: var(--lx-brand); color: #fff; padding: 13px 20px; border-radius: 2px; font-family: var(--lx-h); font-weight: 600; font-size: 1rem; display: inline-block; line-height: 1; }
.lx-nav .lx-navcta a:hover { background: var(--lx-brand-dk); color: #fff; }
.lx-nav .lx-mob-only { display: none; }
.lx-menu-btn { display: none; width: 46px; height: 46px; border: 1px solid var(--lx-line); background: #fff; border-radius: 2px; cursor: pointer; padding: 0; position: relative; color: transparent; font-size: 0; flex: none; }
.lx-menu-btn::before, .lx-menu-btn::after { content: ""; position: absolute; left: 12px; right: 12px; height: 2px; background: var(--lx-ink); transition: transform .2s, top .2s; }
.lx-menu-btn::before { top: 16px; box-shadow: 0 6px 0 var(--lx-ink); }
.lx-menu-btn::after { top: 28px; }
.lx-menu-btn[aria-expanded="true"]::before { top: 22px; box-shadow: none; transform: rotate(45deg); }
.lx-menu-btn[aria-expanded="true"]::after { top: 22px; transform: rotate(-45deg); }
.lx-sub-t { display: none; }
@media (max-width: 1099px) {
  :root { --lx-hdr: 64px; }
  .lx-logo img { height: 21px; width: auto; }
  .lx-menu-btn { display: block; }
  .lx-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 4px 20px 24px; border-bottom: 1px solid var(--lx-line); box-shadow: 0 18px 30px rgba(11,22,32,.14); max-height: calc(100svh - var(--lx-hdr)); overflow-y: auto; }
  .lx-nav.open { display: flex; }
  .lx-nav > li { border-bottom: 1px solid var(--lx-line); display: flex; flex-wrap: wrap; align-items: center; }
  .lx-nav > li > a, .lx-nav .lx-dd-t { padding: 16px 2px; font-size: 1.1rem; border-bottom: 0; flex: 1; }
  .lx-nav .lx-dd-t::after { display: none; }
  .lx-nav > li > a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--lx-brand); padding-left: 12px; }
  .lx-sub-t { display: block; width: 44px; height: 44px; border: 0; background: none; position: relative; cursor: pointer; flex: none; }
  .lx-sub-t::before, .lx-sub-t::after { content: ""; position: absolute; left: 15px; right: 15px; top: 21px; height: 2px; background: var(--lx-ink); transition: transform .2s; }
  .lx-sub-t::after { transform: rotate(90deg); }
  .lx-sub-t[aria-expanded="true"]::after { transform: rotate(0); }
  .lx-dd { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; min-width: 0; width: 100%; padding: 0 0 12px 12px; display: none; transition: none; }
  .lx-dd.open { display: block; }
  .lx-dd a { padding: 10px 4px; font-size: 1rem; }
  .lx-dd a.all { border-bottom: 0; margin: 0; padding-bottom: 10px; }
  .lx-dd a:hover { background: none; }
  .lx-nav .lx-navcta { margin: 18px 0 0; border: 0; }
  .lx-nav .lx-navcta a { width: 100%; text-align: center; padding: 16px; }
  .lx-nav .lx-mob-only { display: flex; }
}

/* ------------------------------------------------------------------ buttons */
.lx-btn { display: inline-flex; align-items: center; justify-content: center; gap: .55em; font-family: var(--lx-h); font-weight: 600; font-size: 1.04rem; line-height: 1.2; padding: 15px 26px; border-radius: 2px; border: 1px solid transparent; cursor: pointer; text-decoration: none; transition: background .15s, color .15s, border-color .15s; }
.lx .lx-btn:hover { text-decoration: none; }
.lx-btn .ar { transition: transform .2s; }
.lx-btn:hover .ar { transform: translateX(3px); }
.lx .lx-btn-p { background: var(--lx-brand); color: #fff; }
.lx .lx-btn-p:hover { background: var(--lx-brand-dk); color: #fff; }
.lx .lx-btn-w { background: #fff; color: var(--lx-ink); }
.lx .lx-btn-w:hover { background: var(--lx-tint); color: var(--lx-ink); }
.lx .lx-btn-g { border-color: rgba(255,255,255,.85); color: #fff; background: transparent; }
.lx .lx-btn-g:hover { background: #fff; color: var(--lx-ink); }
.lx .lx-btn-o { border-color: var(--lx-ink); color: var(--lx-ink); background: transparent; }
.lx .lx-btn-o:hover { background: var(--lx-ink); color: #fff; }
.lx .lx-link { font-family: var(--lx-h); font-weight: 600; color: var(--lx-brand); display: inline-flex; gap: .45em; align-items: center; font-size: 1.05rem; background: none; border: 0; padding: 0; cursor: pointer; }
.lx .lx-link:hover { color: var(--lx-brand-dk); }
.lx-link .ar { transition: transform .2s; }
.lx-link:hover .ar { transform: translateX(3px); }
.lx-btns { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 520px) { .lx-hero .lx-btns .lx-btn { flex: 1 1 100%; } }

/* ------------------------------------------------------------------ HERO — full-bleed real photograph / video */
.lx-hero { position: relative; min-height: calc(100svh - var(--lx-hdr)); display: flex; align-items: flex-end; color: #fff; overflow: hidden; background: var(--lx-navy); padding: 0; isolation: isolate; }
.lx-hero-media, .lx-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; }
.lx-hero-media img { object-fit: cover; object-position: var(--pos-m, 50% 45%); }
.lx-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(7,15,23,.9) 0%, rgba(7,15,23,.7) 34%, rgba(7,15,23,.3) 58%, rgba(7,15,23,0) 78%); }
/* Video: Chromium mis-paints object-fit:cover on a <video> cropped horizontally (tall phone box) — use the
   min-size + centring transform technique instead (same fix as UTQ, 2026-09-23). */
.lx-hero-video { position: absolute; z-index: -2; top: 50%; left: 50%; width: auto; height: auto; min-width: 100%; min-height: 100%; max-width: none; transform: translate(-50%, -50%); object-fit: cover; }
@media (prefers-reduced-motion: reduce) { .lx-hero-video { display: none; } }
.lx-hero-in { position: relative; padding-top: 56px; padding-bottom: 44px; width: 100%; }
.lx-hero h1 { color: #fff; font-size: clamp(3rem, 1.6rem + 6.4vw, 7.4rem); line-height: .94; letter-spacing: -.025em; margin: 0 0 16px; max-width: 12ch; text-shadow: 0 2px 24px rgba(0,0,0,.25); }
.lx-hero .h1-sub { display: block; font-family: var(--lx-h); font-weight: 400; font-size: clamp(1.2rem, 1rem + .9vw, 1.75rem); line-height: 1.3; letter-spacing: 0; color: rgba(255,255,255,.95); margin-top: 16px; max-width: 32ch; }
.lx-hero .lx-btns { margin-top: 30px; }
/* Home hero only (the plain .lx-hero, never .sm — inner-page banners don't run this tall): keep the CTA
   row clear of the fixed chat launcher (#prime-chat-btn, 52px tall + 16px inset + iOS safe-area on phones —
   chat-widget.js). Marcus flagged "Explore Services" sitting under the bubble on phone (2026-09-24). */
@media (max-width: 767px) {
  .lx-hero:not(.sm) .lx-hero-in { padding-bottom: 128px; }
}
.lx-crumb { font-size: .92rem; color: rgba(255,255,255,.88); margin: 0 0 16px; }
.lx-crumb a { color: #fff; font-weight: 600; }
.lx-crumb a:hover { color: #fff; text-decoration: underline; }
.lx-crumb span { margin: 0 .5em; opacity: .7; }
.lx-hero .tag { display: inline-block; background: #fff; color: var(--lx-brand); font-weight: 600; font-size: .9rem; padding: 5px 12px; border-radius: 2px; margin-bottom: 16px; font-family: var(--lx-h); }
@media (min-width: 900px) {
  .lx-hero { min-height: min(calc(100svh - var(--lx-hdr) - 38px), 900px); align-items: center; }
  .lx-hero-media img { object-position: var(--pos-d, 50% 50%); }
  .lx-hero::after { background: linear-gradient(90deg, rgba(7,15,23,.8) 0%, rgba(7,15,23,.55) 32%, rgba(7,15,23,.12) 60%, rgba(7,15,23,0) 76%), linear-gradient(to top, rgba(7,15,23,.4), rgba(7,15,23,0) 40%); }
  .lx-hero-in { padding-top: 100px; padding-bottom: 100px; }
}
/* inner-page hero (shorter, same photo rules) */
.lx-hero.sm { min-height: min(72svh, 620px); }
.lx-hero.sm h1 { font-size: clamp(2.4rem, 1.5rem + 3.6vw, 4.6rem); max-width: 16ch; line-height: 1; }
.lx-hero.sm .h1-sub { font-size: clamp(1.1rem, 1rem + .5vw, 1.4rem); max-width: 40ch; }
@media (min-width: 900px) { .lx-hero.sm { min-height: 560px; align-items: flex-end; } .lx-hero.sm .lx-hero-in { padding-bottom: 72px; } }
.lx-hero .scroll { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); width: 1px; height: 44px; background: rgba(255,255,255,.5); display: none; }
@media (min-width: 900px) { .lx-hero .scroll { display: block; } }

/* ------------------------------------------------------------------ intro (lede under the hero) + proof band */
.lx-intro { padding: clamp(56px, 7vw, 104px) 0 clamp(48px, 6vw, 88px); }
/* Home-only compact variant (length pass, Marcus msg 19165, 2026-09-24) — other pages' .lx-intro unchanged. */
.lx-intro.home-compact { padding: clamp(40px, 5vw, 72px) 0 clamp(32px, 4vw, 56px); }
.lx-lede { font-family: var(--lx-h); font-weight: 400; font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2.15rem); line-height: 1.38; color: var(--lx-ink); max-width: 1020px; margin: 0; letter-spacing: -.005em; }
.lx-lede b, .lx-lede strong { font-weight: 600; }
.lx-stats { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--lx-line); border-bottom: 1px solid var(--lx-line); margin-top: clamp(40px, 5vw, 72px); }
.lx-stat { padding: 26px 16px 24px 0; }
.lx-stat:nth-child(even) { padding-left: 18px; border-left: 1px solid var(--lx-line); }
@media (max-width: 899px) { .lx-stat:nth-child(-n+2) { border-bottom: 1px solid var(--lx-line); } }
.lx-stat .n { font-family: var(--lx-h); font-weight: 700; font-size: clamp(2.5rem, 1.6rem + 3.2vw, 4.6rem); line-height: 1; color: var(--lx-ink); letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.lx-stat .n span { color: var(--lx-brand); font-weight: 600; }
.lx-stat .n .pre { color: var(--lx-muted); font-size: .42em; letter-spacing: 0; margin-right: .1em; }
.lx-stat .l { margin-top: 12px; font-size: .98rem; color: var(--lx-muted); line-height: 1.35; }
@media (min-width: 900px) { .lx-stats { grid-template-columns: repeat(4, 1fr); } .lx-stat { padding: 36px 28px 32px; } .lx-stat + .lx-stat { border-left: 1px solid var(--lx-line); } .lx-stat:first-child { padding-left: 0; } }
.lx-stats.navy { border-color: rgba(255,255,255,.16); }

/* client logos — greyscale strip */
.lx-logos { padding: 8px 0 clamp(40px, 5vw, 64px); }
.lx-logos .cap { text-align: center; font-family: var(--lx-h); font-weight: 600; font-size: 1.05rem; color: var(--lx-muted); margin: 0 0 20px; }
.lx-logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px 24px; }
/* the client_logos PNGs are 500x500 squares with the mark in a ~80px band: a 20:9 cover box crops the padding */
.lx-logo-row img { width: 128px; height: 56px; max-width: none; object-fit: cover; filter: grayscale(1) contrast(1.05); opacity: .62; transition: filter .2s, opacity .2s; }
.lx-logo-row img:hover { filter: none; opacity: 1; }
@media (max-width: 599px) { .lx-logo-row { gap: 6px 14px; } .lx-logo-row img { width: 124px; height: 56px; } }


/* ------------------------------------------------------------------ photo-led split sections (full-bleed half) */
.lx-split { display: grid; grid-template-columns: minmax(0, 1fr); background: var(--lx-bg); padding: 0; }
.lx-split.alt { background: var(--lx-alt); }
.lx-split-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: #D9E0E6; }
.lx-split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--pos, 50% 50%); }
.lx-split-body { padding: clamp(48px, 7vw, 104px) 20px; }
.lx-split-body > :last-child { margin-bottom: 0; }
.lx-split-body .lx-btns, .lx-split-body .lx-link { margin-top: 12px; }
@media (min-width: 980px) {
  .lx-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-height: 600px; }
  .lx-split-media { aspect-ratio: auto; min-height: 100%; }
  .lx-split-body { padding: 104px 64px; align-self: center; max-width: none; }
  .lx-split.rev .lx-split-media { order: 2; }
  .lx-split:not(.rev) .lx-split-body { padding-right: max(40px, calc((100vw - var(--lx-wrap)) / 2 + 40px)); }
  .lx-split.rev .lx-split-body { padding-left: max(40px, calc((100vw - var(--lx-wrap)) / 2 + 40px)); }
}
.lx-split-body p.big { font-size: 1.16rem; color: var(--lx-ink); }
/* Compact split variant — home-page-length pass (Marcus msg 19165, 2026-09-24). Drops the generic
   split's 600px min-height/104px padding floor for a short block (merged Why Prime); other .lx-split
   sections sitewide are untouched. */
.lx-split-compact .lx-split-media { aspect-ratio: 16 / 9; }
.lx-split-compact .lx-split-body { padding-top: 40px; padding-bottom: 40px; }
@media (min-width: 980px) {
  .lx-split-compact { min-height: 0; }
  .lx-split-compact .lx-split-media { aspect-ratio: auto; }
  .lx-split-compact .lx-split-body { padding-top: 64px; padding-bottom: 64px; }
}

/* check list (hairline rows) */
.lx-checks { list-style: none; padding: 0; margin: 8px 0 28px; display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--lx-line); }
.lx-checks li { position: relative; padding: 13px 8px 13px 30px; border-bottom: 1px solid var(--lx-line); color: var(--lx-ink); font-size: 1rem; line-height: 1.4; }
.lx-checks li::before { content: ""; position: absolute; left: 3px; top: 18px; width: 12px; height: 7px; border-left: 2px solid var(--lx-brand); border-bottom: 2px solid var(--lx-brand); transform: rotate(-45deg); }
@media (min-width: 640px) { .lx-checks.two { grid-template-columns: 1fr 1fr; column-gap: 28px; } }

/* hairline columns (instead of card grids) */
.lx-cols { display: grid; gap: 0; grid-template-columns: minmax(0, 1fr); border-top: 1px solid var(--lx-line); }
.lx-col { padding: 28px 0 30px; border-bottom: 1px solid var(--lx-line); }
.lx-col h3 { margin-bottom: .45em; }
.lx-col p { margin: 0; color: var(--lx-body); }
.lx-col ul { margin-top: 14px; padding-left: 1.05em; color: var(--lx-body); font-size: .98rem; }
.lx-col li { margin: 5px 0; }
.lx-col li::marker { color: var(--lx-brand); }
.lx-col .rule { display: block; width: 28px; height: 2px; background: var(--lx-brand); margin-bottom: 18px; }
@media (min-width: 700px) {
  .lx-cols.c2, .lx-cols.c3, .lx-cols.c4, .lx-cols.c5 { grid-template-columns: 1fr 1fr; column-gap: 40px; }
}
@media (min-width: 1040px) {
  .lx-cols.c3 { grid-template-columns: repeat(3, 1fr); }
  .lx-cols.c4 { grid-template-columns: repeat(4, 1fr); }
  .lx-cols.c5 { grid-template-columns: repeat(5, 1fr); }
  .lx-cols.c3, .lx-cols.c4, .lx-cols.c5 { column-gap: 0; border-bottom: 1px solid var(--lx-line); }
  .lx-cols.c3 .lx-col, .lx-cols.c4 .lx-col, .lx-cols.c5 .lx-col { border-bottom: 0; padding: 32px 28px 34px; }
  .lx-cols.c3 .lx-col + .lx-col, .lx-cols.c4 .lx-col + .lx-col, .lx-cols.c5 .lx-col + .lx-col { border-left: 1px solid var(--lx-line); }
  .lx-cols.c3 .lx-col:first-child, .lx-cols.c4 .lx-col:first-child, .lx-cols.c5 .lx-col:first-child { padding-left: 0; }
  .lx-cols.c3 .lx-col:nth-child(3n+4) { border-left: 0; padding-left: 0; }
  .lx-cols.c3 .lx-col:nth-child(n+4) { border-top: 1px solid var(--lx-line); }
  .lx-cols.c4 .lx-col:nth-child(4n+5) { border-left: 0; padding-left: 0; }
  .lx-cols.c4 .lx-col:nth-child(n+5) { border-top: 1px solid var(--lx-line); }
}
a.lx-col { display: block; color: var(--lx-body); transition: background .15s; }
a.lx-col:hover { color: var(--lx-body); }
a.lx-col:hover h3 { color: var(--lx-brand); }
a.lx-col .lx-link { margin-top: 14px; font-size: 1rem; }

/* photo tiles (What we do / industries) */
.lx-tiles { display: grid; gap: clamp(28px, 3vw, 44px); grid-template-columns: minmax(0, 1fr); }
@media (min-width: 760px) { .lx-tiles { grid-template-columns: 1fr 1fr; } .lx-tiles.t3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .lx-tiles.t3 { grid-template-columns: repeat(3, 1fr); } }
.lx-tile { display: flex; flex-direction: column; color: var(--lx-body); }
.lx .lx-tile:hover { color: var(--lx-body); }
.lx-tile-media { aspect-ratio: 16 / 9; overflow: hidden; background: #D9E0E6; }
.lx-tile-media img { width: 100%; height: 100%; object-fit: cover; object-position: var(--pos, 50% 50%); transition: transform .6s ease; }
.lx-tile:hover .lx-tile-media img { transform: scale(1.03); }
.lx-tile h3 { font-size: clamp(1.45rem, 1.2rem + .8vw, 1.9rem); font-weight: 700; margin: 24px 0 10px; }
.lx-tile:hover h3 { color: var(--lx-brand); }
.lx-tile p { margin: 0 0 16px; }
.lx-tile .row { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; margin-top: auto; }

/* industries — compact 4-tile signpost row (photo + title only, links out to the SEO pages) */
.lx-ind-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 700px) { .lx-ind-tiles { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
.lx-ind-tile { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; background: #D9E0E6; color: #fff; }
@media (min-width: 700px) { .lx-ind-tile { aspect-ratio: 4 / 3; } }
.lx-ind-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.lx-ind-tile:hover img { transform: scale(1.05); }
.lx-ind-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,15,23,.88) 0%, rgba(7,15,23,.25) 55%, rgba(7,15,23,0) 80%); }
.lx-ind-tile span { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 1; font-family: var(--lx-h); font-weight: 700; font-size: clamp(.95rem, .85rem + .3vw, 1.1rem); line-height: 1.2; }

/* pipeline experience — hairline bar list */
.lx-bars { border-top: 2px solid var(--lx-ink); }
.lx-bar { display: grid; grid-template-columns: 96px 1fr auto; gap: 18px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--lx-line); }
.lx-bar .d { font-family: var(--lx-h); font-weight: 700; font-size: 1.25rem; color: var(--lx-ink); line-height: 1.1; }
.lx-bar .d small { display: block; font-family: var(--lx-b); font-weight: 400; font-size: .8rem; color: var(--lx-muted); margin-top: 2px; }
.lx-bar .track { height: 6px; background: var(--lx-alt); position: relative; }
.lx-bar .fill { position: absolute; left: 0; top: 0; bottom: 0; background: var(--lx-brand); }
.lx-bar .m { font-family: var(--lx-h); font-weight: 700; font-size: 1.6rem; color: var(--lx-ink); text-align: right; min-width: 116px; line-height: 1; font-variant-numeric: tabular-nums; }
.lx-bar .m span { color: var(--lx-brand); }
.lx-bar .m small { font-family: var(--lx-b); font-weight: 500; font-size: .78rem; color: var(--lx-muted); margin-left: 6px; letter-spacing: .02em; }
@media (max-width: 560px) { .lx-bar { grid-template-columns: 70px 1fr auto; gap: 12px; } .lx-bar .m { font-size: 1.3rem; min-width: 92px; } .lx-bar .d { font-size: 1.05rem; } }

/* navy band (proof / fleet) */
.lx-navy { background: var(--lx-navy); color: #C4CED7; }
.lx-navy h2, .lx-navy h3 { color: #fff; }
.lx-navy .lx-head p { color: #C4CED7; }
.lx-navy .lx-stat .n { color: #fff; }
.lx-navy .lx-stat .n span { color: var(--lx-brand-lt); }
.lx-navy .lx-stat .l { color: #AEB9C3; }
.lx-navy .lx-stats, .lx-navy .lx-stat, .lx-navy .lx-stat + .lx-stat { border-color: rgba(255,255,255,.16); }
.lx-navy a { color: #7FD6EE; }
.lx-navy .lx-link { color: #7FD6EE; }
.lx-navy .lx-cols, .lx-navy .lx-col { border-color: rgba(255,255,255,.16) !important; }
.lx-navy .lx-col p, .lx-navy .lx-col li { color: #C4CED7; }

/* fleet growth (How it started -> How it's going) */
.lx-fleet { display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,.16); }
.lx-fleet-row { display: grid; grid-template-columns: 1fr; gap: 14px 40px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.16); align-items: center; }
.lx-fleet-row .yr { font-family: var(--lx-h); font-weight: 700; font-size: clamp(2.6rem, 2rem + 2.6vw, 4.2rem); color: #fff; line-height: 1; letter-spacing: -.02em; }
.lx-fleet-row .yr small { display: block; font-family: var(--lx-b); font-size: .9rem; font-weight: 500; color: #AEB9C3; letter-spacing: .02em; margin-top: 8px; }
.lx-fleet-row .cnt { font-family: var(--lx-h); font-weight: 700; font-size: clamp(2rem, 1.6rem + 1.6vw, 3rem); color: var(--lx-brand-lt); line-height: 1; white-space: nowrap; }
.lx-fleet-row .cnt small { font-family: var(--lx-b); font-weight: 500; font-size: .9rem; color: #AEB9C3; margin-left: 8px; }
.lx-trucks { display: flex; flex-wrap: wrap; gap: 6px 5px; }
.lx-trucks i { display: block; width: 30px; height: 15px; background: rgba(255,255,255,.35); -webkit-mask: var(--truck) center / contain no-repeat; mask: var(--truck) center / contain no-repeat; }
.lx-trucks.now i { background: var(--lx-brand-lt); }
.lx-fleet-mult { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 16px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.lx-fleet-mult b { font-family: var(--lx-h); font-weight: 700; font-size: clamp(2rem, 1.6rem + 1.8vw, 3.2rem); color: var(--lx-brand-lt); line-height: 1; }
.lx-fleet-mult span { color: #C4CED7; }
@media (min-width: 900px) { .lx-fleet-row { grid-template-columns: 220px 1fr 180px; } .lx-fleet-row .cnt { text-align: right; } }
/* Home-only: trim the band's own top/bottom whitespace, not its content (Marcus msg 19165, 2026-09-24
   length pass — "keep it" meant the proof band itself, not its padding). The /why-prime page's identical
   #fleet section (tools/build_static.py) is untouched — scoped to this class, not the shared #fleet id. */
.lx-fleet-home.lx-sec { padding: clamp(48px, 6vw, 80px) 0; }
.lx-fleet-home .lx-fleet-row { padding: 20px 0; }
.lx-fleet-home .lx-fleet-mult { padding: 16px 0; }
:root { --truck: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 22'%3E%3Cpath d='M1 3h24v13H1zM26 7h9l6 6v3H26z'/%3E%3Ccircle cx='9' cy='18' r='3.4'/%3E%3Ccircle cx='34' cy='18' r='3.4'/%3E%3C/svg%3E"); }

/* locations grid (hairline) */
.lx-locs { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--lx-line); border-left: 1px solid var(--lx-line); }
.lx-loc { padding: 18px 16px; border-right: 1px solid var(--lx-line); border-bottom: 1px solid var(--lx-line); }
.lx-loc b { display: block; font-family: var(--lx-h); font-weight: 600; font-size: 1.1rem; color: var(--lx-ink); line-height: 1.2; }
.lx-loc span { display: block; font-size: .88rem; color: var(--lx-muted); margin-top: 4px; line-height: 1.35; }
.lx-loc.hq { background: var(--lx-ink); }
.lx-loc.hq b { color: #fff; }
.lx-loc.hq span { color: #7FD6EE; }
@media (min-width: 700px) { .lx-locs { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px) { .lx-locs { grid-template-columns: repeat(5, 1fr); } .lx-loc { padding: 22px 20px; } }
a.lx-loc { display: block; transition: background .15s; }
a.lx-loc:hover { background: var(--lx-alt); }
a.lx-loc .lx-link { margin-top: 12px; font-size: .95rem; }

/* chips */
.lx-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.lx-chips li, .lx-chip { display: inline-block; border: 1px solid var(--lx-line); background: #fff; color: var(--lx-ink); font-size: .92rem; padding: 6px 12px; border-radius: 2px; line-height: 1.3; }

/* tables */
.lx-table-wrap { overflow-x: auto; border-top: 2px solid var(--lx-ink); -webkit-overflow-scrolling: touch; }
.lx-table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; font-size: 1rem; }
.lx-table th, .lx-table td { text-align: left; padding: 14px 16px 14px 0; border-bottom: 1px solid var(--lx-line); vertical-align: top; }
.lx-table thead th { font-weight: 600; color: var(--lx-ink); font-size: .95rem; }
.lx-table td:first-child { font-weight: 600; color: var(--lx-ink); }
.lx-table .hl { color: var(--lx-brand); font-weight: 700; }
.lx-table-rt th, .lx-table-rt td { white-space: nowrap; padding-right: 22px; }
.lx-table-rt { min-width: 640px; }

/* callout + big number */
.lx-callout { border-left: 3px solid var(--lx-brand); background: var(--lx-alt); padding: 22px 26px; font-size: 1.06rem; line-height: 1.6; color: var(--lx-ink); }
.lx-alt .lx-callout { background: #fff; }
.lx-big { font-family: var(--lx-h); font-weight: 700; font-size: clamp(3.4rem, 2.2rem + 5vw, 6.4rem); line-height: .95; color: var(--lx-brand); letter-spacing: -.03em; }
.lx-bigrow { display: grid; gap: 18px 40px; align-items: center; padding: 28px 0; border-top: 1px solid var(--lx-line); border-bottom: 1px solid var(--lx-line); }
@media (min-width: 800px) { .lx-bigrow { grid-template-columns: auto 1fr; } }
.lx-bigrow h3 { margin-bottom: .3em; }
.lx-bigrow p { margin: 0; }

/* figures (SVG illustrations, generated by tools/figs.py) */
.lx-fig { margin: 8px 0 0; background: #fff; border: 1px solid var(--lx-line); padding: clamp(16px, 3vw, 32px); }
.lx-fig svg { display: block; width: 100%; height: auto; }
.lx-fig .fig-title { font-family: var(--lx-h); font-weight: 700; color: var(--lx-ink); font-size: 1.08rem; margin: 0 0 16px; }
.lx-fig figcaption { font-size: .92rem; color: var(--lx-muted); margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--lx-line); line-height: 1.5; }
.lx-fig .fig-sm { display: none; }
@media (max-width: 700px) { .lx-fig .fig-lg { display: none; } .lx-fig .fig-sm { display: block; max-width: 420px; margin: 0 auto; } }
.lx-shot { margin: 0; border: 1px solid var(--lx-line); background: #fff; }
.lx-shot img { width: 100%; max-width: 765px; margin: 0 auto; }
.lx-shot { background: #0B1620; }
.lx-shot figcaption { background: #fff; }
.lx-shot figcaption { font-size: .9rem; color: var(--lx-muted); padding: 12px 16px; border-top: 1px solid var(--lx-line); }

/* contract models (who hires NDT) */
.lx-models { display: grid; gap: 0; border-top: 1px solid var(--lx-line); }
.lx-model { display: grid; gap: 14px 48px; padding: 32px 0; border-bottom: 1px solid var(--lx-line); }
.lx-model h3 { font-size: 1.45rem; margin-bottom: .3em; }
.lx-model .chain { font-family: var(--lx-h); font-weight: 600; color: var(--lx-ink); font-size: 1rem; }
.lx-model .chain i { font-style: normal; color: var(--lx-brand); padding: 0 .35em; }
.lx-model .meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.lx-model .meta div { border-top: 2px solid var(--lx-ink); padding-top: 8px; }
.lx-model .meta b { display: block; font-family: var(--lx-h); font-size: 1.15rem; color: var(--lx-ink); }
.lx-model .meta span { font-size: .85rem; color: var(--lx-muted); }
.lx-model ul { margin: 0; padding-left: 1.1em; font-size: .98rem; }
.lx-model li { margin: 5px 0; }
.lx-model .rec { display: inline-block; font-family: var(--lx-h); font-weight: 600; font-size: .85rem; color: #fff; background: var(--lx-brand); padding: 3px 10px; border-radius: 2px; margin-left: 8px; vertical-align: middle; }
@media (min-width: 980px) { .lx-model { grid-template-columns: 1.1fr 1fr; } }

/* FAQ */
.lx-faq details { border-top: 1px solid var(--lx-line); padding: 0; }
.lx-faq details:last-child { border-bottom: 1px solid var(--lx-line); }
.lx-faq summary { cursor: pointer; list-style: none; font-family: var(--lx-h); font-weight: 600; font-size: 1.15rem; color: var(--lx-ink); padding: 22px 44px 22px 0; position: relative; line-height: 1.35; }
.lx-faq summary::-webkit-details-marker { display: none; }
.lx-faq summary::after { content: ""; position: absolute; right: 8px; top: 30px; width: 10px; height: 10px; border-right: 2px solid var(--lx-brand); border-bottom: 2px solid var(--lx-brand); transform: rotate(45deg); transition: transform .2s; }
.lx-faq details[open] summary::after { transform: rotate(-135deg); top: 34px; }
.lx-faq details p { margin: 0 0 22px; max-width: 820px; }

/* CTA band */
.lx-cta { background: var(--lx-brand); color: #fff; padding: clamp(56px, 7vw, 96px) 0; }
.lx-cta h2 { color: #fff; margin: 0 0 12px; }
.lx-cta p { margin: 0; max-width: 700px; font-size: 1.12rem; color: rgba(255,255,255,.94); }
.lx-cta .lx-wrap { display: grid; gap: 28px 64px; align-items: center; }
@media (min-width: 900px) { .lx-cta .lx-wrap { grid-template-columns: 1fr auto; } }
.lx-cta .lx-btn-w { color: var(--lx-ink); }
/* Home-only compact CTA (length pass, Marcus msg 19165, 2026-09-24); every other .lx-cta sitewide unchanged. */
.lx-cta-compact { padding: clamp(32px, 4vw, 48px) 0; }
/* A touch tighter still than the shared .tight modifier, but only for these two home rows — every other
   page using .tight elsewhere is unaffected (id-scoped, not a change to .tight itself). */
#what-we-do.tight, #industries.tight { padding: 56px 0; }

/* forms (static pages) + SPA form wrappers */
.lx-form { background: #fff; border: 1px solid var(--lx-line); border-top: 3px solid var(--lx-brand); padding: clamp(22px, 3vw, 40px); }
.lx-form h2 { font-size: 1.6rem; }
.lx-contact-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--lx-line); }
.lx-contact-list li { display: grid; grid-template-columns: 110px minmax(0, 1fr); overflow-wrap: anywhere; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--lx-line); }
.lx-contact-list .k { font-family: var(--lx-h); font-weight: 600; color: var(--lx-ink); }
.lx-grid2 { display: grid; gap: 40px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 980px) { .lx-grid2 { grid-template-columns: 1.15fr 1fr; gap: 72px; } }

/* careers disciplines accordion */
.lx-acc { border-top: 1px solid var(--lx-line); }
.lx-acc-item { border-bottom: 1px solid var(--lx-line); }
.lx-acc-t { width: 100%; display: grid; grid-template-columns: 48px 1fr 28px; gap: 16px; align-items: center; text-align: left; background: none; border: 0; padding: 20px 0; cursor: pointer; font: inherit; color: inherit; }
.lx-acc-t img { width: 40px; height: 40px; object-fit: contain; }
.lx-acc-t .t { display: block; font-family: var(--lx-h); font-weight: 600; font-size: 1.3rem; color: var(--lx-ink); line-height: 1.25; }
.lx-acc-t .d { display: block; margin: 2px 0 0; color: var(--lx-muted); font-size: .95rem; }
.lx-acc-t .pm { width: 28px; height: 28px; position: relative; }
.lx-acc-t .pm::before, .lx-acc-t .pm::after { content: ""; position: absolute; left: 6px; right: 6px; top: 13px; height: 2px; background: var(--lx-brand); transition: transform .2s; }
.lx-acc-t .pm::after { transform: rotate(90deg); }
.lx-acc-t[aria-expanded="true"] .pm::after { transform: rotate(0); }
.lx-acc-body { padding: 0 0 20px 64px; display: grid; gap: 0; }
.lx-acc-body button { display: flex; justify-content: space-between; align-items: center; gap: 12px; width: 100%; text-align: left; background: none; border: 0; border-top: 1px solid var(--lx-line); padding: 14px 4px; cursor: pointer; font: inherit; color: var(--lx-ink); }
.lx-acc-body button:hover { color: var(--lx-brand); background: var(--lx-alt); }
.lx-acc-body button b { font-family: var(--lx-h); font-weight: 600; font-size: 1.05rem; }
.lx-acc-body button span { display: block; font-size: .9rem; color: var(--lx-muted); }
@media (max-width: 560px) { .lx-acc-body { padding-left: 0; } .lx-acc-t { grid-template-columns: 40px 1fr 28px; } }

/* related links */
.lx-related { display: grid; gap: 0; border-top: 1px solid var(--lx-line); }
.lx-related a { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--lx-line); color: var(--lx-ink); }
.lx-related a b { font-family: var(--lx-h); font-weight: 600; font-size: 1.15rem; display: block; }
.lx-related a span { color: var(--lx-muted); font-size: .95rem; }
.lx-related a:hover b { color: var(--lx-brand); }
.lx-related a .ar { color: var(--lx-brand); font-size: 1.3rem; }
@media (min-width: 900px) { .lx-related { grid-template-columns: 1fr 1fr; column-gap: 48px; } }

/* ------------------------------------------------------------------ footer */
.lx-footer { background: var(--lx-navy); color: #AEB9C3; padding: clamp(56px, 7vw, 88px) 0 28px; font-size: .96rem; }
.lx-footer a { color: #E4EAEF; }
.lx-footer a:hover { color: #fff; }
.lx-fgrid { display: grid; gap: 36px 32px; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.lx-fgrid .brand { grid-column: 1 / -1; }
@media (max-width: 480px) { .lx-fgrid { grid-template-columns: minmax(0, 1fr); } }
@media (min-width: 1100px) { .lx-fgrid { grid-template-columns: 1.5fr 1fr 1.25fr 1.2fr 1.2fr; } .lx-fgrid .brand { grid-column: auto; } }
.lx-fgrid h4 { color: #fff; font-family: var(--lx-h); font-size: 1.02rem; margin: 0 0 14px; font-weight: 600; }
.lx-fgrid ul { list-style: none; padding: 0; margin: 0; }
.lx-fgrid li { padding: 4px 0; line-height: 1.4; }
.lx-flogo { height: 24px; width: auto; margin-bottom: 20px; }
.lx-fbrand p { max-width: 360px; margin-bottom: 18px; }
.lx-fcontact p { margin: 0 0 12px; line-height: 1.5; }
.lx-fcontact strong { color: #fff; font-weight: 600; }
.lx-social { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.22); color: #E4EAEF; }
.lx-social:hover { border-color: #fff; }
.lx-social svg { width: 16px; height: 16px; fill: currentColor; }
.lx-fareas { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); font-size: .93rem; }
.lx-fareas b { color: #fff; font-weight: 600; margin-right: 6px; }
.lx-fbottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px 24px; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); font-size: .88rem; }
.lx-rae { display: inline-flex; align-items: center; gap: 10px; color: #AEB9C3; }
.lx-rae img { height: 30px; width: auto; }

/* SPA only: shadcn Dialog restyle for "Why Digital?" lives in component classes. */

@media (max-width: 374px) { .lx-contact-list li { grid-template-columns: 90px minmax(0, 1fr); } .lx-logo img { height: 17px; } .lx-header .lx-wrap { gap: 12px; } }

/* sticky header: anchors + scrollIntoView (careers "select a position", contact-form links) land below it */
html { scroll-padding-top: calc(var(--lx-hdr) + 16px); }
:where(.lx-page) [id] { scroll-margin-top: calc(var(--lx-hdr) + 16px); }

/* ------------------------------------------------------------------ Nationwide reach map (2026-09-24)
   Vector recreation of the brochure's last-page US locations map (Marcus msg 19221, corrected 19223).
   Self-contained dark panel so it reads correctly whether the surrounding section is light or .lx-navy. */
.lx-reach-panel {
  position: relative;
  background: linear-gradient(165deg, #16324A 0%, #0B1620 78%);
  border-radius: 4px;
  padding: clamp(18px, 3vw, 34px);
  overflow: hidden;
}
.lx-reach-svg { width: 100%; height: auto; display: block; overflow: visible; }
.lx-reach-svg .state path { fill: #24455F; }
.lx-reach-svg .borders path { stroke: rgba(255, 255, 255, .18); stroke-width: 1; fill: none; vector-effect: non-scaling-stroke; }
.lx-reach-tri { fill: var(--lx-brand-lt); stroke: #082330; stroke-width: .6; }
.lx-reach-star path { fill: var(--lx-brand-lt); stroke: #082330; stroke-width: .6; }
.lx-reach-katy-label { fill: #fff; font-family: var(--lx-h); font-weight: 700; font-size: 19px; letter-spacing: .07em; }
.lx-reach .lx-head p { color: var(--lx-muted); }
.lx-reach-below { margin-top: clamp(24px, 3vw, 36px); text-align: center; }
.lx-reach-kicker { font-family: var(--lx-h); font-weight: 600; font-size: 1rem; letter-spacing: .04em; color: var(--lx-brand); margin-bottom: 14px; }
.lx-reach-chips { justify-content: center; }
.lx-reach-groups { margin-top: clamp(28px, 3vw, 44px); display: grid; gap: 8px; max-width: 640px; margin-left: auto; margin-right: auto; }
.lx-reach-groups h4 { text-align: center; }
.lx-reach-groups .lx-checks { max-width: 340px; margin-left: auto; margin-right: auto; }
@media (min-width: 700px) { .lx-reach-groups { grid-template-columns: 1fr 1fr; column-gap: 40px; } }
.lx-navy .lx-reach-kicker { color: var(--lx-brand-lt); }
.lx-navy .lx-reach-chips li, .lx-navy .lx-reach-chips.lx-chips li { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .28); color: #fff; }

/* Compact variant: home page, map only + one caption line, no title/chips/lists. Kept deliberately small
   (home page has a locked height budget, Marcus msg 19165) — width capped so the added block stays tight. */
.lx-reach.compact { max-width: 620px; margin: 16px auto 0; }
.lx-reach.compact .lx-reach-panel { padding: 10px; }
.lx-reach.compact .lx-reach-katy-label { font-size: 20px; }
.lx-reach-caption { text-align: center; margin: 8px 0 0; font-size: .88rem; line-height: 1.35; color: var(--lx-muted); }
.lx-navy .lx-reach-caption { color: #AEB9C3; }
.lx-split-body .lx-reach.compact { margin: 14px 0 0; max-width: 300px; }
