
:root {
  --ink: #0a0b0d;
  --ink-2: #14161a;
  --paper: #f5f5f5;
  --paper-2: #e8e8e8;
  --paper-3: #d4d4d4;
  --red: #d71f38;
  --red-dark: #ad1428;
  --white: #ffffff;
  --muted: #616161;
  --line: rgba(10, 11, 13, .18);
  --line-dark: rgba(255,255,255,.16);
  --font-body: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --max: 1540px;
  --gutter: clamp(20px, 4vw, 68px);
  --section: clamp(80px, 9vw, 142px);
  --header-height: 116px;
  --video-hero-height: clamp(820px, calc(100svh - var(--header-height)), 900px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
/* Display type is reserved for headlines and large figures; supporting copy
   and navigation inherit Source Sans 3. The existing image logo is unchanged. */
:where(h1, h2, .location-card h3, .market-name,
       .response-callout .big-number, .statement-band blockquote) {
  font-family: var(--font-display);
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
img, svg { max-width: 100%; display: block; }
::selection { background: var(--red); color: white; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: white;
  color: black;
  padding: 12px 16px;
  font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.utility-bar {
  min-height: 34px;
  background: #050506;
  color: rgba(255,255,255,.68);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.utility-inner {
  min-height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.utility-group { display: flex; align-items: center; gap: 18px; }
.utility-bar a { transition: color .2s ease; }
.utility-bar a:hover, .utility-bar a:focus-visible { color: white; }
.utility-separator { width: 1px; height: 11px; background: rgba(255,255,255,.18); }
.utility-action { color: white; }
.utility-action::before { content: ""; display: inline-block; width: 6px; height: 6px; background: var(--red); margin-right: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.main-header { min-height: 82px; }
.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 192px minmax(0,1fr) auto;
  gap: clamp(18px, 2.1vw, 38px);
  align-items: center;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 181px; height: auto; }
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 1.6vw, 28px);
  min-width: 0;
}
.nav-link,
.nav-dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 82px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.75);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color .2s ease;
}
.nav-link::after,
.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-link:hover,
.nav-link:focus-visible,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible { color: white; }
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after,
.nav-dropdown.is-active .nav-dropdown-trigger::after { transform: scaleX(1); }
.nav-link.is-active,
.nav-dropdown.is-active .nav-dropdown-trigger { color: white; }
.nav-link.nav-care { color: #ff5368; font-weight: 700; }
.nav-link.nav-care::before { content: ""; width: 6px; height: 6px; background: var(--red); }
.nav-link.nav-care.is-active { color: white; }

.nav-dropdown { position: relative; }
.nav-dropdown-trigger .chevron { width: 8px; height: 8px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 1px);
  right: -18px;
  width: 230px;
  background: var(--white);
  color: var(--ink);
  border-top: 3px solid var(--red);
  box-shadow: 0 20px 55px rgba(0,0,0,.24);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(10,11,13,.1);
  font-size: 13px;
  font-weight: 620;
}
.nav-dropdown-menu a:last-child { border-bottom: 0; }
.nav-dropdown-menu a::after { content: ""; color: var(--red); }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  background: var(--red);
  border: 1px solid var(--red);
  color: white;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .025em;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.header-cta:hover, .header-cta:focus-visible { background: white; border-color: white; color: var(--ink); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.28);
  background: transparent;
  align-items: center;
  justify-content: center;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 18px;
  height: 1px;
  background: white;
  display: block;
  position: relative;
  transition: .22s ease;
}
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-open .menu-toggle span { background: transparent; }
.menu-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
.menu-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 116px 0 0;
  z-index: 90;
  background: var(--ink);
  color: white;
  overflow: auto;
  padding: 26px var(--gutter) 54px;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  font-size: clamp(25px, 7vw, 42px);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.mobile-nav a::after { content: ""; color: var(--red); font-size: 17px; }
.mobile-nav .mobile-subhead {
  margin-top: 28px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mobile-nav .mobile-sub a { font-size: 18px; letter-spacing: -.02em; color: rgba(255,255,255,.76); }
.menu-open .mobile-nav { display: block; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: .145em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; background: var(--red); }
.eyebrow.light { color: rgba(255,255,255,.72); }

.primary-button,
.secondary-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 730;
  letter-spacing: .02em;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.primary-button { background: var(--red); color: white; border-color: var(--red); }
.primary-button:hover, .primary-button:focus-visible { background: white; border-color: white; color: var(--ink); }
.secondary-button { background: transparent; color: inherit; border-color: currentColor; }
.secondary-button:hover, .secondary-button:focus-visible { background: currentColor; color: var(--ink); }
.secondary-button.dark:hover, .secondary-button.dark:focus-visible { background: var(--ink); color: white; }
.text-link { min-height: auto; padding: 0 0 5px; border-bottom-color: currentColor; justify-content: flex-start; }
.text-link::after { content: ""; color: var(--red); font-size: 16px; }

.home-hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.home-hero { min-height: min(780px, calc(100svh - 116px)); }
.page-hero { min-height: 590px; }
.home-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 77% 25%, rgba(215,31,56,.14), transparent 23%),
    linear-gradient(112deg, #0a0b0d 0%, #0a0b0d 43%, #11141a 43.2%, #0a0b0d 100%);
}
.home-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 12%, black 62%);
}
.hero-layout {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, .82fr);
  align-items: center;
  gap: clamp(48px, 6vw, 110px);
  padding-block: clamp(72px, 8vw, 122px);
}
.hero-copy { max-width: 850px; }
.hero-copy h1 {
  margin: 24px 0 26px;
  max-width: 840px;
  font-size: clamp(54px, 7vw, 112px);
  line-height: 1;
  letter-spacing: -.015em;
  font-weight: 600;
}
.page-hero .hero-copy h1 { font-size: clamp(52px, 6.1vw, 94px); }
.hero-copy h1 em { color: var(--red); font-style: normal; }
.hero-copy p {
  margin: 0;
  max-width: 650px;
  color: rgba(255,255,255,.72);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.62;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 54px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-visual { position: relative; min-height: 500px; }
.hero-visual svg { width: 100%; height: auto; }
.hero-visual .wire { stroke: rgba(255,255,255,.18); fill: none; stroke-width: 1; }
.hero-visual .wire-soft { stroke: rgba(255,255,255,.075); fill: none; stroke-width: 1; }
.hero-visual .signal { stroke: var(--red); fill: none; stroke-width: 1.5; stroke-dasharray: 5 7; }
.hero-visual .node { fill: var(--red); stroke: white; stroke-width: 1.4; }
.hero-visual .label { fill: rgba(255,255,255,.75); font-size: 11px; font-family: var(--font-body); letter-spacing: 1.4px; }
.hero-visual .label-red { fill: #ff5368; }
.hero-visual-note {
  position: absolute;
  right: 0;
  bottom: 2%;
  width: min(360px, 78%);
  padding: 18px;
  background: rgba(7,8,10,.86);
  border-top: 2px solid var(--red);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
  backdrop-filter: blur(12px);
}
.hero-visual-note small { color: rgba(255,255,255,.44); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.hero-visual-note strong { display: block; margin-top: 7px; font-size: 17px; line-height: 1.22; }
.hero-visual-note span { display: block; margin-top: 7px; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.55; }

.market-ribbon { background: var(--white); border-bottom: 1px solid var(--line); }
.market-ribbon-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); }
.market-link {
  min-height: 168px;
  padding: 30px clamp(22px, 2.5vw, 42px) 26px;
  border-right: 1px solid var(--line);
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  row-gap: 16px;
  transition: background .24s ease, color .24s ease;
}
.market-link > div { display:contents; }
.market-link:first-child { border-left: 1px solid var(--line); }
.market-link:hover, .market-link:focus-visible { background: var(--ink); color: white; }
.market-code { color: var(--red); font-size: 10px; font-weight: 760; letter-spacing: .12em; }
.market-name { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; font-size: clamp(25px, 2.1vw, 36px); font-weight: 600; letter-spacing: -.015em; }
.market-name::after { content: ""; font-size: 18px; color: var(--red); margin-top:.35em; }
.market-link p { margin: 0; max-width: 340px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.market-link:hover p, .market-link:focus-visible p { color: rgba(255,255,255,.58); }

.section { padding-block: var(--section); }
.section.compact { padding-block: clamp(64px, 7vw, 106px); }
.section.paper { background: var(--paper); }
.section.white { background: var(--white); }
.section.ink { background: var(--ink); color: white; }
.section.red { background: var(--red); color: white; }
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 150px);
  align-items: start;
}
.section-title {
  margin: 20px 0 0;
  font-size: clamp(43px, 5vw, 78px);
  line-height: 1;
  letter-spacing: -.015em;
  font-weight: 600;
}
.section-lead {
  margin: 0;
  font-size: clamp(25px, 2.7vw, 44px);
  line-height: 1.13;
  letter-spacing: -.04em;
  font-weight: 540;
}
.section-body { max-width: 740px; }
.section-body p { margin: 0 0 18px; color: var(--muted); font-size: 16px; line-height: 1.72; }
.ink .section-body p, .red .section-body p { color: rgba(255,255,255,.64); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  margin-top: 58px;
  border-top: 1px solid var(--line);
}
.proof-item { padding: 26px 30px 0 0; border-right: 1px solid var(--line); }
.proof-item + .proof-item { padding-left: 30px; }
.proof-item:last-child { border-right: 0; }
.proof-item small { color: var(--red); font-size: 10px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.proof-item h3 { margin: 14px 0 10px; font-size: 24px; line-height: 1.08; letter-spacing: -.035em; }
.proof-item p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(340px,.76fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
}
.system-plate {
  min-height: 610px;
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  color: white;
  border: 1px solid rgba(255,255,255,.08);
}
.system-plate::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.system-plate svg { position: absolute; inset: 7% 6%; width: 88%; height: 86%; }
.system-plate .wire { stroke: rgba(255,255,255,.24); fill: none; stroke-width: 1; }
.system-plate .wire-soft { stroke: rgba(255,255,255,.08); fill: none; stroke-width: 1; }
.system-plate .signal { stroke: var(--red); fill: none; stroke-width: 1.6; stroke-dasharray: 5 7; }
.system-plate .node { fill: var(--red); stroke: white; stroke-width: 1.4; }
.system-plate .label { fill: rgba(255,255,255,.72); font-size: 11px; font-family: var(--font-body); letter-spacing: 1.4px; }
.system-plate .label-red { fill: #ff5368; }
.plate-label { position: absolute; z-index: 2; left: 24px; top: 22px; color: rgba(255,255,255,.48); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.plate-status { position: absolute; z-index: 2; right: 20px; top: 18px; padding: 7px 9px; background: var(--red); font-size: 9px; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.plate-note { position: absolute; z-index: 2; right: 20px; bottom: 20px; width: min(315px, 70%); padding: 15px 16px; background: rgba(0,0,0,.86); border-left: 2px solid var(--red); color: rgba(255,255,255,.65); font-size: 11px; line-height: 1.55; }
.feature-copy .eyebrow { margin-bottom: 24px; }
.feature-copy h2 { margin: 0; font-size: clamp(43px, 4.6vw, 74px); line-height: 1; letter-spacing: -.015em; }
.feature-copy > p { margin: 25px 0 34px; color: var(--muted); font-size: 16px; line-height: 1.72; }
.sequence-list { border-top: 1px solid var(--line); }
.sequence-row { display: grid; grid-template-columns: 66px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.sequence-row strong { color: var(--red); font-size: 10px; letter-spacing: .1em; }
.sequence-row h3 { margin: 0 0 5px; font-size: 16px; }
.sequence-row p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.55; }

.editorial-list { border-top: 1px solid currentColor; }
.editorial-row {
  display: grid;
  grid-template-columns: 155px minmax(250px,.72fr) minmax(0,1fr) 24px;
  gap: 30px;
  align-items: start;
  padding: 27px 0;
  border-bottom: 1px solid var(--line-dark);
}
.paper .editorial-row, .white .editorial-row { border-bottom-color: var(--line); }
.editorial-code { color: var(--red); font-size: 9px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.editorial-row h3 { margin: 0; font-size: clamp(23px, 2.2vw, 34px); line-height: 1; letter-spacing: -.04em; }
.editorial-row p { margin: 0; max-width: 620px; color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.62; }
.paper .editorial-row p, .white .editorial-row p { color: var(--muted); }
.editorial-arrow { color: var(--red); font-size: 18px; }

.care-feature {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(470px,1.1fr);
  gap: clamp(52px, 8vw, 140px);
  align-items: start;
}
.care-feature h2 { margin: 24px 0 25px; max-width: 670px; font-size: clamp(48px, 5.8vw, 90px); line-height: 1; letter-spacing: -.015em; }
.care-feature p { max-width: 620px; color: rgba(255,255,255,.64); font-size: 16px; line-height: 1.68; }
.care-snapshot { border-top: 1px solid rgba(255,255,255,.28); }
.care-plan { display: grid; grid-template-columns: 125px 1fr; gap: 26px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.care-plan h3 { margin: 0; font-size: 21px; }
.care-plan ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.care-plan li { color: rgba(255,255,255,.62); font-size: 12.5px; line-height: 1.45; }
.care-plan li::before { content: ""; display: inline-block; width: 5px; height: 5px; background: var(--red); margin: 0 9px 2px 0; }
.care-footnote { margin-top: 18px; color: rgba(255,255,255,.4); font-size: 10px; line-height: 1.55; }

.partner-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partner-strip-inner { min-height: 114px; display: grid; grid-template-columns: 260px 1fr auto; gap: 34px; align-items: center; }
.partner-strip h2 { margin: 0; font-size: 22px; letter-spacing: -.03em; }
.partner-names { display: flex; flex-wrap: wrap; gap: 13px 26px; color: var(--muted); font-size: 12px; font-weight: 650; }

.cta-band { background: var(--red); color: white; }
.cta-band-inner { min-height: 390px; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(320px,.65fr); gap: 80px; align-items: center; }
.cta-band h2 { margin: 0; max-width: 920px; font-size: clamp(53px, 7vw, 105px); line-height: 1; letter-spacing: -.015em; }
.cta-band-copy { border-top: 1px solid rgba(255,255,255,.65); padding-top: 20px; }
.cta-band-copy p { margin: 0 0 22px; color: rgba(255,255,255,.76); font-size: 14px; line-height: 1.65; }

/* Inner page components */
.page-intro-grid { display: grid; grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr); gap: clamp(54px, 8vw, 150px); }
.page-intro-grid h2 { margin: 18px 0 0; font-size: clamp(42px, 5.2vw, 79px); line-height: 1; letter-spacing: -.015em; }
.page-intro-copy p { margin: 0 0 18px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.statement-band { padding-block: clamp(62px,7vw,104px); background: var(--paper-2); }
.statement-band blockquote { margin: 0; max-width: 1260px; font-size: clamp(36px, 4.2vw, 68px); line-height: 1.05; letter-spacing: -.015em; font-weight: 600; }

.audience-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid var(--line); }
.audience-item { min-height: 270px; padding: 26px 26px 28px 0; border-right: 1px solid var(--line); }
.audience-item + .audience-item { padding-left: 26px; }
.audience-item:last-child { border-right: 0; }
.audience-item small { color: var(--red); font-size: 9px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.audience-item h3 { margin: 18px 0 13px; font-size: 26px; line-height: 1.05; letter-spacing: -.038em; }
.audience-item p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.process-rail { position: relative; display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); margin-top: 54px; }
.process-rail::before { content: ""; position: absolute; left: 0; right: 0; top: 11px; height: 1px; background: var(--line); }
.process-step { position: relative; padding: 38px 28px 0 0; }
.process-step::before { content: ""; position: absolute; top: 6px; left: 0; width: 11px; height: 11px; background: var(--paper); border: 2px solid var(--red); border-radius: 50%; }
.white .process-step::before { background: var(--white); }
.ink .process-step::before { background: var(--ink); }
.process-step small { color: var(--red); font-size: 9px; font-weight: 760; letter-spacing: .12em; }
.process-step h3 { margin: 13px 0 9px; font-size: 21px; line-height: 1.05; letter-spacing: -.03em; }
.process-step p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.6; }
.ink .process-step p { color: rgba(255,255,255,.55); }

.system-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--line); }
.system-card { min-height: 270px; padding: 30px 34px 34px 0; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.system-card:nth-child(even) { padding-left: 34px; border-right: 0; }
.system-card small { color: var(--red); font-size: 9px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.system-card h3 { margin: 18px 0 13px; font-size: 31px; line-height: 1; letter-spacing: -.042em; }
.system-card p { margin: 0; max-width: 590px; color: var(--muted); font-size: 13px; line-height: 1.65; }

.industry-list { border-top: 1px solid var(--line); }
.industry-row { display: grid; grid-template-columns: 170px minmax(260px,.8fr) minmax(0,1.2fr); gap: 36px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.industry-row small { color: var(--red); font-size: 9px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.industry-row h2 { margin: 0; font-size: clamp(28px, 3vw, 48px); line-height: 1; letter-spacing: -.015em; }
.industry-row p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.68; }

.logo-word-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.logo-word { min-height: 132px; display: flex; align-items: center; justify-content: center; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #4b4b4b; font-size: 17px; font-weight: 700; letter-spacing: -.025em; text-align: center; }
.logo-word:hover { color: var(--red); background: var(--white); }

.location-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px; }
.location-card { min-height: 330px; position: relative; overflow: hidden; background: var(--ink-2); color: white; padding: 34px; display: flex; flex-direction: column; justify-content: space-between; }
.location-card::before { content: ""; position: absolute; inset: 0; opacity: .7; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 34px 34px; }
.location-card > * { position: relative; z-index: 1; }
.location-card small { color: #ff596f; font-size: 10px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.location-card h3 { margin: 0; font-size: clamp(39px,4vw,62px); line-height: 1; letter-spacing: -.015em; }
.location-card p { margin: 10px 0 0; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.6; }

.team-row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--line); }
.team-person { padding: 28px 28px 28px 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.team-person:nth-child(even) { border-right: 0; padding-left: 28px; }
.team-person h3 { margin: 0 0 5px; font-size: 25px; letter-spacing: -.035em; }
.team-person span { color: var(--red); font-size: 11px; font-weight: 720; letter-spacing: .08em; text-transform: uppercase; }
.team-person p { margin: 17px 0 0; max-width: 620px; color: var(--muted); font-size: 13px; line-height: 1.65; }

/* AVDCare */
.care-monitor {
  position: relative;
  min-height: 480px;
  background: #101217;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 30px 90px rgba(0,0,0,.32);
  padding: 24px;
}
.care-monitor-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.15); }
.care-monitor-head strong { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.status-live { display: inline-flex; align-items: center; gap: 8px; color: #ff6478; font-size: 9px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.status-live::before { content: ""; width: 7px; height: 7px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 5px rgba(215,31,56,.15); }
.monitor-site { display: grid; grid-template-columns: 1fr auto; gap: 22px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.monitor-site small { color: rgba(255,255,255,.38); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.monitor-site h3 { margin: 5px 0 0; font-size: 25px; letter-spacing: -.035em; }
.monitor-badge { align-self: center; padding: 8px 10px; border: 1px solid rgba(255,255,255,.26); color: rgba(255,255,255,.72); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.monitor-timeline { position: relative; padding: 27px 0 2px 25px; }
.monitor-timeline::before { content: ""; position: absolute; left: 5px; top: 34px; bottom: 15px; width: 1px; background: rgba(255,255,255,.15); }
.monitor-event { position: relative; padding: 0 0 25px 18px; }
.monitor-event::before { content: ""; position: absolute; left: -24px; top: 5px; width: 9px; height: 9px; border-radius: 50%; border: 2px solid var(--red); background: #101217; }
.monitor-event.is-complete::before { background: var(--red); }
.monitor-event small { color: #ff5b70; font-size: 8px; font-weight: 760; letter-spacing: .11em; text-transform: uppercase; }
.monitor-event h4 { margin: 4px 0 3px; font-size: 15px; }
.monitor-event p { margin: 0; color: rgba(255,255,255,.45); font-size: 11px; line-height: 1.45; }

.care-principles { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--line); }
.care-principle { min-height: 250px; padding: 26px 28px 30px 0; border-right: 1px solid var(--line); }
.care-principle + .care-principle { padding-left: 28px; }
.care-principle:last-child { border-right: 0; }
.care-principle strong { color: var(--red); font-size: 10px; letter-spacing: .12em; }
.care-principle h3 { margin: 16px 0 12px; font-size: 28px; line-height: 1.02; letter-spacing: -.04em; }
.care-principle p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.plan-note { margin-top: 18px; color: rgba(255,255,255,.42); font-size: 10px; line-height: 1.6; }

.response-layout { display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); gap: clamp(55px, 8vw, 145px); }
.response-callout { position: sticky; top: 152px; }
.response-callout .big-number { margin-top: 25px; color: var(--red); font-size: clamp(88px, 10vw, 170px); line-height: 1; letter-spacing: -.015em; font-weight: 600; }
.response-callout h2 { margin: 24px 0 18px; font-size: clamp(39px,4.4vw,70px); line-height: 1; letter-spacing: -.015em; }
.response-callout p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.definition-list { border-top: 1px solid var(--line); }
.definition-row { padding: 27px 0; border-bottom: 1px solid var(--line); }
.definition-row small { color: var(--red); font-size: 9px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.definition-row h3 { margin: 11px 0 10px; font-size: 28px; line-height: 1.03; letter-spacing: -.04em; }
.definition-row p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.67; }

.maintenance-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.maintenance-item { min-height: 270px; padding: 27px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.maintenance-item small { color: var(--red); font-size: 9px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.maintenance-item h3 { margin: 17px 0 12px; font-size: 26px; line-height: 1.02; letter-spacing: -.04em; }
.maintenance-item p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.65; }

.coverage-split { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px; }
.coverage-panel { padding: 34px; border-top: 3px solid var(--ink); background: var(--white); }
.coverage-panel.exclusions { border-top-color: var(--red); background: var(--paper-2); }
.coverage-panel h3 { margin: 0 0 20px; font-size: 31px; letter-spacing: -.04em; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 20px; color: var(--muted); font-size: 13px; line-height: 1.58; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .58em; width: 7px; height: 7px; background: var(--red); }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: grid; grid-template-columns: 1fr 24px; gap: 20px; align-items: center; text-align: left; padding: 24px 0; border: 0; background: transparent; font-size: clamp(20px,2vw,29px); font-weight: 620; letter-spacing: -.035em; }
.faq-icon { position: relative; width: 18px; height: 18px; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; left: 0; top: 8px; width: 18px; height: 1px; background: var(--red); transition: transform .2s ease; }
.faq-icon::after { transform: rotate(90deg); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .24s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0 0 26px; max-width: 840px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: minmax(0,.78fr) minmax(0,1.22fr); gap: clamp(54px,8vw,140px); }
.contact-details h2 { margin: 20px 0 30px; font-size: clamp(42px,5vw,76px); line-height: 1; letter-spacing: -.015em; }
.contact-details p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.contact-line { display: block; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 16px; font-weight: 650; }
.contact-line span { display: block; margin-bottom: 4px; color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.contact-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 10px; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 0; border-bottom: 1px solid var(--ink); background: transparent; padding: 12px 0; border-radius: 0; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--red); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { grid-column: 1 / -1; color: var(--muted); font-size: 11px; line-height: 1.55; }
.form-success { display: none; grid-column: 1 / -1; padding: 15px; background: var(--ink); color: var(--white); font-size: 13px; }
.form-success.is-visible { display: block; }

.site-footer { background: #050506; color: rgba(255,255,255,.58); }
.footer-top { display: grid; grid-template-columns: 1.3fr repeat(3,minmax(0,.7fr)); gap: 42px; padding-block: 62px 48px; }
.footer-brand img { width: 190px; }
.footer-brand p { max-width: 360px; margin: 22px 0 0; font-size: 12px; line-height: 1.65; }
.footer-col h3 { margin: 0 0 14px; color: white; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.footer-col a { display: block; width: fit-content; padding: 5px 0; font-size: 12px; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 20px 0 28px; border-top: 1px solid rgba(255,255,255,.12); font-size: 10px; }
.footer-bottom span:last-child { text-align: right; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1240px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; justify-self: end; }
  .header-inner { grid-template-columns: 192px 1fr auto; }
  .hero-layout { grid-template-columns: minmax(0,1fr) minmax(360px,.7fr); }
  .footer-top { grid-template-columns: 1.2fr repeat(3,minmax(0,.8fr)); }
}

@media (max-width: 980px) {
  .utility-group:first-child .utility-separator,
  .utility-group:first-child a:last-child { display: none; }
  .hero-layout { grid-template-columns: 1fr; padding-block: 74px 80px; }
  .home-hero { min-height: auto; }
  .page-hero { min-height: auto; }
  .hero-visual { min-height: 430px; max-width: 720px; width: 100%; margin-inline: auto; }
  .market-ribbon-grid { grid-template-columns: 1fr; }
  .market-link { min-height: 130px; border-right: 0; border-left: 0 !important; border-bottom: 1px solid var(--line); }
  .section-grid, .feature-layout, .care-feature, .page-intro-grid, .response-layout, .contact-layout { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item, .proof-item + .proof-item { padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .system-plate { min-height: 520px; }
  .editorial-row { grid-template-columns: 110px minmax(220px,.8fr) minmax(0,1fr) 20px; gap: 20px; }
  .care-feature { gap: 58px; }
  .partner-strip-inner { grid-template-columns: 1fr; gap: 18px; padding-block: 28px; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 42px; padding-block: 76px; }
  .audience-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .audience-item:nth-child(2) { border-right: 0; }
  .audience-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .process-rail { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 34px 0; }
  .process-rail::before { display: none; }
  .process-step { padding-top: 32px; }
  .process-step::before { top: 0; }
  .industry-row { grid-template-columns: 105px minmax(230px,.8fr) minmax(0,1fr); gap: 24px; }
  .logo-word-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .maintenance-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .response-callout { position: static; }
  .footer-top { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; --section: 78px; --header-height: 106px; }
  .utility-bar { min-height: 30px; }
  .utility-inner { min-height: 30px; font-size: 8px; }
  .utility-group { gap: 11px; }
  .utility-group:first-child a { display: none; white-space: nowrap; }
  .utility-group:first-child a:last-child { display: inline; }
  .utility-group:first-child a:last-child::before { content: "Call  "; color: rgba(255,255,255,.42); }
  .utility-group:last-child .utility-action { display: none; }
  .site-header { top: 0; }
  .main-header, .header-inner { min-height: 76px; }
  .header-inner { grid-template-columns: 160px 1fr auto; gap: 14px; }
  .brand img { width: 155px; }
  .menu-toggle { width: 42px; height: 42px; }
  .mobile-nav { inset: 106px 0 0; }
  .home-hero::after, .page-hero::after { mask-image: none; opacity: .55; }
  .hero-layout { padding-block: 62px 64px; gap: 32px; }
  .hero-copy h1 { font-size: clamp(49px, 14.5vw, 75px); line-height: 1; margin-top: 20px; }
  .page-hero .hero-copy h1 { font-size: clamp(46px, 13vw, 70px); }
  .hero-copy p { font-size: 15px; }
  .hero-actions { margin-top: 27px; }
  .hero-actions .primary-button, .hero-actions .secondary-button { width: 100%; }
  .hero-meta { margin-top: 36px; }
  .hero-visual { min-height: 310px; }
  .hero-visual-note { width: 88%; right: 0; bottom: 0; }
  .market-link { padding: 24px 20px; }
  .section-title { font-size: clamp(41px,12vw,62px); }
  .section-lead { font-size: 27px; }
  .section-grid { gap: 35px; }
  .system-plate { min-height: 390px; }
  .plate-note { width: 82%; font-size: 10px; }
  .feature-copy h2 { font-size: 48px; }
  .sequence-row { grid-template-columns: 50px 1fr; }
  .editorial-row { grid-template-columns: 1fr 24px; gap: 10px 18px; }
  .editorial-code { grid-column: 1 / -1; }
  .editorial-row h3 { grid-column: 1; }
  .editorial-row p { grid-column: 1 / -1; }
  .editorial-arrow { grid-column: 2; grid-row: 2; }
  .care-plan { grid-template-columns: 1fr; }
  .partner-names { gap: 10px 18px; }
  .cta-band-inner { min-height: auto; gap: 38px; }
  .cta-band h2 { font-size: 56px; }
  .audience-grid, .system-grid, .location-grid, .coverage-split, .team-row { grid-template-columns: 1fr; }
  .audience-item, .audience-item + .audience-item { min-height: auto; padding: 24px 0; border-right: 0; border-top: 1px solid var(--line); }
  .audience-item:first-child { border-top: 0; }
  .process-rail { grid-template-columns: 1fr; }
  .system-card, .system-card:nth-child(even) { min-height: auto; padding: 25px 0; border-right: 0; }
  .industry-row { grid-template-columns: 1fr; gap: 10px; }
  .industry-row small { margin-bottom: 5px; }
  .logo-word-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .logo-word { min-height: 100px; font-size: 14px; }
  .team-person, .team-person:nth-child(even) { padding: 24px 0; border-right: 0; }
  .care-monitor { min-height: 440px; padding: 18px; }
  .care-principles { grid-template-columns: 1fr; }
  .care-principle, .care-principle + .care-principle { min-height: auto; padding: 25px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .maintenance-grid { grid-template-columns: 1fr; }
  .maintenance-item { min-height: auto; }
  .response-callout .big-number { font-size: 118px; }
  .contact-form { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-note, .form-success { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom span:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* AVDCare connected-property video card */
.avdcare-video-card {
  align-self: center;
  min-width: 0;
  display: grid;
  gap: 18px;
}

.avdcare-video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #080a0d;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .32);
}

.avdcare-network-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .95;
  transform: scale(1.004);
}

.avdcare-video-vignette,
.avdcare-video-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.avdcare-video-vignette {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 8, 11, .12) 0%, rgba(6, 8, 11, 0) 52%, rgba(6, 8, 11, .38) 100%),
    linear-gradient(90deg, rgba(6, 8, 11, .18) 0%, rgba(6, 8, 11, 0) 42%);
}

.avdcare-video-fade {
  z-index: 2;
  background: #080a0d;
  opacity: 0;
  transition: opacity 520ms ease;
}

.avdcare-video-shell.is-fading .avdcare-video-fade {
  opacity: 1;
}

.avdcare-video-tag {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(8, 10, 13, .68);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, .78);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.avdcare-video-tag span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(207, 32, 48, .12);
}

.avdcare-video-meta {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.avdcare-video-heading {
  display: grid;
  gap: 7px;
  align-content: start;
}

.avdcare-video-heading strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.3;
}

.avdcare-video-heading span {
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.avdcare-video-meta p {
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .avdcare-video-card {
    width: min(100%, 760px);
    margin-top: 10px;
  }
}

@media (max-width: 640px) {
  .avdcare-video-card {
    gap: 14px;
  }

  .avdcare-video-shell {
    aspect-ratio: 16 / 10;
  }

  .avdcare-video-tag {
    top: 12px;
    left: 12px;
  }

  .avdcare-video-meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .avdcare-network-video {
    display: none;
  }

  .avdcare-video-shell {
    background:
      linear-gradient(rgba(8, 10, 13, .08), rgba(8, 10, 13, .22)),
      url("https://cdn.creativeclaw.co/u/00727557/images/8f517c75-d746-471f-ac06-bb1fa535609c.jpg") center / cover no-repeat;
  }
}

/* Navigation and company details */
.linkedin-badge { display:inline-flex; align-items:center; gap:10px; margin-top:18px; font-size:14px; color:white; }
.linkedin-badge span { display:grid; place-items:center; width:25px; height:25px; border-radius:3px; background:white; color:#0a0b0d; font:bold 20px Arial,sans-serif; }
.linkedin-badge:hover { color:var(--red); }
.footer-bottom { line-height:1.8; }
.industry-row { scroll-margin-top:145px; }
.mobile-industries summary { padding:16px 0; cursor:pointer; font-size:clamp(25px,7vw,42px); line-height:1.05; letter-spacing:-.04em; border-bottom:1px solid rgba(255,255,255,.14); }
.mobile-industries .mobile-sub { padding-bottom:16px; }
.nav-dropdown-menu { min-width:250px; }
.page-hero.market-video-hero { background: #08090b url('https://cdn.creativeclaw.co/u/00727557/images/773e652f-2dd1-4802-bd05-b2dc41444f4a.jpg') center/cover; }
.market-video-hero::before { z-index:1; background:linear-gradient(90deg,rgba(5,6,8,.9),rgba(5,6,8,.6) 45%,rgba(5,6,8,.15)),linear-gradient(0deg,rgba(5,6,8,.6),transparent); }
.market-video-hero::after { display:none; }
.market-video-hero .hero-layout { grid-template-columns:minmax(0,850px); }
.market-video-hero .hero-visual { display:none; }
/* Reserve the same canvas across pages, independent of headline wrapping. */
.page-hero.market-video-hero { min-height: var(--video-hero-height); }
.market-video-hero .hero-layout { padding-block: 64px; }
.market-hero-video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity .8s ease; }
.market-hero-video.is-ready { opacity:1; }
@media(prefers-reduced-motion:reduce) { .market-hero-video { display:none; } }

.market-loop-fade { position:absolute; inset:0; z-index:0; background:#08090b; opacity:0; pointer-events:none; }

/* Shared editorial alignment and photographic sections. */
.section-grid, .page-intro-grid, .editorial-row { align-items:center; }
.section-grid > *, .page-intro-grid > * { min-width:0; }
.hero-photo { margin:0; position:relative; min-width:0; }
.hero-photo-image { display:block; width:100%; height:clamp(320px,38vw,590px); object-fit:cover; }
.photo-caption { padding:24px 0 0; border-top:2px solid var(--red); }
.photo-caption small { display:block; margin-bottom:12px; text-transform:uppercase; letter-spacing:.12em; font-size:10px; }
.photo-caption strong { display:block; font-size:23px; }
.photo-caption p { color:rgba(255,255,255,.65); font-size:15px; }
.legal-page { padding:56px 0 64px; }
.legal-copy { max-width:1100px; }
.legal-copy h1 { font-size:clamp(36px,4vw,48px); margin:16px 0; }
.legal-copy h2 { font-size:24px; margin:24px 0 8px; }
.legal-copy p { font-size:16px; line-height:1.55; margin:0 0 12px; }
.sequence-row > div:only-child { grid-column:1 / -1; }
.legal-copy a { text-decoration:underline; text-underline-offset:3px; }
.page-hero:has(.hero-photo)::after { display:none; }
.migration-photo { display:block; width:100%; height:auto; min-height:0; max-height:680px; aspect-ratio:1.2; overflow:hidden; align-self:center; }
.migration-photo-image { display:block; width:100%; height:100%; object-fit:cover; }
.content-photo, .process-photo, .industry-photo, .construction-photo { display:block; width:100%; object-fit:cover; }
.system-card.has-photo { display:flex; flex-direction:column; min-height:0; padding-bottom:34px; }
.system-card .content-photo { aspect-ratio:2.8; height:auto; margin-top:auto; padding-top:0; }
.system-card.has-photo p { margin-bottom:28px; }
@media(min-width:641px) { .system-card.has-photo:nth-child(even) { padding-right:0; } }
.audience-item:has(.content-photo) { display:flex; flex-direction:column; padding:26px; }
.audience-item:has(.content-photo) p { margin-bottom:26px; }
.audience-item .content-photo { aspect-ratio:2.4; height:auto; margin-top:auto; }
.process-rail { gap:22px; }
.process-rail::before, .process-step::before { display:none; }
.process-step { padding:0; }
.process-photo { aspect-ratio:1.6; height:auto; margin-bottom:24px; }
.process-step h3 { margin-top:0; }
.industry-row { grid-template-columns:minmax(220px,.85fr) minmax(180px,.65fr) minmax(0,1fr); align-items:center; }
.industry-row > small { display:none; }
.industry-photo { aspect-ratio:2; height:auto; }
.construction-layout { display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:clamp(40px,6vw,100px); }
.construction-photo { aspect-ratio:1.35; height:auto; }
.construction-layout h2 { font-size:clamp(42px,5vw,76px); line-height:1; margin:20px 0 26px; }
.construction-layout p { color:var(--muted); line-height:1.8; }
.location-card.with-map { display:grid; grid-template-columns:1fr; grid-template-rows:1fr 260px; padding:0; background:var(--ink-2); }
.location-card.with-map::before { display:none; }
.location-details { padding:34px; }
.location-details h3 { margin-top:28px; }
.location-map { position:relative; height:260px; background:#e5e5e5; }
.location-map iframe { display:block; width:100%; height:100%; border:0; }
.location-map { overflow:hidden; }
.map-tiles { position:absolute; inset:0; overflow:hidden; filter:grayscale(.85); }
.map-tiles img { position:absolute; width:256px; height:256px; max-width:none; }
.map-pin { position:absolute; left:50%; top:50%; width:24px; height:24px; background:var(--red); border:3px solid white; border-radius:50% 50% 50% 0; transform:translate(-50%,-100%) rotate(-45deg); box-shadow:0 2px 8px #0006; }
.map-attribution { position:absolute; bottom:0; left:0; padding:2px 6px; background:#fffffff2; color:#222; font-size:10px; }
.map-directions { position:absolute; right:12px; bottom:12px; padding:10px 16px; background:var(--ink); color:white; font-size:13px; }
.logo-word { background:white; padding:28px; min-height:140px; }
@media(min-width:981px) {
  .text-pair-reverse { grid-template-columns:minmax(0,1.14fr) minmax(0,.86fr); }
  .text-pair-reverse > :first-child { grid-column:2; grid-row:1; }
  .text-pair-reverse > :nth-child(2) { grid-column:1; grid-row:1; }
}
@media(max-width:980px) {
  .construction-layout { grid-template-columns:1fr; }
  .hero-photo-image { height:auto; aspect-ratio:1.8; }
  .industry-row { grid-template-columns:1fr 1fr; }
  .industry-row p { grid-column:2; }
  .industry-photo { grid-row:1 / span 2; aspect-ratio:1.3; }
}
@media(max-width:640px) {
  .industry-row { grid-template-columns:1fr; gap:20px; }
  .industry-row p { grid-column:auto; }
  .industry-photo { grid-row:auto; aspect-ratio:2; }
  .migration-photo { min-height:0; height:auto; aspect-ratio:1.4; }
  .system-card .content-photo { aspect-ratio:2.2; }
  .location-details { padding:26px; }
  .process-rail { gap:30px; }
}

/* Draw link arrows instead of letting mobile fonts substitute emoji. */
.nav-dropdown-menu a::after,
.mobile-nav a::after,
.text-link::after,
.market-name::after,
.editorial-arrow {
  --arrow-shape: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 19 19 5M5 5h14v14' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: var(--arrow-shape) center / contain no-repeat;
  mask: var(--arrow-shape) center / contain no-repeat;
}

/* Keep the ceiling camera visible in the common-area ribbon crop. */
.system-card .content-photo[src$='9cd27fba-131b-4cb6-a0c8-ba63407bece3.jpg'] { object-position:center top; }

/* Match dropdown and mobile navigation to the quieter desktop type. */
.nav-dropdown-menu a, .mobile-nav { font-family: Arial, sans-serif; font-weight:400; }
.nav-dropdown-menu a { font-size:14px; font-weight:400; }

/* Shared supporting-heading rhythm; avoid cramped letter and word spacing. */
.editorial-row h3,.proof-item h3,.audience-item h3,.process-step h3,
.system-card h3,.team-person h3,.monitor-site h3,.care-principle h3,
.definition-row h3,.maintenance-item h3,.coverage-panel h3,.faq-question {
  letter-spacing:0;word-spacing:.035em;font-weight:600;line-height:1.15;
}

/* Separate the Industries page link from its category menu control. */
.nav-dropdown-split{display:flex;align-items:center;gap:6px}
.nav-dropdown-split>.nav-dropdown-trigger{width:20px;justify-content:center}
.mobile-industries summary { display:flex; align-items:center; justify-content:space-between; gap:24px; list-style:none; padding:0; }
.mobile-industries summary::-webkit-details-marker { display:none; }
.mobile-industries summary::marker { content:""; }
.mobile-industries summary>a { display:block; flex:1; padding:16px 0; border:0; }
.mobile-industries summary>a::after { display:none; }
.mobile-industries summary::after { content:""; width:10px; height:10px; margin:0 5px 5px 0; flex:0 0 auto; border-right:1.5px solid var(--red); border-bottom:1.5px solid var(--red); transform:rotate(45deg); transition:transform .2s ease; }
.mobile-industries[open] summary::after { transform:rotate(225deg); margin-bottom:-5px; }

