:root {
  --black: #071b3d;
  --ink: #102a52;
  --charcoal: #0b2f5b;
  --muted: #66788f;
  --soft: #f3f7fb;
  --line: #d8e5f2;
  --white: #ffffff;
  --brand: #0878d1;
  --brand-strong: #0759a6;
  --brand-bright: #4cb8ff;
  --blue: #0b4b9b;
  --teal: #0f8ed8;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

/* Winner-style interactive protection entry and one consistent medical-green system. */
:root {
  --medical-green: #087fd1;
  --medical-green-deep: #075aa8;
  --medical-green-dark: #063b77;
  --medical-green-light: #edf6ff;
}

.protection-entry {
  display: flex;
  min-height: min(760px, 82vh);
  padding: 0;
  gap: 0;
  background: var(--medical-green-dark);
  overflow: hidden;
}

.protection-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.48);
  background: var(--medical-green-dark);
  transition: flex 420ms cubic-bezier(0.2, 0.8, 0.2, 1), background 240ms ease;
}

.protection-panel:last-child { border-right: 0; }

.protection-panel::before,
.protection-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.protection-panel::before {
  background-image: linear-gradient(180deg, rgba(0, 72, 145, 0.14), rgba(0, 82, 160, 0.86)), var(--panel-image);
  background-position: center;
  background-size: cover;
  filter: saturate(1.18) contrast(1.04);
  opacity: 0.64;
  transform: scale(1.04);
  transition: opacity 420ms ease, transform 700ms ease, filter 420ms ease;
}

.protection-panel::after {
  background: linear-gradient(180deg, rgba(0, 112, 81, 0.08) 0%, rgba(0, 63, 47, 0.9) 100%);
  transition: background 420ms ease;
}

.protection-panel:hover,
.protection-panel:focus-within {
  flex: 1.55 1 0;
  background: var(--medical-green);
}

.protection-panel:hover::before,
.protection-panel:focus-within::before {
  opacity: 0.94;
  filter: saturate(1.34) contrast(1.05);
  transform: scale(1.12);
}

.protection-panel:hover::after,
.protection-panel:focus-within::after {
  background: linear-gradient(180deg, rgba(0, 127, 209, 0.05), rgba(0, 83, 165, 0.72) 100%);
}

.protection-panel a {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: clamp(24px, 3vw, 54px);
  color: var(--white);
}

.protection-panel span {
  position: absolute;
  top: clamp(28px, 4vw, 70px);
  left: clamp(24px, 3vw, 54px);
  font-size: clamp(24px, 2.5vw, 42px);
  font-weight: 500;
}

.protection-panel strong {
  max-width: 280px;
  font-size: clamp(21px, 2.1vw, 34px);
  line-height: 1.12;
}

.protection-panel small {
  max-width: 260px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.4;
}

.protection-panel i {
  margin-top: 28px;
  font-size: 28px;
  font-style: normal;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.protection-panel:hover i,
.protection-panel:focus-within i { opacity: 1; transform: translateX(0); }

.mini-program {
  position: fixed;
  top: 50%;
  right: 20px;
  z-index: 45;
  display: grid;
  justify-items: center;
  gap: 10px;
  width: 92px;
  padding: 14px 10px 12px;
  border: 1px solid rgba(0, 127, 209, 0.2);
  background: rgba(255, 255, 255, 0.96);
  color: var(--medical-green-deep);
  box-shadow: 0 12px 30px rgba(0, 91, 67, 0.18);
  transform: translateY(-50%);
}

.mini-program span { font-size: 11px; line-height: 1.35; text-align: center; }

.mini-program-code {
  position: relative;
  width: 58px;
  height: 58px;
  border: 5px solid #fff;
  background: repeating-conic-gradient(#073b77 0 25%, #fff 0 50%) 50% / 8px 8px;
  box-shadow: inset 0 0 0 1px #073b77;
}

.mini-program-code::before,
.mini-program-code::after,
.mini-program-code b:first-child {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 3px solid #073b77;
  background: #fff;
  box-shadow: inset 0 0 0 3px #073b77;
}

.mini-program-code::before { top: 0; left: 0; }
.mini-program-code::after { right: 0; bottom: 0; }
.mini-program-code b:first-child { right: 0; top: 0; }

.narrative,
.solutions,
.contact { background: var(--medical-green-deep); }

.statement,
.visual-gallery,
.outcomes,
.insights { background: var(--medical-green-light); }

.product-stage { background: linear-gradient(180deg, #f1f8ff, #e0effd 62%, #f8fbff); }

/* The homepage ends after the solutions module; the footer remains the final block. */
body:not(.subpage) .visual-gallery,
body:not(.subpage) .outcomes,
body:not(.subpage) .evidence,
body:not(.subpage) .insights,
body:not(.subpage) .contact {
  display: none !important;
}

body:not(.subpage) #who {
  display: none !important;
}

body:not(.subpage) .narrative {
  display: none !important;
}

@media (max-width: 760px) {
  .protection-entry { min-height: 620px; overflow-x: auto; }
  .protection-panel { flex: 0 0 62vw; }
  .protection-panel:hover,
  .protection-panel:focus-within { flex-basis: 78vw; }
  .mini-program { right: 10px; width: 76px; padding: 10px 6px; }
  .mini-program-code { width: 48px; height: 48px; background-size: 7px 7px; }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Arial,
    "Helvetica Neue",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.45;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 0 clamp(44px, 7.8vw, 140px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(138, 141, 140, 0.66), rgba(102, 108, 106, 0.44)),
    rgba(92, 98, 96, 0.32);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 168px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.brand img {
  width: 78px;
  height: auto;
  padding: 0;
  background: transparent;
  mix-blend-mode: multiply;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 4vw, 70px);
  flex: 1;
  margin: 0 clamp(18px, 4vw, 72px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-item > a {
  min-height: 70px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav-item > a:hover,
.nav-item:focus-within > a,
.nav-item.is-open > a {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.72);
}

.nav-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  min-width: 210px;
  padding: 14px 0;
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-top: 2px solid var(--brand-bright);
  background: rgba(8, 39, 32, 0.96);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu,
.nav-item.is-open .nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu a {
  display: block;
  min-height: 0;
  padding: 10px 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.35;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--white);
  background: rgba(57, 196, 133, 0.16);
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 34px;
}

.icon-button {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.icon-search {
  position: relative;
  width: 21px;
  height: 21px;
  display: block;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.icon-search::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -6px;
  width: 11px;
  height: 3px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  transform: rotate(45deg);
}

.icon-globe {
  position: relative;
  width: 28px;
  height: 28px;
  display: block;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.icon-globe::before,
.icon-globe::after {
  content: "";
  position: absolute;
  inset: 4px 8px;
  border-left: 2px solid rgba(255, 255, 255, 0.86);
  border-right: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
}

.icon-globe::after {
  inset: 11px 2px;
  border: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.86);
  border-bottom: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: block;
  padding: 0;
  background: #071b3d;
  color: var(--white);
}

.hero-media,
.video-grade,
.transition,
.scanlines {
  position: absolute;
  inset: 0;
}

.video-grade {
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(circle at 58% 46%, rgba(57, 196, 133, 0.14), transparent 34%),
    linear-gradient(90deg, rgba(5, 21, 19, 0.46), rgba(5, 21, 19, 0.02) 48%, rgba(5, 21, 19, 0.42)),
    linear-gradient(0deg, rgba(5, 14, 13, 0.62), rgba(5, 14, 13, 0) 46%, rgba(5, 14, 13, 0.34));
}

.hero-media {
  overflow: hidden;
}

#maskFilm {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.mask-silhouette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 58% 52%, transparent 0%, transparent 22%, rgba(7, 18, 15, 0.14) 44%, rgba(7, 18, 15, 0.58) 100%),
    linear-gradient(90deg, rgba(7, 18, 15, 0.32), transparent 35%, transparent 68%, rgba(7, 18, 15, 0.38));
}

.transition {
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(115deg, transparent 0%, transparent 38%, rgba(57, 196, 133, 0.84) 46%, rgba(255, 255, 255, 0.86) 50%, rgba(26, 168, 137, 0.5) 54%, transparent 64%, transparent 100%);
  mix-blend-mode: screen;
}

.transition-one {
  animation: slashCutA 12s linear infinite;
}

.transition-two {
  background:
    linear-gradient(62deg, transparent 0%, transparent 34%, rgba(26, 168, 137, 0.62) 44%, rgba(255, 255, 255, 0.72) 50%, rgba(57, 196, 133, 0.48) 58%, transparent 68%, transparent 100%);
  animation: slashCutB 12s linear infinite;
}

.transition-three {
  z-index: 3;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.95), rgba(57, 196, 133, 0.5) 18%, transparent 48%);
  mix-blend-mode: screen;
  animation: flashPulse 12s linear infinite;
}

.scanlines {
  z-index: 2;
  pointer-events: none;
  opacity: 0.11;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 196, 133, 0.12) 1px, transparent 1px);
  background-size: 100% 4px, 120px 100%;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
  animation: scanMove 6s linear infinite;
}

.blue-burst {
  position: absolute;
  inset: -18%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.42;
  background:
    conic-gradient(from 90deg at 50% 50%, transparent, rgba(57, 196, 133, 0.18), transparent, rgba(26, 168, 137, 0.18), transparent);
  animation: burstSpin 12s linear infinite;
  mix-blend-mode: screen;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  width: 34px;
  height: 54px;
  border: 2px solid rgba(217, 255, 233, 0.78);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

.opening {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.48fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: end;
  padding: clamp(82px, 10vw, 142px) clamp(20px, 5vw, 76px);
  background: #f4f8f6;
  color: var(--ink);
}

.opening > div:first-child {
  position: relative;
  z-index: 3;
  width: min(980px, 100%);
}

.kicker {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.opening .kicker,
.solutions .kicker,
.contact .kicker {
  color: var(--brand);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1010px;
  margin-bottom: 28px;
  font-size: clamp(54px, 9.4vw, 128px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
}

.opening p {
  max-width: 650px;
  color: #5e6b68;
  font-size: clamp(17px, 1.45vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn,
.quote-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
}

.btn.primary,
.quote-form button {
  background: var(--brand);
  color: var(--white);
}

.btn.primary:hover,
.quote-form button:hover {
  background: var(--brand-strong);
}

.btn.ghost {
  border-color: rgba(15, 143, 95, 0.42);
  color: var(--brand-strong);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #d8e5f2;
  border-left: 1px solid #d8e5f2;
  background: var(--white);
}

.hero-metrics div {
  min-height: 156px;
  padding: 24px clamp(18px, 3vw, 34px);
  border-right: 1px solid #d8e5f2;
  border-bottom: 1px solid #d8e5f2;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

.hero-metrics span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.statement {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  padding: clamp(84px, 11vw, 150px) clamp(20px, 5vw, 76px);
  background: var(--white);
}

.statement-index {
  color: var(--brand-bright);
  font-size: clamp(50px, 8vw, 110px);
  font-weight: 900;
  line-height: 0.9;
}

.statement p:not(.kicker),
.section-head p:not(.kicker),
.narrative p,
.capability-grid p,
.solution-feature p,
.outcome-grid p,
.evidence-copy p,
.insight-grid p,
.contact p,
.site-footer p {
  color: var(--muted);
  font-size: 17px;
}

.site-footer .breath-tagline {
  color: var(--white);
  font-weight: 800;
}

.statement > div:last-child p:not(.kicker) {
  max-width: 860px;
  margin-top: 28px;
  font-size: clamp(18px, 1.8vw, 25px);
}

.narrative {
  background: var(--black);
  color: var(--white);
}

.narrative article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.narrative article:nth-child(even) img {
  order: 2;
}

.narrative img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.narrative article > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 96px);
}

.narrative span {
  display: block;
  margin-bottom: 24px;
  color: var(--brand-bright);
  font-size: 15px;
  font-weight: 900;
}

.narrative h2 {
  max-width: 720px;
  font-size: clamp(34px, 4.4vw, 68px);
}

.narrative p {
  max-width: 600px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.68);
}

.capabilities,
.outcomes,
.insights {
  padding: clamp(82px, 10vw, 138px) clamp(20px, 5vw, 76px);
}

.product-stage {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(57, 196, 133, 0.14), transparent 24%),
    radial-gradient(circle at 92% 28%, rgba(26, 168, 137, 0.12), transparent 26%),
    linear-gradient(180deg, #f7fbff, #edf5fd 62%, #ffffff);
}

.product-stage::before {
  content: "";
  position: absolute;
  right: -14vw;
  top: 12%;
  width: 42vw;
  aspect-ratio: 1;
  border: 1px solid rgba(15, 143, 95, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 44px rgba(57, 196, 133, 0.05),
    0 0 0 96px rgba(26, 168, 137, 0.045);
}

.product-stage::after {
  content: "3Q";
  position: absolute;
  left: -2vw;
  bottom: -6vw;
  color: rgba(15, 143, 95, 0.06);
  font-size: clamp(150px, 28vw, 420px);
  font-weight: 900;
  line-height: 0.8;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
  gap: 44px;
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 70px);
}

.section-head > h2,
.section-head > div {
  max-width: 960px;
}

.capability-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 16px;
  border: 0;
}

.capability-grid a {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(15, 143, 95, 0.16);
  background: #0a2f62;
  color: var(--white);
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.capability-grid a:hover {
  background: #06224f;
  color: var(--white);
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(8, 72, 150, 0.2);
}

.capability-grid span {
  position: relative;
  z-index: 3;
  display: block;
  margin-bottom: 22px;
  color: #8dcfff;
  font-size: 42px;
  font-weight: 900;
}

.capability-grid h3,
.capability-grid p {
  position: relative;
  z-index: 3;
}

.capability-grid h3 {
  max-width: 280px;
  color: var(--white);
}

.capability-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.capability-grid a:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.category-card img {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  width: 100%;
  height: 52%;
  object-fit: cover;
  opacity: 0.68;
  filter: saturate(1.06) contrast(1.06);
  transform: scale(1.02);
  transition: transform 260ms ease, opacity 260ms ease;
  mask-image: linear-gradient(0deg, black 0%, black 62%, transparent 100%);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(4, 30, 25, 0.16), rgba(4, 30, 25, 0.92)),
    linear-gradient(135deg, rgba(57, 196, 133, 0.22), transparent 54%);
}

.category-card:hover img {
  opacity: 0.92;
  transform: scale(1.12);
}

.solutions {
  padding: clamp(82px, 10vw, 138px) clamp(20px, 5vw, 76px);
  background: #0b4f91;
  color: var(--white);
}

.solution-globe {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(143, 215, 255, 0.7);
  border-radius: 50%;
  background: #0b4f91;
  box-shadow:
    inset 0 0 18px rgba(222, 249, 255, .48),
    inset 0 0 64px rgba(67, 190, 255, .38),
    0 0 0 1px rgba(139, 221, 255, .24),
    0 0 48px rgba(67, 187, 255, .16);
}

.solution-globe video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) saturate(.94);
}

.solution-globe::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 43% 36%, rgba(185, 239, 255, .42) 0%, rgba(72, 190, 246, .24) 22%, transparent 48%),
    radial-gradient(circle at 50% 52%, rgba(37, 148, 225, .46) 0%, rgba(18, 106, 184, .34) 30%, rgba(11, 79, 145, .12) 51%, transparent 64%),
    radial-gradient(circle at center, transparent 52%, rgba(77, 196, 255, .14) 69%, rgba(173, 235, 255, .54) 94%, rgba(225, 250, 255, .34) 100%);
  box-shadow: inset 0 0 46px rgba(113, 217, 255, .24);
  mix-blend-mode: screen;
  animation: globe-inner-glow 4.8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes globe-inner-glow {
  from { opacity: .82; filter: brightness(.96); }
  to { opacity: 1; filter: brightness(1.12); }
}

.section-head.invert p:not(.kicker) {
  color: rgba(255, 255, 255, 0.68);
}

.solution-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.solution-menu {
  display: grid;
  align-content: start;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.solution-menu a {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.solution-menu a::after {
  content: "+";
  color: var(--brand-bright);
  font-size: 22px;
}

.solution-menu a:hover {
  color: var(--white);
}

.solution-menu a.email-link::after { content: none; }
.solution-menu .email-icon {
  color: var(--brand-bright);
  font-size: 23px;
  line-height: 1;
  transition: transform 180ms ease, color 180ms ease;
}
.solution-menu a.email-link:hover .email-icon,
.solution-menu a.email-link:focus-visible .email-icon {
  color: var(--white);
  transform: translateY(-1px) scale(1.08);
}

.solution-menu a.social-platform-link {
  min-height: 86px;
  justify-content: flex-start;
  gap: 13px;
  padding-right: 24px;
  text-decoration: none;
}

.solution-menu a.social-platform-link::after {
  content: "\2197";
  color: #4cb8ff;
  font-size: 22px;
  font-weight: 500;
  margin-left: auto;
  transition: transform 160ms ease, color 160ms ease;
}

.solution-menu a.social-platform-link:hover::after,
.solution-menu a.social-platform-link:focus-visible::after {
  color: #fff;
  transform: translate(2px, -2px);
}

.social-platform-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.social-platform-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 9px;
  box-shadow: 0 8px 18px rgba(1, 19, 52, .2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-platform-link:hover .social-platform-icon,
.social-platform-link:focus-visible .social-platform-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 11px 23px rgba(1, 19, 52, .3);
}

.social-platform-icon svg {
  width: 21px;
  height: 21px;
  overflow: visible;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-youtube { background: #ff0033; }
.social-youtube svg rect { fill: #ff0033; }
.social-youtube svg path,
.social-facebook svg path,
.social-linkedin svg path,
.social-linkedin svg circle { fill: #fff; stroke: none; }
.social-telegram { background: #229ed9; }
.social-facebook { background: #1877f2; }
.social-instagram { background: linear-gradient(135deg, #f9ce34, #ee2a7b 48%, #6228d7); }
.social-x { background: #101820; }
.social-linkedin { background: #0a66c2; }

.social-platform-link strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}

.social-platform-link small {
  overflow: hidden;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.solution-feature {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(30px, 5vw, 72px) 0 clamp(30px, 5vw, 72px) clamp(30px, 5vw, 72px);
  align-items: center;
}

.solution-feature img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  background: #f0f2f4;
}

.solution-feature h3 {
  max-width: 620px;
  font-size: clamp(31px, 4vw, 58px);
}

.solution-feature p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
}

.solution-feature .solution-tagline {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 800;
  line-height: 1.35;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--white);
  font-weight: 900;
  border-bottom: 2px solid var(--brand-bright);
  padding-bottom: 5px;
}

.visual-gallery {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 138px) clamp(20px, 5vw, 76px);
  background:
    radial-gradient(circle at 82% 18%, rgba(57, 196, 133, 0.12), transparent 26%),
    #f7fbf9;
}

.visual-gallery::before {
  content: "";
  position: absolute;
  left: -12vw;
  top: 18%;
  width: 34vw;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(15, 143, 95, 0.16);
  box-shadow: 0 0 0 46px rgba(57, 196, 133, 0.04);
}

.gallery-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.gallery-grid figure {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  background: #0a2f62;
}

.gallery-grid figure:first-child {
  grid-row: span 2;
  min-height: 638px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 300ms ease, opacity 300ms ease;
}

.gallery-grid figure:hover img {
  opacity: 1;
  transform: scale(1.06);
}

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(0deg, rgba(5, 24, 20, 0.88), transparent);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.outcome-grid article {
  min-height: 245px;
  padding: 32px;
  background: var(--white);
}

.outcome-grid article:nth-child(1),
.outcome-grid article:nth-child(5) {
  background: var(--soft);
}

.outcome-grid h3 {
  max-width: 360px;
}

.evidence {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  padding: clamp(82px, 10vw, 138px) clamp(20px, 5vw, 76px);
  background:
    radial-gradient(circle at 18% 24%, rgba(57, 196, 133, 0.12), transparent 28%),
    #0a2d5d;
  color: var(--white);
}

.evidence-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.68);
}

.evidence-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.evidence-list div {
  min-height: 170px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.evidence-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 90px);
  line-height: 0.92;
}

.evidence-list span {
  color: rgba(255, 255, 255, 0.62);
}

.insights {
  background: var(--soft);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insight-grid article {
  min-height: 330px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.insight-grid span {
  display: block;
  margin-bottom: 86px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(350px, 0.68fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  padding: clamp(82px, 10vw, 138px) clamp(20px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(7, 40, 33, 0.96), rgba(7, 40, 33, 0.86)),
    url("../assets/industrial-park-optimized.png") center/cover;
  color: var(--white);
}

.contact p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #3f4650;
  font-size: 13px;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfd4da;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.quote-form textarea {
  min-height: 112px;
  resize: vertical;
}

.quote-form button {
  width: 100%;
  margin-top: 4px;
  font-size: 15px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 44px clamp(20px, 5vw, 76px);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.site-footer strong {
  font-size: 18px;
}

.site-footer p {
  max-width: 500px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--white);
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  34% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
}

@keyframes clipOne {
  0% {
    opacity: 1;
    transform: scale(1.06);
    clip-path: inset(0 0 0 0);
  }

  20% {
    opacity: 1;
    transform: scale(1.16) translate3d(-1.5%, 0, 0);
  }

  25% {
    opacity: 0;
    transform: scale(1.2) translate3d(-3%, 0, 0);
    clip-path: inset(0 100% 0 0);
  }

  25.01%,
  100% {
    opacity: 0;
  }
}

@keyframes clipTwo {
  0%,
  22% {
    opacity: 0;
    transform: scale(1.08) translate3d(3%, 0, 0);
    clip-path: inset(0 0 0 100%);
  }

  27% {
    opacity: 1;
    transform: scale(1.08) translate3d(0, 0, 0);
    clip-path: inset(0 0 0 0);
  }

  45% {
    opacity: 1;
    transform: scale(1.18) translate3d(1.5%, -1%, 0);
  }

  50% {
    opacity: 0;
    transform: scale(1.23) translate3d(4%, -1%, 0);
    clip-path: inset(0 0 0 100%);
  }

  50.01%,
  100% {
    opacity: 0;
  }
}

@keyframes clipThree {
  0%,
  47% {
    opacity: 0;
    transform: scale(1.1) translate3d(0, 2%, 0);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }

  52% {
    opacity: 1;
    transform: scale(1.08);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  70% {
    opacity: 1;
    transform: scale(1.18) translate3d(0, -1.5%, 0);
  }

  75% {
    opacity: 0;
    transform: scale(1.22) translate3d(0, -3%, 0);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }

  75.01%,
  100% {
    opacity: 0;
  }
}

@keyframes clipFour {
  0%,
  72% {
    opacity: 0;
    transform: scale(1.18);
    clip-path: inset(42% 0 42% 0);
  }

  77% {
    opacity: 1;
    transform: scale(1.1);
    clip-path: inset(0 0 0 0);
  }

  95% {
    opacity: 1;
    transform: scale(1.22) translate3d(-2%, 0, 0);
  }

  100% {
    opacity: 0;
    transform: scale(1.26) translate3d(-4%, 0, 0);
  }
}

@keyframes slashCutA {
  0%,
  21%,
  27%,
  46%,
  52%,
  71%,
  77%,
  100% {
    opacity: 0;
    transform: translateX(-80%) skewX(-12deg);
  }

  23%,
  48%,
  73%,
  98% {
    opacity: 1;
    transform: translateX(84%) skewX(-12deg);
  }
}

@keyframes slashCutB {
  0%,
  22%,
  28%,
  47%,
  53%,
  72%,
  78%,
  100% {
    opacity: 0;
    transform: translateX(85%) skewX(16deg);
  }

  24%,
  49%,
  74%,
  99% {
    opacity: 0.62;
    transform: translateX(-78%) skewX(16deg);
  }
}

@keyframes flashPulse {
  0%,
  21%,
  27%,
  46%,
  52%,
  71%,
  77%,
  96%,
  100% {
    opacity: 0;
    transform: scale(0.7);
  }

  23%,
  48%,
  73%,
  98% {
    opacity: 0.82;
    transform: scale(1.6);
  }
}

@keyframes burstSpin {
  from {
    transform: rotate(0deg) scale(1);
  }

  to {
    transform: rotate(360deg) scale(1.08);
  }
}

@keyframes scanMove {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 80px, 240px 0;
  }
}

@media (max-width: 1060px) {
  .site-header {
    flex-wrap: wrap;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand {
    min-width: 0;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    margin: 4px 0 0;
    gap: 28px;
    font-size: 15px;
  }

  .nav-item > a {
    min-height: 36px;
    white-space: nowrap;
  }

  .nav-menu {
    top: 36px;
  }

  .nav-tools {
    margin-left: auto;
    gap: 20px;
  }

  .nav-menu {
    left: 0;
    transform: translateY(8px);
  }

  .nav-item:hover .nav-menu,
  .nav-item:focus-within .nav-menu,
  .nav-item.is-open .nav-menu {
    transform: translateY(0);
  }

  .opening,
  .hero-metrics,
  .capability-grid,
  .outcome-grid,
  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .narrative article,
  .solution-shell,
  .solution-feature,
  .evidence,
  .contact,
  .statement,
  .section-head {
    grid-template-columns: 1fr;
  }

  .narrative article:nth-child(even) img {
    order: 0;
  }

  .solution-menu {
    border-right: 0;
  }

  .solution-feature {
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: fixed;
    min-height: 66px;
    padding: 0 18px;
  }

  .brand span {
    font-size: 14px;
  }

  .brand img {
    width: 62px;
  }

  .nav-tools {
    gap: 14px;
  }

  .icon-button {
    width: 30px;
    height: 30px;
  }

  .hero {
    min-height: 780px;
  }

  .opening {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .capability-grid,
  .outcome-grid,
  .evidence-list,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: 104px;
  }

  .narrative article {
    min-height: 0;
  }

  .narrative img {
    min-height: 280px;
  }

  .capability-grid a,
  .insight-grid article {
    min-height: 245px;
  }

  .capability-grid span,
  .insight-grid span {
    margin-bottom: 44px;
  }

  .site-footer {
    flex-direction: column;
  }
}

/* Keep the interactive entry above the legacy opening layout rules. */
.opening.protection-entry {
  display: flex;
  grid-template-columns: none;
  min-height: min(760px, 82vh);
  padding: 0;
  gap: 0;
  align-items: stretch;
}

.narrative,
.solutions,
.contact { background: var(--medical-green-deep); }

.statement,
.visual-gallery,
.outcomes,
.insights { background: var(--medical-green-light); }

.product-stage { background: linear-gradient(180deg, #f1f8ff, #e0effd 62%, #f8fbff); }

@media (max-width: 760px) {
  .opening.protection-entry { min-height: 620px; overflow-x: auto; }
}

/* Four dividers, one shared photograph, and one active blue information layer. */
.opening.protection-entry {
  position: relative;
  isolation: isolate;
  background: var(--medical-green-dark);
  margin-top: 0;
  width: 100%;
  height: 760px;
  min-height: 760px;
  border-top: 2px solid rgba(0, 127, 209, 0.7);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.hero-media #maskFilm { display: none; }

.protection-heading {
  padding: clamp(86px, 10vw, 150px) clamp(24px, 7vw, 120px) clamp(34px, 4vw, 58px);
  background: #062c5c;
  color: #fff;
  text-align: left;
}

.protection-heading .kicker { margin-bottom: 18px; }

.protection-heading h2 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(42px, 7vw, 96px);
}

.protection-heading > p:last-child {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.5vw, 22px);
}

.opening.protection-entry::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(180deg, rgba(0, 35, 25, 0.02), rgba(0, 35, 25, 0.2)), var(--entry-image);
  background-position: center;
  background-size: cover;
  filter: brightness(1.2) saturate(1.16) contrast(1.04);
  transition: background-image 260ms ease;
}

.opening.protection-entry::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.opening.protection-entry .protection-panel {
  z-index: 1;
  background: transparent;
  border-right: 1px solid rgba(232, 255, 245, 0.72);
}

.opening.protection-entry .protection-panel::before {
  background: transparent;
  opacity: 1;
  filter: none;
  transform: none;
}

.opening.protection-entry .protection-panel::after {
  background: transparent;
}

.opening.protection-entry .protection-panel.is-active {
  background: rgba(0, 127, 209, 0.58);
}

.opening.protection-entry .protection-panel.is-active::after {
  background: linear-gradient(180deg, rgba(0, 195, 140, 0.12), rgba(0, 105, 78, 0.58));
}

.opening.protection-entry .protection-panel:not(.is-active) strong,
.opening.protection-entry .protection-panel:not(.is-active) small,
.opening.protection-entry .protection-panel:not(.is-active) i {
  opacity: 0;
  transform: translateY(12px);
}

.opening.protection-entry .protection-panel strong,
.opening.protection-entry .protection-panel small,
.opening.protection-entry .protection-panel i {
  transition: opacity 220ms ease, transform 220ms ease;
}

.opening.protection-entry .protection-panel.is-active strong,
.opening.protection-entry .protection-panel.is-active small,
.opening.protection-entry .protection-panel.is-active i {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .opening.protection-entry { height: 620px; min-height: 620px; }
  .opening.protection-entry .protection-panel { flex: 0 0 62vw; }
  .opening.protection-entry .protection-panel.is-active { flex-basis: 78vw; }
}

/* Clean international header based on the supplied enterprise reference. */
.site-header.enterprise-header {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(280px, 1fr) minmax(220px, 280px);
  grid-template-rows: 82px 54px;
  align-items: center;
  min-height: 136px;
  padding: 0 clamp(28px, 5.5vw, 100px);
  border-bottom: 1px solid #dce6f1;
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 2px 12px rgba(0, 67, 145, 0.05);
}

.enterprise-header .brand {
  grid-column: 1;
  grid-row: 1;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}

.enterprise-header .brand img {
  width: min(250px, 100%);
  height: 58px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: normal;
}

.header-search {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  width: min(100%, 720px);
  height: 50px;
  justify-self: center;
  overflow: hidden;
  border: 1px solid #d8ddda;
  border-radius: 26px;
  background: #fff;
}

.header-search input {
  min-width: 0;
  flex: 1;
  padding: 0 20px;
  border: 0;
  outline: 0;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.header-search button {
  width: 70px;
  border: 0;
  background: #4a4d4b;
  cursor: pointer;
}

.search-glyph,
.search-glyph::after {
  display: block;
  position: relative;
}

.search-glyph {
  width: 18px;
  height: 18px;
  margin: auto;
  border: 2px solid #fff;
  border-radius: 50%;
}

.search-glyph::after {
  content: "";
  width: 9px;
  height: 2px;
  right: -7px;
  bottom: -5px;
  background: #fff;
  transform: rotate(45deg);
}

.enterprise-header .nav-tools {
  grid-column: 3;
  grid-row: 1;
  justify-content: flex-end;
  gap: 12px;
  color: #405e7a;
  font-size: 14px;
}

.header-language {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #31577f;
}

.header-language::after {
  content: "";
  position: absolute;
  right: 13px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  pointer-events: none;
  transform: translateY(-2px) rotate(45deg);
}

.header-language-select {
  min-height: 42px;
  max-width: 148px;
  padding: 0 34px 0 14px;
  appearance: none;
  border: 1px solid #9fb8cf;
  border-radius: 0;
  outline: 0;
  background: #fff;
  color: inherit;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.header-language-select:hover,
.header-language-select:focus-visible {
  border-color: #087fd1;
  box-shadow: 0 0 0 3px rgba(8, 127, 209, .14);
}

.google-translate-host {
  position: fixed !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.goog-te-banner-frame,
.goog-te-balloon-frame,
iframe.skiptranslate,
#goog-gt-tt { display: none !important; }

body { top: 0 !important; }
.header-globe { border: 0; background: transparent; color: var(--ink); font-size: 25px; cursor: pointer; }
.header-chevron { color: var(--ink); font-size: 20px; }
.header-account { margin-left: 16px; font-size: 15px; white-space: nowrap; }
.header-account:first-letter { font-size: 24px; }

.enterprise-header .nav {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: stretch;
  justify-content: flex-start;
  gap: clamp(30px, 4vw, 64px);
  margin: 0;
  color: #234b77;
  font-size: 17px;
}

.enterprise-header .nav-item > a {
  min-height: 54px;
}

.enterprise-header .nav-item > a:hover,
.enterprise-header .nav-item:focus-within > a,
.enterprise-header .nav-item.is-open > a {
  color: var(--medical-green-deep);
  border-bottom-color: var(--medical-green);
}

.enterprise-header .nav-menu {
  top: calc(100% - 1px);
  background: rgba(255, 255, 255, 0.98);
  border-top-color: var(--medical-green);
  box-shadow: 0 18px 35px rgba(0, 67, 145, 0.14);
}

.enterprise-header .nav-menu a { color: #31577f; }
.enterprise-header .nav-menu a:hover,
.enterprise-header .nav-menu a:focus-visible { color: var(--medical-green-deep); background: #e8f3ff; }

@media (max-width: 1060px) {
  .site-header.enterprise-header {
    grid-template-columns: minmax(140px, 1fr) auto;
    grid-template-rows: 70px 48px;
    min-height: 118px;
    padding: 0 24px;
  }
  .enterprise-header .brand { grid-column: 1; }
  .enterprise-header .brand img { width: 180px; height: 48px; }
  .enterprise-header .header-search { display: none; }
  .enterprise-header .nav-tools { grid-column: 2; }
  .enterprise-header .nav { grid-row: 2; }
}

@media (max-width: 640px) {
  .site-header.enterprise-header { padding: 0 16px; }
  .enterprise-header .brand img { width: 150px; }
  .enterprise-header .nav-tools { gap: 6px; font-size: 11px; }
  .header-locale, .header-account span, .header-chevron:last-child { display: none; }
  .enterprise-header .nav { gap: 24px; }
}

/* Product directory inspired by the supplied 3M industry/category layout. */
.product-directory {
  background: #f4f8fd;
}

.solutions {
  background:
    linear-gradient(90deg, rgba(3, 24, 61, 0.78), rgba(4, 67, 137, 0.58)),
    url('../assets/solutions-bg.jpg') center / cover no-repeat;
}

.product-directory .section-head {
  grid-template-columns: .42fr 1fr;
  align-items: start;
}

.product-directory .section-head h2 {
  max-width: 720px;
  color: #123f73;
}

.product-directory-shell {
  display: grid;
  grid-template-columns: minmax(250px, .38fr) minmax(0, 1fr);
  min-height: 620px;
  border-top: 1px solid #b9d4ec;
  border-left: 1px solid #b9d4ec;
  background: #fff;
}

.product-category-list {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-right: 1px solid #b9d4ec;
  background: #fff;
}

.product-category-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 28px;
  border: 0;
  border-bottom: 1px solid #d5e5f4;
  background: #fff;
  color: #102a52;
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, padding 180ms ease;
}

.product-category-list button span {
  color: var(--medical-green);
  font-size: 25px;
  font-weight: 500;
}

.product-category-list button:hover,
.product-category-list button:focus-visible,
.product-category-list button.is-active {
  padding-left: 38px;
  background: var(--medical-green);
  color: #fff;
  outline: 0;
}

.product-category-list button:hover span,
.product-category-list button:focus-visible span,
.product-category-list button.is-active span { color: #fff; }

.product-feature {
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
  min-width: 0;
  background: #fff;
}

.product-feature-image {
  min-height: 360px;
  background-position: center;
  background-size: cover;
  filter: saturate(1.08) contrast(1.03);
  transition: background-image 260ms ease;
}

.product-feature-copy {
  padding: 34px 42px 38px;
}

.product-feature-copy h3 {
  margin-bottom: 14px;
  color: #123f73;
  font-size: clamp(28px, 3vw, 48px);
}

.product-feature-copy > p:not(.kicker) {
  max-width: 880px;
  margin-bottom: 16px;
  color: #5e7591;
  font-size: 17px;
  line-height: 1.55;
}

.product-tags {
  margin-bottom: 22px;
  color: var(--medical-green-deep);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.product-feature .text-link {
  color: var(--medical-green-deep);
  font-weight: 900;
  border-bottom-color: var(--medical-green);
}

@media (max-width: 760px) {
  .product-directory .section-head { grid-template-columns: 1fr; }
  .product-directory-shell { grid-template-columns: 1fr; min-height: 0; }
  .product-category-list { border-right: 0; }
  .product-category-list button { min-height: 58px; padding: 0 20px; }
  .product-category-list button:hover,
  .product-category-list button:focus-visible,
  .product-category-list button.is-active { padding-left: 28px; }
  .product-feature { grid-template-rows: 280px auto; }
  .product-feature-image { min-height: 280px; }
  .product-feature-copy { padding: 28px 22px 32px; }
}

/* Full-bleed content canvas: the reference layout uses color blocks to define sections. */
body,
body.subpage { background: #fff; }

main#top > section {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

main#top > section.hero {
  width: 100%;
}

body.subpage .subpage-main > .breadcrumb,
body.subpage .subpage-main > section {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

/* Deep-blue panel field with a restrained red reference accent. */
.opening.protection-entry {
  background: #062c5c;
  border-top-color: #d52f3f;
}

.opening.protection-entry::before {
  background-color: #062c5c;
  background-image: linear-gradient(180deg, rgba(3, 26, 61, 0.06), rgba(3, 35, 77, 0.16)), var(--entry-image);
  background-position: center;
  background-size: cover;
  filter: brightness(1.14) saturate(1.12) contrast(1.04);
}

.opening.protection-entry::after {
  background: transparent;
}

.opening.protection-entry .protection-panel {
  background: transparent;
  border-right-color: rgba(213, 238, 255, 0.64);
}

.opening.protection-entry .protection-panel::before {
  background: transparent;
  opacity: 0;
  filter: none;
}

.opening.protection-entry .protection-panel::after {
  background: transparent;
}

.opening.protection-entry .protection-panel.is-active {
  background: transparent;
  flex: 1.55 1 0;
  box-shadow: inset 0 4px 0 #075aa8;
}

.opening.protection-entry .protection-panel.is-active::after {
  background: rgba(8, 127, 209, 0.58);
}

.partners-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.36fr) minmax(0, 0.64fr);
  min-height: clamp(520px, 58vw, 760px);
  background: #062c5c;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.partners-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 116px) clamp(30px, 5.5vw, 92px);
}

.partners-copy .kicker {
  color: #4cb8ff;
}

.partners-copy h2 {
  max-width: 660px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(44px, 5.7vw, 92px);
  line-height: 0.98;
}

.partners-copy p:last-child {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.58;
}

.partners-media {
  position: relative;
  min-height: 520px;
  background: #031a3d;
  overflow: hidden;
}

.partners-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 44, 92, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(3, 26, 61, 0.18), rgba(3, 26, 61, 0.05));
  pointer-events: none;
}

.partners-media video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06);
  display: block;
}

@media (max-width: 640px) {
  main#top > section,
  main#top > section.hero,
  body.subpage .subpage-main > .breadcrumb,
  body.subpage .subpage-main > section {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .partners-showcase {
    grid-template-columns: 1fr;
  }

  .partners-media {
    min-height: 360px;
  }
}

/* Investor-relations navigation inspired by Honeywell's corporate portal. */
.site-header.honeywell-inspired { border-bottom: 0; box-shadow: 0 4px 16px rgba(4, 34, 76, 0.12); }
.honeywell-inspired .nav { align-items: stretch; background: #062c5c; color: #fff; margin: 0 calc(clamp(28px, 5.5vw, 100px) * -1); padding: 0 clamp(28px, 5.5vw, 100px); gap: clamp(20px, 3vw, 48px); }
.honeywell-inspired .nav-item > a { color: #fff; font-size: 15px; letter-spacing: .01em; }
.honeywell-inspired .nav-item > a:hover,
.honeywell-inspired .nav-item:focus-within > a,
.honeywell-inspired .nav-item.is-open > a { color: #fff; border-bottom-color: #f36c21; }
.honeywell-inspired .nav-menu { min-width: 238px; border-top: 3px solid #f36c21; background: #062c5c; box-shadow: 0 18px 36px rgba(3, 26, 61, 0.28); }
.honeywell-inspired .nav-menu a { color: rgba(255, 255, 255, .88); border-bottom-color: rgba(255, 255, 255, .12); }
.honeywell-inspired .nav-menu a:hover,
.honeywell-inspired .nav-menu a:focus-visible { color: #fff; background: #0b4b9b; }
@media (max-width: 1060px) { .honeywell-inspired .nav { margin: 0 -24px; padding: 0 24px; overflow-x: auto; } }
@media (max-width: 640px) { .honeywell-inspired .nav { margin: 0 -16px; padding: 0 16px; gap: 22px; } .honeywell-inspired .nav-item > a { font-size: 13px; } }

/* Keep the What We Do introduction consistent with the deep-blue portal bands. */
.product-directory > .section-head {
  margin: 0;
  padding: clamp(72px, 9vw, 128px) clamp(24px, 7vw, 120px) clamp(42px, 5vw, 72px);
  background: #062c5c;
  color: #fff;
}
.product-directory > .section-head h2 { color: #fff; }
.product-directory > .section-head .kicker { color: #4cb8ff; }

.solutions-footnote {
  margin: clamp(30px, 5vw, 58px) auto 0;
  max-width: 1400px;
  color: #fff;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}

.hero-message {
  position: absolute;
  left: clamp(28px, 5vw, 76px);
  bottom: clamp(88px, 13vh, 150px);
  z-index: 5;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4.2vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 20, 50, 0.38);
}

@media (max-width: 640px) {
  .hero-message {
    left: 24px;
    bottom: 88px;
    font-size: clamp(28px, 9vw, 44px);
  }
}

/* Give the rotating globe more visual weight and keep the contact copy compact. */
.solutions .solution-feature {
  grid-template-columns: minmax(0, .95fr) minmax(260px, 1.05fr);
  gap: clamp(24px, 3vw, 50px);
  padding-right: clamp(24px, 4vw, 64px);
}
.solutions .solution-globe {
  width: min(100%, clamp(340px, 30vw, 520px));
}
.solutions .solution-feature h3 {
  max-width: 430px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

@media (max-width: 860px) {
  .solutions .solution-feature {
    grid-template-columns: 1fr;
    padding-right: 0;
  }
  .solutions .solution-globe { width: min(100%, 420px); }
}

/* Homepage UX optimization: predictable controls, touch support and clear feedback. */
html { scroll-padding-top: 150px; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: #fff;
  color: #062c5c;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #4cb8ff;
  outline-offset: 3px;
}
.page-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  pointer-events: none;
}
.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #4cb8ff, #087fd1);
  transform: scaleX(0);
  transform-origin: left center;
}

/* Header and navigation. */
.ux-header { transition: box-shadow 180ms ease, background 180ms ease; }
.ux-header.is-scrolled { box-shadow: 0 8px 30px rgba(3, 32, 72, .16); }
.ux-header .nav-item { align-items: stretch; }
.ux-header .nav-parent-link[aria-current="page"],
.ux-header .nav-menu a[aria-current="page"] { font-weight: 900; }
.nav-submenu-toggle {
  display: grid;
  width: 32px;
  min-height: 54px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.nav-submenu-toggle span {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}
.nav-item.is-open .nav-submenu-toggle span { transform: translateY(2px) rotate(225deg); }
.header-contact-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid #087fd1;
  color: #075aa8;
  font-weight: 800;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}
.header-contact-link:hover { background: #075aa8; color: #fff; }
.mobile-nav-toggle { display: none; }
.header-search { position: relative; overflow: visible; }
.header-search-results {
  position: absolute;
  z-index: 90;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  overflow: hidden;
  border: 1px solid #d3e2ef;
  background: #fff;
  box-shadow: 0 18px 42px rgba(3, 32, 72, .18);
}
.header-search-results a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid #e2ebf3;
  color: #102a52;
  font-weight: 750;
}
.header-search-results a:hover,
.header-search-results a:focus-visible { background: #edf6ff; color: #075aa8; }
.header-search-results p { margin: 0; padding: 16px 18px; color: #66788f; font-size: 14px; line-height: 1.45; }

/* Video controls and motion-aware playback. */
.hero,
.partners-media { position: relative; }
.media-play-toggle {
  position: absolute;
  z-index: 12;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(3, 26, 61, .72);
  color: #fff;
  font: inherit;
  cursor: pointer;
  backdrop-filter: blur(9px);
  transition: background 160ms ease, transform 160ms ease;
}
.media-play-toggle:hover { background: #075aa8; transform: translateY(-2px); }
.media-play-toggle span { display: grid; width: 18px; height: 18px; place-items: center; font-size: 12px; }
.media-play-toggle b { font-size: 13px; }
.hero .media-play-toggle { bottom: 28px; }

/* Strength panels. */
.opening.protection-entry { scroll-snap-type: x proximity; }
.opening.protection-entry .protection-panel { scroll-snap-align: center; }
.opening.protection-entry .protection-panel a { min-height: 100%; }
.opening.protection-entry .protection-panel:not(.is-active) { cursor: pointer; }
.opening.protection-entry .protection-panel:not(.is-active)::after { transition: background 200ms ease; }
.opening.protection-entry .protection-panel:not(.is-active):hover::after { background: rgba(8, 127, 209, .18); }
.protection-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px 22px;
  background: #062c5c;
}
.protection-controls button {
  display: grid;
  width: 50px;
  min-height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.26);
  background: transparent;
  color: rgba(255,255,255,.62);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: width 180ms ease, color 180ms ease, background 180ms ease;
}
.protection-controls button:hover { color: #fff; border-color: rgba(255,255,255,.65); }
.protection-controls button[aria-pressed="true"] { width: 72px; background: #087fd1; color: #fff; border-color: #4cb8ff; }

/* Product selector. */
.product-category-list button:hover:not(.is-active) {
  padding-left: 32px;
  background: #edf6ff;
  color: #075aa8;
}
.product-category-list button:hover:not(.is-active) span { color: #087fd1; }
.product-feature {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease;
}
.product-feature-copy { transition: opacity 160ms ease, transform 220ms cubic-bezier(.2,.8,.2,1); }
.product-feature.is-changing .product-feature-copy { opacity: .58; transform: translateY(6px); }

/* Scroll feedback and form states. */
.ux-ready .ux-reveal { opacity: 0; transform: translateY(26px); transition: opacity 520ms ease, transform 520ms cubic-bezier(.2,.8,.2,1); }
.ux-ready .ux-reveal.is-visible { opacity: 1; transform: none; }
.quote-form input:invalid:not(:placeholder-shown),
.quote-form textarea:invalid:not(:placeholder-shown) { border-color: #c71835; }
.quote-status { min-height: 20px; margin: 12px 0 0; color: #d7eeff; font-size: 13px; line-height: 1.45; }
.back-to-top {
  position: fixed;
  z-index: 25;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid #cde0f1;
  border-radius: 50%;
  background: #fff;
  color: #075aa8;
  box-shadow: 0 10px 28px rgba(3,32,72,.18);
  font: inherit;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, color 160ms ease, background 160ms ease;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { background: #075aa8; color: #fff; }

@media (max-width: 1060px) {
  html { scroll-padding-top: 78px; }
  body.nav-lock { overflow: hidden; }
  .ux-header.enterprise-header {
    grid-template-columns: minmax(150px, 1fr) auto;
    grid-template-rows: 74px;
    min-height: 74px;
    padding: 0 20px;
  }
  .ux-header .enterprise-header .brand,
  .ux-header.enterprise-header .brand { grid-column: 1; grid-row: 1; }
  .ux-header.enterprise-header .brand img { width: 176px; height: 48px; }
  .ux-header.enterprise-header .nav-tools { grid-column: 2; grid-row: 1; }
  .header-language-select { max-width: 114px; min-height: 40px; padding-left: 11px; font-size: 12px; }
  .header-contact-link { min-height: 40px; padding: 0 12px; font-size: 12px; }
  .mobile-nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .mobile-nav-toggle span { width: 23px; height: 2px; background: #102a52; transition: transform 180ms ease, opacity 180ms ease; }
  .mobile-nav-open .mobile-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-nav-open .mobile-nav-toggle span:nth-child(2) { opacity: 0; }
  .mobile-nav-open .mobile-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .ux-header.enterprise-header .nav {
    position: fixed;
    z-index: 74;
    top: 74px;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    width: auto;
    margin: 0;
    padding: 82px 20px 34px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow: auto;
    background: #062c5c;
  }
  .ux-header.mobile-nav-open .nav { display: flex; }
  .ux-header.enterprise-header .header-search { display: none; }
  .ux-header.mobile-nav-open .header-search {
    position: fixed;
    z-index: 76;
    top: 88px;
    left: 20px;
    right: 20px;
    display: flex;
    width: auto;
    height: 48px;
  }
  .ux-header .nav-item {
    display: grid;
    grid-template-columns: 1fr 52px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
  .ux-header .nav-item > a { min-height: 58px; padding: 0 4px; font-size: 17px; }
  .ux-header .nav-submenu-toggle { min-height: 58px; color: #fff; }
  .ux-header .nav-menu {
    position: static;
    grid-column: 1 / -1;
    display: none;
    min-width: 0;
    padding: 0 0 12px 14px;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .ux-header .nav-item.is-open .nav-menu { display: block; transform: none; }
  .ux-header .nav-menu a { min-height: 46px; padding: 12px 16px; color: rgba(255,255,255,.78); }
}

@media (max-width: 760px) {
  .header-contact-link { display: none; }
  .ux-header.enterprise-header .brand img { width: 158px; }
  .hero .media-play-toggle { right: 18px; bottom: 20px; }
  .hero-message { bottom: 104px; }
  .partners-media .media-play-toggle { right: 16px; bottom: 16px; }
  .opening.protection-entry {
    height: 580px;
    min-height: 580px;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
  }
  .opening.protection-entry .protection-panel { flex-basis: 84vw; }
  .opening.protection-entry .protection-panel.is-active { flex-basis: 84vw; }
  .protection-controls { position: sticky; left: 0; justify-content: flex-start; overflow-x: auto; }
  .back-to-top { right: 18px; bottom: 20px; width: 46px; height: 46px; }
}

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

/* Contact Us information architecture: sample and factory visit are tertiary services. */
.ux-header .nav-menu-group{border-bottom:1px solid rgba(255,255,255,.13)}
.ux-header .nav-menu-group>.nav-menu-heading{padding-bottom:8px;color:#fff;font-size:11px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.ux-header .nav-tier-three{padding:0 0 9px}
.ux-header .nav-tier-three a{position:relative;padding:8px 22px 8px 36px;color:rgba(255,255,255,.72);font-size:13px}
.ux-header .nav-tier-three a::before{position:absolute;left:22px;top:50%;width:6px;height:1px;background:#55c7e8;content:""}
@media(max-width:1060px){
  .ux-header .nav-menu-group{border-bottom:0}
  .ux-header .nav-menu-group>.nav-menu-heading{min-height:38px;padding:10px 16px 5px;color:#67d5ef;font-size:10px}
  .ux-header .nav-tier-three{padding:0 0 8px 10px;border-left:1px solid rgba(85,199,232,.34)}
  .ux-header .nav-tier-three a{min-height:40px;padding:10px 16px 10px 30px;font-size:14px}
  .ux-header .nav-tier-three a::before{left:16px}
}
