/* ============================================================
   BC SECURITY — SHARED STYLESHEET
   ============================================================
   This is the ONE stylesheet for the whole site. Every page links
   to it directly (`<link rel="stylesheet" href=".../css/styles.css">`)
   — there is no build step, no Sass/PostCSS, no bundler. Editing
   this file changes every page at once.

   HOW THE FILE IS ORGANISED
   - Design tokens (colours, type, spacing) as CSS custom properties
     on :root, right below this comment.
   - Global element defaults (h1/h2/p/etc.), then layout primitives
     (.container, .section, .btn, .card...), then one block per
     page section/component, roughly in the order those components
     were introduced. It is NOT organised by page — a single page
     draws from many scattered locations in this file.
   - Search by class name is the fastest way to find a rule; the
     file is too long to read top-to-bottom.

   NAMING CONVENTIONS
   - BEM-ish: `.block`, `.block__element`, `.block--modifier`
     (e.g. `.related-tile`, `.related-tile__icon`, `.section--tint`).
   - Colour tokens: --ink (headings/dark bands), --navy (body text),
     --steel/--steel-2 (captions, muted labels), --signal/--signal-deep
     (the one brand-blue accent — used sparingly, never as a large
     fill), --paper/--tint/--tint-2 (light band backgrounds), --line/
     --line-2 (hairline borders/dividers).
   - Fonts: Fraunces for display headings (h1/h2, loaded via Google
     Fonts in every page's <head>), Hanken Grotesk for everything
     else (body copy, UI labels, buttons). Never introduce a third
     face or an off-system colour — extend the token list instead.

   PAGE-LOCAL CSS
   Several pages (mostly Solutions and Technology Platform pages)
   have a small page-scoped `<style>` block just before their closing
   `</body>` tag, for one-off diagrams/charts that only that page
   uses (e.g. `.arch-diagram*` on the Access Control page, `.stair*`
   on Alarms & Intrusion). That is intentional — those classes will
   NOT be found in this file, and that's correct, not a bug.

   THE PLACEHOLDER SYSTEM (`.ph`)
   `.ph` is a plain neutral placeholder box for imagery that hasn't
   been supplied yet (see `.ph--card`, `.ph--wide`, `.ph--square`,
   `.ph--fill` for common shapes). It renders with NO visible text —
   the asset brief for what's needed goes in an HTML comment directly
   above the placeholder div, not in page-visible copy. There is a
   `.ph--tagged` variant that DOES render a label (via `data-label`)
   for use during active development — never ship `.ph--tagged` on a
   page a real visitor will see; convert it to plain `.ph` + an HTML
   comment before that page is considered done.

   BREAKPOINTS
   No fixed breakpoint system — media queries are set per-component
   at whatever width that component's content starts to break
   (commonly ~780px, ~900px, ~1024px, ~1100px). Check the component's
   own rules rather than assuming a shared breakpoint scale.
   ============================================================ */

:root {
  --ink: #0C2432;
  --navy: #35506A;
  --steel: #6A809A;
  --steel-2: #93A6B8;
  --line: #DCE6F0;
  --line-2: #D3DFEA;
  --paper: #FFFFFF;
  --page: #F4F7FA;
  --tint: #E7EEF6;
  --tint-2: #EAF1F7;
  --signal: #0A82CD;
  --signal-deep: #0866A4;
  --signal-wash: #EAF4FC;
  --good: #2E7D57;
  --good-2: #3FA87A;
  --crit: #B23A2E;
  --crit-wash: #FBEEEC;
  --crit-soft: #F7E8E5;
  --major: #B9812A;
  --major-wash: #FAF3E6;
  /* Dusk — warm dark for the human moment. Luminance-matched to --ink (30.1 vs 30.4)
     so white type behaves identically. NOT a general-purpose surface. */
  --dusk: #3A2118;      /* sienna — the warm end, where the light would fall */
  --dusk-2: #1E1218;    /* plum-black — the cool end, away from the light */
  /* Update 05 — two faces only: Fraunces display + Hanken Grotesk everywhere else */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --sans: var(--font-sans);
  /* Update 02 — uniform sitewide gutters (~1in desktop) */
  --gutter: 96px;
  --section-y: clamp(64px, 9vw, 120px);
  --content-max: none;
  --gap: 1.5rem;
  --radius-card: 10px;
  --radius-btn: 8px;
  --radius-tag: 5px;
  --shadow-soft: 0 30px 70px -40px rgba(12, 42, 66, 0.12);
  --header-h: 64px;
  --header-h-shrink: 56px;
}

@media (max-width: 1024px) {
  :root { --gutter: 48px; }
}
@media (max-width: 640px) {
  :root {
    --gutter: 24px;
  }
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--page);
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--navy); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 2px;
}

/* Display — Fraunces headlines only */
h1, h2 {
  margin: 0 0 0.5em;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: 'SOFT' 0, 'WONK' 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
}
h1 {
  font-size: clamp(40px, 6.2vw, 84px);
  line-height: 1.02;
}
h1 .light, h1 .l1, h2 .light, h2 .l1 { font-weight: 400; }
h1 .bold, h1 .l2, h2 .bold, h2 .l2 { font-weight: 600; }
h2 {
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.06;
}

/* UI headings — Hanken Grotesk */
h3, h4 {
  margin: 0 0 0.5em;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
h3 { font-size: 1.3125rem; } /* 21px — Patch 02 */

p { margin: 0 0 1em; color: var(--navy); max-width: 68ch; font-weight: 400; font-size: 18px; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.section--paper {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.section--tint {
  background: var(--tint);
  border-top: 1px solid var(--line);
}
.section--tint-2 {
  background: var(--tint-2);
  border-top: 1px solid var(--line);
}
.section--ink { background: var(--ink); color: var(--paper); border-top: none; }
.section--ink p, .section--ink .dek { color: rgba(255,255,255,0.82); }

main > section,
.site-footer {
  position: relative;
}

.dek, .lede, .prose, p.body {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 400;
  line-height: 1.58;
  max-width: 68ch;
}

/* Update 08 — section eyebrows removed; headlines open sections */
.section > .container > h1:first-child,
.section > .container > h2:first-child,
.section > .container.reveal > h1:first-child,
.section > .container.reveal > h2:first-child,
.section > .container.tp-split > h2:first-child,
.section > .container.reveal.tp-split > h2:first-child,
.section > .container > .reveal > h1:first-child,
.section > .container > .reveal > h2:first-child,
.section > .container > .grid-2 > :first-child > h2:first-child,
.section > .container.reveal.grid-2 > :first-child > h2:first-child,
.section > .container > .ag-feature > :first-child > h2:first-child,
.section > .container.ag-feature > :first-child > h2:first-child,
.section > .container.ag-feature.reveal > :first-child > h2:first-child,
.section > .container.reveal > .ag-feature > :first-child > h2:first-child,
.page-hero .container > h1:first-child,
.page-hero .container.reveal > h1:first-child,
.hero__content > h1:first-child {
  margin-top: 0.35rem;
  margin-bottom: 1.15rem;
}

/* Buttons — Update 05 flat modern system */
.btn {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 9px;
  transition: background 0.2s, transform 0.15s, border-color 0.2s, color 0.2s;
  text-decoration: none;
  box-shadow: none;
}
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.btn:hover svg { transform: translateX(4px); }
.btn-primary,
.btn--primary {
  background: var(--signal);
  color: #fff;
}
.btn-primary:hover,
.btn--primary:hover {
  background: var(--signal-deep);
  color: #fff;
}
.btn-secondary,
.btn--ghost {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink);
}
.btn-secondary:hover,
.btn--ghost:hover {
  border-color: var(--signal);
  color: var(--signal-deep);
}
.btn-text {
  background: transparent;
  color: var(--ink);
  padding-inline: 4px;
}
.btn-text:hover { color: var(--signal-deep); }
.on-dark .btn-secondary,
.on-dark .btn--ghost,
.btn--ghost-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
}
.on-dark .btn-secondary:hover,
.on-dark .btn--ghost:hover,
.btn--ghost-light:hover {
  border-color: #7FC0EF;
  color: #7FC0EF;
}
.on-dark .btn-text { color: #fff; }
.on-dark .btn-text:hover { color: #7FC0EF; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 1.75rem; }

/* Cards */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.card__body { padding: 1.5rem 1.75rem 1.75rem; }
.card__title {
  font-family: var(--font-sans);
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.card__link {
  font-weight: 600;
  font-size: 15.5px;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
}
.card__link:hover { color: var(--navy); }
.card--featured { border-color: var(--line-2); background: var(--tint); }
.card__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--tint-2);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Photo frames */
.media-frame {
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--tint-2);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-frame--4-5 { aspect-ratio: 4 / 5; }
.media-frame--3-2 { aspect-ratio: 3 / 2; }

/* Positioning — Update 11 */
.positioning {
  padding-block: clamp(48px, 6vw, 90px);
}
.positioning__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
}
.positioning__copy {
  padding-top: 0.5rem;
}
.positioning__heading {
  margin: 0 0 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}
.positioning__heading-line {
  font-weight: 600;
  color: var(--ink);
}
.positioning__heading-em {
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
}
.positioning__lead {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--navy);
  max-width: 42ch;
  margin: 0 0 1.5rem;
}

/* Update 11b — comparison spine */
.pos-compare {
  position: relative;
  max-width: 36rem;
}
.pos-compare::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line);
  transform: translateX(-0.5px);
  pointer-events: none;
}
.pos-compare__head,
.pos-compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pos-compare__h {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 1rem 0.75rem 0;
}
.pos-compare__h--vendor { color: var(--steel-2); }
.pos-compare__h--bc {
  color: var(--signal-deep);
  padding-left: 1.25rem;
  padding-right: 0;
}
.pos-compare__vendor,
.pos-compare__bc {
  padding: 0.95rem 1rem 0.95rem 0;
  border-top: 1px solid var(--line-2);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.4;
}
.pos-compare__bc {
  padding-left: 1.25rem;
  padding-right: 0;
  font-weight: 600;
  color: var(--ink);
}
.pos-compare__bc strong {
  font-weight: 700;
  color: var(--signal-deep);
}
.pos-compare__strike {
  color: var(--steel-2);
  text-decoration: line-through;
  text-decoration-color: #C4D0DC;
  text-decoration-thickness: 1.5px;
}
.positioning__grid.reveal:not(.is-visible) .pos-compare__row {
  opacity: 0;
  transform: translateY(10px);
}
.positioning__grid.reveal.is-visible .pos-compare__row {
  opacity: 1;
  transform: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: calc(0.12s + (var(--i, 0) * 0.1s));
}
.positioning__grid.reveal.is-visible .pos-compare__strike {
  position: relative;
  text-decoration: none;
}
.positioning__grid.reveal.is-visible .pos-compare__strike::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  height: 1.5px;
  width: 0;
  background: #C4D0DC;
  animation: pos-strike-draw 0.4s ease forwards;
  animation-delay: calc(0.28s + (var(--i, 0) * 0.1s));
}
@keyframes pos-strike-draw {
  to { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .positioning__grid.reveal:not(.is-visible) .pos-compare__row,
  .positioning__grid.reveal.is-visible .pos-compare__row {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .positioning__grid.reveal.is-visible .pos-compare__strike {
    text-decoration: line-through;
    text-decoration-color: #C4D0DC;
    text-decoration-thickness: 1.5px;
  }
  .positioning__grid.reveal.is-visible .pos-compare__strike::after {
    animation: none;
    display: none;
  }
}
@media (max-width: 640px) {
  .pos-compare::before { display: none; }
  .pos-compare__head,
  .pos-compare__row {
    grid-template-columns: 1fr;
  }
  .pos-compare__h--bc,
  .pos-compare__bc {
    padding-left: 0;
  }
  .pos-compare__h--bc {
    padding-top: 0;
    padding-bottom: 0.75rem;
  }
  .pos-compare__vendor {
    padding-bottom: 0.3rem;
  }
  .pos-compare__bc {
    border-top: none;
    padding-top: 0.15rem;
    padding-bottom: 1rem;
  }
}
.positioning__media {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 780px;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: visible;
  justify-self: end;
}
.positioning__media img {
  width: 100%;
  height: 100%;
  max-height: 780px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  box-shadow: 0 50px 90px -50px rgba(12, 42, 66, 0.55);
}
.positioning__chip {
  position: absolute;
  left: -18px;
  bottom: 36px;
  z-index: 2;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1.05rem;
  max-width: 15.5rem;
  box-shadow: 0 24px 48px -28px rgba(12, 42, 66, 0.45);
}
.positioning__grid.reveal:not(.is-visible) .positioning__chip {
  opacity: 0;
  transform: scale(0.94);
}
.positioning__grid.reveal.is-visible .positioning__chip {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease 0.32s, transform 0.5s ease 0.32s;
}
.positioning__chip-stat {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.4vw, 2rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}
.positioning__chip-unit {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--signal-deep);
  margin-left: 0.08em;
}
.positioning__chip-cap {
  margin: 0;
  max-width: none;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.4;
  color: var(--navy);
}
@media (prefers-reduced-motion: reduce) {
  .positioning__grid.reveal:not(.is-visible) .positioning__chip,
  .positioning__grid.reveal.is-visible .positioning__chip {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width: 860px) {
  .positioning__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .positioning__media {
    order: -1;
    max-width: 440px;
    justify-self: start;
  }
  .positioning__chip {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }
}

/* Case bands (Update 28 — replaces rotator; Patch 01 — flush + lead H2) */
.cases { padding: 0; }
.band {
  position: relative;
  height: clamp(560px, 92vh, 900px);
  margin-top: 0;
  overflow: hidden;
  border-radius: 0;
}
.band__media { position: absolute; inset: 0; z-index: 0; }
.band__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.band__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    0deg,
    rgba(12, 36, 52, 0.86) 0%,
    rgba(12, 36, 52, 0.42) 44%,
    rgba(12, 36, 52, 0.06) 100%
  );
}
/* Lead band carries the section H2 — needs a top wash as well as a bottom one. */
.band--lead .band__scrim {
  background:
    linear-gradient(180deg, rgba(12,36,52,0.74) 0%, rgba(12,36,52,0.20) 26%, transparent 46%),
    linear-gradient(0deg, rgba(12,36,52,0.86) 0%, rgba(12,36,52,0.42) 44%, rgba(12,36,52,0.06) 100%);
}
.band__head {
  position: absolute;
  top: clamp(36px, 5vw, 64px);
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
}
.band__head h2 { color: #fff; margin: 0; }
.band__head-link {
  flex: none;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  padding-bottom: 2px;
}
.band__head-link:hover { color: #fff; border-bottom-color: #fff; }
.band__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(32px, 5vw, 56px);
  z-index: 2;
}
.band__sector {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
  margin: 0 0 0.75rem;
}
.band__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 0.75rem;
}
.band__lead {
  font-size: 1.1875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
  margin: 0 0 0.75rem;
}
.band__lead strong { color: #fff; font-weight: 600; }
.band__stat {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 1.25rem;
}
.band__link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
}
.band__link:hover { border-bottom-color: #fff; }
.band__copy .band__link + .band__link { margin-left: clamp(1.25rem, 2.5vw, 2rem); }
.band__link--all {
  color: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.26);
}
.band__link--all:hover { color: #fff; border-bottom-color: #fff; }
@media (max-width: 640px) {
  .band { height: clamp(460px, 72vh, 620px); }
  .band__head { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .band__copy .band__link + .band__link { margin-left: 0; margin-top: 0.75rem; display: block; }
}

.case-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--gap);
  align-items: start;
}
.case-featured__media {
  border-radius: var(--radius-card);
  min-height: 360px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.case-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-featured__client-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}
.case-featured__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.case-featured__metrics .stat__num { font-size: 1.75rem; }
@media (max-width: 900px) {
  .case-featured { grid-template-columns: 1fr; }
}

/* Logo walls (legacy helpers for inner pages) */
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: center;
  justify-content: center;
}
.logo-wall__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-wall__item img {
  width: auto;
  object-fit: contain;
  display: block;
  max-height: 48px;
}

/* Credentials — Patch 02. Replaces .logos marquee stack. */
.creds__statement {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
  max-width: 26ch;
  margin: 0 0 clamp(3rem, 6vw, 5rem);
}
.creds__statement strong { font-weight: 600; }
.creds__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--line-2);
}
.creds__row:last-child { border-bottom: 1px solid var(--line-2); }
.creds__label {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.creds__marks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.75rem, 3.5vw, 3rem);
}
/* Client marks in Credentials are transparent colour PNGs — no multiply (no bake to knock out). */
.creds__row:first-of-type .logo-item img {
  mix-blend-mode: normal;
}
@media (max-width: 720px) {
  .creds__row { grid-template-columns: 1fr; gap: 1rem; }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  flex-shrink: 0;
  opacity: 1;
  transition: transform 0.3s ease;
}
.logo-item img {
  display: block;
  height: auto;
  max-height: 100%;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: none;
  /* White baked backgrounds → invisible on --tint; keep brand colour */
  mix-blend-mode: multiply;
  transform-origin: center center;
  transition: transform 0.3s ease;
}
.logo-item:hover {
  transform: scale(1.04);
}

/*
  Per-logo optical scale — interim workaround for padded source files.
  Partner PNG set (Patch 03 assets) is transparent 300×300 — no inflate.
  Gallagher / iLOQ / Awards still blocked bake-ins.
*/
.p-gallagher img { transform: scale(1); }           /* BLOCKED: orange bake — multiply can't help */
.p-iloq img { transform: scale(1); }                /* BLOCKED: dark bake — multiply keeps the block */
.p-milestone img { transform: scale(1); }
.p-axis img { transform: scale(1); }
.p-dahua img { transform: scale(1); }
.p-nx img { transform: scale(1); }
.p-unv img { transform: scale(1); }
.p-permaconn img { transform: scale(1); }
.p-vivotek img { transform: scale(1); }
.p-totika img { transform: scale(1); }
.p-awards img { transform: scale(1); }

/* Non-white baked backgrounds: multiply darkens/preserves the box — exclude.
   Awards is transparent colour PNG — keep normal so brand blue stays clean on tint. */
.p-gallagher img,
.p-iloq img,
.p-awards img {
  mix-blend-mode: normal;
}

.logo-item--word span {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel-2);
}

.logo-item--accredit[data-fade-in] {
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.3s ease;
  transition-delay: var(--delay, 0ms);
}
.logo-item--accredit.is-in {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .logo-item:hover {
    transform: none;
  }
  .logo-item--accredit[data-fade-in] {
    opacity: 1;
    transition: none;
  }
}

/* Legacy chip (kept if referenced elsewhere) */
.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  min-width: 148px;
  padding: 0 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.logo-chip img {
  max-height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* CTA band — Update 19 Direction B / Patch 02 photo wash + left align */
.cta-band {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(10, 130, 205, 0.92), rgba(8, 102, 164, 0.94)),
    url('../images/hero-desktop.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  border-top: none;
  padding-top: clamp(52px, 6.5vw, 96px);
  padding-bottom: clamp(52px, 6.5vw, 96px);
  text-align: left;
}
.cta-band__content {
  position: relative;
  z-index: 2;
  max-width: none;
  margin: 0;
}
.cta-band__title {
  margin: 0;
  max-width: 22ch;
  font-family: var(--font-display);
  font-weight: 600;
  /* inherits global h2 scale */
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #fff;
}
.cta-band__lead {
  margin: 1rem 0 0;
  max-width: 46ch;
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.58;
  color: #d6ecfb;
}
.cta-band__kicker {
  margin: clamp(24px, 2.8vw, 32px) 0 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
}
.cta-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
  margin: clamp(14px, 1.6vw, 18px) 0 clamp(30px, 3.4vw, 44px);
  padding: clamp(20px, 2.4vw, 28px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  text-align: left;
}
.cta-strip__title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.35rem;
}
.cta-strip__support {
  margin: 0;
  max-width: 22ch;
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.45;
  color: #bfe1f8;
}
.cta-band__closer {
  margin: 0 0 clamp(28px, 3.2vw, 40px);
  max-width: 46ch;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 900px) {
  .cta-strip { grid-template-columns: repeat(2, 1fr); }
}
.cta-band__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cta-band .btn-primary--on-signal,
.btn-primary--on-signal {
  background: #fff;
  color: var(--signal-deep);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 9px;
}
.cta-band .btn-primary--on-signal:hover,
.btn-primary--on-signal:hover {
  background: var(--tint);
  color: var(--ink);
}
.cta-band__alt {
  margin: 20px 0 0;
  max-width: none;
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.5;
  color: #bfe1f8;
}
.cta-band__alt a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
}
.cta-band__alt a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.75);
}
.cta-band__sep {
  margin: 0 0.35em;
  opacity: 0.7;
}

/* Staggered entrance — Update 19 */
.cta-band [data-cta-step] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.cta-band [data-cta-step]:nth-child(1) { transition-delay: 0ms; }
.cta-band [data-cta-step]:nth-child(2) { transition-delay: 80ms; }
.cta-band [data-cta-step]:nth-child(3) { transition-delay: 160ms; }
.cta-band [data-cta-step]:nth-child(4) { transition-delay: 240ms; }
.cta-band [data-cta-step]:nth-child(5) { transition-delay: 320ms; }
.cta-band [data-cta-step]:nth-child(6) { transition-delay: 400ms; }
.cta-band.is-in [data-cta-step] {
  opacity: 1;
  transform: none;
}

@media (max-width: 640px) {
  .cta-strip {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .cta-strip__support {
    max-width: 28ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-band [data-cta-step] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* AssetGuard light reveal */
.ag-section { background: var(--paper); }
/* Stats — Hanken Grotesk tabular data (Update 05) */
.stat {
  font-family: var(--font-sans);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.stat__num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.stat__label {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel);
  margin-top: 0.5rem;
}
.section--ink .stat__num { color: var(--paper); }
.section--ink .stat__label { color: rgba(255,255,255,0.6); }

/* Clean neutral media placeholders — no visible labels */
.ph {
  background: linear-gradient(145deg, var(--tint) 0%, var(--tint-2) 100%);
  min-height: 200px;
  overflow: hidden;
}
.ph--hero { min-height: clamp(420px, 70vh, 720px); }
.ph--wide { min-height: 280px; border-radius: var(--radius-card); }
.ph--card { min-height: 220px; aspect-ratio: 16/10; }
.ph--square { aspect-ratio: 1; min-height: auto; }
.ph--round { border-radius: 50%; width: 72px; height: 72px; min-height: auto; }
.ph--fill { height: 100%; min-height: 320px; border-radius: var(--radius-card); }
/* WIP-only: shows which brief a placeholder maps to. Remove data-label once a real image replaces it. */
.ph--tagged { position: relative; }
.ph--tagged::after {
  content: attr(data-label);
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--steel);
  background: rgba(255, 255, 255, 0.82);
  padding: 6px 9px;
  border-radius: 6px;
}

/* Alternating text/image rows — Our Services and similar detail pages */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--gap);
  align-items: stretch;
}
.service-row__media { order: 1; }
.service-row__media .media-frame {
  height: 100%;
  min-height: 320px;
}
.service-row__body { order: 2; min-width: 0; }
.service-row--reverse { grid-template-columns: 1.15fr 1fr; }
.service-row--reverse .service-row__media { order: 2; }
.service-row--reverse .service-row__body { order: 1; }
.service-row + .service-row { margin-top: clamp(56px, 7vw, 96px); }
@media (max-width: 860px) {
  .service-row,
  .service-row--reverse {
    grid-template-columns: 1fr;
  }
  .service-row__media,
  .service-row--reverse .service-row__media {
    order: 1;
  }
  .service-row__body,
  .service-row--reverse .service-row__body {
    order: 2;
  }
  .ph--fill { min-height: 260px; }
}

/* BC logo lockups */
.site-logo__img { display: block; width: auto; object-fit: contain; }
.site-logo__img--landscape { height: 20px; min-height: 19px; }
.site-footer .site-logo__img--landscape { height: 28px; min-height: 24px; }
.site-logo__img--portrait { height: 72px; margin: 0 auto 1.5rem; }

/* Header — Update 09a full-width flush bar + refined contents */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  transition: height 0.25s;
}
.site-header.is-scrolled .site-header__bar {
  height: var(--header-h-shrink);
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  padding: 4px 2px;
}
.site-logo:hover { opacity: 0.85; }

.site-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__item { position: relative; }
.site-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--navy);
  border-radius: 8px;
  border: none;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  background: none;
  cursor: pointer;
}
.site-nav__link:hover,
.site-nav__link[aria-expanded="true"],
.site-nav__item:hover > .site-nav__link {
  color: var(--ink);
  background: var(--tint);
}
.site-nav__chevron {
  display: inline-block;
  width: 9px;
  height: 9px;
  opacity: 0.5;
  transition: transform 0.22s ease;
  background: currentColor;
  clip-path: polygon(50% 75%, 0 25%, 100% 25%);
}
.site-nav__link[aria-expanded="true"] .site-nav__chevron,
.site-nav__item:hover > .site-nav__link .site-nav__chevron {
  transform: rotate(180deg);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 248px;
  max-height: calc(100vh - 90px);
  overflow-y: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 48px -18px rgba(12, 36, 52, 0.22);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  list-style: none;
  margin: 0;
}
/* Technology Platforms — 7 title+description items read better as a wider,
   two-column panel than one long single-column list that runs off the screen. */
.site-nav__dropdown--wide {
  min-width: min(560px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media (max-width: 640px) {
  .site-nav__dropdown--wide { grid-template-columns: 1fr; }
}
.site-nav__item:hover .site-nav__dropdown,
.site-nav__item:focus-within .site-nav__dropdown,
.site-nav__link[aria-expanded="true"] + .site-nav__dropdown,
.site-nav__dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-nav__dropdown a {
  display: block;
  padding: 10px 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.site-nav__dropdown a:hover {
  background: var(--tint);
  color: var(--ink);
}
.site-nav__dropdown-feature {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.site-nav__dropdown-title {
  font-weight: 600;
  color: var(--ink);
}
.site-nav__dropdown-desc {
  font-size: 13.5px;
  font-weight: 450;
  color: var(--steel);
  line-height: 1.3;
}

.site-nav__divider {
  width: 1px;
  height: 22px;
  background: var(--line);
  margin: 0 10px 0 8px;
  flex-shrink: 0;
}
.site-nav__cta {
  margin-left: 0;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}
.site-nav__cta:hover {
  background: var(--signal-deep);
  color: #fff;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-btn);
  padding: 10px 12px;
  cursor: pointer;
  color: var(--ink);
}
.menu-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}

.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(7,32,47,0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.mobile-drawer.is-open { opacity: 1; visibility: visible; }
.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(380px, 92vw);
  height: 100%;
  background: var(--paper);
  padding: 2rem 1.75rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
}
.mobile-nav { list-style: none; margin: 2.5rem 0 0; padding: 0; }
.mobile-nav > li { border-bottom: 1px solid var(--line); }
.mobile-nav > li > span {
  display: block;
  padding: 16px 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}
.mobile-nav__sub { list-style: none; padding: 0 0 12px 12px; margin: 0; }
.mobile-nav__sub a { padding: 10px 0; font-size: 16px; color: var(--navy); font-weight: 450; }

@media (max-width: 1024px) {
  .site-nav__list,
  .site-nav__cta,
  .site-nav__divider { display: none; }
  .menu-toggle { display: block; }
  .mobile-drawer { display: block; }
}

/* Footer — Update 22 / 22a (shared .container only — no footer-specific max-width) */
.site-footer {
  background: var(--ink);
  color: #9db6c9;
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr 1.05fr 1.05fr 1.05fr;
  gap: clamp(20px, 2.6vw, 40px);
  align-items: start;
}
.site-footer__line1 {
  margin: 0 0 0.45rem;
  max-width: 22ch;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.60);
}
.site-footer__line2 {
  margin: 0 0 0.85rem;
  max-width: 22ch;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: #fff;
}
.site-footer__coverage {
  margin: 0;
  max-width: 34ch;
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.5;
  color: #6f93ad;
}
.site-footer__heading {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #6f93ad;
  margin: 0 0 16px;
}
.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__links li {
  margin: 0;
}
.site-footer__links a,
.site-footer__pending {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.35;
  color: #9db6c9;
  text-decoration: none;
  padding: 5px 0;
}
.site-footer__links a:hover {
  color: #fff;
}
.site-footer__accent {
  color: #7fc0ef !important;
  font-weight: 600;
}
.site-footer__links a.site-footer__accent:hover {
  color: #fff !important;
}
.site-footer__pending {
  cursor: default;
  opacity: 0.85;
}
.site-footer__bar {
  margin-top: clamp(38px, 4vw, 58px);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 22px 0;
}
.site-footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.site-footer__copy {
  margin: 0;
  max-width: none;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.4;
  color: #6f93ad;
}
.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 13px;
  color: #6f93ad;
}
.site-footer__legal a {
  color: #6f93ad;
  text-decoration: none;
  font-size: 13px;
}
.site-footer__legal a:hover {
  color: #fff;
}
.site-footer__legal .site-footer__pending {
  font-size: 13px;
  padding: 0;
  color: #6f93ad;
}
.site-footer__legal-sep {
  opacity: 0.7;
}

@media (max-width: 1000px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 460px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

/* Hero — Update 05 Command layout / Patch 04 in-hero trust panel */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0C2432;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
  z-index: 0;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(12, 36, 52, 0.82) 0%,
    rgba(12, 36, 52, 0.5) 40%,
    rgba(12, 36, 52, 0.12) 70%,
    transparent 100%
  );
  pointer-events: none;
}
.hero__split {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  /* Bottom pad clears the frosted trust shelf */
  padding-block: clamp(72px, 10vw, 120px) clamp(148px, 18vw, 196px);
}
.hero__content { color: #fff; max-width: 46rem; }
.hero__content h1 { color: #fff; margin-bottom: 1rem; }
.hero__content .dek {
  color: rgba(255,255,255,0.92);
  margin-bottom: 0;
  max-width: 36ch;
}

/*
  Trusted-by — frosted shelf (not a floating white card).
  Dark navy client marks need a light stage; a hard white patch
  reads as a sticker on the film. Full-bleed frosted shelf sits
  as architecture at the hero base and bridges into the paper band below.
*/
.hero-trust {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  padding: 1rem var(--gutter) 1.15rem;
  background: rgba(244, 247, 250, 0.88);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-top: 1px solid rgba(220, 230, 240, 0.9);
  box-shadow: 0 -18px 40px -28px rgba(12, 36, 52, 0.28);
}
.hero-trust__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 48rem;
  min-width: 0;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.hero-trust__label {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  flex-shrink: 0;
}
.hero-trust__marquee {
  width: 100%;
  overflow: hidden;
  /* Soft edge fade into the shelf, not into the film. */
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.hero-trust__track {
  display: flex;
  width: max-content;
  animation: hero-trust-scroll 28s linear infinite;
}
.hero-trust__marquee:hover .hero-trust__track { animation-play-state: paused; }
.hero-trust__set {
  display: flex;
  align-items: center;
  gap: clamp(1.75rem, 4.5vw, 3rem);
  padding-right: clamp(1.75rem, 4.5vw, 3rem);
  flex-shrink: 0;
}
.hero-trust__item { flex-shrink: 0; display: flex; align-items: center; }

.hero-trust__logo {
  width: auto;
  object-fit: contain;
  display: block;
  /* NO filter. NO opacity. NO max-width — see Patch 05 §15d. */
}
.hero-trust__logo--at      { height: 52px; }
.hero-trust__logo--wm      { height: 62px; }
.hero-trust__logo--aor     { height: 80px; }
.hero-trust__logo--council { height: 90px; }

@keyframes hero-trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-trust__track { animation: none !important; }
  .hero-trust__marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .hero-trust__set[aria-hidden="true"] { display: none; }
}

@media (max-width: 640px) {
  .hero-trust { padding: 0.75rem var(--gutter) 0.9rem; }
  .hero-trust__panel { max-width: 100%; }
  .hero-trust__logo--at      { height: 38px; }
  .hero-trust__logo--wm      { height: 46px; }
  .hero-trust__logo--aor     { height: 58px; }
  .hero-trust__logo--council { height: 66px; }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .hero-trust { background: var(--page); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { display: none; }
}
@media (max-width: 900px) {
  .hero__scrim {
    background: linear-gradient(
      90deg,
      rgba(12, 36, 52, 0.9) 0%,
      rgba(12, 36, 52, 0.78) 45%,
      rgba(12, 36, 52, 0.55) 100%
    );
  }
}
/* Trust strip */
.trust-strip { padding-block: clamp(32px, 4vw, 48px); }
.trust-strip__clients {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: center;
  justify-content: space-between;
}
.trust-strip__client {
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--paper);
}
.trust-strip__stat {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
}

/* Grids — shared gap token */
.grid-2 {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--gap);
  align-items: center;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--gap); }

@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* AssetGuard estate panel — Update 14 / 14a device bezel; Update 20: light mirrored for left placement */
.ag-device {
  position: relative;
  background: linear-gradient(205deg, #16324a, #0c2233);
  border-radius: 22px;
  padding: 12px;
  box-shadow:
    0 50px 90px -40px rgba(12, 42, 66, 0.6),
    0 20px 40px -30px rgba(12, 42, 66, 0.4),
    0 2px 3px rgba(255, 255, 255, 0.08) inset;
}
.ag-device::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  pointer-events: none;
  z-index: 2;
}
.estate-panel {
  position: relative;
  background: var(--paper);
  border-radius: 13px;
  overflow: hidden;
  color: var(--ink);
  box-shadow: 0 0 60px rgba(10, 130, 205, 0.06) inset;
  z-index: 1;
}
.estate-panel__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.5), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.estate-panel__livebar,
.estate-panel__stats,
.estate-panel__body {
  position: relative;
  z-index: 1;
}
.estate-panel__livebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(90deg, var(--tint) 0%, transparent 100%);
  border-bottom: 1px solid var(--line);
}
.estate-panel__live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.estate-panel__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--good-2);
  box-shadow: 0 0 0 0 rgba(63, 168, 122, 0.4);
  animation: ag-live-pulse 2.4s ease-in-out infinite;
}
.estate-panel__illus {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--steel);
}
.estate-panel__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.estate-panel__stat {
  padding: 1.15rem 1rem;
  border-right: 1px solid var(--line-2);
  text-align: left;
}
.estate-panel__stat:last-child { border-right: none; }
.estate-panel__stat-val {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.estate-panel__stat-val--signal { color: var(--signal); }
.estate-panel__stat-val--crit { color: var(--crit); }
.estate-panel__stat-key {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--steel);
}
.estate-panel__body {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.5rem 1.75rem;
  padding: 1.25rem 1.25rem 1.4rem;
  border-top: 1px solid var(--line);
}
.estate-panel__heading {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.85rem;
}
.estate-risk-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.estate-risk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid transparent;
}
.estate-risk--crit {
  background: var(--crit-soft);
  border-color: rgba(178, 58, 46, 0.08);
}
.estate-risk__name {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.estate-risk__meta {
  font-size: 0.75rem;
  color: var(--steel);
  line-height: 1.35;
}
.risk-pill {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
}
.risk-pill--crit {
  background: rgba(178, 58, 46, 0.12);
  color: var(--crit);
}
.risk-pill--major {
  background: var(--major-wash);
  color: var(--major);
}
.risk-pill--low {
  background: rgba(46, 125, 87, 0.12);
  color: var(--good);
}

.estate-panel__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.compliance-ring {
  position: relative;
  width: min(100%, 148px);
}
.compliance-ring svg {
  display: block;
  width: 100%;
  height: auto;
}
.compliance-ring__progress {
  transition: stroke-dashoffset 1.6s ease;
}
.compliance-ring__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.compliance-ring__val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  line-height: 1;
}
.compliance-ring__label {
  margin-top: 0.3rem;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}
.estate-panel__spark {
  width: 100%;
}
.sparkline {
  width: 100%;
  height: 48px;
  display: block;
}
.sparkline__path {
  fill: none;
  stroke: var(--signal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  transition: stroke-dashoffset 1.25s ease;
}
.estate-panel.is-played .sparkline__path {
  stroke-dashoffset: 0;
}

@keyframes ag-live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(63, 168, 122, 0.4); opacity: 1; }
  50% { box-shadow: 0 0 0 6px rgba(63, 168, 122, 0); opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
  .estate-panel__live-dot { animation: none; box-shadow: none; }
  .compliance-ring__progress,
  .sparkline__path { transition: none; }
  .estate-panel .sparkline__path { stroke-dashoffset: 0; }
}

@media (max-width: 900px) {
  .estate-panel__stats { grid-template-columns: repeat(2, 1fr); }
  .estate-panel__stat:nth-child(2) { border-right: none; }
  .estate-panel__stat:nth-child(1),
  .estate-panel__stat:nth-child(2) {
    border-bottom: 1px solid var(--line-2);
  }
  .estate-panel__body { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .estate-panel__stats { grid-template-columns: 1fr 1fr; }
}

/* Legacy risk-tag (kept for any other use) */
.risk-tag {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
}
.risk-tag--crit { background: var(--crit-wash); color: var(--crit); }
.risk-tag--major { background: var(--major-wash); color: var(--major); }
.risk-tag--good { background: rgba(46,125,87,0.12); color: var(--good); }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.step {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
}
.step__num {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.75rem;
}
.step__title {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
}

/* Testimonial — Patch 08. Warm dusk wash replaces the navy of Patch 02 §5.
   Gradient runs warm (where the sun would be) to cool (away from it) — a dusk,
   not a sunset. Opacity is lower than the navy wash so the photograph's own
   late-afternoon light comes through instead of being painted out. */
/* TODO(BC): AI-generated placeholder. Replace at shoot. */
.testimonial-section {
  background-image:
    linear-gradient(195deg, rgba(58, 33, 24, 0.82) 0%, rgba(30, 18, 24, 0.90) 100%),
    url('../images/testimonial.png');
  background-size: cover;
  background-position: center;
}
.testimonial {
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #f2f7fb;
}
.testimonial__mark {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 400;
  line-height: 1;
  color: var(--signal);
  opacity: 0;
  margin-bottom: 0.35rem;
}
.testimonial.is-played .testimonial__mark {
  opacity: 0.55;
  transition: opacity 1s var(--ease);
  transition-delay: 0s;
}
.testimonial__quote {
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}
.testimonial__quote p {
  margin: 0;
  max-width: none;
  width: 100%;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.1vw, 42px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #f2f7fb;
  opacity: 0;
  transform: translateY(10px);
  filter: blur(7px);
}
.testimonial.is-played .testimonial__quote p {
  opacity: 1;
  transform: none;
  filter: blur(0);
  transition:
    opacity 1.1s var(--ease),
    transform 1.1s var(--ease),
    filter 1.1s var(--ease);
  transition-delay: 0.18s;
}
.testimonial__key {
  font-style: italic;
  font-weight: 500;
  color: #dce9f2;
  text-shadow: none;
}
.testimonial.is-played .testimonial__key {
  color: #fff;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.14);
  transition: color 0.9s var(--ease), text-shadow 0.9s var(--ease);
  transition-delay: 1.15s;
}
.testimonial__rule {
  height: 1px;
  width: 0;
  max-width: min(420px, 70%);
  margin: 36px auto 0;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 1px;
}
.testimonial.is-played .testimonial__rule {
  width: min(420px, 70%);
  transition: width 1s var(--ease);
  transition-delay: 1.35s;
}
.testimonial__attr {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 1.5rem;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
}
.testimonial.is-played .testimonial__attr {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: 1.6s;
}
.testimonial__mono {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--tint);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.testimonial__who { min-width: 0; }
.testimonial__author {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17.5px;
  color: var(--paper);
  line-height: 1.25;
}
.testimonial__role {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: #8fb0c8;
  margin-top: 0.2rem;
  line-height: 1.35;
}
.testimonial__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 1.75rem;
}
.testimonial__dots[hidden] { display: none !important; }
.testimonial__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 0.35s ease, background 0.35s ease;
}
.testimonial__dot.is-active {
  width: 22px;
  background: var(--signal);
}
.testimonial__quote.is-fading {
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  .testimonial__mark,
  .testimonial.is-played .testimonial__mark {
    opacity: 0.55;
    transition: none;
  }
  .testimonial__quote p,
  .testimonial.is-played .testimonial__quote p {
    opacity: 1;
    transform: none;
    filter: none;
    color: #f2f7fb;
    transition: none;
  }
  .testimonial__key,
  .testimonial.is-played .testimonial__key {
    color: #fff;
    text-shadow: none;
    transition: none;
  }
  .testimonial__rule,
  .testimonial.is-played .testimonial__rule {
    width: min(420px, 70%);
    transition: none;
  }
  .testimonial__attr,
  .testimonial.is-played .testimonial__attr {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .testimonial__quote.is-fading {
    opacity: 1;
    transition: none;
  }
}

/* Legacy avatar (unused on homepage; kept for any older markup) */
.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  background: var(--tint);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: calc(72px * 0.4);
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Page hero — vertical rhythm from .section; horizontal from .container only */
.page-hero--with-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}
@media (max-width: 900px) {
  .page-hero--with-media { grid-template-columns: 1fr; }
}

/* Form */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 15.5px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 17px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-btn);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--ink);
  outline: none;
  box-shadow: 0 0 0 2px rgba(7,32,47,0.08);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-success {
  padding: 1rem;
  background: rgba(46,125,87,0.1);
  border: 1px solid rgba(46,125,87,0.3);
  border-radius: var(--radius-btn);
  color: var(--good);
  font-size: 0.9rem;
  display: none;
}
.form-success.is-visible { display: block; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* Login — single white composition, no split panel */
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-h));
  padding: clamp(48px, 8vw, 96px) var(--gutter);
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.login-page__inner {
  width: 100%;
  max-width: 400px;
}
.login-page__logo {
  width: auto;
  height: 28px;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 2rem;
}
.login-page__title {
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1.08;
  margin: 0 0 0.4em;
  color: var(--ink);
}
.login-page__dek {
  font-size: 17px;
  color: var(--navy);
  margin: 0 0 2rem;
  max-width: none;
}
.login-page__form .form-group input {
  padding: 14px 16px;
  font-size: 17px;
  background: var(--paper);
}
.login-page__form .form-group input:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px var(--signal-wash);
}
.login-page__submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
  min-height: 48px;
}
.login-page__note {
  margin-top: 1rem;
  font-size: 14px;
  color: var(--steel);
  max-width: none;
}
.login-page__help {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--steel);
  max-width: none;
}
.login-page__help a {
  color: var(--signal);
  font-weight: 600;
  text-decoration: none;
}
.login-page__help a:hover { color: var(--signal-deep); text-decoration: underline; }

/* Case study */
.cs-section { margin-bottom: 3rem; }
.cs-section h2 { margin-bottom: 1rem; }
.cs-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* AssetGuard feature — Update 14 / 14a / Update 20 flip */
.ag-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
/* Desktop flip: device left / copy right — visual only, DOM order unchanged */
@media (min-width: 901px) {
  .ag-feature {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
  .ag-feature .ag-copy {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: 100%;
    max-width: 480px;
    text-align: left;
  }
  .ag-feature .ag-copy h2 {
    /* Fill the flush-right block so the longest line approaches the gutter */
    max-width: none;
  }
  .ag-feature > :not(.ag-copy) {
    grid-column: 1;
    grid-row: 1;
  }
}
.ag-copy h2 {
  max-width: 14ch;
  margin-bottom: 1.15rem;
}
.ag-copy h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
}
.ag-lede {
  max-width: 46ch;
  margin: 0 0 1.5rem;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--navy);
}
@media (max-width: 900px) {
  .ag-feature { grid-template-columns: 1fr; }
  .ag-feature .ag-copy,
  .ag-feature > :not(.ag-copy) {
    grid-column: auto;
    grid-row: auto;
  }
  .ag-feature .ag-copy {
    justify-self: stretch;
    max-width: none;
  }
  .ag-copy h2 { max-width: none; }
  .ag-device {
    border-radius: 18px;
    padding: 8px;
  }
  .ag-device::before {
    left: 14px;
    right: 14px;
    top: 5px;
  }
  .estate-panel { border-radius: 11px; }
}

/* Partner wall — legacy text fallback removed; see logo-wall */

/* Utility */
.text-center { text-align: center; }
.mb-lg { margin-bottom: 2.5rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ========== Update 04 — Display patterns ========== */

/* A · ROI proof panel (Update 10) */
.roi {
  border-bottom: 1px solid var(--line);
}
.roi__heading {
  margin-bottom: 1.75rem;
}
.roi__heading em {
  font-style: normal;
  font-weight: 400;
  color: var(--navy);
}
.proof-panel {
  overflow: hidden;
}
.proof-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--line-2);
}
.proof-panel__lead {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--navy);
  max-width: 46ch;
  margin: 0;
}
.proof-panel__lead strong {
  font-weight: 600;
  color: var(--ink);
}
.proof-panel__source {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-2);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.35rem;
}
.proof-panel__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-panel__stat {
  padding: 1.6rem 1.5rem 1.75rem;
  border-right: 1px solid var(--line-2);
}
.proof-panel__stat:last-child { border-right: none; }
.proof-panel__value {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.28em;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.proof-panel__prefix {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--signal-deep);
  letter-spacing: 0.02em;
}
.proof-panel__unit {
  font-size: 0.42em;
  font-weight: 600;
  color: var(--signal-deep);
  vertical-align: 0.12em;
}
.proof-panel__title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0.85rem;
  letter-spacing: -0.01em;
}
.proof-panel__support {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--steel);
  margin: 0.35rem 0 0;
  max-width: 16ch;
  line-height: 1.4;
}
.proof-panel__foot {
  background: var(--tint);
  border-top: 1px solid var(--line-2);
  padding: 1.1rem 1.75rem;
}
.proof-panel__foot p {
  margin: 0;
  max-width: none;
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--navy);
}
.proof-panel__foot strong {
  font-weight: 700;
  color: var(--ink);
}
@media (max-width: 900px) {
  .proof-panel__stats { grid-template-columns: 1fr 1fr; }
  .proof-panel__stat:nth-child(2) { border-right: none; }
  .proof-panel__stat:nth-child(1),
  .proof-panel__stat:nth-child(2) {
    border-bottom: 1px solid var(--line-2);
  }
  .proof-panel__stat:nth-child(3) { border-right: 1px solid var(--line-2); }
}
@media (max-width: 640px) {
  .proof-panel__head {
    flex-direction: column;
    gap: 0.85rem;
  }
  .proof-panel__source { white-space: normal; }
}

/* B · Capabilities index (Update 12 / Update 20 flip) */
.index-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
/* Desktop flip: preview left / index right — visual only, DOM order unchanged */
@media (min-width: 901px) {
  .index-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .index-grid__list {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }
  .index-grid__preview {
    grid-column: 1;
    grid-row: 1;
  }
}
.index-grid__list { list-style: none; margin: 0; padding: 0; }

/* Update 21 — group labels */
.index-group__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: clamp(18px, 2vw, 26px);
}
.index-group:first-child .index-group__head {
  padding-top: 0;
}
.index-group__label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--signal-deep);
}
.index-group__sub {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--steel-2);
}
.index-group__rows {
  list-style: none;
  margin: 0;
  padding: 0;
}

.index-row {
  display: grid;
  grid-template-columns: clamp(3.25rem, 5vw, 4.5rem) 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  transition: padding-left 0.25s ease;
  background: transparent;
}
div.index-row {
  width: 100%;
  box-sizing: border-box;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font: inherit;
}
.index-group__rows > li:first-child .index-row {
  border-top: 1px solid var(--line);
}
.index-row::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  width: 0;
  background: var(--signal);
  transition: width 0.35s ease;
}
.index-row:hover,
.index-row.is-active {
  padding-left: 10px;
  background: transparent;
}
.index-row:hover::after,
.index-row.is-active::after { width: 100%; }
.index-row__num {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 500;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--steel-2);
  line-height: 1;
  transition: color 0.25s ease;
  padding-top: 0.15rem;
}
.index-row:hover .index-row__num,
.index-row.is-active .index-row__num { color: var(--signal); }
.index-row__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-top: 0.35rem;
}
.index-row__title {
  font-family: var(--font-sans);
  font-size: clamp(1.26rem, 2.25vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.25s ease;
}
.index-row:hover .index-row__title,
.index-row.is-active .index-row__title { color: var(--signal-deep); }
.index-row__detail {
  display: block;
  margin-top: 0;
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.45;
  color: var(--steel);
  max-width: 44ch;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.35s ease, margin-top 0.3s ease;
}
.index-row.is-active .index-row__detail,
.index-row:hover .index-row__detail,
.index-row:focus-visible .index-row__detail {
  opacity: 1;
  /* Was 6.5rem — clipped longer blurbs on hover (esp. narrower columns / larger OS text). */
  max-height: 16rem;
  margin-top: 0.55rem;
}

/* Update 21 — AssetGuard featured destination row */
.index-row--featured {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.index-row--featured .index-row__body {
  padding-top: 0;
}
.index-row--featured .index-row__title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--signal-deep);
  font-size: clamp(1.34rem, 2.35vw, 1.62rem);
}
.index-row--featured:hover .index-row__title,
.index-row--featured.is-active .index-row__title {
  color: var(--signal-deep);
}
.index-row__support {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.45;
  color: var(--steel);
  max-width: 40ch;
}
.index-row__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--signal-deep);
  background: rgba(10, 130, 205, 0.12);
  white-space: nowrap;
}
.index-grid__preview {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  max-height: calc(100dvh - var(--header-h) - 3rem);
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 80px -48px rgba(12, 42, 66, 0.5);
  background: var(--ink);
  border: none;
  isolation: isolate;
}
.index-grid__preview-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.index-grid__preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Short laptop viewports: prefer fitting over a tall 4:5 crop. */
@media (max-height: 820px) {
  .index-grid__preview { aspect-ratio: 1 / 1; }
}
@media (prefers-reduced-motion: reduce) {
  .index-row,
  .index-row::after,
  .index-row__num,
  .index-row__title,
  .index-row__detail {
    transition: none;
  }
  .index-row.is-active .index-row__detail,
  .index-row:focus-visible .index-row__detail {
    opacity: 1;
    max-height: 16rem;
    margin-top: 0.55rem;
  }
  .index-row:hover:not(.is-active) .index-row__detail {
    opacity: 0;
    max-height: 0;
    margin-top: 0;
  }
}
@media (max-width: 900px) {
  .index-grid { grid-template-columns: 1fr; }
  .index-grid__list,
  .index-grid__preview {
    grid-column: auto;
    grid-row: auto;
  }
  .index-grid__preview { display: none; }
  .index-row:hover:not(.is-active) .index-row__detail {
    opacity: 0;
    max-height: 0;
    margin-top: 0;
  }
  .index-row.is-active .index-row__detail {
    opacity: 1;
    max-height: 16rem;
    margin-top: 0.55rem;
  }
}

/* C · Two states (Update 28 — replaces blind-vs-seen tile grid) */
.states {
  position: relative;
  height: 220vh;
  background: var(--ink);
  border-radius: 0;
}
.states__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  border-radius: 0;
}
.states__layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.states__layer--b { opacity: var(--ti, 0); }
.states__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* State A — "managed ad hoc": dark navy wash, keeps white text legible. */
.states__scrim--a {
  background: linear-gradient(
    0deg,
    rgba(12, 36, 52, 0.90) 0%,
    rgba(12, 36, 52, 0.48) 46%,
    rgba(12, 36, 52, 0.14) 100%
  );
  opacity: calc(1 - var(--ti, 0));
}
/* State B — image already carries the sunset cast; neutral dark lift only for type. */
.states__scrim--b {
  background: linear-gradient(
    0deg,
    rgba(12, 36, 52, 0.72) 0%,
    rgba(12, 36, 52, 0.38) 46%,
    rgba(12, 36, 52, 0.10) 100%
  );
  opacity: var(--ti, 0);
}
.states__copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: clamp(96px, 14vh, 160px);
  padding-bottom: clamp(48px, 7vh, 88px);
}
.states__head {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  font-weight: 500;
  line-height: 1.18;
  /* Soft white on A → brighter white on B (sunset wash needs light type). */
  color: color-mix(
    in srgb,
    rgba(255, 255, 255, 0.66) calc((1 - var(--ti, 0)) * 100%),
    rgba(255, 255, 255, 0.92) calc(var(--ti, 0) * 100%)
  );
  margin: 0 0 2rem;
  max-width: 22ch;
}
/* Grid-stack the two panels: wrapper sizes to the tallest, no overlap, no reflow. */
.states__panels { display: grid; }
.states__panel {
  grid-area: 1 / 1;
  align-self: end;
  max-width: 48ch;
}
.states__panel--a { opacity: var(--ta, 1); }
.states__panel--b { opacity: var(--tb, 0); }
.states__statement {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  font-weight: 500;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 1.5rem;
}
.states__statement em { font-style: italic; font-weight: 400; }
.states__support {
  font-size: 1.1875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.80);
  margin: 0 0 1.6rem;
}
.states__link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  margin-top: 0.35rem;
}
.states__link:hover { border-bottom-color: #fff; }

/* State B — light type on the amber sunset wash (dark ink disappears on it). */
.states__panel--b .states__statement { color: #fff; }
.states__panel--b .states__support { color: rgba(255, 255, 255, 0.92); }
.states__panel--b .states__support strong { color: #fff; }
.states__panel--b .states__link {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.states__panel--b .states__link:hover { border-bottom-color: #fff; }

/* Short browser windows (laptops with limited chrome-adjusted height): this section
   is pinned to a fixed 100vh box with overflow:hidden, so content must compress to
   fit rather than spread — otherwise the CTA link clips below the visible edge. */
@media (max-height: 780px) {
  .states__copy {
    padding-top: clamp(64px, 10vh, 120px);
    padding-bottom: clamp(32px, 5vh, 64px);
  }
  .states__head {
    font-size: clamp(1.3rem, 2.2vw, 1.9rem);
    margin-bottom: 1.1rem;
  }
  .states__statement {
    font-size: clamp(1.6rem, 3.4vw, 2.75rem);
    margin-bottom: 0.75rem;
  }
  .states__support {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 0.9rem;
  }
  .states__link { margin-top: 0.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .states { height: auto; }
  .states__stage {
    position: relative;
    height: auto;
    min-height: clamp(460px, 66vh, 700px);
    background-image: url('../images/two-way-state-b.png');
    background-size: cover;
    background-position: center;
  }
  .states__layer { display: none; }
  .states__copy { position: static; display: block; padding-top: clamp(3rem, 8vw, 6rem); padding-bottom: clamp(2rem, 5vw, 3.5rem); }
  .states__panel { opacity: 1 !important; }
  .states__panel--a { display: none; }
  /* Static fallback shows state B's photo (see background-image above), so its matching warm scrim should show, not state A's dark one. */
  .states__scrim--a { opacity: 0; }
  .states__scrim--b { opacity: 1; }
  .states__head { color: rgba(255, 255, 255, 0.92); }
}
@media (max-width: 640px) {
  .states { height: 200vh; }
}

/* D · Lifecycle photographs (Update 28 — replaces drawn rail) */
.rail__heading em { font-style: italic; font-weight: 400; }
.lifecycle__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-top: 3rem;
}
.lifecycle__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--tint-2);
}
.lifecycle__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lifecycle__num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--steel-2);
  margin: 1.25rem 0 0.35rem;
}
.lifecycle__title {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.lifecycle__copy {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--navy);
  margin: 0;
}
.lifecycle__step:nth-child(2) { transition-delay: 80ms; }
.lifecycle__step:nth-child(3) { transition-delay: 160ms; }
.lifecycle__step:nth-child(4) { transition-delay: 240ms; }
@media (max-width: 820px) { .lifecycle__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .lifecycle__grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  .lifecycle__step { transition-delay: 0ms !important; }
}

/* FAQ — native <details>/<summary> accordion (Contact page). No JS: state, keyboard
   handling and screen-reader semantics all come from the browser. Items toggle
   independently (not a single-open group) — deliberate: grouping via <details name>
   auto-closes siblings through a path that doesn't reliably re-trigger the chevron's
   CSS transition in every engine, leaving it visually stuck mid-rotation. */
.faq-wrap {
  max-width: 66rem;
  margin-inline: auto;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: 1.4rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.4;
  color: var(--ink);
  transition: color 0.18s ease;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--signal-deep); }
.faq-item__icon {
  flex: none;
  width: 11px;
  height: 11px;
  opacity: 0.55;
  background: currentColor;
  clip-path: polygon(50% 75%, 0 25%, 100% 25%);
  transition: transform 0.22s ease;
}
.faq-item[open] .faq-item__icon { transform: rotate(180deg); }
.faq-item__a {
  max-width: 66ch;
  padding: 0 0 1.6rem;
}
.faq-item__a p {
  margin: 0 0 1em;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--navy);
}
.faq-item__a p:last-child { margin-bottom: 0; }
@keyframes faq-answer-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}
.faq-item[open] .faq-item__a { animation: faq-answer-in 0.25s ease; }

.faq-cta {
  margin-top: clamp(28px, 3.4vw, 40px);
  padding: clamp(28px, 3.4vw, 40px) clamp(24px, 3.4vw, 36px);
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}
.faq-cta__q {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  color: var(--ink);
}
.faq-cta__a {
  margin: 0 0 1.6rem;
  max-width: 62ch;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--navy);
}

/* Service detail blocks (Our Services / Infrastructure / Warranty & Care) —
   long-form write-ups with a short lead-in list of specifics. */
.service-block + .service-block { margin-top: clamp(48px, 6vw, 80px); }
.service-block__lead {
  margin: 0.5rem 0 1.25rem;
  font-weight: 600;
  color: var(--ink);
}
.service-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  max-width: 60ch;
}
.service-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--navy);
  font-size: 16.5px;
  line-height: 1.5;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--signal);
}
.section--ink .service-list li,
.section--ink .service-block__lead { color: rgba(255, 255, 255, 0.85); }
.section--ink .service-list li::before { background: #fff; opacity: 0.7; }

/* ============================================================
   Solutions pages — shared components
   (Access Control / CCTV / Alarms & Intrusion / Intercoms /
   Smart Wireless Locking / Fire & Heat Detection)
   Built on existing tokens/type only — no new colours or faces.
   ============================================================ */

/* Breadcrumb — sits at the top of the dark hero band */
.crumb {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.56);
  margin-bottom: 28px;
}
.crumb a { color: rgba(255, 255, 255, 0.74); text-decoration: none; }
.crumb a:hover { color: #fff; }
.crumb__sep { margin: 0 7px; color: rgba(255, 255, 255, 0.32); }
.crumb--light { color: var(--steel); }
.crumb--light a { color: var(--navy); }
.crumb--light a:hover { color: var(--signal-deep); }
.crumb--light .crumb__sep { color: var(--steel-2); }

/* The problem — hairline row list (no cards). Number in its own column;
   title on its own line; description beneath. Explicit areas so adjacent
   markup without whitespace never concatenates visually. */
.point-rows {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.point-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  grid-template-areas:
    "num title"
    ". body";
  column-gap: clamp(16px, 2.5vw, 28px);
  row-gap: 8px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.point-row__num {
  grid-area: num;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--signal);
  line-height: 1.5;
}
.point-row__title {
  grid-area: title;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
  line-height: 1.3;
}
.point-row__body {
  grid-area: body;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--navy);
  margin: 0;
  max-width: 68ch;
}
@media (max-width: 780px) {
  .point-row {
    grid-template-columns: 28px 1fr;
  }
}

/* Statement line — one Fraunces display line, used once per page to break a long run of body copy */
.statement {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.25;
  color: var(--ink);
  max-width: 20ch;
  margin: 0;
}
.section--ink .statement { color: #fff; }

/* Tightened section padding — for single-card proof bands, so a lone card doesn't
   sit in a full 120px band with a third of it empty either side */
.section--tight { padding-top: 64px; padding-bottom: 64px; }

/* Full-bleed breakout — the one band on the site allowed to ignore the container gutter */
.bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-inline: clamp(20px, 4vw, 56px);
}

/* Proof cards on solution pages — scoped modifier of the shared .case-featured card so
   case-studies/index.html (which also uses .case-featured) is unaffected. Equal mirrored
   columns, 3:2 imagery, larger Fraunces stat numerals, metrics pinned to a shared baseline. */
.case-featured--proof {
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.case-featured--proof > div:not(.case-featured__media) {
  display: flex;
  flex-direction: column;
}
.case-featured--proof .case-featured__media { aspect-ratio: 3 / 2; min-height: 0; }
.case-featured--proof .case-featured__metrics { margin-top: auto; }
.case-featured--proof .case-featured__metrics .stat__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.75rem;
}
@media (max-width: 900px) { .case-featured--proof { min-height: 0; } }

/* Technology partners — compact logo strip (reuses .logo-wall/.logo-item) */
.section.partners-strip { padding-block: clamp(28px, 3.5vw, 40px); }
.partners-strip__label {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 1.25rem;
  margin-bottom: clamp(16px, 2.5vw, 24px);
}
.partners-strip .logo-wall { justify-content: center; }
.partners-strip .logo-item {
  width: 280px;
  height: 112px;
}
.partners-strip .logo-item img {
  max-height: 96px;
  max-width: 240px;
  filter: grayscale(1);
  opacity: 0.55;
  mix-blend-mode: normal;
  transition: filter 0.2s, opacity 0.2s;
}
.partners-strip .logo-item:hover img { filter: grayscale(0); opacity: 1; }
.partners-strip .logo-item--lead img { max-height: 100%; }

/* How we manage it — numbered hairline row-list on the dark band + AssetGuard strip */
.manage-list {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.manage-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 300px) 1fr;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.manage-row__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}
.manage-row__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--signal);
  fill: none;
  stroke-width: 1.6;
  display: block;
}
.manage-row__title { color: #fff; font-family: var(--font-sans); font-weight: 700; font-size: 17px; }
.manage-row__body { color: rgba(255, 255, 255, 0.72); font-family: var(--font-sans); font-size: 16px; line-height: 1.55; margin: 0; }
.manage-strip {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.manage-strip p { color: rgba(255, 255, 255, 0.85); margin: 0; font-size: 17px; }
@media (max-width: 780px) {
  .manage-row {
    grid-template-columns: 40px 1fr;
    grid-template-areas: "icon title" "body body";
    row-gap: 10px;
  }
  .manage-row__icon { grid-area: icon; width: 34px; height: 34px; }
  .manage-row__icon svg { width: 17px; height: 17px; }
  .manage-row__title { grid-area: title; }
  .manage-row__body { grid-area: body; }
}

/* Where this fits — text-only substitute for pages with no case card */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.fit-grid h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.fit-grid p { font-size: 16.5px; color: var(--navy); margin: 0; }
@media (max-width: 780px) { .fit-grid { grid-template-columns: 1fr; } }

/* Related solutions — five tiles, fixed order across all six pages.
   Fixed 5-across at XL/L so five items never leave a partial, hole-leaving row. */
.related-strip { padding-block: clamp(48px, 6vw, 72px); }
.related-strip h3 { margin-bottom: 0; }
.related-tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.related-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.related-tile__icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--signal-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.related-tile__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--signal-deep);
  fill: none;
  stroke-width: 1.6;
}
.related-tile__body { margin-top: auto; }
.related-tile__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.related-tile:hover {
  border-color: var(--signal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.related-tile:hover .related-tile__icon { background: var(--signal); }
.related-tile:hover .related-tile__icon svg { stroke: #fff; }
.related-tile:hover .related-tile__title { color: var(--signal-deep); }
@media (max-width: 1100px) { .related-tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .related-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .related-tiles { grid-template-columns: 1fr; } }

/* Solution-page CTA — dark band, centred single column, identical on all six */
.sol-cta__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.sol-cta__inner h2 { margin-bottom: 24px; }
.sol-cta .dek {
  margin-inline: auto;
  margin-bottom: 0;
  font-size: 21px;
  color: rgba(255, 255, 255, 0.72);
}
.sol-cta__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}
.sol-cta__contact {
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 17px;
}
.sol-cta__contact a { color: rgba(255, 255, 255, 0.88); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); }
.sol-cta__contact a:hover { color: #fff; border-color: #fff; }
.sol-cta__contact span { margin: 0 10px; color: rgba(255, 255, 255, 0.4); }

/* ============================================================
   Technology Platform pages — aligned to Solutions/Services spread:
   dark split hero, heading/body split sections, full-width rows,
   related tiles. Same tokens/type as the rest of the site.
   ============================================================ */

.tp-container { max-width: none; }

/* Hero — same vertical rhythm as Solutions; logo sits in a consistent brand panel */
.tp-hero .dek { max-width: 42ch; }
.tp-hero .btn-group { margin-top: 8px; }
.tp-brand-panel {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: clamp(320px, 48vw, 560px);
  padding: clamp(24px, 3.5vw, 40px);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  box-shadow: none;
}
.tp-brand-panel--gallagher {
  background: #FF8400;
  border-color: transparent;
}
.tp-hero__logo {
  width: 100%;
  max-width: 520px;
  max-height: 340px;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0;
}
.tp-brand-mark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
  max-width: 10ch;
}
.credential {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 42rem;
  margin-top: 22px;
  margin-bottom: 28px;
  padding: 14px 16px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-sans);
}
.credential__tier {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}
.credential__tier-mark {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.credential__text {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}
.credential__claims {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.credential__claims li {
  position: relative;
  padding-left: 14px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}
.credential__claims li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

/* Certified — gold tier */
.credential--gold {
  border-color: rgba(212, 175, 55, 0.45);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(255, 255, 255, 0.04) 55%);
}
.credential--gold .credential__tier {
  color: #1a1408;
  background: linear-gradient(180deg, #f0d78c, #d4af37);
}
.credential--gold .credential__tier-mark {
  background: #7a5a10;
}
.credential--gold .credential__text,
.credential--gold .credential__claims li {
  color: #f6e7b2;
}

/* Distributor — silver tier */
.credential--silver {
  border-color: rgba(176, 184, 196, 0.4);
  background:
    linear-gradient(135deg, rgba(176, 184, 196, 0.14), rgba(255, 255, 255, 0.04) 55%);
}
.credential--silver .credential__tier {
  color: #1b222c;
  background: linear-gradient(180deg, #e8edf3, #a8b2c0);
}
.credential--silver .credential__tier-mark {
  background: #4d5968;
}
.credential--silver .credential__text,
.credential--silver .credential__claims li {
  color: #d7dde6;
}

.section--paper .credential,
.section--tint .credential {
  background: var(--tint);
}
.section--paper .credential--gold,
.section--tint .credential--gold {
  border-color: rgba(184, 148, 40, 0.35);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), var(--tint) 60%);
}
.section--paper .credential--gold .credential__text,
.section--paper .credential--gold .credential__claims li,
.section--tint .credential--gold .credential__text,
.section--tint .credential--gold .credential__claims li {
  color: #6b5310;
}
.section--paper .credential--silver,
.section--tint .credential--silver {
  border-color: rgba(120, 132, 148, 0.3);
  background: linear-gradient(135deg, rgba(168, 178, 192, 0.16), var(--tint) 60%);
}
.section--paper .credential--silver .credential__text,
.section--paper .credential--silver .credential__claims li,
.section--tint .credential--silver .credential__text,
.section--tint .credential--silver .credential__claims li {
  color: #3a4554;
}

/* Intro / closing prose — heading left, copy right (fills the band) */
.tp-split {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.tp-split > h2 { margin: 0; }
.tp-prose p { max-width: none; font-size: 18px; line-height: 1.65; }
.tp-prose p + p { margin-top: 1em; }
@media (max-width: 900px) {
  .tp-split { grid-template-columns: 1fr; gap: 20px; }
}

/* What we do with it — full-width hairline capability rows.
   Lead and desc are adjacent <span>s with no whitespace in the HTML;
   the em dash separator is injected here so they never concatenate. */
.cap-rows { border-top: 1px solid var(--line); margin-top: 40px; }
.cap-row {
  display: block;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--navy);
}
.cap-row__lead {
  font-weight: 700;
  color: var(--ink);
  font-size: 19px;
  font-family: var(--font-sans);
}
.cap-row__lead::after {
  content: " \2014\0020";
  font-weight: 700;
  color: var(--ink);
}
.cap-row__desc {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--navy);
  font-weight: 400;
}

/* At a glance — definition table spanning the container */
.spec-table { width: 100%; border-collapse: collapse; max-width: none; margin-top: 40px; }
.spec-table tr { border-top: 1px solid var(--line); }
.spec-table tr:last-child { border-bottom: 1px solid var(--line); }
.spec-table th, .spec-table td { padding: 22px 0; text-align: left; vertical-align: top; }
.spec-table th {
  width: 28%;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  padding-right: 32px;
}
.spec-table td { font-family: var(--font-sans); font-weight: 400; font-size: 18px; color: var(--ink); }

/* Where we run it — two-up proof grid so the band fills horizontally */
.deploy-rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(32px, 4vw, 64px);
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.deploy-row {
  padding: 28px 0;
  max-width: none;
  border-bottom: 1px solid var(--line);
}
.deploy-row h3 { font-size: 21px; margin-bottom: .5rem; }
.deploy-row p { font-size: 18px; color: var(--navy); margin-bottom: .75rem; max-width: none; }
@media (max-width: 780px) {
  .deploy-rows { grid-template-columns: 1fr; }
}

/* Related — same tiles as Solutions; auto-fit when fewer than five */
.related-tiles--fit {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 1100px;
}
.related-links { font-family: var(--font-sans); font-size: 19px; }
.related-links a { color: var(--signal); text-decoration: none; font-weight: 600; }
.related-links a:hover { color: var(--signal-deep); text-decoration: underline; }
.related-links__sep { margin: 0 14px; color: var(--steel-2); }
