:root{
  --tc-teal: #00918A;
  --tc-orange-left: #f4792d;
  --tc-orange-right: #f8951d;
  --accent-orange: var(--tc-orange-left);
  --hero-bg-1: #070b12;
  --hero-bg-2: #0b1526;
  --hero-interior-padding-y: clamp(2.75rem, 5vw, 4.25rem);
  --hero-interior-padding-bottom: clamp(2.25rem, 4.5vw, 3.75rem);
}

.accent{
  color: var(--accent-orange);
}

html, body { height: 100%; }
body{
  margin: 0;
  overflow-x: hidden;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: #0b1020;
}

.site-hero{
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(900px 500px at 20% 15%, rgba(0,145,138,.35), transparent 60%),
    radial-gradient(700px 450px at 80% 30%, rgba(244,121,45,.20), transparent 60%),
    linear-gradient(135deg, var(--hero-bg-1), var(--hero-bg-2));
}

/* Interior pages — hero only as tall as content, shared padding */
.site-hero--compact{
  min-height: 0;
}

/* Nav-only compact headers (no .cap-hero) — allow dropdown menus to extend below the bar */
.site-hero--compact:not(:has(.cap-hero)){
  overflow: visible;
}

.site-hero--compact .cap-hero{
  padding: var(--hero-interior-padding-y) 0 var(--hero-interior-padding-bottom);
}

.site-hero--compact .hero-content{
  padding: var(--hero-interior-padding-y) 0 var(--hero-interior-padding-bottom);
}

.site-hero--compact .cap-hero-visual{
  min-height: 0;
}

.site-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 0 0),
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.06) 0px,
      rgba(255,255,255,.06) 1px,
      transparent 1px,
      transparent 14px
    );
  opacity: .30;
  pointer-events: none;
}

.site-hero::before,
.site-hero::after{
  z-index: 0;
}

.site-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.75), rgba(0,0,0,.10) 60%, rgba(0,0,0,.00));
  pointer-events: none;
}

.navbar-overlay,
.hero-content,
.proof-strip{
  position: relative;
  z-index: 1;
}

.hero-content{
  z-index: 1;
}

/* Site header: secondary utility bar + main nav — must sit above hero content for dropdown clicks */
.site-header-nav{
  position: relative;
  z-index: 200;
  flex-shrink: 0;
}

.navbar-secondary{
  position: relative;
  z-index: 201;
  background: rgba(0, 0, 0, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.navbar-secondary__list{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.35rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  width: 100%;
}

.navbar-secondary__item--external{
  margin-left: 0.5rem;
}

.navbar-secondary__link--external{
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.navbar-secondary__link--external .bi{
  font-size: 0.9em;
  opacity: 0.82;
  line-height: 1;
}

.navbar-secondary__link{
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  padding: 0.15rem 0 0.35rem;
  transition: color 0.18s ease;
}

.navbar-secondary__link:hover,
.navbar-secondary__link:focus{
  color: #fff;
}

.navbar-secondary__link.active{
  color: #fff;
}

.navbar-overlay{
  background: rgba(0,0,0,.10);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.navbar-tc-main.navbar-overlay{
  position: relative;
  z-index: 202;
  background: #343a40;
  backdrop-filter: none;
}

.navbar-tc-main .dropdown-menu{
  z-index: 1200;
  min-width: 13rem;
  padding: 0.45rem 0;
  margin-top: 0.35rem;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.55);
}

.navbar-tc-main .dropdown-item{
  padding: 0.6rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.35;
}

.navbar-tc-main .dropdown-item:hover,
.navbar-tc-main .dropdown-item:focus{
  background: rgba(244, 121, 45, 0.18);
  color: #fff;
}

.navbar-tc-main .navbar-nav-tc .nav-link{
  color: #fff;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.navbar-tc-main .navbar-nav-tc .nav-link:hover,
.navbar-tc-main .navbar-nav-tc .nav-link:focus{
  color: #fff;
}

.navbar-tc-main .navbar-nav-tc .nav-link.active{
  color: #fff;
}

.navbar-tc-main .tc-nav-chevron{
  color: var(--tc-orange-left);
  font-size: 0.7em;
  margin-left: 0.1rem;
}

.navbar-tc-main .dropdown-toggle::after{
  display: none;
}

.navbar .nav-link{
  color: rgba(255,255,255,.85);
}

.navbar .nav-link:hover{
  color: #fff;
}

@media (min-width: 992px){
  .navbar-nav .btn-tc-primary.btn-sm{
    padding: 0.55rem 1.4rem;
    font-size: 1.05rem;
    line-height: 1.45;
  }
}

.brand-mark svg{
  height: 32px;
  width: auto;
  display: block;
}

.btn-tc-primary{
  background: transparent;
  border: 2px solid var(--tc-teal);
  color: #fff;
  box-shadow:
    0 0 18px rgba(0, 145, 138, 0.42),
    0 0 36px rgba(0, 145, 138, 0.16),
    inset 0 0 0 1px rgba(255,255,255,.08);
}

.btn-tc-primary:hover{
  background: rgba(0,145,138,.12);
  border-color: var(--tc-teal);
  color: #fff;
  box-shadow:
    0 0 22px rgba(0, 145, 138, 0.55),
    0 0 44px rgba(0, 145, 138, 0.24),
    inset 0 0 0 1px rgba(255,255,255,.08);
}

.btn-outline-light{
  background: var(--tc-orange-left);
  border-color: var(--tc-orange-left);
  color: #fff;
}

.btn-outline-light:hover{
  background: #de6d27;
  border-color: #de6d27;
  color: #fff;
}

.btn-process-outline{
  background: transparent;
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
}

.btn-process-outline:hover{
  background: rgba(255,255,255,.1);
  border-color: #fff;
  color: #fff;
}

.btn-tc-filled{
  background: var(--tc-teal);
  border: 1px solid var(--tc-teal);
  color: #fff;
}

.btn-tc-filled:hover{
  background: #007a74;
  border-color: #007a74;
  color: #fff;
}

.hero-content{
  padding: clamp(6rem, 9.6vw, 8.4rem) 0 clamp(3rem, 4.8vw, 3.6rem);
}

/* Landing hero: same .container max-widths as Bootstrap (aligns with how-utility-incentives-work hero) */
@media (min-width: 576px){
  .hero-content--landing > .container{
    max-width: 540px;
  }
}
@media (min-width: 768px){
  .hero-content--landing > .container{
    max-width: 720px;
  }
}
@media (min-width: 992px){
  .hero-content--landing > .container{
    max-width: 960px;
  }
}
@media (min-width: 1200px){
  .hero-content--landing > .container{
    max-width: 1140px;
  }
}
@media (min-width: 1400px){
  .hero-content--landing > .container{
    max-width: 1320px;
  }
}

/* Landing hero fills the viewport; content vertically centers in remaining space */
.hero-content--landing{
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: 0;
}

/* Landing page only: row nudge for PNG alignment */
@media (min-width: 992px){
  .site-hero--landing .hero-content--landing{
    flex: 1 1 auto;
    justify-content: flex-end;
    min-height: 0;
  }

  .site-hero--landing .hero-content-row{
    align-items: flex-end;
    margin-bottom: 0;
  }

  .site-hero--landing .hero-visual-col{
    display: flex;
    align-items: flex-end;
  }

  .site-hero--landing .hero-visual{
    width: 100%;
    min-height: clamp(420px, calc(100svh - 11rem), 874px);
  }

  .site-hero--landing .hero-visual .hero-artboard{
    bottom: 0;
  }

  /* Copy / visual split: 40% / 60% */
  .hero-content--landing .hero-content-row .hero-copy{
    flex: 0 0 40%;
    width: 40%;
    max-width: 40%;
  }

  .hero-content--landing .hero-content-row .hero-visual-col{
    flex: 0 0 60%;
    width: 60%;
    max-width: 60%;
  }
}

.hero-copy{
  position: relative;
  z-index: 3;
}

.hero-content--landing .hero-copy{
  transform: translateY(-40px);
}

/* The TC Standard page — wide text banner, no building visual */
.hero-content--tc-standard .hero-copy{
  transform: none;
}

.hero-content--tc-standard .hero-title{
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1.55rem, 2.65vw, 2.25rem);
}

.hero-content--tc-standard .hero-question{
  font-size: clamp(1.05rem, 1.85vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255,255,255,.9);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.tc-standard-context{
  background: #f8f7f4;
  border-top: 1px solid rgba(0,0,0,.06);
}

.tc-standard-context-prose{
  margin-left: auto;
  margin-right: auto;
}

.tc-standard-context-lead{
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #1a1a1a;
}

/* Editorial lead-in + drop cap (first sentence only) */
.tc-standard-context-opener{
  display: flow-root;
  font-size: clamp(1.04rem, 1.35vw, 1.14rem);
  font-weight: 500;
  line-height: 1.52;
  letter-spacing: -0.008em;
  color: #161616;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0 0.25rem 0.85rem;
  border-left: 2px solid rgba(0,145,138,.45);
  background: linear-gradient(90deg, rgba(0,145,138,.035), transparent min(100%, 14rem));
}

.tc-standard-context-opener::first-letter{
  float: left;
  font-size: clamp(1.95rem, 4.2vw, 2.4rem);
  line-height: 0.92;
  font-weight: 700;
  padding-right: 0.28rem;
  margin-top: 0.03em;
  color: var(--tc-teal);
}

.tc-standard-context-body{
  font-weight: 400;
  color: rgba(0,0,0,.76);
}

.tc-standard-pillars{
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.06);
}

.tc-pillar-toggle-outer{
  width: 100%;
  max-width: min(100%, 42rem);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 576px){
  /*
    Outer is the positioning + stacking context. Track stays position:static so the & (absolute)
    is centered on the true seam (50% of outer), not the padded flex track box.
  */
  .tc-pillar-toggle-outer{
    position: relative;
    z-index: 0;
    isolation: isolate;
  }

  .tc-pillar-toggle-track.path-toggle-track{
    position: static;
    align-items: stretch;
    gap: 0;
  }

  /* Segmented control: flat inner edges so the & can straddle the seam */
  .tc-pillar-toggle-track > .tc-pillar-btn:first-child{
    border-radius: 10px 0 0 10px;
  }

  .tc-pillar-toggle-track > .tc-pillar-btn:last-child{
    border-radius: 0 10px 10px 0;
  }

  .tc-pillar-toggle-track > .tc-pillar-btn{
    position: relative;
    z-index: 1;
  }

  .tc-pillar-toggle-outer .tc-pillar-and-wrap{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(calc(-50% - 15px), -50%);
    margin: 0;
    z-index: 30;
  }

  .tc-pillar-btn{
    align-items: center;
    text-align: center;
  }

  .tc-pillar-btn .path-toggle-label{
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 575.98px){
  .tc-pillar-toggle-track > .tc-pillar-btn{
    border-radius: 12px;
  }

  .tc-pillar-and-wrap{
    margin: 0.15rem auto;
  }
}

/* Split teal / orange ampersand between the two pillars */
.tc-pillar-and-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  pointer-events: none;
  position: relative;
}

.tc-pillar-and-wrap::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.06),
    0 2px 10px rgba(0,0,0,.07);
  z-index: 0;
}

.tc-pillar-and{
  position: relative;
  z-index: 1;
  width: 1.85rem;
  height: 2.5rem;
}

.tc-pillar-and__layer{
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.tc-pillar-and__layer--teal{
  color: var(--tc-teal);
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.tc-pillar-and__layer--orange{
  color: var(--tc-orange-left);
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.tc-pillar-panel{
  border-style: solid;
  border-color: rgba(0,0,0,.08);
  background: #fff;
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
}

.tc-pillar-panel[hidden]{
  display: none !important;
}

.tc-pillar-panel-title{
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin-bottom: 1.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.tc-pillar-panel-title-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.tc-pillar-panel-title-icon--integration{
  background: linear-gradient(135deg, rgba(244,121,45,.18), rgba(248,149,29,.14));
  color: var(--tc-orange-left);
  border: 1px solid rgba(244,121,45,.28);
}

.tc-pillar-panel-title-icon--service{
  background: rgba(0,145,138,.12);
  color: var(--tc-teal);
  border: 1px solid rgba(0,145,138,.28);
}

.tc-pillar-item-list{
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.tc-pillar-item{
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.tc-pillar-item-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--tc-teal);
  background: rgba(0,145,138,.08);
  border: 1px solid rgba(0,145,138,.15);
}

#tc-pillar-panel-integration .tc-pillar-item-icon{
  color: var(--tc-orange-left);
  background: rgba(244,121,45,.08);
  border-color: rgba(244,121,45,.18);
}

.tc-pillar-item-lead{
  font-size: 1rem;
  color: #1a1a1a;
}

.tc-pillar-item .mb-0{
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(0,0,0,.72);
}

.tc-pillar-inline-link{
  font-weight: 600;
  color: var(--tc-teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,145,138,.35);
}

.tc-pillar-inline-link:hover{
  color: #007a74;
  border-bottom-color: rgba(0,122,116,.55);
}

.tc-standard-prose{
  color: #1a1a1a;
}

.tc-standard-prose p{
  line-height: 1.65;
}

/* Hero CTAs: a bit larger than default .btn; labels stay on one line from sm up */
.hero-content--landing .hero-cta-row .btn{
  padding: 0.7rem 1.55rem;
  font-size: 1.2rem;
  line-height: 1.5;
}

@media (min-width: 576px){
  .hero-content--landing .hero-cta-row{
    flex-wrap: nowrap;
    align-items: center;
  }

  .hero-content--landing .hero-cta-row .btn{
    white-space: nowrap;
  }
}

/* Space below headline; subtitle + CTAs follow */
.hero-content--landing .hero-copy .hero-title{
  margin-bottom: 1.4rem !important;
  font-size: clamp(3.45rem, 5.7vw, 5.25rem);
}
@media (min-width: 576px){
  .hero-content--landing .hero-copy .hero-title{
    margin-bottom: 1.65rem !important;
  }
}

/* Incentives hub hero — matches incentives.tccontrols.com (not main homepage scale) */
.hero-content--incentives-hub.hero-content--landing .hero-copy .hero-title{
  font-size: clamp(1.85rem, 3.05vw, 2.8rem);
  margin-bottom: 2.35rem !important;
}
@media (min-width: 576px){
  .hero-content--incentives-hub.hero-content--landing .hero-copy .hero-title{
    margin-bottom: 3.4rem !important;
  }

  .hero-content--incentives-hub.hero-content--landing #heroTitle2{
    white-space: normal;
  }
}

@media (max-width: 991.98px){
  .hero-content--incentives-hub.hero-content--landing .hero-copy .hero-title{
    font-size: clamp(2.2rem, 6.5vw, 2.65rem);
  }
}

@media (max-width: 575.98px){
  .hero-content--incentives-hub.hero-content--landing .hero-copy .hero-title{
    margin-bottom: 1.85rem !important;
  }
}

.hero-visual{
  position: relative;
  min-height: 874px;
}

.hero-artboard{
  position: absolute;
  right: 50px;
  bottom: 0px;
  width: min(115%, 1175px);
  aspect-ratio: 1536 / 1152;
  z-index: 2;
  overflow: visible;
}

.hero-building,
.particle-scene{
  position: absolute;
  top: 0;
  left: 60px;
  width: 100%;
  height: 100%;
}

/* Same inner offset as .hero-building so SVG circuits align with the PNG */
.particle-scene .circuit-traces,
.particle-scene .circuit-glow,
.particle-scene .hero-target-logo{
  position: absolute;
  top: 0;
  left: 60px;
  width: 100%;
  height: 100%;
}

.hero-building{
  z-index: 2;
  pointer-events: none;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.28));
  /* Soft fade on left + right edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 14%,
    black 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 30%,
    black 60%,
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.particle-scene{
  overflow: visible;
  pointer-events: none;
  z-index: 4;
}

.particle-node{
  position: absolute;
  width: 7.4px;
  height: 7.4px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: .9;
  box-shadow: 0 0 11px currentColor;
  will-change: left, top, opacity, background-color, transform;
  z-index: 5;
  transition: opacity 0.55s ease;
}

.particle-node.is-large{
  width: 8.7px;
  height: 8.7px;
}

.particle-node.is-roamer{
  width: 10.35px;
  height: 10.35px;
  box-shadow: 0 0 16px currentColor;
  opacity: .85;
}

.particle-node.is-overlay{
  z-index: 10;
}

.circuit-traces,
.circuit-glow{
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
  z-index: 3;
  transform: translateY(25px);
}

.circuit-traces svg,
.circuit-glow svg,
.hero-target-logo svg{
  width: 100%;
  height: 100%;
}

.circuit-glow{
  filter: blur(14px);
}

.circuit-traces .trace-outline--rail{
  stroke-dasharray: 22 26;
}

.hero-artboard.is-formed .circuit-traces .trace-outline--rail{
  animation: traceRace 14s linear infinite;
}

.hero-artboard.is-formed .circuit-traces .trace-outline--rail-b{
  animation-delay: -7s;
}

@media (prefers-reduced-motion: reduce){
  .hero-artboard.is-formed .circuit-traces .trace-outline--rail{
    animation: none;
  }
}

.hero-artboard.is-formed .circuit-traces{
  opacity: .32;
}

.hero-artboard.is-formed .circuit-glow{
  opacity: .32;
  filter: blur(22px) drop-shadow(0 0 18px rgba(244,121,45,0.55)) drop-shadow(0 0 36px rgba(248,149,29,0.35));
}

.hero-target-logo{
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  /* Same vertical offset as .circuit-traces / .circuit-glow so #targetPaths match visible tracers */
  transform: translateY(25px);
}

@keyframes traceRace{
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -220; }
}

.hero-kicker{
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 0.75rem;
}

.hero-content--landing .hero-kicker{
  font-size: clamp(0.875rem, 2.85vw, 1.05rem);
  margin-bottom: 0.95rem;
}

@media (min-width: 1200px){
  .hero-content--landing .hero-kicker{
    white-space: nowrap;
  }
}

.hero-title{
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(2.3rem, 3.8vw, 3.5rem);
}

.hero-title-line{
  display: inline;
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-title-line.is-visible{
  opacity: 1;
  transform: translateX(0);
}

.hero-title-sub{
  font-weight: 700;
  color: var(--tc-orange-left);
}

.hero-content--landing .hero-subtitle{
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  line-height: 1.55;
  color: rgba(255,255,255,.82);
  max-width: 42rem;
}

/* Keep stacked headline lines from awkward mid-phrase wraps */
@media (min-width: 576px){
  .hero-content--landing #heroTitle2,
  .hero-content--landing #heroTitle3{
    white-space: nowrap;
  }
}

/* Mobile / tablet: tighter hero bottom padding */
@media (max-width: 991.98px){
  .hero-content--landing{
    padding-bottom: clamp(0.65rem, 2.2vw, 1.1rem);
  }
}

/* ── Section 2 — full-viewport video + stacked copy ── */

.section-2{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(72vh, 700px);
  border-top: 0;
}

.section-2-video-layer{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-2-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  background: #0a0e12;
}

.section-2-scrim{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(8, 14, 22, 0.78) 0%,
    rgba(8, 14, 22, 0.42) 48%,
    rgba(8, 14, 22, 0.62) 100%
  );
  pointer-events: none;
}

.section-2-content{
  position: relative;
  z-index: 1;
  padding-top: clamp(4.5rem, 12vw, 7.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.25rem);
  min-height: min(58vh, 620px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-2-lead-col{
  display: flex;
  align-items: center;
}

.section-2-lead-heading{
  color: #fff;
  font-weight: 800;
  line-height: 1.18;
  font-size: clamp(1.35rem, 2.35vw, 2.05rem);
  letter-spacing: -0.02em;
  max-width: none;
}

.section-2-lead-heading .accent{
  color: var(--tc-orange-left);
}

.section-2-copy-col{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 991.98px){
  .section-2-copy-col{
    align-items: center;
  }
}

.section-2-body{
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  line-height: 1.6;
  max-width: 34rem;
  margin: 0;
}

.section-2-link{
  color: var(--tc-orange-left);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(244, 121, 45, 0.55);
  text-underline-offset: 0.18em;
}

.section-2-link:hover,
.section-2-link:focus-visible{
  color: var(--tc-orange-right);
  text-decoration-color: var(--tc-orange-left);
}

.section-2-cta{
  background: transparent;
  border: 2px solid var(--tc-orange-left);
  color: var(--tc-orange-left);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.65rem 1.35rem;
  box-shadow: none;
}

.section-2-cta:hover,
.section-2-cta:focus-visible{
  background: rgba(244, 121, 45, 0.1);
  border-color: var(--tc-orange-left);
  color: var(--tc-orange-left);
  box-shadow: none;
}

.section-2-lead-heading .section-2-heading-line{
  display: block;
}

.section-2-lead-heading .section-2-heading-line + .section-2-heading-line{
  margin-top: 0.18rem;
}

@media (min-width: 992px){
  .section-2-lead-heading .section-2-heading-line:first-child{
    white-space: nowrap;
  }
}

@media (min-width: 1200px){
  .section-2-lead-heading .section-2-heading-line:last-child{
    white-space: nowrap;
  }
}

.section-2-lead-heading .fade-in-late{
  display: inline;
  opacity: 0;
  transition: opacity 0.65s ease;
  transition-delay: 0ms;
}

.section-2.section-2--in-view .fade-in-late{
  opacity: 1;
  transition-delay: 0ms;
}

@media (prefers-reduced-motion: reduce){
  .section-2 .fade-in-late{
    opacity: 1;
    transition: none;
  }
}

.section-2-circuit-overlay{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section-2-circuit-svg{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.section-2-fork-glow{
  filter: blur(5px);
  pointer-events: none;
}

.section-2-fork-trace{
  opacity: 0;
  stroke-linecap: round;
}

.section-2-row{
  position: relative;
  z-index: 3;
}

@media (min-width: 992px){
  .section-2-row.section-2-row.row{
    --bs-gutter-x: clamp(2.75rem, 6.5vw, 5.75rem);
  }
}

.section-2-lead-heading .section-2-line2{
  color: var(--tc-orange-left);
  white-space: nowrap;
}

.section-2-lead-heading #section2Later{
  font-weight: 800;
}

.section-2-subpoints-col{
  position: relative;
  display: flex;
  align-items: center;
}

.section-2-subpoints-col > .section-2-subpoints{
  width: 100%;
}

.section-2-subpoints{
  display: flex;
  flex-direction: column;
  gap: clamp(2.85rem, 6.75vw, 4.25rem);
  max-width: 34rem;
}

.section-2-subpoint-inner{
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.section-2-node-anchor{
  flex: 0 0 11px;
  width: 11px;
  height: 11px;
  margin-top: 0.42rem;
  border-radius: 2px;
  background: #0c121a;
  border: 2px solid #e86f28;
  box-shadow: none;
}

.section-2-subpoint-copy{
  flex: 1 1 auto;
  min-width: 0;
}

.section-2-subpoint-lead{
  color: #fff;
  font-size: clamp(1.05rem, 1.65vw, 1.2rem);
  line-height: 1.35;
}

.section-2-subpoint-lead--nowrap{
  white-space: nowrap;
}

.section-2-subpoint-body{
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.0325rem;
  line-height: 1.55;
}

.section-2-subpoint{
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.section-2.section-2--subpoints-in .section-2-subpoint.section-2-subpoint--revealed{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce){
  .section-2.section-2--subpoints-in .section-2-subpoint{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section-2-fork-trace.section-2-fork-trace--live{
  animation: section2TraceRace 10s linear infinite;
}

@media (prefers-reduced-motion: reduce){
  .section-2-fork-trace.section-2-fork-trace--live{
    animation: none;
  }
}

@keyframes section2TraceRace{
  from{
    stroke-dashoffset: 0;
  }
  to{
    stroke-dashoffset: -7.1;
  }
}


/* ── BMS incentives hub — proof strip & sticky scroll ── */

.proof-strip{
  padding: 1.1rem 0 1.6rem;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}

/* Mobile / tablet: less air between hero CTAs ("See how it works") and proof strip */
@media (max-width: 991.98px){
  .hero-content--landing{
    padding-bottom: clamp(0.65rem, 2.2vw, 1.1rem);
  }

  .proof-strip{
    padding-top: 0.45rem;
  }
}

.proof-strip .proof-item{
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: .9rem 1rem;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.04);
}

.proof-strip .proof-item i{
  font-size: 1.2rem;
  line-height: 1;
  color: rgba(255,255,255,.9);
  margin-top: .15rem;
}

.proof-strip .proof-title{
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.proof-strip .proof-sub{
  font-size: .95rem;
  color: rgba(255,255,255,.72);
  margin-top: .15rem;
}

/* ── Sticky scroll section (building left, text panels right) ── */
/* Desktop text panels: sized for ~1440×900 and similar; short windows use more of dvh
   so headlines aren’t clipped (avoid clamp min 18rem when 46vh is smaller). */

.sticky-scroll-section{
  position: relative;
  z-index: 1;
  overflow-x: clip;
  background:
    radial-gradient(800px 440px at 22% 40%, rgba(0,145,138,.06), transparent 60%),
    radial-gradient(700px 420px at 76% 30%, rgba(244,121,45,.05), transparent 60%),
    #f8f7f4;
  border-top: 1px solid rgba(0,0,0,.06);
}

@media (min-width: 992px){
  .sticky-scroll-section{
    overflow-x: visible;
    min-height: 220vh;
    display: flex;
    flex-direction: column;
  }

  .sticky-scroll-visual{
    position: sticky;
    top: 0;
    align-self: flex-start;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    will-change: transform;
  }

  .sticky-text-viewport-wrap{
    position: sticky;
    top: 0;
    align-self: flex-start;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
  }

  .sticky-text-viewport{
    /* Cap at 32rem; on short viewports use up to 85vh so content fits (pairs with JS slide distance). */
    height: min(32rem, 85vh);
    height: min(32rem, 85dvh);
    overflow: hidden;
    width: 100%;
    position: relative;
  }

  .sticky-text-track{
    will-change: transform;
  }

  .sticky-text-track .sticky-copy-block{
    box-sizing: border-box;
    height: min(32rem, 85vh);
    height: min(32rem, 85dvh);
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0;
    padding: 0.75rem 0 1rem;
  }

  @supports (justify-content: safe center){
    .sticky-text-track .sticky-copy-block{
      justify-content: safe center;
    }
  }
}

.sticky-scroll-inner{
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 992px){
  .sticky-scroll-inner{
    padding-bottom: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
  }

  .sticky-scroll-inner > .row{
    flex: 1 1 auto;
  }
}

@media (max-width: 991.98px){
  .sticky-scroll-visual{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sticky-copy-block + .sticky-copy-block{
    margin-top: clamp(2rem, 4vw, 3rem);
  }
}

.sticky-scroll-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(0,0,0,.02) 0px,
      rgba(0,0,0,.02) 1px,
      transparent 1px,
      transparent 14px
    );
  opacity: .6;
  pointer-events: none;
}

.sticky-text-col{
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sticky-copy-block{
  max-width: 36rem;
}

.sticky-copy-block h2{
  color: #1a1a1a;
  font-weight: 800;
  line-height: 1.15;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: -0.02em;
}

.sticky-copy-block p{
  color: rgba(0,0,0,.70);
  font-size: 1.05rem;
}

/* Sticky panels 2 & 3: ~15% larger type than base .sticky-copy-block */
#panel2 h2,
#panel3 h2{
  font-size: clamp(1.84rem, 2.875vw, 2.53rem);
}

#panel2 p,
#panel3 p{
  font-size: 1.2075rem;
}

#panel2 .pain-list li,
#panel2 .pain-list i{
  font-size: 1.2075rem;
}

#panel2 .scroll-prompt{
  font-size: 1.0925rem;
}

#panel2 .scroll-prompt-arrow{
  font-size: 1.61rem;
}

/* Section 2 / panel 3 — “Learn more” CTA: larger, orange outline + text (matches scroll-prompt / TC orange) */
#panel3 .panel3-cta-btn{
  background: transparent;
  border: 2px solid var(--tc-orange-left);
  color: var(--tc-orange-left);
  font-weight: 700;
  font-size: 1.4375rem;
  padding-left: 1.35rem;
  padding-right: 1.35rem;
  box-shadow: none;
}

#panel3 .panel3-cta-btn:hover,
#panel3 .panel3-cta-btn:focus-visible{
  background: rgba(244,121,45,.1);
  border-color: var(--tc-orange-left);
  color: var(--tc-orange-left);
}

.scroll-prompt{
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 0.35rem;
  color: rgba(0,0,0,.55);
  font-size: 0.95rem;
  font-weight: 800;
}

.scroll-prompt-arrow{
  font-size: 1.4rem;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(6px); }
}

.pain-list li{
  color: rgba(0,0,0,.75);
}

.pain-list i{
  color: var(--tc-orange-left);
}

.pain-list{
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: .75rem;
}

.pain-list li{
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: 1.05rem;
}

.pain-list i{
  margin-top: .15rem;
  font-size: 1.05rem;
  flex: 0 0 auto;
}

.feature-graphic{
  position: relative;
  margin: 0 auto;
  max-width: 480px;
  min-height: 320px;
}

@media (max-width: 991.98px){
  .sticky-scroll-section .feature-graphic{
    margin-top: clamp(1.25rem, 3.5vh, 2.5rem);
  }
}

@media (min-width: 992px){
  .feature-graphic-col{
    align-self: stretch;
    overflow: visible;
  }

  /* Building stays inside the left column (no bleed). Do not use overflow:hidden here — it breaks
     position:sticky on .sticky-scroll-visual, so the graphic would scroll away instead of staying pinned. */
  .feature-graphic-col--contained{
    min-width: 0;
  }

  .feature-graphic.feature-graphic--contained{
    width: 100%;
    max-width: 100%;
    min-height: 540px;
    margin: 0;
  }

  .feature-graphic--contained .feature-graphic-img{
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    margin: 0;
    display: block;
    transform: scale(1.71) translateX(-10%);
    transform-origin: bottom center;
    will-change: filter, transform;
  }

  .feature-graphic.feature-graphic--bleed-left{
    max-width: none;
    width: min(265%, 1460px);
    min-height: 540px;
    margin-top: 0;
    margin-left: max(-68vw, -60rem);
    margin-right: auto;
  }

  .feature-graphic--bleed-left .feature-graphic-img{
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: contain;
    object-position: 65% center;
    margin: 0;
    display: block;
  }
}

.feature-graphic-img{
  position: relative;
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  will-change: filter;
}

/* ── BMS incentives hub — case study cards ── */

.case-studies-section{
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background:
    radial-gradient(800px 440px at 22% 40%, rgba(0,145,138,.06), transparent 60%),
    radial-gradient(700px 420px at 76% 30%, rgba(244,121,45,.05), transparent 60%),
    #f8f7f4;
  border-top: 1px solid rgba(0,0,0,.06);
}

.case-studies-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(0,0,0,.02) 0px,
    rgba(0,0,0,.02) 1px,
    transparent 1px,
    transparent 14px
  );
  opacity: .6;
  pointer-events: none;
}

.case-studies-section .container{
  position: relative;
  z-index: 1;
}

.case-studies-intro{
  max-width: 40rem;
}

.case-studies-section-title{
  font-weight: 800;
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  color: #1a1a1a;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.case-study-card{
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease;
}

/* No transform on the card: CSS transform on an ancestor breaks Leaflet tile alignment. */
.case-study-card:hover{
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}

.case-studies-list{
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 64rem;
  margin-inline: auto;
}

@media (min-width: 992px){
  .case-study-card--wide{
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
  }

  .case-study-card--wide:nth-child(even) .case-study-image{
    order: 2;
  }

  .case-study-card--wide .case-study-image{
    aspect-ratio: auto;
    min-height: 100%;
  }

  .case-study-card--wide .case-study-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.75rem, 3vw, 2.5rem);
  }
}

.case-study-card-link{
  display: block;
  text-decoration: none;
  color: inherit;
}

.case-study-image{
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.case-study-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Building illustrations: show full art on white ground */
.case-study-image--illustration{
  background: #fff;
}

.case-study-image--illustration img{
  object-fit: contain;
  object-position: center center;
}

/* Leaflet: map must fill a sized box; absolute fill + invalidateSize() keeps tiles aligned. */
.case-study-image--map{
  position: relative;
  background: #dfe5e8;
}

.case-study-map-canvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.case-study-image--map .leaflet-container{
  width: 100%;
  height: 100%;
  font-family: inherit;
  background: #dfe5e8;
}

.case-study-marker-icon .case-study-marker-inner{
  display: flex;
  justify-content: center;
}

.case-study-content{
  padding: 1.5rem 1.5rem 1.75rem;
}

.case-study-title{
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.case-study-facts{
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.case-study-facts li{
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.85rem;
  border-left: 3px solid var(--tc-teal);
}

.case-study-facts li:last-child{
  margin-bottom: 0;
}

.case-study-fact-label{
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tc-orange-left);
  margin-bottom: 0.2rem;
}

.case-study-fact-value{
  display: block;
  font-size: 0.95rem;
  color: #2a2a2a;
}

.case-study-cta{
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--tc-teal);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.case-study-card:hover .case-study-cta{
  color: var(--tc-orange-left);
}

.case-study-actions{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.case-study-download{
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 121, 45, 0.45);
  color: var(--tc-orange-left);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.case-study-download:hover,
.case-study-download:focus-visible{
  background: rgba(244, 121, 45, 0.1);
  border-color: var(--tc-orange-left);
  color: var(--tc-orange-left);
}

/* Case study detail template */
.case-study-detail{
  background: #f8f7f4;
  color: #131820;
}

.case-study-detail-nav{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 32, 0.96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}

.case-study-detail-nav .container{
  padding-block: 0.75rem;
}

.case-study-detail-nav__back{
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  text-decoration: none;
}

.case-study-detail-nav__back:hover,
.case-study-detail-nav__back:focus-visible{
  color: #fff;
}

.case-study-detail-hero{
  position: relative;
  padding: clamp(6rem, 12vw, 8rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(900px 500px at 20% 28%, rgba(0,145,138,0.18), transparent 62%),
    radial-gradient(760px 460px at 82% 24%, rgba(244,121,45,0.16), transparent 64%),
    linear-gradient(145deg, #111b26 0%, #172636 58%, #0f1720 100%);
  overflow: hidden;
}

.case-study-detail-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.04) 0px,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 16px
    );
  opacity: 0.45;
  pointer-events: none;
}

.case-study-detail-hero .container{
  position: relative;
  z-index: 1;
}

.case-study-detail-kicker{
  margin: 0 0 0.85rem;
  color: var(--accent-orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.case-study-detail-title{
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.case-study-detail-subtitle{
  margin: 1.25rem 0 0;
  max-width: 42rem;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
}

.case-study-detail-visual{
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  padding: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}

.case-study-detail-visual img{
  display: block;
  width: 100%;
  height: auto;
}

.case-study-detail-body{
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.case-study-detail-facts{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.case-study-detail-fact{
  background: #fff;
  border: 1px solid rgba(20,26,36,0.08);
  border-left: 4px solid var(--tc-teal);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 36px rgba(20,26,36,0.06);
}

.case-study-detail-fact span{
  display: block;
  color: var(--tc-orange-left);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study-detail-fact strong{
  display: block;
  margin-top: 0.3rem;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.35;
}

.case-study-detail-section{
  background: #fff;
  border: 1px solid rgba(20,26,36,0.08);
  border-radius: 16px;
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: 0 16px 44px rgba(20,26,36,0.07);
}

.case-study-detail-section + .case-study-detail-section{
  margin-top: 1rem;
}

.case-study-detail-section h2{
  margin: 0 0 0.85rem;
  color: #1a1a1a;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.case-study-detail-section p,
.case-study-detail-section li{
  color: rgba(20,26,36,0.78);
  line-height: 1.65;
}

.case-study-detail-section p:last-child,
.case-study-detail-section ul:last-child{
  margin-bottom: 0;
}

.case-study-detail-cta{
  position: sticky;
  top: 1.5rem;
  background: linear-gradient(155deg, #162332, #101820);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 1.35rem;
  color: #fff;
  box-shadow: 0 24px 70px rgba(20,26,36,0.22);
}

.case-study-detail-cta h2{
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
}

.case-study-detail-cta p{
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

.case-study-detail-download{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: var(--tc-orange-left);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.case-study-detail-download:hover,
.case-study-detail-download:focus-visible{
  background: var(--tc-orange-right);
  color: #fff;
}

.case-study-detail-figure{
  margin: 1rem 0 0;
  background: #fff;
  border: 1px solid rgba(20,26,36,0.08);
  border-radius: 18px;
  padding: clamp(0.85rem, 2vw, 1.15rem);
  box-shadow: 0 16px 44px rgba(20,26,36,0.07);
}

.case-study-detail-figure img{
  display: block;
  width: 100%;
  height: auto;
}

.cs-figure{
  margin: 1.35rem 0 0;
}

.cs-figure img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.cs-figure figcaption{
  margin-top: 0.55rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(20,26,36,0.58);
}

.cs-photo-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1.35rem 0 0;
  align-items: start;
}

.cs-photo-grid .cs-figure{
  margin: 0;
}

@media (max-width: 575.98px){
  .cs-photo-grid{
    grid-template-columns: 1fr;
  }
}

.cs-steps{
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.cs-steps li{
  margin-top: 0.4rem;
}

.cs-callout{
  margin-top: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--tc-orange-left), var(--tc-orange-right));
  color: #fff;
  box-shadow: 0 16px 44px rgba(244,121,45,0.2);
}

.cs-callout h2{
  color: #fff;
  margin: 0 0 0.35rem;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cs-callout p{
  margin: 0;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
}

@media (max-width: 991.98px){
  .case-study-detail-figure{
    margin-top: 1.5rem;
  }
}

@media (max-width: 767.98px){
  .case-study-detail-facts{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px){
  .mobile-panel-icon{
    display: flex;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--tc-orange-left);
    margin-bottom: 0.85rem;
  }

  #panel2 .mobile-panel-icon,
  #panel3 .mobile-panel-icon{
    font-size: 2.5875rem;
  }

  .sticky-scroll-inner{
    padding-top: clamp(1.25rem, 3vw, 2rem);
  }

  #panel2 .mobile-panel-icon{
    margin-top: 0.5rem;
    margin-bottom: 1.1rem;
    padding: 0.85rem 0 0.35rem;
  }

  .sticky-scroll-section{
    padding-bottom: clamp(2rem, 5vw, 3.25rem);
  }
}

.process-section{
  position: relative;
  color: #fff;
  padding-top: clamp(3.25rem, 7vw, 5.5rem);
  padding-bottom: clamp(3.25rem, 7vw, 5.5rem);
  background:
    radial-gradient(920px 520px at 16% 22%, rgba(0,145,138,.24), transparent 62%),
    radial-gradient(760px 440px at 86% 30%, rgba(244,121,45,.16), transparent 64%),
    linear-gradient(135deg, #070b12, #0b1526);
  border-top: 1px solid rgba(255,255,255,.08);
}

.process-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,.05) 0px,
    rgba(255,255,255,.05) 1px,
    transparent 1px,
    transparent 14px
  );
  opacity: .3;
  pointer-events: none;
}

.process-section .container{
  position: relative;
  z-index: 1;
}

.process-intro{
  max-width: 860px;
}

.process-title{
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(1.9rem, 3.1vw, 2.7rem);
  letter-spacing: -0.02em;
}

.process-subtitle{
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
}

.process-flow{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.process-step{
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.process-step-box{
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: 1rem 0.75rem 1.1rem;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.process-step-box:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(244,121,45,.35);
}

.process-step-desc{
  margin: 0.75rem 0 0;
  padding: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(255,255,255,.72);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
}

.process-step-box:hover .process-step-desc{
  max-height: 320px;
  opacity: 1;
}

.process-step::after{
  content: "";
  position: absolute;
  top: 32px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 1px;
  background: linear-gradient(to right, rgba(244,121,45,.55), rgba(248,149,29,.3));
}

.process-step:last-child::after{
  display: none;
}

.process-step-number{
  width: 32px;
  height: 32px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(244,121,45,.75);
  background: rgba(244,121,45,.18);
  box-shadow: 0 0 0 1px rgba(255,255,255,.05) inset;
}

.process-step-number i{
  font-size: 0.95rem;
  line-height: 1;
}

.process-step-label{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  min-height: 4.5em;
  color: rgba(255,255,255,.88);
  font-size: 0.98rem;
  line-height: 1.35;
}

@media (max-width: 991.98px){
  .process-flow{
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .process-step{
    text-align: left;
  }

  .process-step-box{
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: start;
    column-gap: 0.8rem;
  }

  .process-step-label{
    display: block;
    min-height: 0;
    flex: none;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .process-step-box .process-step-desc{
    grid-column: 1 / -1;
  }

  .process-step-box .process-step-number{
    margin: 0;
  }

  .process-step::after{
    left: 16px;
    top: calc(100% + 0.35rem);
    width: 1px;
    height: 0.9rem;
    background: linear-gradient(to bottom, rgba(244,121,45,.55), rgba(248,149,29,.3));
  }

  .process-step-number{
    margin: 0;
  }
}

.take-control-intro{
  max-width: min(56rem, 100%);
}

.take-control-intro .process-title{
  font-size: clamp(1.5rem, 2.85vw, 2.35rem);
  line-height: 1.18;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.take-control-heading-lead,
.take-control-heading-tail{
  font-weight: 500;
}

.take-control-heading-core{
  font-weight: 800;
  color: #fff;
}

.take-control-heading-core .accent{
  color: var(--tc-orange-left);
}

.take-control-cards{
  --take-control-accent-rule: rgba(244,121,45,.92);
}

.take-control-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  padding-top: 1.75rem;
  border: none;
  border-radius: 0;
  background: transparent;
  border-top: 3px solid var(--take-control-accent-rule);
  box-shadow: none;
}

.take-control-card-title{
  margin: 0 0 0.9rem;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: #fff;
}

.take-control-card-body{
  margin: 0;
  flex-grow: 1;
  font-size: clamp(0.94rem, 1.05vw, 1.035rem);
  line-height: 1.58;
  color: rgba(255,255,255,.82);
}

.take-control-card-body strong{
  color: var(--tc-orange-left);
  font-weight: 800;
  font-size: 1.08em;
  letter-spacing: -0.015em;
}

.take-control-card-link{
  margin-top: auto;
  padding-top: 1.35rem;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  color: var(--accent-orange);
  text-decoration: none;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
}

.take-control-card-link:hover{
  color: var(--tc-orange-right);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.service-quad-band{
  position: relative;
  padding-top: clamp(1.75rem, 3.25vw, 2.5rem);
  padding-bottom: clamp(1.75rem, 3.25vw, 2.5rem);
  background: #eef0f4;
  color: #1a2231;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-quad-band__grid{
  max-width: 64rem;
}

.service-quad-band__grid > .col:not(:last-child) .service-quad-tile{
  border-right: 1px solid rgba(0, 0, 0, 0.065);
}

@media (max-width: 767.98px){
  .service-quad-band__grid > .col:not(:last-child) .service-quad-tile{
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.055);
  }
}

.service-quad-tile{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 2vw, 0.95rem);
  min-height: clamp(8.25rem, 19vw, 11rem);
  padding: clamp(1.35rem, 4vw, 2rem) 1rem;
  text-align: center;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    color 0.2s ease;
}

.service-quad-tile:hover{
  transform: translateY(-3px);
  color: #1a2231;
}

.service-quad-tile:focus-visible{
  outline: 2px solid var(--accent-orange);
  outline-offset: 2px;
}

.service-quad-tile__icon{
  display: block;
  line-height: 1;
  font-size: clamp(1.55rem, 2.5vw, 1.85rem);
  color: rgba(26, 34, 49, 0.55);
}

.service-quad-tile__icon i{
  display: block;
  line-height: 1;
  font-weight: 400;
}

.service-quad-tile:hover .service-quad-tile__icon{
  color: rgba(26, 34, 49, 0.72);
}

.service-quad-tile__label{
  display: block;
  max-width: 17rem;
  margin-inline: auto;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.45vw, 1.125rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.service-quad-tile:hover .service-quad-tile__label{
  text-decoration: underline;
  text-decoration-color: var(--accent-orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
}

.quote-section{
  position: relative;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background:
    radial-gradient(800px 440px at 22% 40%, rgba(0,145,138,.06), transparent 60%),
    radial-gradient(700px 420px at 76% 30%, rgba(244,121,45,.05), transparent 60%),
    #f8f7f4;
  border-top: 1px solid rgba(0,0,0,.06);
}

.quote-section .container{
  position: relative;
  z-index: 1;
}

.testimonial-quote{
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--tc-teal);
  background: rgba(255,255,255,.6);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
}

.quote-text{
  font-size: 1.25rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0 0 1.25rem;
  font-style: italic;
}

.quote-attribution{
  display: block;
}

.quote-name{
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a1a;
}

.quote-title{
  display: block;
  font-size: 0.9rem;
  color: rgba(0,0,0,.6);
  margin-top: 0.2rem;
}

.proof-section{
  position: relative;
  padding: clamp(3.25rem, 7vw, 5rem) 0 0;
  background:
    radial-gradient(800px 440px at 22% 40%, rgba(0,145,138,.06), transparent 60%),
    radial-gradient(700px 420px at 76% 30%, rgba(244,121,45,.05), transparent 60%),
    #f8f7f4;
  border-top: 1px solid rgba(0,0,0,.06);
}

.proof-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(0,0,0,.02) 0px,
    rgba(0,0,0,.02) 1px,
    transparent 1px,
    transparent 14px
  );
  opacity: .55;
  pointer-events: none;
}

.proof-section__inner{
  position: relative;
  z-index: 1;
  padding-bottom: clamp(2.25rem, 4vw, 3rem);
}

.proof-section-head{
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 2.85rem);
}

.proof-section-title{
  font-weight: 800;
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  color: #1a1a1a;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.proof-row + .proof-row{
  margin-top: clamp(2rem, 4.5vw, 3rem);
}

.proof-row{
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.065);
  border: 1px solid rgba(0, 0, 0, 0.065);
}

.proof-row__media{
  min-height: clamp(200px, 28vw, 300px);
  padding: 0;
}

@media (min-width: 992px){
  .proof-row__media{
    min-height: clamp(260px, 30vw, 360px);
  }
}

.proof-row__photo{
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  background: #d8dde4;
}

.proof-row__photo img{
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.proof-row__body{
  padding: clamp(1.35rem, 3vw, 2rem);
  min-height: clamp(200px, 28vw, 300px);
}

@media (min-width: 992px){
  .proof-row__body{
    min-height: 0;
  }
}

.proof-card{
  max-width: 28rem;
}

.proof-tag{
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-orange);
}

.proof-title{
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 1.85vw, 1.42rem);
  font-weight: 800;
  color: #161c27;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.proof-outcomes{
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(22, 28, 39, 0.78);
  font-size: clamp(0.895rem, 1.05vw, 0.98rem);
  line-height: 1.5;
}

.proof-outcomes li{
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  border-left: 3px solid var(--tc-teal);
}

.proof-outcomes li:last-child{
  margin-bottom: 0;
}

.proof-timing{
  margin: 0.85rem 0 0;
  padding: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(22, 28, 39, 0.62);
  font-style: italic;
}

.proof-link{
  display: inline-block;
  margin-top: 1.1rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--tc-teal);
  text-decoration: none;
}

.proof-link:hover{
  color: var(--accent-orange);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.who-we-serve-cta{
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  background: rgba(220, 224, 230, 0.7);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.who-we-serve-cta--hero-photo{
  padding: 0;
  background: #0f1621;
  border-top: 0;
  min-height: clamp(18rem, 32vw, 24rem);
  overflow: hidden;
}

.who-we-serve-cta--hero-photo .who-we-serve-cta__media{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.who-we-serve-cta--hero-photo .who-we-serve-cta__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--ce-hero-pos-x, 92%) var(--ce-hero-pos-y, 50%);
}

.who-we-serve-cta--hero-photo .who-we-serve-cta__scrim{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 22, 32, 0.98) 0%,
    rgba(15, 22, 32, 0.95) 18%,
    rgba(15, 22, 32, 0.88) 32%,
    rgba(15, 22, 32, 0.62) 46%,
    rgba(15, 22, 32, 0.22) 58%,
    rgba(15, 22, 32, 0.04) 66%,
    transparent 74%
  );
}

.who-we-serve-cta--hero-photo .container{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-block: clamp(2.75rem, 5vw, 4.25rem);
}

.who-we-serve-cta--hero-photo .who-we-serve-cta__inner{
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: min(38rem, 50%);
  margin-inline: 0;
  gap: 0;
}

.who-we-serve-cta--hero-photo .who-we-serve-cta__text{
  flex: none;
  text-align: left;
}

.who-we-serve-cta--hero-photo .who-we-serve-cta__title{
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  margin-bottom: 0.65rem;
}

.who-we-serve-cta--hero-photo .who-we-serve-cta__lede{
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
}

.who-we-serve-cta--hero-photo .who-we-serve-cta__btn{
  margin-top: 1.35rem;
}

.who-we-serve-cta__inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2.25rem);
  max-width: 64rem;
  margin-inline: auto;
}

.who-we-serve-cta__text{
  flex: 1 1 22rem;
  min-width: 0;
}

.who-we-serve-cta__title{
  margin: 0 0 0.4rem;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: #161c27;
}

.who-we-serve-cta__lede{
  margin: 0;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.55;
  color: rgba(22, 28, 39, 0.72);
}

.who-we-serve-cta__btn{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  background: var(--accent-orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.who-we-serve-cta__btn:hover,
.who-we-serve-cta__btn:focus-visible{
  background: var(--tc-orange-right);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(244, 121, 45, 0.28);
}

.who-we-serve-cta__btn i{
  transition: transform 0.2s ease;
}

.who-we-serve-cta__btn:hover i{
  transform: translateX(3px);
}

@media (max-width: 575.98px){
  .who-we-serve-cta__btn{
    width: 100%;
    justify-content: center;
  }

  .who-we-serve-cta--hero-photo{
    min-height: clamp(22rem, 68vw, 28rem);
  }

  .who-we-serve-cta--hero-photo .who-we-serve-cta__scrim{
    background: linear-gradient(
      180deg,
      rgba(15, 22, 32, 0.97) 0%,
      rgba(15, 22, 32, 0.92) 42%,
      rgba(15, 22, 32, 0.55) 62%,
      rgba(15, 22, 32, 0.12) 78%,
      transparent 92%
    );
  }

  .who-we-serve-cta--hero-photo .who-we-serve-cta__inner{
    max-width: none;
  }

  .who-we-serve-cta--hero-photo .who-we-serve-cta__btn{
    width: auto;
    justify-content: flex-start;
  }
}

.is-critical-environment-hero-dev .critical-environment__photo{
  cursor: grab;
}

.is-critical-environment-hero-dev .critical-environment__photo:active{
  cursor: grabbing;
}

body.is-critical-environment-hero-dev .critical-environment-hero-dev.process-scroll-layout-dev{
  z-index: 10001;
}

/* Homepage — Every environment is a critical environment */
.critical-environment{
  position: relative;
  margin-top: 0;
  padding: 0;
  --ce-section-bg: #0f1621;
  background: var(--ce-section-bg);
  color: #fff;
  overflow: hidden;
  min-height: clamp(19rem, 32vw, 26rem);
  --ce-hero-pos-y: 100%;
  --ce-hero-zoom: 1;
  --ce-hero-translate-x: 31%;
  --ce-hero-offset-y: -15%;
  --ce-hero-object-y: 50%;
}

.critical-environment__photo{
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
  background: var(--ce-section-bg);
}

.critical-environment__photo img,
.critical-environment__photo-scrim{
  position: absolute;
  top: var(--ce-hero-offset-y, 0%);
  left: 0;
  width: 100%;
  /* Grow height when shifted up so overflow:hidden does not clip the bottom edge */
  height: calc(100% - var(--ce-hero-offset-y, 0%));
  transform: scale(var(--ce-hero-zoom, 1)) translateX(var(--ce-hero-translate-x, 31%));
  transform-origin: right center;
}

.critical-environment__photo img{
  display: block;
  object-fit: cover;
  object-position: right center;
}

.critical-environment .container{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.critical-environment__layout{
  align-items: center;
  width: 100%;
}

.critical-environment__content{
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.35rem);
  justify-content: center;
}

.critical-environment__title{
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: #fff;
}

.critical-environment__lede{
  margin: 0;
  max-width: 34rem;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.critical-environment__photo-scrim{
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--ce-section-bg) 0%,
    transparent 25%
  );
}

.critical-environment.is-ce-hero-mobile-pan .critical-environment__photo img{
  top: var(--ce-hero-offset-y, 0%);
  left: 0;
  width: auto;
  height: var(--ce-hero-mobile-height, 100%);
  aspect-ratio: 2048 / 758;
  object-fit: none;
  object-position: left top;
  transform-origin: left top;
  transform: scale(var(--ce-hero-zoom, 1))
    translateX(var(--ce-hero-translate-x, 0px));
}

.critical-environment.is-ce-hero-mobile-pan .critical-environment__photo-scrim{
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  transform: none;
}

@media (max-width: 575.98px){
  .critical-environment{
    min-height: clamp(22rem, 68vw, 30rem);
  }

  .critical-environment__photo-scrim{
    background: linear-gradient(
      180deg,
      var(--ce-section-bg) 0%,
      transparent 100%
    );
  }
}

.contact-section{
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.25rem) 0;
  background:
    radial-gradient(900px 500px at 25% 20%, rgba(0,145,138,.28), transparent 60%),
    radial-gradient(800px 450px at 75% 80%, rgba(244,121,45,.18), transparent 60%),
    linear-gradient(135deg, var(--hero-bg-1), var(--hero-bg-2));
  border-top: 1px solid rgba(255,255,255,.08);
}

.contact-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,.05) 0px,
    rgba(255,255,255,.05) 1px,
    transparent 1px,
    transparent 14px
  );
  opacity: .25;
  pointer-events: none;
}

.contact-section .container{
  position: relative;
  z-index: 1;
}

.contact-intro{
  max-width: 46rem;
}

.contact-title{
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-size: clamp(1.7rem, 2.7vw, 2.35rem);
  color: #fff;
}

.contact-subtitle{
  color: rgba(255,255,255,.82);
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  line-height: 1.6;
}

.faq-section{
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background:
    radial-gradient(800px 440px at 20% 45%, rgba(255,255,255,.18), transparent 55%),
    radial-gradient(700px 400px at 85% 35%, rgba(248,149,29,.35), transparent 55%),
    linear-gradient(165deg, var(--tc-orange-left) 0%, var(--tc-orange-right) 100%);
  border-top: 1px solid rgba(0,0,0,.08);
}

.faq-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,.04) 0px,
    rgba(255,255,255,.04) 1px,
    transparent 1px,
    transparent 14px
  );
  opacity: .5;
  pointer-events: none;
}

.faq-section .container{
  position: relative;
  z-index: 1;
}

.faq-intro{
  max-width: 640px;
}

.faq-title{
  font-weight: 800;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.faq-subtitle{
  font-size: 1.05rem;
  color: rgba(255,255,255,.88);
}

.faq-list{
  max-width: 720px;
  margin: 0 auto;
}

.faq-item{
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.faq-item:first-child{
  border-top: 1px solid rgba(255,255,255,.2);
}

.faq-question{
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker,
.faq-question::marker{
  display: none;
}

.faq-question::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,255,255,.9);
  border-bottom: 2px solid rgba(255,255,255,.9);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-question::after{
  transform: translateY(-50%) rotate(-135deg);
}

.faq-question:hover{
  color: #1a1a1a;
}

.faq-answer{
  padding: 0 0 1.25rem 0;
}

.faq-answer p{
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
}

@media (max-width: 767.98px){
  .faq-question{
    padding: 1.25rem 2.75rem 1.25rem 1rem;
  }

  .faq-answer{
    padding: 0 1rem 1.25rem 1rem;
  }
}

.calculator-section{
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background:
    radial-gradient(800px 440px at 22% 40%, rgba(0,145,138,.06), transparent 60%),
    radial-gradient(700px 420px at 76% 30%, rgba(244,121,45,.05), transparent 60%),
    #f8f7f4;
  border-top: 1px solid rgba(0,0,0,.06);
}

.calculator-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(0,0,0,.02) 0px,
    rgba(0,0,0,.02) 1px,
    transparent 1px,
    transparent 14px
  );
  opacity: .6;
  pointer-events: none;
}

.calculator-section .container{
  position: relative;
  z-index: 1;
}

.calculator-intro{
  max-width: 680px;
}

.calculator-title{
  font-weight: 800;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #1a1a1a;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.calculator-subtitle{
  font-size: 1.05rem;
  color: rgba(0,0,0,.7);
}

.calculator-terminal{
  max-width: 640px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.15), 0 0 0 1px rgba(0,0,0,.06);
}

.terminal-header{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: #0b1526;
  border-bottom: 1px solid rgba(0,145,138,.25);
}

.terminal-dots{
  display: flex;
  gap: 0.4rem;
}

.terminal-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}

.terminal-dot:nth-child(1){ background: rgba(255,95,86,.9); }
.terminal-dot:nth-child(2){ background: rgba(255,189,46,.9); }
.terminal-dot:nth-child(3){ background: rgba(39,201,63,.9); }

.terminal-title{
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.02em;
}

.terminal-body{
  padding: 1.5rem 1.5rem 1.75rem;
  background: #0a0f1a;
  font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", "Consolas", monospace;
  font-size: 0.9rem;
  line-height: 1.7;
}

.terminal-inputs{
  margin-bottom: 1.25rem;
}

.terminal-row{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.terminal-row:last-of-type{
  margin-bottom: 0;
}

.terminal-prompt{
  color: var(--tc-teal);
  font-weight: 600;
}

.terminal-label{
  color: rgba(255,255,255,.75);
}

.terminal-equals{
  color: rgba(255,255,255,.4);
}

.terminal-value{
  color: var(--tc-orange-left);
}

.terminal-command .terminal-cmd{
  color: var(--tc-teal);
}

.terminal-output{
  padding-top: 1rem;
  border-top: 1px solid rgba(0,145,138,.2);
}

.terminal-output-line{
  margin-bottom: 0.4rem;
}

.terminal-output-line:last-child{
  margin-bottom: 0;
}

.output-label{
  color: rgba(255,255,255,.6);
}

.output-arrow{
  color: var(--tc-teal);
  margin: 0 0.35rem;
}

.output-value{
  color: var(--tc-orange-left);
  font-weight: 600;
}

.output-note{
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
}

.cta-section{
  position: relative;
  padding: clamp(4.5rem, 10vw, 7rem) 0;
  color: #fff;
  background:
    radial-gradient(900px 500px at 25% 50%, rgba(0,145,138,.28), transparent 60%),
    radial-gradient(800px 450px at 75% 50%, rgba(244,121,45,.18), transparent 60%),
    linear-gradient(135deg, var(--hero-bg-1), var(--hero-bg-2));
  border-top: 1px solid rgba(255,255,255,.08);
}

.cta-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,.05) 0px,
    rgba(255,255,255,.05) 1px,
    transparent 1px,
    transparent 14px
  );
  opacity: .25;
  pointer-events: none;
}

.cta-section .container{
  position: relative;
  z-index: 1;
}

.cta-content{
  max-width: 580px;
}

.cta-title{
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-subtitle{
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  line-height: 1.5;
}

/* How utility incentives work — prescriptive vs custom path toggle */
.incentive-path-module{
  background: #f8f7f4;
  border-top: 1px solid rgba(0,0,0,.06);
}

.incentive-path-module-title{
  font-weight: 800;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.path-toggle-track{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 640px;
}

@media (min-width: 576px){
  .path-toggle-track{
    flex-direction: row;
    gap: 0;
    border-radius: 14px;
    padding: 4px;
    background: rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.08);
  }
}

.path-toggle-btn{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  background: #fff;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 576px){
  .path-toggle-btn{
    border: none;
    border-radius: 10px;
    background: transparent;
  }

  .path-toggle-btn.is-active{
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
  }
}

.path-toggle-btn:hover{
  border-color: rgba(244,121,45,.45);
}

.path-toggle-btn:focus-visible{
  outline: 2px solid var(--tc-teal);
  outline-offset: 2px;
}

.path-toggle-btn.is-active{
  border-color: var(--tc-teal);
  box-shadow: 0 0 0 1px rgba(0,145,138,.25);
}

.path-toggle-label{
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
}

.path-toggle-hint{
  font-size: 0.85rem;
  color: rgba(0,0,0,.55);
  margin-top: 0.25rem;
}

.path-toggle-btn.is-active .path-toggle-hint{
  color: rgba(0,0,0,.65);
}

.path-panel{
  min-height: 8rem;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px dashed rgba(0,0,0,.12);
  background: rgba(255,255,255,.7);
}

.path-panel[hidden]{
  display: none !important;
}

.path-panel--prescriptive{
  border-style: solid;
  border-color: rgba(0,0,0,.08);
  background: #fff;
  padding: clamp(1rem, 2vw, 1.75rem);
}

/* Small inline text CTA at bottom of each path tab panel (how-utility-incentives-work) */
.path-section-cta{
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,.08);
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(0,0,0,.58);
}

.path-section-cta a{
  font-weight: 600;
  color: var(--tc-teal);
  text-decoration: none;
}

.path-section-cta a:hover{
  color: var(--tc-orange-left);
  text-decoration: underline;
}

.prescriptive-tablist{
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.prescriptive-tab{
  border: 1px solid transparent;
  background: rgba(0,0,0,.04);
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.prescriptive-tab:hover{
  background: rgba(0,145,138,.1);
}

.prescriptive-tab.is-active{
  background: #fff;
  border-color: var(--tc-teal);
  color: #0a5c57;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.prescriptive-tab:focus-visible{
  outline: 2px solid var(--tc-teal);
  outline-offset: 2px;
}

.prescriptive-tabpanel{
  animation: prescriptiveFade 0.25s ease;
}

@keyframes prescriptiveFade{
  from { opacity: 0.6; }
  to { opacity: 1; }
}

.prescriptive-section-title{
  font-weight: 800;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  color: #1a1a1a;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.prescriptive-lead{
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(0,0,0,.78);
  margin-bottom: 1.25rem;
}

.prescriptive-block--spaced{
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,.1);
}

.prescriptive-subheading{
  font-weight: 800;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.prescriptive-steps{
  margin: 0;
  padding-left: 1.35rem;
  display: grid;
  gap: 1.35rem;
  color: rgba(0,0,0,.78);
  line-height: 1.65;
}

.prescriptive-steps li{
  padding-left: 0.35rem;
}

.prescriptive-steps li::marker{
  font-weight: 800;
  color: var(--tc-teal);
}

.prescriptive-step-title{
  display: block;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}

.prescriptive-steps p{
  margin: 0;
  font-size: 1rem;
}

.prescriptive-table{
  margin-bottom: 0;
  font-size: 0.95rem;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 8px;
  overflow: hidden;
}

.prescriptive-table thead{
  background: #e8e6e2;
}

.prescriptive-table thead th{
  font-weight: 700;
  color: #1a1a1a;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,.12);
}

.prescriptive-table tbody td{
  padding: 0.7rem 1rem;
  border-color: rgba(0,0,0,.08);
  vertical-align: top;
}

.prescriptive-list{
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  line-height: 1.6;
  color: rgba(0,0,0,.78);
}

.prescriptive-list li{
  margin-bottom: 0.5rem;
}

.prescriptive-negative-heading{
  margin-top: 1.5rem;
  margin-bottom: 0.85rem;
  font-size: 1rem;
  color: #1a1a1a;
}

.prescriptive-aside-note{
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(0,0,0,.65);
  line-height: 1.55;
}

a.path-jump-link{
  color: var(--tc-teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a.path-jump-link:hover{
  color: var(--tc-orange-left);
}

.prescriptive-callout{
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1.75rem;
  padding: 1.1rem 1.15rem;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.1);
  background: #f0eeeb;
}

.prescriptive-callout-icon{
  font-size: 1.5rem;
  color: rgba(0,0,0,.45);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.prescriptive-callout a{
  color: var(--tc-teal);
  font-weight: 600;
}

.prescriptive-callout a:hover{
  color: var(--tc-orange-left);
}

/* ── Assessment page ── */

.assessment-page{
  background:
    radial-gradient(900px 500px at 25% 20%, rgba(0,145,138,.28), transparent 60%),
    radial-gradient(800px 450px at 75% 80%, rgba(244,121,45,.18), transparent 60%),
    linear-gradient(135deg, var(--hero-bg-1), var(--hero-bg-2));
  min-height: 100vh;
}

.assessment-hero{
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  color: #fff;
  text-align: center;
}

.assessment-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,.05) 0px,
    rgba(255,255,255,.05) 1px,
    transparent 1px,
    transparent 14px
  );
  opacity: .25;
  pointer-events: none;
}

.assessment-hero .container{
  position: relative;
  z-index: 1;
}

.assessment-kicker{
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tc-orange-left);
  margin-bottom: 0.75rem;
}

.assessment-hero-title{
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  letter-spacing: -0.02em;
}

.assessment-hero-subtitle{
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
}

.assessment-form-section{
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(4rem, 8vw, 6rem);
}

.assessment-form-section .container{
  position: relative;
  z-index: 1;
}

.assessment-form{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.assessment-form-group{
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}

.assessment-form-group-title{
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.assessment-form-group-title i{
  color: var(--tc-orange-left);
  font-size: 1.15rem;
}

.assessment-label{
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-bottom: 0.4rem;
}

.assessment-optional{
  font-weight: 400;
  color: rgba(255,255,255,.45);
}

.assessment-input{
  display: block;
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.assessment-input::placeholder{
  color: rgba(255,255,255,.35);
}

.assessment-input:focus{
  outline: none;
  border-color: var(--tc-teal);
  background-color: rgba(255,255,255,.10);
  box-shadow: 0 0 0 3px rgba(0,145,138,.25);
}

select.assessment-input{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.6)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

select.assessment-input option{
  background: #0b1526;
  color: #fff;
}

textarea.assessment-input{
  resize: vertical;
  min-height: 100px;
}

.assessment-form-submit{
  text-align: center;
}

.btn-assessment-submit{
  background: var(--tc-orange-left);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-assessment-submit:hover{
  background: #de6d27;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(244,121,45,.35);
}

.btn-assessment-submit:active{
  transform: translateY(0);
}

.assessment-disclaimer{
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

.assessment-form-hubspot-wrap,
.contact-form-hubspot-wrap{
  position: relative;
}

.btn-assessment-submit .btn-label,
.btn-assessment-submit .btn-loading{
  display: inline;
}

.btn-assessment-submit .btn-loading[hidden]{
  display: none !important;
}

.form-message--error{
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.92rem;
  color: #fff;
  background: rgba(180, 40, 40, 0.35);
  border: 1px solid rgba(255, 120, 120, 0.45);
}

.form-success{
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 14px;
  background: rgba(0, 145, 138, 0.2);
  border: 1px solid rgba(0, 145, 138, 0.45);
  text-align: center;
}

.form-success-icon{
  display: block;
  font-size: 2.25rem;
  color: var(--tc-teal);
  margin: 0 auto 0.75rem;
  line-height: 1;
}

.form-success-title{
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  margin: 0 0 0.65rem;
}

.form-success-text{
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.assessment-disclaimer a{
  color: var(--tc-teal);
  font-weight: 600;
  text-decoration: none;
}

.assessment-disclaimer a:hover{
  color: var(--tc-orange-left);
  text-decoration: underline;
}

/* Light sections (paper / off-white) — form was authored for dark assessment page */
.cap-section--paper .assessment-form-group,
.cap-section--light .assessment-form-group{
  background: #f8f7f4;
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: none;
}

.cap-section--paper .assessment-form-group-title,
.cap-section--light .assessment-form-group-title{
  color: #131820;
}

.cap-section--paper .assessment-label,
.cap-section--light .assessment-label{
  color: #2a3340;
}

.cap-section--paper .assessment-optional,
.cap-section--light .assessment-optional{
  color: rgba(19, 24, 32, 0.5);
}

.cap-section--paper .assessment-input,
.cap-section--light .assessment-input{
  color: #131820;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.cap-section--paper .assessment-input::placeholder,
.cap-section--light .assessment-input::placeholder{
  color: rgba(19, 24, 32, 0.4);
}

.cap-section--paper .assessment-input:focus,
.cap-section--light .assessment-input:focus{
  background-color: #fff;
  border-color: var(--tc-teal);
  box-shadow: 0 0 0 3px rgba(0, 145, 138, 0.15);
}

.cap-section--paper select.assessment-input,
.cap-section--light select.assessment-input{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(19,24,32,0.55)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

.cap-section--paper select.assessment-input option,
.cap-section--light select.assessment-input option{
  background: #fff;
  color: #131820;
}

.cap-section--paper .assessment-disclaimer,
.cap-section--light .assessment-disclaimer{
  color: rgba(19, 24, 32, 0.65);
}

.assessment-sidebar{
  position: sticky;
  top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.assessment-sidebar-card{
  padding: 1.5rem;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}

.assessment-sidebar-title{
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.assessment-next-steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.assessment-next-steps li{
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.assessment-step-num{
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(244,121,45,.75);
  background: rgba(244,121,45,.18);
  margin-top: 0.1rem;
}

.assessment-next-steps strong{
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.assessment-next-steps p{
  font-size: 0.88rem;
  color: rgba(255,255,255,.68);
  line-height: 1.5;
  margin: 0;
}

.assessment-sidebar-card--trust{
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.assessment-trust-item{
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,.85);
}

.assessment-trust-item i{
  font-size: 1.05rem;
  color: var(--tc-teal);
  flex-shrink: 0;
}

@media (max-width: 991.98px){
  .assessment-sidebar{
    position: static;
  }
}

/* ── Mobile improvements (< 992px) ── */

@media (max-width: 991.98px){

  .navbar-secondary__list{
    justify-content: flex-end;
    padding: 0.5rem 0;
  }

  /* 1. Hero title: bigger */
  .hero-title{
    font-size: clamp(2.75rem, 8vw, 3.3rem);
  }

  /* 2. Section 2 spacing on small screens */
  .section-2{
    min-height: 0;
    padding-bottom: 0;
  }

  .section-2-content{
    padding-top: clamp(2.25rem, 5vw, 3rem);
    padding-bottom: clamp(1.25rem, 3.5vw, 2rem);
    min-height: 0;
    justify-content: flex-start;
  }

  /* Landing hero: content-sized band on mobile (no forced 100vh) */
  .site-hero.site-hero--landing{
    min-height: 0;
  }

  .hero-content--landing{
    justify-content: flex-start;
    padding-bottom: clamp(1.25rem, 4vw, 2rem);
  }

  .hero-content--landing .hero-copy{
    transform: none;
  }

  /* 3. Mobile nav drawer */
  .navbar-collapse{
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.75rem;
  }

  .navbar-nav .nav-item{
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .navbar-nav .nav-item:last-child{
    border-bottom: none;
  }

  .navbar-nav .nav-link{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 1rem;
  }

  .navbar-nav .btn-tc-primary{
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1.1rem;
    padding: 0.85rem 1rem;
  }

  /* 6. Sticky tab headers on how-utility-incentives-work page */
  .prescriptive-tablist{
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    margin-left: calc(-1 * clamp(1rem, 2vw, 1.75rem));
    margin-right: calc(-1 * clamp(1rem, 2vw, 1.75rem));
    padding-left: clamp(1rem, 2vw, 1.75rem);
    padding-right: clamp(1rem, 2vw, 1.75rem);
    border-bottom: 1px solid rgba(0,0,0,.09);
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    margin-bottom: 1.25rem;
  }
}

/* 7. Assessment page: mobile "What Happens Next" toggle */

.assessment-next-toggle{
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  overflow: hidden;
}

.assessment-next-toggle-btn{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.assessment-next-toggle-btn::-webkit-details-marker,
.assessment-next-toggle-btn::marker{
  display: none;
}

.assessment-next-toggle-btn i:first-child{
  font-size: 1.1rem;
  color: var(--tc-teal);
}

.assessment-next-chevron{
  margin-left: auto;
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}

.assessment-next-toggle[open] .assessment-next-chevron{
  transform: rotate(-180deg);
}

.assessment-next-toggle-body{
  padding: 0.25rem 1.1rem 1.1rem;
}

/* Mobile toggle: step numbers above each headline (not beside) */
.assessment-next-toggle-body .assessment-next-steps li{
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.assessment-next-toggle-body .assessment-step-num{
  margin-top: 0;
}

.assessment-next-toggle-body .assessment-next-steps li > div{
  width: 100%;
  text-align: left;
}

@media (max-width: 575.98px){
  .brand-mark svg{ height: 28px; }
  .btn-lg{ padding: .8rem 1rem; }

  /* Narrow phones: more space between hero headline and CTAs */
  .hero-copy .hero-title{
    margin-bottom: 1.85rem !important;
  }

  .hero-copy > .d-flex.gap-3{
    margin-top: 0.35rem;
  }
}

/* ==========================================================================
   Shared components (BMS site v1)
   --------------------------------------------------------------------------
   Used by: our-approach/, the-tc-system/, jci-247-service/

   Canonical site-wide form pattern:
     - Markup lives in free-assessment/index.html and is copy-pasted into
       any page that takes a lead.
     - Class names: .assessment-form, .assessment-form-group,
       .assessment-form-group-title, .assessment-label, .assessment-input,
       .assessment-form-submit, .btn-assessment-submit.
     - Facility Type dropdown options are page-specific (BMS pages drop
       "Cultivation").
     - Do NOT redesign forms per page. Add new fields to the canonical
       pattern, not as one-off forms.
   ========================================================================== */

/* ── Capability hero (two-column copy/visual hero used on the three v1
       capability pages: Our Approach, The TC System, JCI 24/7 Service) ── */

.cap-hero{
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2.5rem, 6vw, 4.5rem);
}

.cap-hero-row{
  align-items: center;
}

.cap-hero-copy{
  position: relative;
  z-index: 3;
  color: #fff;
}

.cap-hero-kicker{
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin: 0 0 0.75rem;
}

.cap-hero-title{
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  color: #fff;
  margin: 0 0 1.1rem;
}

/* Our Approach — keep “Build Process” on its own line at all widths */
.cap-hero-title--design-build .cap-hero-title__line,
.cap-hero-title--two-lines .cap-hero-title__line{
  display: block;
}

.cap-hero--who-serve .cap-hero-title--two-lines{
  font-size: clamp(1.65rem, 3.4vw, 2.85rem);
}

.cap-hero--who-serve .cap-hero-title--two-lines .cap-hero-title__line{
  white-space: nowrap;
}

.cap-hero-subtitle{
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.55;
  color: rgba(255,255,255,.85);
  max-width: 36rem;
  margin: 0 0 1.75rem;
}

.cap-hero-visual{
  position: relative;
  min-height: clamp(280px, 38vw, 460px);
}

/* Who We Serve — static home hero artboard (right column, no animation) */
.cap-hero--who-serve .cap-hero-visual{
  min-height: clamp(320px, 42vw, 520px);
}

.cap-hero--who-serve .hero-visual--cap{
  min-height: clamp(300px, 40vw, 480px);
}

.cap-hero--who-serve .hero-artboard{
  right: 0;
  width: min(108%, 900px);
}

/* Who We Serve — hero bottom flush with building image (desktop) */
@media (min-width: 992px){
  .site-hero--compact .cap-hero--who-serve{
    padding-bottom: 0;
  }

  .cap-hero--who-serve .cap-hero-row{
    align-items: stretch;
  }

  .cap-hero--who-serve .cap-hero-copy{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .cap-hero--who-serve .cap-hero-visual{
    min-height: 0;
  }

  .cap-hero--who-serve .hero-visual--cap{
    min-height: 0;
  }

  .cap-hero--who-serve .hero-artboard{
    position: relative;
    right: auto;
    bottom: auto;
  }
}

.hero-artboard--static.is-formed .circuit-traces,
.hero-artboard--static.is-formed .circuit-glow{
  opacity: .32;
}

.hero-artboard--static.is-formed .circuit-glow{
  filter: blur(22px) drop-shadow(0 0 18px rgba(244,121,45,0.55)) drop-shadow(0 0 36px rgba(248,149,29,0.35));
}

.hero-artboard--static .trace-outline--rail{
  animation: none;
}

/* TC System — static artboard with alive node pulse (jitter + color shift) */
.cap-hero--tc-system .cap-hero-visual{
  min-height: clamp(320px, 42vw, 520px);
}

.cap-hero--tc-system .hero-visual--cap{
  min-height: clamp(300px, 40vw, 480px);
}

.cap-hero--tc-system .hero-artboard{
  right: 0;
  width: min(108%, 900px);
}

.cap-hero--tc-system .particle-scene{
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  /* Match Who We Serve — bottom-corner fade via alpha mask */
  -webkit-mask-image:
    radial-gradient(
      ellipse 34% 54% at 0% 100%,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 32%,
      rgba(0, 0, 0, 0.38) 52%,
      rgba(0, 0, 0, 0.68) 72%,
      #000 100%
    ),
    radial-gradient(
      ellipse 34% 54% at 100% 100%,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 32%,
      rgba(0, 0, 0, 0.38) 52%,
      rgba(0, 0, 0, 0.68) 72%,
      #000 100%
    ),
    linear-gradient(#000 0 0);
  mask-image:
    radial-gradient(
      ellipse 34% 54% at 0% 100%,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 32%,
      rgba(0, 0, 0, 0.38) 52%,
      rgba(0, 0, 0, 0.68) 72%,
      #000 100%
    ),
    radial-gradient(
      ellipse 34% 54% at 100% 100%,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 32%,
      rgba(0, 0, 0, 0.38) 52%,
      rgba(0, 0, 0, 0.68) 72%,
      #000 100%
    ),
    linear-gradient(#000 0 0);
  -webkit-mask-composite: source-in, source-in;
  mask-composite: intersect, intersect;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.cap-hero--tc-system .particle-scene.is-hero-ready{
  opacity: 1;
  visibility: visible;
}

.cap-hero--tc-system .hero-building:not(.is-positioned){
  opacity: 0;
}

.cap-hero--tc-system .hero-building.is-positioned{
  max-width: none;
  max-height: none;
  opacity: 1;
  -webkit-mask-image: none;
  mask-image: none;
}

/* Landing hero — logo-anchor building placement */
.site-hero--landing .hero-building.is-positioned{
  max-width: none;
  max-height: none;
}

body.is-hero-building-dev .site-hero--landing .hero-building.is-positioned{
  pointer-events: auto;
  cursor: grab;
  touch-action: none;
}

body.is-hero-building-dev .site-hero--landing .hero-building.is-positioned:active{
  cursor: grabbing;
}

#heroArtboard.is-hero-building-logo-ref .hero-target-logo{
  opacity: 0.55 !important;
}

#heroArtboard.is-hero-building-logo-ref .hero-target-logo svg path{
  stroke: rgba(255,255,255,0.85) !important;
}

body.is-hero-building-dev .hero-landing-building-dev.process-scroll-layout-dev{
  display: block !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 10001;
}

body.is-hero-building-dev .cap-hero--who-serve .hero-scene-carousel__image.is-positioned{
  pointer-events: auto;
  cursor: grab;
  touch-action: none;
}

body.is-hero-building-dev .cap-hero--who-serve .hero-scene-carousel__image.is-positioned:active{
  cursor: grabbing;
}

#whoWeServeArtboard.is-hero-building-logo-ref .hero-target-logo{
  opacity: 0.55 !important;
}

#whoWeServeArtboard.is-hero-building-logo-ref .hero-target-logo svg path{
  stroke: rgba(255,255,255,0.85) !important;
}

body.is-hero-building-dev .who-we-serve-building-dev.process-scroll-layout-dev{
  display: block !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 10001;
}

@media (prefers-reduced-motion: reduce){
  .cap-hero--tc-system .particle-scene{
    transition: none;
  }
}

.cap-hero--tc-system .cap-hero-subtitle{
  display: flex;
  flex-wrap: wrap;
}

/* TC System — diagram section meets bottom of hero artboard (desktop) */
@media (min-width: 992px){
  .site-hero--compact .cap-hero--tc-system:not(.cap-hero--tc-system-photo){
    padding-bottom: 0;
  }

  .cap-section--diagram{
    padding-top: 0;
  }

  .cap-section--diagram .cap-section__head{
    margin-top: clamp(1.5rem, 3vw, 2.25rem);
  }

  .site-hero--tc-system-header ~ main > .cap-section--diagram{
    padding-top: clamp(2.5rem, 5vw, 4rem);
  }
}

.hero-artboard--alive .particle-node{
  transition: none;
  animation: heroNodeAliveBreath 4.6s ease-in-out infinite;
}

.hero-artboard--alive .particle-node:nth-child(4n+1){
  animation-delay: 0s;
}

.hero-artboard--alive .particle-node:nth-child(4n+2){
  animation-delay: -1.15s;
}

.hero-artboard--alive .particle-node:nth-child(4n+3){
  animation-delay: -2.3s;
}

.hero-artboard--alive .particle-node:nth-child(4n){
  animation-delay: -3.45s;
}

@keyframes heroNodeAliveBreath{
  0%, 100%{
    transform: translate(-50%, -50%) scale(1);
    opacity: .88;
    box-shadow:
      0 0 9px var(--node-color, currentColor),
      0 0 18px color-mix(in srgb, var(--node-color, currentColor) 42%, transparent);
    filter: brightness(1) saturate(1);
    background-color: var(--node-color, currentColor);
  }
  50%{
    transform: translate(-50%, -50%) scale(1.035);
    opacity: .94;
    box-shadow:
      0 0 11px var(--node-color, currentColor),
      0 0 24px color-mix(in srgb, var(--node-color, currentColor) 58%, transparent);
    filter: brightness(1.06) saturate(1.04);
    background-color: color-mix(in srgb, var(--node-color, currentColor) 88%, #f8a85c 12%);
  }
}

@media (prefers-reduced-motion: reduce){
  .hero-artboard--alive .particle-node{
    animation: none;
  }
}

.hero-align-marker{
  pointer-events: none;
}

/* Who We Serve — timed hero carousel behind logo + circuits */
.cap-hero--who-serve .particle-scene{
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.cap-hero--who-serve .particle-scene.is-hero-ready{
  opacity: 1;
  visibility: visible;
}

@media (prefers-reduced-motion: reduce){
  .cap-hero--who-serve .particle-scene{
    transition: none;
  }
}

.cap-hero--who-serve .hero-scene-carousel{
  position: absolute;
  top: 0;
  left: 60px;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.cap-hero--who-serve .hero-scene-carousel .carousel-inner,
.cap-hero--who-serve .hero-scene-carousel .carousel-item{
  height: 100%;
}

.cap-hero--who-serve .hero-scene-carousel .carousel-inner{
  position: relative;
  overflow: hidden;
  /* Fade bottom corners via alpha — no black overlay on top of slides */
  -webkit-mask-image:
    radial-gradient(
      ellipse 34% 54% at 0% 100%,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 32%,
      rgba(0, 0, 0, 0.38) 52%,
      rgba(0, 0, 0, 0.68) 72%,
      #000 100%
    ),
    radial-gradient(
      ellipse 34% 54% at 100% 100%,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 32%,
      rgba(0, 0, 0, 0.38) 52%,
      rgba(0, 0, 0, 0.68) 72%,
      #000 100%
    ),
    linear-gradient(#000 0 0);
  mask-image:
    radial-gradient(
      ellipse 34% 54% at 0% 100%,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 32%,
      rgba(0, 0, 0, 0.38) 52%,
      rgba(0, 0, 0, 0.68) 72%,
      #000 100%
    ),
    radial-gradient(
      ellipse 34% 54% at 100% 100%,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 32%,
      rgba(0, 0, 0, 0.38) 52%,
      rgba(0, 0, 0, 0.68) 72%,
      #000 100%
    ),
    linear-gradient(#000 0 0);
  -webkit-mask-composite: source-in, source-in;
  mask-composite: intersect, intersect;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.cap-hero--who-serve .hero-scene-reel{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  -webkit-mask-image:
    radial-gradient(
      ellipse 34% 54% at 0% 100%,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 32%,
      rgba(0, 0, 0, 0.38) 52%,
      rgba(0, 0, 0, 0.68) 72%,
      #000 100%
    ),
    radial-gradient(
      ellipse 34% 54% at 100% 100%,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 32%,
      rgba(0, 0, 0, 0.38) 52%,
      rgba(0, 0, 0, 0.68) 72%,
      #000 100%
    ),
    linear-gradient(#000 0 0);
  mask-image:
    radial-gradient(
      ellipse 34% 54% at 0% 100%,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 32%,
      rgba(0, 0, 0, 0.38) 52%,
      rgba(0, 0, 0, 0.68) 72%,
      #000 100%
    ),
    radial-gradient(
      ellipse 34% 54% at 100% 100%,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 32%,
      rgba(0, 0, 0, 0.38) 52%,
      rgba(0, 0, 0, 0.68) 72%,
      #000 100%
    ),
    linear-gradient(#000 0 0);
  -webkit-mask-composite: source-in, source-in;
  mask-composite: intersect, intersect;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.cap-hero--who-serve .hero-scene-reel__video{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.28));
}

/* Who We Serve — full-background video hero */
.site-hero--compact .cap-hero--who-serve{
  position: relative;
  padding: 0;
  min-height: max(clamp(28rem, 75vh, 52rem), calc(100svh - 9rem));
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}

.cap-hero--who-serve__video-layer{
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #070b12;
}

.cap-hero--who-serve__video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.cap-hero--who-serve__scrim{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(7, 11, 18, 0.94) 0%,
    rgba(7, 11, 18, 0.82) 28%,
    rgba(7, 11, 18, 0.45) 52%,
    rgba(7, 11, 18, 0.15) 72%,
    rgba(7, 11, 18, 0.08) 100%
  );
}

.cap-hero--who-serve .container{
  position: relative;
  z-index: 2;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.cap-hero--who-serve .cap-hero-copy{
  max-width: min(36rem, 92%);
}

@media (max-width: 991.98px){
  .cap-hero--who-serve{
    min-height: clamp(28rem, 78vh, 40rem);
  }

  .cap-hero--who-serve__scrim{
    background: linear-gradient(
      180deg,
      rgba(7, 11, 18, 0.9) 0%,
      rgba(7, 11, 18, 0.78) 45%,
      rgba(7, 11, 18, 0.45) 100%
    );
  }
}

.cap-hero--who-serve .hero-scene-carousel .carousel-item{
  position: relative;
  overflow: hidden;
}

.cap-hero--who-serve .hero-scene-carousel.carousel-fade .carousel-item{
  opacity: 0;
  transition: opacity 0.55s ease-in-out;
}

.cap-hero--who-serve .hero-scene-carousel.carousel-fade .carousel-item.active{
  opacity: 1;
}

.cap-hero--who-serve .hero-scene-carousel .carousel-item.active,
.cap-hero--who-serve .hero-scene-carousel .carousel-item-next,
.cap-hero--who-serve .hero-scene-carousel .carousel-item-prev,
.cap-hero--who-serve .hero-scene-carousel .carousel-item-start,
.cap-hero--who-serve .hero-scene-carousel .carousel-item-end{
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cap-hero--who-serve .hero-scene-carousel__image{
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.28));
}

.cap-hero--who-serve .hero-scene-carousel__image:not(.is-positioned){
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.cap-hero--who-serve .hero-scene-carousel__image.is-positioned{
  max-width: none;
  max-height: none;
}

.cap-hero--who-serve.is-hero-carousel-dev .hero-scene-carousel{
  pointer-events: auto;
}

.cap-hero--who-serve.is-hero-carousel-dev .hero-scene-carousel .carousel-item.active .hero-scene-carousel__image.is-positioned{
  pointer-events: auto;
  cursor: grab;
  touch-action: none;
}

.cap-hero--who-serve.is-hero-carousel-dev .hero-scene-carousel__image.is-dragging{
  cursor: grabbing;
}

.cap-hero--who-serve.is-hero-carousel-dev .hero-target-logo.is-logo-ref-visible{
  opacity: var(--hero-logo-ref-opacity, 0.55) !important;
}

.cap-hero--who-serve.is-hero-carousel-dev .hero-target-logo.is-logo-ref-visible svg path{
  stroke: rgba(255,255,255,0.85) !important;
}

.hero-carousel-dev{
  display: block !important;
  position: fixed;
  right: 1rem;
  top: 6rem;
  z-index: 10050;
  max-width: min(16rem, 56vw);
  margin: 0;
  pointer-events: auto;
}

.hero-carousel-dev.is-docked{
  right: auto;
  bottom: auto;
}

.hero-carousel-dev__slide-list{
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-carousel-dev__slide-btn{
  width: 100%;
  padding: 0.25rem 0.4rem;
  font-size: 0.58rem;
  text-align: left;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 0.25rem;
  cursor: pointer;
}

.hero-carousel-dev__slide-btn.is-active{
  border-color: rgba(244,121,45,.65);
  background: rgba(244,121,45,.18);
  color: #fff;
}

.hero-carousel-dev__slide-btn:hover{
  border-color: rgba(244,121,45,.45);
}

.cap-hero-visual--clip{
  overflow: hidden;
  border-radius: 14px;
}

/* About Us — light office-window hero */
.site-hero.site-hero--about-light{
  color: #1a2332;
  background: #e8eef5;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

/* Disable the default dark hero texture + left-to-right shade on About Us */
.site-hero.site-hero--about-light::before,
.site-hero.site-hero--about-light::after{
  display: none;
}

.site-hero--about-light .navbar-secondary{
  background: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(26, 35, 50, 0.08);
  backdrop-filter: blur(6px);
}

.site-hero--about-light .navbar-secondary__link{
  color: rgba(26, 35, 50, 0.72);
}

.site-hero--about-light .navbar-secondary__link:hover,
.site-hero--about-light .navbar-secondary__link:focus{
  color: #1a2332;
}

.site-hero--about-light .navbar-secondary__link.active{
  color: #1a2332;
}

.site-hero--about-light .navbar-secondary__link--external .bi{
  opacity: 0.7;
}

.site-hero--about-light .navbar-tc-main.navbar-overlay{
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(26, 35, 50, 0.1);
  backdrop-filter: blur(8px);
}

.site-hero--about-light .navbar-tc-main .navbar-nav-tc .nav-link{
  color: rgba(26, 35, 50, 0.86);
}

.site-hero--about-light .navbar-tc-main .navbar-nav-tc .nav-link:hover,
.site-hero--about-light .navbar-tc-main .navbar-nav-tc .nav-link:focus{
  color: #1a2332;
}

.site-hero--about-light .navbar-tc-main .navbar-nav-tc .nav-link.active{
  color: #1a2332;
}

.site-hero--about-light .navbar-tc-main .tc-nav-chevron{
  color: var(--tc-orange-left);
}

.site-hero--about-light .navbar-tc-main .dropdown-menu{
  background: #fff;
  border-color: rgba(26, 35, 50, 0.12);
}

.site-hero--about-light .navbar-tc-main .dropdown-item{
  color: #1a2332;
}

.site-hero--about-light .navbar-tc-main .dropdown-item:hover,
.site-hero--about-light .navbar-tc-main .dropdown-item:focus{
  color: #1a2332;
  background: rgba(0, 145, 138, 0.1);
}

.site-hero--about-light .navbar-tc-main .dropdown-item.active{
  color: #1a2332;
  background: transparent;
}

.site-hero--about-light .brand-mark svg path[fill="#fff"]{
  fill: #1a2332;
}

.site-hero--about-light .navbar-toggler{
  border-color: rgba(26, 35, 50, 0.22);
}

.site-hero--about-light .navbar-toggler-icon{
  filter: invert(1) brightness(0.15);
}

.site-hero--about-light .cap-hero-copy{
  color: #1a2332;
}

.site-hero--about-light .cap-hero-title{
  color: #1a2332;
}

.site-hero--about-light .cap-hero-subtitle{
  color: rgba(26, 35, 50, 0.78);
}

.cap-hero--about{
  position: relative;
  overflow: hidden;
}

.site-hero--compact .cap-hero.cap-hero--about{
  padding: 0;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.cap-hero--about .container{
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

/* Always two columns — copy left, team photo right (never stack) */
.cap-hero--about .cap-hero-row{
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  margin: 0;
  --bs-gutter-y: 0;
}

.cap-hero--about .cap-hero-row > .col-lg-6{
  flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
  min-width: 0;
}

.cap-hero--about .cap-hero-copy{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.25rem) clamp(0.75rem, 2vw, 1.25rem) clamp(1.25rem, 3vw, 2rem) 0;
}

.cap-hero--about .cap-hero-row > .col-lg-6:last-child{
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.cap-hero-visual--about-team{
  position: relative;
  flex: 1 1 auto;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.cap-hero-visual--about-team::before{
  display: none;
}

.cap-hero-team-photo{
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 100%;
  object-fit: cover;
  object-position: 72% top;
}

.about-hero-backdrop{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 95% 85% at 92% 8%, rgba(255, 232, 190, 0.72) 0%, transparent 58%),
    radial-gradient(ellipse 70% 60% at 78% 55%, rgba(255, 255, 255, 0.92) 0%, transparent 62%),
    linear-gradient(112deg, #d5dee9 0%, #edf1f6 34%, #faf6ef 68%, #dde8f4 100%);
}

.about-hero-backdrop::before{
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0) 0,
    rgba(255,255,255,0) calc(clamp(58px, 6.5vw, 82px) - 3px),
    rgba(255,255,255,0.72) calc(clamp(58px, 6.5vw, 82px) - 3px),
    rgba(255,255,255,0.72) clamp(58px, 6.5vw, 82px)
  );
  opacity: 0.55;
}

.about-hero-backdrop::after{
  content: "";
  position: absolute;
  top: -8%;
  right: -4%;
  width: min(58%, 520px);
  height: 115%;
  background: linear-gradient(
    168deg,
    rgba(255, 248, 225, 0.95) 0%,
    rgba(255, 255, 255, 0.55) 38%,
    rgba(255, 255, 255, 0) 72%
  );
  transform: skewX(-10deg);
  filter: blur(10px);
}

@media (max-width: 991.98px){
  .site-hero.site-hero--about-light:not(.site-hero--work-with-us-header){
    min-height: 0;
  }

  .cap-hero--about .container{
    display: grid;
    grid-template-columns: 1fr;
  }

  .cap-hero--about .cap-hero-row{
    display: contents;
    height: auto;
  }

  .cap-hero--about .cap-hero-copy{
    display: contents;
  }

  .cap-hero--about .cap-hero-row > .col-lg-6{
    flex: none;
    max-width: none;
    width: auto;
  }

  .cap-hero--about .cap-hero-visual--about-team{
    grid-row: 1;
    grid-column: 1;
    aspect-ratio: 457 / 682;
    min-height: clamp(22rem, 110vw, 36rem);
    max-height: none;
  }

  .cap-hero--about .cap-hero-visual--about-team::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(7, 11, 18, 0.08) 0%,
      rgba(7, 11, 18, 0.22) 45%,
      rgba(7, 11, 18, 0.62) 100%
    );
  }

  .cap-hero--about .cap-hero-team-photo{
    min-height: 0;
    object-position: 50% 12%;
  }

  .cap-hero--about .cap-hero-title{
    grid-row: 1;
    grid-column: 1;
    align-self: center;
    justify-self: start;
    position: relative;
    z-index: 3;
    margin: 0;
    padding: 0 clamp(1rem, 3vw, 1.25rem);
    color: #fff;
    font-size: clamp(1.65rem, 4.5vw, 2.35rem);
    text-shadow: 0 2px 18px rgba(7, 11, 18, 0.45);
  }

  .cap-hero--about .cap-hero-subtitle{
    grid-row: 2;
    grid-column: 1;
    margin: 0;
    padding: clamp(1.25rem, 4vw, 2rem) clamp(1rem, 3vw, 1.25rem) clamp(1.5rem, 4vw, 2.5rem);
    font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  }

  .about-hero-backdrop::after{
    width: 75%;
    right: -12%;
  }
}

/* Work With Us — light hero with team photo (matches About Us backdrop) */
.site-hero.site-hero--work-with-us-header{
  min-height: 0;
}

.site-hero.site-hero--about-light.site-hero--work-with-us-header{
  min-height: 100svh;
}

.site-hero--compact .cap-hero.cap-hero--work-with-us{
  padding: 0;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.cap-hero--work-with-us{
  position: relative;
  overflow: hidden;
  flex: 1 1 auto;
}

.cap-hero--work-with-us .about-hero-backdrop{
  z-index: 0;
  right: 50%;
}

.cap-hero-work-with-us-photo{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: calc(50% - 50vw);
  z-index: 1;
  margin: 0;
  pointer-events: none;
  overflow: hidden;
  background: #e8ecf0;
  padding: 0;
}

.cap-hero-work-with-us-photo img{
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 58% center;
}

.cap-hero--work-with-us .container{
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding: clamp(1.25rem, 3.5vw, 2.5rem) clamp(1rem, 3vw, 2rem);
  min-height: 0;
}

.cap-hero--work-with-us .cap-hero-copy{
  max-width: min(36rem, 48%);
}

.cap-hero--work-with-us .cap-hero-subtitle{
  margin-bottom: 1.35rem;
}

.cap-hero--work-with-us .cap-hero-cta-row .btn{
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
}

@media (max-width: 991.98px){
  .site-hero.site-hero--about-light.site-hero--work-with-us-header{
    min-height: 0;
  }

  .cap-hero--work-with-us{
    display: flex;
    flex-direction: column;
  }

  .cap-hero--work-with-us .about-hero-backdrop{
    right: 0;
    top: clamp(16rem, 52vw, 22rem);
    bottom: 0;
  }

  .cap-hero-work-with-us-photo{
    position: relative;
    order: 1;
    left: 0;
    right: 0;
    top: auto;
    bottom: auto;
    width: 100%;
    height: clamp(16rem, 52vw, 22rem);
    min-height: clamp(16rem, 52vw, 22rem);
    flex-shrink: 0;
  }

  .cap-hero-work-with-us-photo img{
    object-position: center 35%;
    height: 100%;
  }

  .cap-hero--work-with-us .container{
    order: 2;
    align-items: flex-start;
    width: 100%;
    padding: clamp(1.25rem, 4vw, 2rem) clamp(1rem, 3vw, 1.25rem) clamp(1.5rem, 4vw, 2.5rem);
  }

  .cap-hero--work-with-us .cap-hero-copy{
    max-width: 100%;
  }

  .cap-hero--work-with-us .cap-hero-title{
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }

  .cap-hero--work-with-us .cap-hero-cta-row .btn{
    width: 100%;
  }
}

/* TC System — full-screen photo hero */
.site-hero.site-hero--tc-system-header{
  min-height: 0;
  background: #070b12;
}

.site-hero--compact .cap-hero.cap-hero--tc-system-photo{
  position: relative;
  padding: 0;
  min-height: max(clamp(28rem, 75vh, 52rem), calc(100svh - 9rem));
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}

.cap-hero--tc-system-photo .cap-hero-photo-layer{
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #070b12;
}

.cap-hero--tc-system-photo .cap-hero-photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  display: block;
}

.cap-hero--tc-system-photo .cap-hero-photo-scrim{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(7, 11, 18, 0.94) 0%,
    rgba(7, 11, 18, 0.82) 28%,
    rgba(7, 11, 18, 0.45) 52%,
    rgba(7, 11, 18, 0.15) 72%,
    rgba(7, 11, 18, 0.08) 100%
  );
}

.cap-hero--tc-system-photo .container{
  position: relative;
  z-index: 2;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.cap-hero--tc-system-photo .cap-hero-copy{
  max-width: min(36rem, 92%);
}

@media (max-width: 991.98px){
  .cap-hero--tc-system-photo{
    min-height: clamp(28rem, 78vh, 40rem);
  }

  .cap-hero--tc-system-photo .cap-hero-photo{
    object-position: 65% center;
  }

  .cap-hero--tc-system-photo .cap-hero-photo-scrim{
    background: linear-gradient(
      180deg,
      rgba(7, 11, 18, 0.88) 0%,
      rgba(7, 11, 18, 0.72) 40%,
      rgba(7, 11, 18, 0.55) 100%
    );
  }

  .cap-hero--tc-system-photo .cap-hero-subtitle{
    margin-bottom: 1.35rem;
  }

  .cap-hero--tc-system-photo .cap-hero-cta-row .btn{
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    width: 100%;
    max-width: 22rem;
  }
}

/* JCI 24/7 Service — hero background photo */
.site-hero.site-hero--247-service{
  min-height: 0;
  background: #070b12;
}

.site-hero--compact .cap-hero.cap-hero--247-service{
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  isolation: isolate;
}

.cap-hero--247-service .cap-hero-photo-layer{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cap-hero--247-service .cap-hero-photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  display: block;
}

.cap-hero--247-service .cap-hero-photo-scrim{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(7, 11, 18, 0.92) 0%,
    rgba(7, 11, 18, 0.78) 34%,
    rgba(7, 11, 18, 0.42) 58%,
    rgba(7, 11, 18, 0.28) 100%
  );
}

.cap-hero--247-service .container{
  position: relative;
  z-index: 2;
}

@media (max-width: 767.98px){
  .cap-hero--247-service .cap-hero-photo{
    object-position: 50% 40%;
  }

  .cap-hero--247-service .cap-hero-photo-scrim{
    background: linear-gradient(
      180deg,
      rgba(7, 11, 18, 0.9) 0%,
      rgba(7, 11, 18, 0.78) 45%,
      rgba(7, 11, 18, 0.45) 100%
    );
  }
}

/* Our Approach — split diagram (left) + numbered process copy (right) */
.cap-section--process-split{
  overflow: visible;
}

.cap-section--process-split > .container{
  max-width: min(1180px, 96vw);
}

.process-split{
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.25rem, 3.5vw, 3rem);
  align-items: center;
}

.process-split__visual{
  justify-self: start;
  width: 100%;
  min-width: 0;
}

.process-split__visual .building-diagram{
  --process-visual-offset-x: 0px;
  --process-visual-offset-y: 0px;
  margin-left: var(--process-visual-offset-x);
  margin-top: var(--process-visual-offset-y);
  margin-right: auto;
  max-width: 100%;
}

@media (min-width: 992px){
  .process-split__visual{
    margin-left: clamp(-2.5rem, -4.5vw, -1.25rem);
  }
}

.process-split__copy{
  justify-self: end;
  width: 100%;
  max-width: 38rem;
}

.process-split__head{
  text-align: left;
  margin: 0 0 clamp(1.25rem, 2.5vw, 2rem);
  max-width: none;
}

.process-split__head .cap-section__title{
  text-align: left;
}

.process-split__more{
  text-align: left;
}

.cap-section--process-split .faq-block__more{
  color: rgba(255,255,255,.72);
}

.cap-section--process-split .faq-block__more:hover{
  color: var(--accent-orange);
}

@media (max-width: 991.98px){
  .process-split{
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 2.75rem);
  }

  .process-split__visual{
    justify-self: center;
  }

  .process-split__copy{
    justify-self: start;
    max-width: 44rem;
    margin-inline: auto;
  }
}

/* Unlisted / hidden pages */
body.page-unlisted{
  visibility: hidden;
}

body.page-unlisted::before{
  content: '';
  visibility: visible;
  display: block;
  min-height: 100vh;
  background: var(--paper, #f8f7f4);
}

/* Our Approach — scroll-driven process section */
.cap-section--process-scroll{
  overflow: visible;
}

.process-scroll-section{
  position: relative;
  --process-scroll-section-min-vh: 300;
  --process-scroll-container-max: 1320;
  --process-scroll-diagram-col-pct: 50;
  --process-scroll-text-col-pct: 50;
  --process-scroll-diagram-bleed: 0px;
  --process-port-width-pct: 90;
  --process-port-height-pct: 96;
  --process-port-min-width: 240px;
  --process-port-min-height: 280px;
  --process-scroll-diagram-max-width: 720;
  --process-scroll-sticky-min-height: auto;
}

.process-scroll-inner{
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.process-scroll__diagram-col .building-diagram{
  --process-visual-offset-x: 0px;
  --process-visual-offset-y: 0px;
  --process-optimize-progress: 0;
  --process-support-progress: 0;
  --process-handoff-progress: 0;
  margin-left: var(--process-visual-offset-x);
  margin-top: var(--process-visual-offset-y);
  margin-right: auto;
  max-width: 100%;
  overflow: visible;
}

.process-scroll__head{
  text-align: left;
  margin: 0 0 clamp(1.25rem, 2.5vw, 2rem);
  max-width: none;
}

.process-scroll__head .cap-section__title{
  text-align: left;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.process-scroll__more{
  text-align: left;
}

.cap-section--process-scroll .faq-block__more{
  color: rgba(255,255,255,.72);
}

.cap-section--process-scroll .faq-block__more:hover{
  color: var(--accent-orange);
}

.process-scroll-copy-block .numbered-section-title{
  margin: 0 0 0.65rem;
}

.process-scroll-copy-block .numbered-section-body{
  margin: 0;
}

.process-scroll-section .building-diagram--process .building-diagram__center{
  width: clamp(
    var(--process-port-min-width, 240px),
    min(calc(var(--process-port-width-pct, 90) * 1%), 100%),
    100%
  );
  height: clamp(
    var(--process-port-min-height, 280px),
    min(calc(var(--process-port-height-pct, 96) * 1%), 100%),
    100%
  );
}

@media (min-width: 992px){
  .process-scroll-section{
    overflow-x: visible;
    min-height: calc(var(--process-scroll-section-min-vh, 300) * 1vh);
    display: flex;
    flex-direction: column;
  }

  .process-scroll-inner{
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    max-width: min(calc(var(--process-scroll-container-max, 1320) * 1px), 98vw);
  }

  .process-scroll-layout.row{
    flex: 1 1 auto;
    min-height: 100%;
    align-items: stretch;
    display: grid;
    grid-template-columns:
      minmax(0, calc(var(--process-scroll-diagram-col-pct, 50) * 1%))
      minmax(0, calc(var(--process-scroll-text-col-pct, 50) * 1%));
  }

  .process-scroll-layout.row > [class*="col-"]{
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  /* Full column height gives sticky a scroll runway (same pattern as BMS incentives). */
  .process-scroll__diagram-col{
    align-self: stretch;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }

  .process-scroll__diagram-wrap{
    flex: 1 1 auto;
    min-height: 100%;
  }

  .process-scroll-visual{
    position: sticky;
    top: 0;
    align-self: flex-start;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: var(--process-scroll-diagram-bleed, 0px);
    padding: clamp(1rem, 2.5vw, 2rem) 0;
    will-change: transform;
  }

  .process-scroll__text-col{
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }

  .process-scroll__diagram-col .building-diagram--process{
    max-width: none;
    width: 100%;
    overflow: visible;
  }

  .process-scroll-text-viewport-wrap{
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    width: 100%;
  }

  .process-scroll-text-viewport{
    height: min(32rem, 85vh);
    height: min(32rem, 85dvh);
    overflow: hidden;
    width: 100%;
    flex: 1 1 auto;
  }

  .process-scroll-text-track{
    position: relative;
    will-change: transform;
  }

  .process-scroll-copy-block{
    box-sizing: border-box;
    height: min(32rem, 85vh);
    height: min(32rem, 85dvh);
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.75rem 0 1rem clamp(4.75rem, 7vw, 6.25rem);
    position: relative;
  }

  .process-scroll__text-col{
    max-width: 38rem;
    margin-left: auto;
  }
}

/* Continuous rail — scrolls with copy track; orange fill driven by --process-rail-progress */
.process-scroll-rail{
  position: absolute;
  left: clamp(1.05rem, 1.5vw, 1.325rem);
  top: 12.5%;
  height: 75%;
  width: 2px;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.process-scroll-rail__track,
.process-scroll-rail__progress{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-radius: 999px;
}

.process-scroll-rail__track{
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
}

.process-scroll-rail__progress{
  height: calc(var(--process-rail-progress, 0) * 100%);
  background: linear-gradient(180deg, var(--accent-orange), #f8951d);
  box-shadow: 0 0 14px rgba(244, 121, 45, 0.55);
}

.process-copy-step{
  --process-step-size: clamp(2.15rem, 3vw, 2.65rem);
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.18s ease;
}

.process-copy-step__marker{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--process-step-size);
  height: var(--process-step-size);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #111927;
  color: rgba(255, 255, 255, 0.72);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Cascadia Mono", "Roboto Mono", Consolas, monospace;
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: 0 0 0 4px rgba(17, 25, 39, 0.92);
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.process-copy-step__label{
  display: none;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-0.25rem);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.process-scroll-copy-block.is-process-copy-revealed .process-copy-step__marker,
.process-scroll-copy-block.is-process-copy-active .process-copy-step__marker{
  border-color: rgba(244, 121, 45, 0.8);
  color: #fff;
}

.process-scroll-copy-block.is-process-copy-active .process-copy-step{
  color: #fff;
}

.process-scroll-copy-block.is-process-copy-active .process-copy-step__marker{
  background: var(--accent-orange);
  box-shadow:
    0 0 0 4px rgba(17, 25, 39, 0.92),
    0 0 22px rgba(244, 121, 45, 0.52);
}

.process-scroll-copy-block.is-process-copy-active .process-copy-step__label{
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 991.98px){
  /* Mobile: building on a timer above a stacked stage list (no scroll runway / snap). */
  .process-scroll-section,
  .process-scroll-section--mobile-static{
    min-height: 0;
    display: block;
  }

  .process-scroll-inner{
    display: block;
    min-height: 0;
    padding-bottom: clamp(1.25rem, 3vw, 2rem);
  }

  .process-scroll-layout.row{
    min-height: 0;
  }

  .process-scroll__diagram-col{
    min-height: 0;
    display: block;
  }

  .process-scroll__diagram-wrap{
    position: relative;
    top: auto;
    height: auto;
    max-height: none;
    display: grid;
    grid-template-rows: auto auto;
    gap: clamp(0.85rem, 2.5vw, 1.35rem);
    overflow: visible;
    padding-bottom: clamp(0.5rem, 1.5vw, 1rem);
    align-content: start;
    width: 100%;
  }

  .process-scroll-visual{
    position: relative;
    top: auto;
    z-index: 1;
    grid-row: 1;
    min-height: 0;
    max-height: min(42vh, 20rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0 0;
    background: inherit;
    overflow: hidden;
    isolation: isolate;
  }

  .process-scroll__diagram-col .building-diagram--process{
    width: min(100%, calc(var(--process-scroll-diagram-max-width, 720) * 1px));
    margin-inline: auto;
    max-height: 100%;
  }

  /* Match desktop diagram + viewport ratios so SVG/node overlays stay aligned with the model */
  .process-scroll-section .building-diagram--process-scroll{
    --process-port-width-pct: 90 !important;
    --process-port-height-pct: 96 !important;
    aspect-ratio: 4 / 3;
  }

  .process-scroll__copy-mobile{
    grid-row: 2;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 0;
    max-width: 44rem;
    margin-inline: auto;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    overflow: visible;
  }

  .process-scroll__copy-mobile .process-scroll__head{
    flex: 0 0 auto;
    margin-bottom: clamp(0.65rem, 1.75vw, 1rem);
  }

  .process-scroll-text-viewport--mobile{
    flex: 0 0 auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
    position: relative;
    width: 100%;
    height: auto !important;
  }

  .process-scroll-text-viewport--mobile .process-scroll-text-track{
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 1.5rem);
    will-change: auto;
  }

  .process-scroll-text-viewport--mobile .process-scroll-copy-block{
    box-sizing: border-box;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.65rem;
    row-gap: 0.45rem;
    align-content: start;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    will-change: auto;
  }

  .process-scroll-text-viewport--mobile .process-scroll-copy-block.is-process-copy-active{
    opacity: 1;
  }

  /* Keep stage markers static on mobile — only the model cycles. */
  .process-scroll-section--mobile-static .process-scroll-text-viewport--mobile .process-copy-step,
  .process-scroll-section--mobile-static .process-scroll-text-viewport--mobile .process-copy-step__marker{
    color: rgba(255, 255, 255, 0.72);
  }

  .process-scroll-section--mobile-static .process-scroll-text-viewport--mobile .process-copy-step__marker{
    border-color: rgba(255, 255, 255, 0.28);
    background: #111927;
    box-shadow: 0 0 0 4px rgba(17, 25, 39, 0.92);
  }

  .process-scroll-text-viewport--mobile .process-scroll-rail{
    display: none;
  }

  .process-scroll-text-viewport--mobile .process-copy-step{
    --process-step-size: clamp(1.85rem, 5.5vw, 2.35rem);
    position: static;
    top: auto;
    left: auto;
    transform: none;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    display: inline-flex;
    margin: 0;
    gap: 0;
  }

  .process-scroll-text-viewport--mobile .process-copy-step__label{
    display: none;
  }

  .process-scroll-text-viewport--mobile .process-scroll-copy-block .numbered-section-title{
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin: 0 !important;
    line-height: 1.1;
  }

  .process-scroll-text-viewport--mobile .process-scroll-copy-block .numbered-section-body{
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0 !important;
    line-height: 1.5;
  }

  .process-scroll__copy-mobile .process-scroll__more{
    flex: 0 0 auto;
    margin: 0.35rem 0 0 !important;
    padding: 0;
    text-align: left;
  }

  .process-scroll__more--mobile{
    max-width: 44rem;
    margin-inline: auto !important;
    padding: clamp(0.85rem, 2.25vw, 1.35rem) 0 0;
    text-align: left;
  }
}

/* Dev — process scroll layout + construction viewport (Our Approach) */
.process-scroll-layout-dev{
  position: fixed;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 10000;
  width: min(18.5rem, calc(100vw - 1.5rem));
  font-size: 0.62rem;
  line-height: 1.2;
  color: rgba(255,255,255,.88);
  background: rgba(8,12,18,.94);
  border: 1px dashed rgba(0,145,138,.65);
  border-radius: 0.45rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  pointer-events: auto;
}

.process-scroll-layout-dev.is-docked{
  right: auto;
  bottom: auto;
}

.process-scroll-layout-dev.is-dragging{
  user-select: none;
}

.process-scroll-layout-dev-tag{
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.55rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #5fd9d2;
  cursor: grab;
  list-style: none;
  user-select: none;
  touch-action: none;
}

.process-scroll-layout-dev.is-dragging .process-scroll-layout-dev-tag{
  cursor: grabbing;
}

.process-scroll-layout-dev-tag::-webkit-details-marker{
  display: none;
}

.process-scroll-layout-dev-body{
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-height: min(72vh, 34rem);
  overflow: auto;
  padding: 0 0.55rem 0.5rem;
}

.process-scroll-layout-dev-meta{
  margin: 0;
  font-size: 0.52rem;
  color: rgba(255,255,255,.62);
}

.process-scroll-layout-dev-meta strong{
  color: #fff;
}

.process-scroll-layout-dev-section{
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 0.2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

.process-scroll-layout-dev-section:first-of-type{
  border-top: none;
  padding-top: 0;
}

.process-scroll-layout-dev-heading{
  margin: 0;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.process-scroll-layout-dev-row{
  display: grid;
  grid-template-columns: minmax(4.2rem, 1fr) minmax(4.5rem, 1fr);
  align-items: center;
  gap: 0.35rem;
  margin: 0;
}

.process-scroll-layout-dev-row span{
  color: rgba(255,255,255,.72);
}

.process-scroll-layout-dev-row input[type="range"]{
  width: 100%;
  margin: 0;
  accent-color: #00918A;
}

.process-scroll-layout-dev-freeze-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
}

.process-scroll-layout-dev-freeze-label{
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.process-scroll-layout-dev-freeze-label span:first-child{
  font-weight: 600;
  color: rgba(255,255,255,.82);
}

.process-scroll-layout-dev-freeze-status{
  font-size: 0.48rem;
  color: rgba(255,255,255,.45);
}

.process-scroll-layout-dev-freeze-status.is-frozen{
  color: #7ce8e0;
}

.process-scroll-layout-dev-freeze-actions{
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}

.process-scroll-layout-dev-btn{
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 0.3rem;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.2rem 0.35rem;
  cursor: pointer;
}

.process-scroll-layout-dev-btn:hover{
  border-color: rgba(0,145,138,.55);
  color: #fff;
}

.process-scroll-layout-dev-btn--primary{
  border-color: rgba(0,145,138,.55);
  background: rgba(0,145,138,.18);
}

.process-scroll-layout-dev-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.process-scroll-layout-dev-note{
  margin: 0;
  font-size: 0.48rem;
  color: rgba(255,255,255,.45);
}

.process-scroll-layout-dev-export{
  display: block;
  margin: 0;
  padding: 0.35rem;
  max-height: 5.5rem;
  overflow: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.46rem;
  line-height: 1.35;
  white-space: pre-wrap;
  word-break: break-word;
  color: rgba(255,255,255,.72);
  background: rgba(0,0,0,.28);
  border-radius: 0.3rem;
}

.process-scroll-layout-dev.is-desktop-only-disabled .process-scroll-layout-dev-section--grid{
  opacity: 0.45;
  pointer-events: none;
}

/* ── Numbered process sections (Our Approach body) ── */

.numbered-section-list{
  counter-reset: numbered-step;
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3vw, 2.75rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

.numbered-section{
  counter-increment: numbered-step;
  display: grid;
  grid-template-columns: minmax(3.25rem, auto) 1fr;
  gap: clamp(1rem, 2vw, 1.65rem);
  align-items: start;
}

.numbered-section::before{
  content: counter(numbered-step, decimal-leading-zero);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Cascadia Mono", "Roboto Mono", Consolas, monospace;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--accent-orange);
  line-height: 1.05;
  padding-top: 0.18rem;
}

.numbered-section-title{
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #131820;
  margin: 0 0 0.45rem;
  line-height: 1.2;
}

.numbered-section-body{
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.6;
  color: rgba(20, 26, 36, 0.78);
  margin: 0;
  max-width: 38rem;
}

/* On dark backgrounds, lift the body and titles */
.cap-section--dark .numbered-section-title{ color: #fff; }
.cap-section--dark .numbered-section-body{ color: rgba(255,255,255,.8); }

/* ── Contact Panel (right column on JCI 24/7 Service hero; reusable
       elsewhere as a sticky / footer block) ── */

.contact-panel{
  display: flex;
  flex-direction: column;
  background: rgba(8, 14, 22, 0.72);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  overflow: hidden;
  color: #fff;
  box-shadow: 0 24px 60px -32px rgba(0,0,0,.55);
}

.contact-panel__tier{
  padding: clamp(1.05rem, 1.8vw, 1.4rem) clamp(1.15rem, 2vw, 1.55rem);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.contact-panel__tier:last-child{ border-bottom: 0; }

.contact-panel__label{
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin: 0 0 0.5rem;
}

/* Tier 1 — Emergency */
.contact-panel__tier--emergency{
  background:
    linear-gradient(135deg, rgba(244,121,45,.18), rgba(248,149,29,.08) 60%, transparent),
    rgba(8, 14, 22, 0.5);
}

.contact-panel__emergency-row{
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: #fff;
}

.contact-panel__emergency-row:hover,
.contact-panel__emergency-row:focus-visible{
  color: #fff;
  text-decoration: none;
}

.contact-panel__emergency-row:hover .contact-panel__emergency-number{
  color: var(--tc-orange-right);
}

.contact-panel__emergency-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(244,121,45,.18);
  color: var(--tc-orange-left);
  font-size: 1.1rem;
}

.contact-panel__emergency-text{
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.25;
}

.contact-panel__emergency-number{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Cascadia Mono", "Roboto Mono", Consolas, monospace;
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.005em;
  color: #fff;
  transition: color 0.18s ease;
}

/* Tier 2 — Standard service request (primary CTA) */
.contact-panel__tier--service{
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-panel__cta-prompt{
  font-size: 0.95rem;
  color: rgba(255,255,255,.78);
  line-height: 1.45;
  margin: 0;
}

.contact-panel__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: var(--accent-orange);
  border: 1px solid var(--accent-orange);
  color: #fff;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.005em;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.contact-panel__cta:hover,
.contact-panel__cta:focus-visible{
  background: #de6d27;
  border-color: #de6d27;
  color: #fff;
  text-decoration: none;
}

/* Tier 3 — Async (email) */
.contact-panel__async{
  font-size: 0.95rem;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
  margin: 0;
}

.contact-panel__async a{
  color: var(--tc-teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,145,138,.4);
  transition: color 0.18s ease, border-color 0.18s ease;
}

.contact-panel__async a:hover{
  color: var(--tc-orange-right);
  border-bottom-color: rgba(248,149,29,.5);
}

.contact-panel__async--below-cta{
  text-align: center;
  margin-top: 0.15rem;
  font-size: 0.9rem;
}

/* ── In-page FAQ block (short subset of /faq) ── */

.faq-block{
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 56rem;
  margin: 0 auto;
}

.faq-block__title{
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #131820;
  margin: 0 0 0.4rem;
}

.faq-block__item{
  border: 1px solid rgba(20, 26, 36, 0.12);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.faq-block__item[open]{
  border-color: rgba(244,121,45,.45);
  box-shadow: 0 6px 18px -10px rgba(20, 26, 36, 0.18);
}

.faq-block__question{
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 1rem;
  color: #131820;
  user-select: none;
}

.faq-block__question::-webkit-details-marker{ display: none; }
.faq-block__question::marker{ display: none; }

.faq-block__chevron{
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--accent-orange);
  transition: transform 0.2s ease;
}

.faq-block__item[open] .faq-block__chevron{
  transform: rotate(-180deg);
}

.faq-block__answer{
  padding: 0 1.15rem 1.05rem;
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(20, 26, 36, 0.78);
}

.faq-block__answer p{ margin: 0; }
.faq-block__answer p + p{ margin-top: 0.65rem; }

.faq-block__more{
  display: inline-block;
  margin-top: 0.85rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--tc-teal);
  text-decoration: none;
  transition: color 0.18s ease;
}

.faq-block__more:hover{
  color: var(--accent-orange);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cap-section--dark .faq-block__title{ color: #fff; }
.cap-section--dark .faq-block__item{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
}
.cap-section--dark .faq-block__question{ color: #fff; }
.cap-section--dark .faq-block__answer{ color: rgba(255,255,255,.78); }

/* ── Cross-links block (plain typographic link list at bottom of page) ── */

.cross-links{
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0 0;
  border-top: 1px solid rgba(20, 26, 36, 0.1);
  max-width: 56rem;
  margin: 0 auto;
}

.cross-links__label{
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(20, 26, 36, 0.55);
  margin: 0 0 0.15rem;
}

.cross-links__item{
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #131820;
  text-decoration: none;
  transition: color 0.18s ease;
}

.cross-links__item:hover{
  color: var(--accent-orange);
}

.cross-links__item-arrow{
  display: inline-block;
  transition: transform 0.18s ease;
}

.cross-links__item:hover .cross-links__item-arrow{
  transform: translateX(2px);
}

.cross-links__item-detail{
  display: block;
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(20, 26, 36, 0.6);
  margin-top: 0.12rem;
}

.cap-section--dark .cross-links{ border-top-color: rgba(255,255,255,.12); }
.cap-section--dark .cross-links__label{ color: rgba(255,255,255,.6); }
.cap-section--dark .cross-links__item{ color: #fff; }
.cap-section--dark .cross-links__item-detail{ color: rgba(255,255,255,.65); }

/* ── Routing module (TC System "pick your path" — two equal-weight cards) ── */

.routing-module{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px){
  .routing-module{
    grid-template-columns: 1fr 1fr;
  }
}

.routing-module__path{
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 2.5vw, 1.85rem) clamp(1.35rem, 2.5vw, 2rem);
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(20, 26, 36, 0.1);
  box-shadow: 0 14px 40px -28px rgba(20, 26, 36, 0.4);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.routing-module__path:hover{
  border-color: rgba(244, 121, 45, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -28px rgba(20, 26, 36, 0.5);
}

.routing-module__tag{
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin: 0 0 0.55rem;
}

.routing-module__title{
  font-size: clamp(1.15rem, 1.85vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #131820;
  margin: 0 0 0.55rem;
  line-height: 1.2;
}

.routing-module__body{
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(20, 26, 36, 0.78);
  margin: 0 0 1.15rem;
  flex-grow: 1;
}

.routing-module__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  align-self: flex-start;
  padding: 0.65rem 1.15rem;
  background: var(--accent-orange);
  border: 1px solid var(--accent-orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.routing-module__cta:hover,
.routing-module__cta:focus-visible{
  background: #de6d27;
  border-color: #de6d27;
  color: #fff;
  text-decoration: none;
}

.routing-module__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.routing-module__cta--outline{
  background: transparent;
  color: #f4792d;
  border-color: rgba(244, 121, 45, 0.55);
}

.routing-module__cta--outline:hover,
.routing-module__cta--outline:focus-visible{
  background: rgba(244, 121, 45, 0.08);
  color: #de6d27;
  border-color: #de6d27;
}

button.routing-module__cta{
  cursor: pointer;
  font: inherit;
}

.contact-modal__content{
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  color: #131820;
}

.contact-modal__header{
  border-bottom: 1px solid rgba(20, 26, 36, 0.08);
  padding: 1.1rem 1.35rem;
  background: #fff;
}

.contact-modal__header .modal-title{
  color: #131820;
}

.contact-modal__body{
  padding: 1.35rem 1.35rem 1.5rem;
  background: #fff;
}

.contact-modal__lede{
  color: rgba(20, 26, 36, 0.78);
  line-height: 1.55;
}

/* Modal sits outside dark sections — use light form palette */
.contact-modal .assessment-form-group{
  background: #f8f7f4;
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: none;
}

.contact-modal .assessment-form-group-title{
  color: #131820;
}

.contact-modal .assessment-label{
  color: #2a3340;
}

.contact-modal .assessment-optional{
  color: rgba(19, 24, 32, 0.5);
}

.contact-modal .assessment-input{
  color: #131820;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.contact-modal .assessment-input::placeholder{
  color: rgba(19, 24, 32, 0.4);
}

.contact-modal .assessment-input:focus{
  background-color: #fff;
  border-color: var(--tc-teal);
  box-shadow: 0 0 0 3px rgba(0, 145, 138, 0.15);
}

.contact-modal select.assessment-input{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(19,24,32,0.55)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

.contact-modal select.assessment-input option{
  background: #fff;
  color: #131820;
}

.contact-modal select.assessment-input:invalid{
  color: rgba(19, 24, 32, 0.45);
}

.contact-modal .form-message--error{
  color: #7f1d1d;
  background: rgba(254, 226, 226, 0.95);
  border: 1px solid rgba(248, 113, 113, 0.55);
}

.contact-modal .form-success{
  background: rgba(0, 145, 138, 0.1);
  border: 1px solid rgba(0, 145, 138, 0.35);
}

.contact-modal .form-success-title{
  color: #131820;
}

.contact-modal .form-success-text{
  color: rgba(19, 24, 32, 0.78);
}

.cap-section--dark .routing-module__path{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}
.cap-section--dark .routing-module__path:hover{
  border-color: rgba(244,121,45,.55);
  background: rgba(255,255,255,.06);
}
.cap-section--dark .routing-module__title{ color: #fff; }
.cap-section--dark .routing-module__body{ color: rgba(255,255,255,.78); }

.partner-logo-row{
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  flex-wrap: wrap;
}

.partner-logo--jci,
.partner-logo--niagara{
  display: block;
  height: clamp(2.75rem, 6vw, 4rem);
  width: auto;
}

/* ── Building diagram (TC System Body 1 — 6 capability labels around a
       central building, hover lights up label + connecting line) ── */

.building-diagram{
  position: relative;
  margin: 0 auto;
  max-width: 1080px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

/* TC System — room for BMS effect chips (energy meter) and flip-out panels */
.building-diagram--tc-system{
  overflow: visible;
  max-width: 1120px;
  padding: 1rem 1.25rem 3.5rem;
  box-sizing: content-box;
}

.building-diagram--tc-system[data-active-cap="metering"]{
  padding-bottom: 5rem;
  padding-right: 1.5rem;
}

.cap-section--diagram{
  overflow: visible;
}

.cap-section--diagram > .container{
  overflow: visible;
}

.building-diagram__svg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.building-diagram__line{
  fill: none;
  stroke: rgba(244, 121, 45, 0.22);
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 0.4 6.5;
  transition: stroke 0.25s ease, stroke-width 0.25s ease;
}

.building-diagram__line.is-lit{
  stroke: var(--accent-orange);
  stroke-width: 2.75;
  filter: drop-shadow(0 0 8px rgba(244,121,45,.45));
}

.building-diagram__remote-link{
  fill: none;
  stroke: rgba(244, 121, 45, 0.18);
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 0.4 6.5;
  opacity: 0;
  transition: opacity 0.35s ease, stroke 0.25s ease, stroke-width 0.25s ease;
}

.building-diagram--remote-focus .building-diagram__remote-link{
  opacity: 1;
  stroke: var(--accent-orange);
  stroke-width: 2.75;
  filter: drop-shadow(0 0 10px rgba(244,121,45,.5));
}

.building-diagram--remote-focus .building-diagram__line[data-cap="remote"]{
  opacity: 0;
}

.building-diagram__remote-node{
  position: absolute;
  top: 16%;
  left: 56%;
  right: auto;
  z-index: 4;
  max-width: 24%;
  opacity: 0;
  transform: translateX(-50%) scale(0.88) translateY(8px);
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.building-diagram--remote-focus .building-diagram__remote-node{
  top: 36%;
  left: 50%;
  opacity: 1;
  transform: translateX(-50%) scale(1) translateY(0);
}

.building-diagram__antenna{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent-orange);
}

.building-diagram__antenna-icon{
  display: block;
  width: clamp(2rem, 3.5vw, 2.65rem);
  height: auto;
  filter: drop-shadow(0 0 12px rgba(244,121,45,.35));
}

.building-diagram__antenna-pulse{
  animation: building-diagram-antenna-pulse 2s ease-in-out infinite;
}

.building-diagram__antenna-ring{
  animation: building-diagram-antenna-ring 2.4s ease-out infinite;
  transform-origin: 24px 22px;
}

@keyframes building-diagram-antenna-pulse{
  0%, 100%{ opacity: 1; }
  50%{ opacity: 0.55; }
}

@keyframes building-diagram-antenna-ring{
  0%{ opacity: 0.5; transform: scale(0.85); }
  70%{ opacity: 0; transform: scale(1.35); }
  100%{ opacity: 0; transform: scale(1.35); }
}

.building-diagram__antenna-label{
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce){
  .building-diagram__remote-node,
  .building-diagram__remote-link,
  .building-diagram__center{
    transition: none;
  }
  .building-diagram__antenna-pulse,
  .building-diagram__antenna-ring{
    animation: none;
  }
}

.building-diagram__center{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: clamp(200px, 30vw, 360px);
  height: clamp(260px, 38vw, 440px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    left 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.building-diagram--remote-focus .building-diagram__center{
  left: 50%;
  top: 58%;
  width: clamp(140px, 20vw, 260px);
  height: clamp(175px, 25vw, 330px);
}

.building-diagram__viewer{
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.building-diagram__viewer .building-diagram__model-viewer,
.building-diagram__viewer model-viewer{
  background-color: transparent !important;
}

.building-diagram__model-viewer{
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  --poster-color: transparent;
}

.building-diagram__viewer-loading{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 1rem;
  pointer-events: none;
  color: rgba(255,255,255,.42);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;
}

.building-diagram__viewer-loading--error{
  color: rgba(255, 180, 140, 0.75);
  font-size: 0.72rem;
}

.building-diagram__viewer-placeholder{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 1.25rem;
  color: rgba(255,255,255,.5);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

.building-diagram__viewer.is-model-ready .building-diagram__viewer-canvas{
  opacity: 1;
}

.building-diagram__viewer-canvas{
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

/* BMS interactive diagram (TC System — Three.js + hover effects) */
.building-diagram--tc-system .building-diagram__cap-overlays{
  display: none !important;
}

.building-diagram--bms-interactive .building-diagram__cap-overlays{
  display: none;
}

.building-diagram--tc-system .building-diagram__viewer{
  background: transparent;
}

.building-diagram--bms-interactive .building-diagram__label-detail{
  display: none !important;
}

.building-diagram--bms-interactive .building-diagram__label-stack{
  max-height: none;
  overflow: visible;
}

.building-diagram--bms-interactive .building-diagram__label{
  overflow: visible;
}

.building-diagram--bms-interactive .building-diagram__label.bms-pill--dim{
  opacity: 0.45;
}

.building-diagram--bms-interactive .building-diagram__label.bms-pill--dim .building-diagram__label-pill{
  border-color: rgba(255,255,255,.08);
}

.building-diagram--bms-interactive .building-diagram__line.is-lit{
  stroke: #9ca3af;
  filter: none;
}

.building-diagram--bms-interactive .building-diagram__line.is-lit.bms-line--march{
  stroke: #2dd4bf;
  stroke-dasharray: 4 10;
  animation: bms-line-march 1.2s linear infinite;
  filter: drop-shadow(0 0 6px rgba(45,212,191,.35));
}

@keyframes bms-line-march{
  to{ stroke-dashoffset: -28; }
}

.bms-cap-panel{
  position: absolute;
  z-index: 5;
  width: 260px;
  pointer-events: none;
  opacity: 0;
  transform: rotateY(28deg);
  transform-origin: left center;
  transition:
    opacity 280ms cubic-bezier(.2,.9,.3,1.15),
    transform 280ms cubic-bezier(.2,.9,.3,1.15);
}

.bms-cap-panel__inner{
  padding: 0.85rem 0.95rem;
  background: rgba(13,20,28,0.92);
  border: 1px solid rgba(45,212,191,0.35);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}

.bms-cap-panel__title{
  margin: 0 0 0.4rem;
  font-size: 13px;
  font-weight: 600;
  color: #e6edf3;
  letter-spacing: 0.01em;
}

.bms-cap-panel__body{
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: #9fb0bf;
}

.bms-cap-panel.is-open{
  opacity: 1;
  pointer-events: auto;
  transform: rotateY(0deg);
}

.bms-cap-panel--flip-right{
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) rotateY(-28deg);
  transform-origin: left center;
}
.bms-cap-panel--flip-right.is-open{
  transform: translateY(-50%) rotateY(0deg);
}

.bms-cap-panel--flip-left{
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) rotateY(28deg);
  transform-origin: right center;
}
.bms-cap-panel--flip-left.is-open{
  transform: translateY(-50%) rotateY(0deg);
}

.bms-cap-panel--flip-up{
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) rotateX(28deg);
  transform-origin: center bottom;
}
.bms-cap-panel--flip-up.is-open{
  transform: translateX(-50%) rotateX(0deg);
}

.bms-cap-panel--flip-down{
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%) rotateX(-28deg);
  transform-origin: center top;
}
.bms-cap-panel--flip-down.is-open{
  transform: translateX(-50%) rotateX(0deg);
}

.bms-cap-panel--mobile-dock{
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.35rem;
  top: auto;
  width: auto;
  max-width: none;
  transform: translateY(10px);
  transform-origin: center bottom;
}

.bms-cap-panel--mobile-dock.is-open{
  transform: translateY(0);
}

.bms-effect-chips{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  overflow: visible;
}

.bms-effect-chips--diagram{
  z-index: 6;
}

.bms-effect-chips.is-active .bms-temp-chip{
  opacity: 1;
}

.bms-temp-chip{
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2rem 0.45rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #e6edf3;
  background: rgba(13,20,28,0.88);
  border: 1px solid rgba(45,212,191,0.4);
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.bms-effect-chips.is-active .bms-energy-meter{
  opacity: 1;
}

.bms-energy-meter{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  min-width: 118px;
  padding: 0.55rem 0.65rem 0.5rem;
  background: linear-gradient(155deg, rgba(22,32,44,0.97), rgba(13,20,28,0.94));
  border: 1.5px solid rgba(245,158,11,0.72);
  border-radius: 10px;
  box-shadow:
    0 0 0 1px rgba(245,158,11,0.12),
    0 8px 28px rgba(0,0,0,0.45),
    0 0 22px rgba(245,158,11,0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition:
    opacity 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  pointer-events: none;
}

.bms-energy-meter__value{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fbbf24;
  margin-bottom: 0.35rem;
  text-shadow: 0 0 12px rgba(251,191,36,0.55);
}

.bms-energy-meter__spark{
  display: block;
  width: 88px;
  height: 34px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 0 12px rgba(245,158,11,0.12);
}

.bms-energy-meter__ceiling{
  margin-top: 0.3rem;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fca5a5;
  text-shadow: 0 0 8px rgba(239,68,68,0.35);
}

.bms-energy-meter--alarm{
  border-color: rgba(248,113,113,0.95);
  box-shadow:
    0 0 0 1px rgba(239,68,68,0.2),
    0 8px 28px rgba(0,0,0,0.45),
    0 0 28px rgba(239,68,68,0.55);
  animation: bms-energy-meter-flash 0.45s ease-out 1;
}

.bms-energy-meter--alarm .bms-energy-meter__value{
  color: #f87171;
  text-shadow: 0 0 16px rgba(248,113,113,0.75);
}

.bms-energy-meter--teal{
  border-color: rgba(94,234,212,0.85);
  box-shadow:
    0 0 0 1px rgba(45,212,191,0.18),
    0 8px 28px rgba(0,0,0,0.45),
    0 0 24px rgba(45,212,191,0.38);
}

.bms-energy-meter--teal .bms-energy-meter__value{
  color: #5eead4;
  text-shadow: 0 0 14px rgba(94,234,212,0.6);
}

@keyframes bms-energy-meter-flash{
  0%, 100%{ filter: brightness(1); }
  35%{ filter: brightness(1.45); }
}

.bms-effect-chips.is-active .bms-co2-chip{
  opacity: 1;
}

.bms-co2-chip{
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 88px;
  padding: 0.45rem 0.55rem 0.4rem;
  background: linear-gradient(155deg, rgba(22,32,44,0.97), rgba(13,20,28,0.94));
  border: 1.5px solid rgba(139,131,120,0.65);
  border-radius: 10px;
  box-shadow:
    0 0 0 1px rgba(139,131,120,0.1),
    0 8px 24px rgba(0,0,0,0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition:
    opacity 0.25s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  pointer-events: none;
}

.bms-co2-chip__label{
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9fb0bf;
}

.bms-co2-chip__value{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #d6d3d1;
}

.bms-co2-chip--alarm{
  border-color: rgba(239,68,68,0.72);
  box-shadow:
    0 0 0 1px rgba(239,68,68,0.12),
    0 8px 24px rgba(0,0,0,0.42),
    0 0 18px rgba(239,68,68,0.22);
}

.bms-co2-chip--alarm .bms-co2-chip__value{
  color: #fca5a5;
  text-shadow: 0 0 10px rgba(248,113,113,0.45);
}

.bms-co2-chip--teal{
  border-color: rgba(45,212,191,0.72);
  box-shadow:
    0 0 0 1px rgba(45,212,191,0.12),
    0 8px 24px rgba(0,0,0,0.42),
    0 0 18px rgba(45,212,191,0.22);
}

.bms-co2-chip--teal .bms-co2-chip__value{
  color: #5eead4;
  text-shadow: 0 0 10px rgba(94,234,212,0.45);
}

.process-scroll__more a:hover{
  color: var(--tc-teal);
}

.approach-platform{
  padding-top: clamp(2.75rem, 5vw, 4rem);
  padding-bottom: clamp(2.75rem, 5vw, 4rem);
}

.approach-platform__layout{
  align-items: stretch;
}

.approach-platform__layout > .col-lg-5{
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.approach-platform__layout > .col-lg-7{
  display: flex;
  align-items: stretch;
}

.approach-platform__intro{
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.approach-platform__photo{
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(19, 24, 32, 0.08);
  box-shadow: 0 12px 36px rgba(19, 24, 32, 0.1);
}

.approach-platform__photo img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.approach-platform__photo--feature{
  flex: 1 1 auto;
  align-self: stretch;
  width: 100%;
  height: 100%;
  min-height: clamp(22rem, 44vw, 36rem);
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  background: #f8f7f4;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.approach-platform__photo--feature img{
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: right center;
}

@media (min-width: 992px){
  .cap-section.approach-platform{
    padding-top: 0;
    padding-bottom: 0;
    overflow: visible;
  }

  .approach-platform > .container{
    padding-right: 0;
    overflow: visible;
  }

  .approach-platform__layout{
    overflow: visible;
    --bs-gutter-y: 0;
  }

  .approach-platform__layout > .col-lg-5{
    padding-block: clamp(2.75rem, 5vw, 4rem);
  }

  .approach-platform__layout > .col-lg-7{
    position: sticky;
    top: 0;
    align-self: flex-start;
    height: 100svh;
    flex: 1 1 auto;
    max-width: none;
    min-width: 0;
    margin-right: calc(50% - 50vw);
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    overflow: visible;
  }

  .approach-platform__photo--feature{
    min-height: 100svh;
    height: 100svh;
    align-items: stretch;
    justify-content: flex-end;
    overflow: visible;
  }

  .approach-platform__photo--feature img{
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
    margin-left: auto;
    object-fit: contain;
    object-position: right center;
  }
}

@media (max-width: 991.98px){
  .approach-platform__layout > .col-lg-7{
    order: -1;
  }

  .approach-platform__photo--feature{
    min-height: clamp(18rem, 52vw, 28rem);
    overflow: hidden;
  }

  .approach-platform__photo--feature img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }
}

.approach-platform__stack{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.approach-platform__grid{
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.approach-platform__card{
  height: auto;
  padding: 1.35rem 1.4rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(19, 24, 32, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(19, 24, 32, 0.05);
}

.approach-platform__card-title{
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: #131820;
}

.approach-platform__card-body{
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.62;
  color: rgba(19, 24, 32, 0.74);
}

.approach-platform__equipment{
  max-width: none;
  margin-bottom: 0;
}

.approach-platform__equipment-title{
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #131820;
}

.approach-platform__equipment-list{
  margin: 0;
  padding-left: 1.25rem;
  line-height: 1.7;
  color: rgba(19, 24, 32, 0.78);
}

.approach-platform__equipment-list li + li{
  margin-top: 0.35rem;
}

.approach-platform__logos{
  margin-bottom: 0;
}

.approach-platform__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.bms-monitor-overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 7;
  overflow: visible;
}

.bms-monitor-toast{
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: min(280px, 92%);
  padding: 0.7rem 0.85rem 0.65rem;
  background: rgba(13,20,28,0.94);
  border: 1px solid rgba(239,68,68,0.55);
  border-radius: 12px;
  box-shadow:
    0 10px 32px rgba(0,0,0,0.45),
    0 0 14px rgba(239,68,68,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateX(calc(100% + 16px));
  opacity: 0;
  transition:
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s ease;
}

.bms-monitor-toast.is-visible{
  transform: translateX(0);
  opacity: 1;
}

.building-diagram--remote-focus .bms-monitor-toast{
  right: 8%;
  bottom: 24%;
  width: min(250px, 80%);
}

.bms-monitor-toast__text{
  margin: 0 0 0.45rem;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.45;
  color: #fecaca;
}

.bms-monitor-toast__trend{
  display: block;
  width: 140px;
  height: 30px;
  border-radius: 4px;
  background: rgba(18,28,38,0.75);
}

@media (prefers-reduced-motion: reduce){
  .building-diagram--bms-interactive .building-diagram__line.bms-line--march{
    animation: none;
    stroke-dashoffset: 0;
  }
  .bms-cap-panel{
    transition: opacity 0.15s ease;
    transform: none !important;
  }
  .bms-cap-panel.is-open{
    transform: none !important;
  }
}

/* Capability overlays — lightweight CSS/SVG demo layer (no extra assets) */
.building-diagram__cap-overlays{
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.building-diagram__cap-overlay{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.building-diagram[data-active-cap="temperature"] [data-cap-overlay="temperature"],
.building-diagram[data-active-cap="humidity"] [data-cap-overlay="humidity"],
.building-diagram[data-active-cap="lighting"] [data-cap-overlay="lighting"],
.building-diagram[data-active-cap="co2"] [data-cap-overlay="co2"],
.building-diagram[data-active-cap="remote"] [data-cap-overlay="remote"],
.building-diagram[data-active-cap="metering"] [data-cap-overlay="metering"]{
  opacity: 1;
}

.cap-overlay__badge{
  position: absolute;
  padding: 0.28rem 0.55rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(11, 16, 24, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.55);
}

.cap-overlay__badge i{
  font-size: 0.72em;
  margin-right: 0.2rem;
  vertical-align: -0.05em;
}

/* Temperature — cool-to-warm vertical wash */
.cap-overlay__wash--temp{
  position: absolute;
  inset: 8% 18% 10%;
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(0, 145, 138, 0.42) 0%,
    rgba(0, 145, 138, 0.12) 38%,
    rgba(244, 121, 45, 0.18) 62%,
    rgba(244, 121, 45, 0.45) 100%
  );
  mix-blend-mode: screen;
  pointer-events: none;
}

.cap-overlay__badge--temp-low{
  left: 12%;
  top: 22%;
  border-color: rgba(0, 145, 138, 0.45);
}

.cap-overlay__badge--temp-high{
  right: 12%;
  bottom: 28%;
  border-color: rgba(244, 121, 45, 0.5);
}

/* Humidity — sparse rising droplets */
.cap-overlay__droplet{
  position: absolute;
  width: 8px;
  height: 11px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: rgba(0, 145, 138, 0.55);
  box-shadow: 0 0 8px rgba(0, 145, 138, 0.35);
  animation: cap-overlay-droplet-rise 3.2s ease-in-out infinite;
}

.cap-overlay__droplet--1{ right: 22%; bottom: 35%; animation-delay: 0s; }
.cap-overlay__droplet--2{ right: 28%; bottom: 28%; animation-delay: 1.1s; opacity: 0.75; }
.cap-overlay__droplet--3{ right: 16%; bottom: 42%; animation-delay: 2.2s; opacity: 0.6; width: 6px; height: 8px; }

.cap-overlay__badge--humidity{
  right: 10%;
  top: 18%;
  border-color: rgba(0, 145, 138, 0.4);
}

@keyframes cap-overlay-droplet-rise{
  0%, 100%{ transform: translateY(0); opacity: 0.5; }
  50%{ transform: translateY(-14px); opacity: 0.9; }
}

/* Lighting — warm window bands */
.cap-overlay__window{
  position: absolute;
  left: 22%;
  right: 22%;
  height: 5px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 120, 0.85), transparent);
  box-shadow: 0 0 12px rgba(255, 190, 80, 0.55);
  animation: cap-overlay-window-glow 2.8s ease-in-out infinite;
}

.cap-overlay__window--1{ top: 28%; animation-delay: 0s; }
.cap-overlay__window--2{ top: 48%; animation-delay: 0.6s; }
.cap-overlay__window--3{ top: 66%; animation-delay: 1.2s; }

.cap-overlay__sun{
  position: absolute;
  top: 8%;
  right: 14%;
  font-size: 1.1rem;
  color: rgba(255, 210, 100, 0.9);
  filter: drop-shadow(0 0 8px rgba(255, 190, 80, 0.5));
  animation: cap-overlay-sun-pulse 3s ease-in-out infinite;
}

@keyframes cap-overlay-window-glow{
  0%, 100%{ opacity: 0.55; }
  50%{ opacity: 1; }
}

@keyframes cap-overlay-sun-pulse{
  0%, 100%{ opacity: 0.7; transform: scale(1); }
  50%{ opacity: 1; transform: scale(1.08); }
}

/* Air quality — ventilation arcs */
.cap-overlay__airflow{
  position: absolute;
  inset: 5% 15% 15%;
  width: auto;
  height: auto;
  color: var(--tc-teal);
}

.cap-overlay__airflow-path{
  stroke-dasharray: 4 6;
  animation: cap-overlay-airflow-dash 4s linear infinite;
}

.cap-overlay__airflow-path--2{
  animation-duration: 5.5s;
  animation-direction: reverse;
}

.cap-overlay__badge--co2{
  left: 10%;
  bottom: 22%;
  border-color: rgba(0, 145, 138, 0.45);
}

@keyframes cap-overlay-airflow-dash{
  to{ stroke-dashoffset: -40; }
}

/* Remote — live status badge (antenna handled separately) */
.cap-overlay__badge--remote{
  left: 50%;
  top: 6%;
  transform: translateX(-50%);
  border-color: rgba(244, 121, 45, 0.5);
}

.cap-overlay__live-dot{
  font-size: 0.45rem !important;
  color: #4ade80;
  margin-right: 0.35rem !important;
  animation: cap-overlay-live-blink 2s ease-in-out infinite;
}

@keyframes cap-overlay-live-blink{
  0%, 100%{ opacity: 1; }
  50%{ opacity: 0.35; }
}

/* Energy metering — data line from building base */
.cap-overlay__meter-line{
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 2px;
  height: 22%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, var(--accent-orange));
  box-shadow: 0 0 8px rgba(244, 121, 45, 0.45);
  animation: cap-overlay-meter-pulse 2.4s ease-in-out infinite;
}

.cap-overlay__meter-line::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 10px rgba(244, 121, 45, 0.7);
}

.cap-overlay__badge--metering{
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%);
  border-color: rgba(244, 121, 45, 0.55);
}

@keyframes cap-overlay-meter-pulse{
  0%, 100%{ opacity: 0.6; }
  50%{ opacity: 1; }
}

@media (prefers-reduced-motion: reduce){
  .cap-overlay__droplet,
  .cap-overlay__window,
  .cap-overlay__sun,
  .cap-overlay__airflow-path,
  .cap-overlay__live-dot,
  .cap-overlay__meter-line{
    animation: none;
  }
  .cap-overlay__droplet,
  .cap-overlay__window,
  .cap-overlay__sun,
  .cap-overlay__meter-line{
    opacity: 0.85;
  }
}

.building-diagram__placeholder{
  width: 100%;
  height: 100%;
  border: 2px solid rgba(244,121,45,.55);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(244,121,45,.05), rgba(0,145,138,.05) 50%, transparent),
    rgba(15, 22, 33, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

.building-diagram__placeholder i{
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: rgba(244,121,45,.7);
  display: block;
  margin-bottom: 0.45rem;
}

.building-diagram__label{
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  color: rgba(255,255,255,.78);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  overflow: visible;
  transition: transform 0.22s ease;
  user-select: none;
}

.building-diagram__label-pill{
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  background: rgba(11, 16, 24, 0.85);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.building-diagram__label-stack{
  display: flex;
  flex-direction: column;
  align-items: inherit;
  overflow: hidden;
  max-height: 2.85rem;
  transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.building-diagram__label[data-pos="right-upper"] .building-diagram__label-stack,
.building-diagram__label[data-pos="right-lower"] .building-diagram__label-stack{
  align-items: flex-end;
}

.building-diagram__label[data-pos="left-upper"] .building-diagram__label-stack,
.building-diagram__label[data-pos="left-lower"] .building-diagram__label-stack{
  align-items: flex-start;
}

.building-diagram__label-detail{
  display: block;
  max-width: 13.5rem;
  padding: 0.55rem 0.85rem 0.65rem;
  margin-top: -0.15rem;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,.82);
  text-align: center;
  background: rgba(11, 16, 24, 0.92);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  box-shadow: 0 10px 24px -12px rgba(0,0,0,.55);
  opacity: 0;
  transform: translateY(-100%);
  transition:
    opacity 0.28s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.building-diagram__label:hover .building-diagram__label-stack,
.building-diagram__label:focus-visible .building-diagram__label-stack,
.building-diagram__label.is-lit .building-diagram__label-stack{
  max-height: 12rem;
}

.building-diagram__label:hover .building-diagram__label-detail,
.building-diagram__label:focus-visible .building-diagram__label-detail,
.building-diagram__label.is-lit .building-diagram__label-detail{
  opacity: 1;
  transform: translateY(0);
}

.building-diagram__label-icon{
  font-size: 1.05rem;
  color: var(--tc-teal);
  transition: color 0.22s ease;
}

.building-diagram__label:hover,
.building-diagram__label:focus-visible,
.building-diagram__label.is-lit{
  z-index: 5;
  color: #fff;
  transform: translateY(-1px);
  outline: none;
}

.building-diagram__label:hover .building-diagram__label-pill,
.building-diagram__label:focus-visible .building-diagram__label-pill,
.building-diagram__label.is-lit .building-diagram__label-pill{
  color: #fff;
  background: rgba(244,121,45,.18);
  border-color: rgba(244,121,45,.7);
  box-shadow: 0 0 0 1px rgba(244,121,45,.25), 0 12px 28px -16px rgba(0,0,0,.6);
}

.building-diagram__label:hover .building-diagram__label-icon,
.building-diagram__label:focus-visible .building-diagram__label-icon,
.building-diagram__label.is-lit .building-diagram__label-icon{
  color: var(--accent-orange);
}

.building-diagram__label[data-pos="right-upper"],
.building-diagram__label[data-pos="right-lower"]{
  align-items: flex-end;
}

.building-diagram__label[data-pos="right-upper"] .building-diagram__label-detail,
.building-diagram__label[data-pos="right-lower"] .building-diagram__label-detail{
  text-align: right;
}

.building-diagram__label[data-pos="left-upper"],
.building-diagram__label[data-pos="left-lower"]{
  align-items: flex-start;
}

.building-diagram__label[data-pos="left-upper"] .building-diagram__label-detail,
.building-diagram__label[data-pos="left-lower"] .building-diagram__label-detail{
  text-align: left;
}

@media (prefers-reduced-motion: reduce){
  .building-diagram__label-detail,
  .building-diagram__label-stack{
    transition: none;
  }
  .building-diagram__label:hover .building-diagram__label-detail,
  .building-diagram__label:focus-visible .building-diagram__label-detail,
  .building-diagram__label.is-lit .building-diagram__label-detail{
    transform: none;
  }
}

/* Anchor positions for 6 labels around the building */
.building-diagram__label[data-pos="top"]{ left: 50%; top: 6%; transform: translate(-50%, 0); }
.building-diagram__label[data-pos="top"]:hover,
.building-diagram__label[data-pos="top"]:focus-visible,
.building-diagram__label[data-pos="top"].is-lit{ transform: translate(-50%, -3px); }

.building-diagram__label[data-pos="right-upper"]{ right: 4%; top: 30%; }
.building-diagram__label[data-pos="right-lower"]{ right: 4%; bottom: 28%; }
.building-diagram__label[data-pos="left-upper"]{ left: 4%; top: 30%; }
.building-diagram__label[data-pos="left-lower"]{ left: 4%; bottom: 28%; }

.building-diagram__label[data-pos="bottom"]{
  left: 50%;
  bottom: 4%;
  transform: translate(-50%, 0);
}
.building-diagram__label[data-pos="bottom"] .building-diagram__label-stack{
  flex-direction: column-reverse;
}
.building-diagram__label[data-pos="bottom"] .building-diagram__label-detail{
  margin-top: 0;
  margin-bottom: -0.15rem;
  transform: translateY(100%);
}
.building-diagram__label[data-pos="bottom"]:hover .building-diagram__label-detail,
.building-diagram__label[data-pos="bottom"]:focus-visible .building-diagram__label-detail,
.building-diagram__label[data-pos="bottom"].is-lit .building-diagram__label-detail{
  transform: translateY(0);
}
.building-diagram__label[data-pos="bottom"]:hover,
.building-diagram__label[data-pos="bottom"]:focus-visible,
.building-diagram__label[data-pos="bottom"].is-lit{
  transform: translate(-50%, 3px);
}

/* Energy metering — pill stays below building; detail pops out to the right */
.building-diagram--tc-system .building-diagram__label[data-pos="bottom"][data-cap="metering"] .building-diagram__label-stack{
  flex-direction: row;
  align-items: center;
  max-height: none;
}
.building-diagram--tc-system .building-diagram__label[data-pos="bottom"][data-cap="metering"] .building-diagram__label-detail{
  flex: 0 0 auto;
  max-width: 0;
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  border-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: normal;
  text-align: left;
  transform: translateX(-10px);
  transition:
    opacity 0.28s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    max-width 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    margin 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-width 0.2s ease;
}
.building-diagram--tc-system .building-diagram__label[data-pos="bottom"][data-cap="metering"]:hover .building-diagram__label-detail,
.building-diagram--tc-system .building-diagram__label[data-pos="bottom"][data-cap="metering"]:focus-visible .building-diagram__label-detail,
.building-diagram--tc-system .building-diagram__label[data-pos="bottom"][data-cap="metering"].is-lit .building-diagram__label-detail{
  max-width: 13.5rem;
  padding: 0.55rem 0.85rem 0.65rem;
  margin-left: 0.45rem;
  border-width: 1px;
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 767.98px){
  /* Lock TC System page to hero/viewport width — no horizontal scroll or black bleed. */
  html:has(body.page-tc-system),
  body.page-tc-system{
    overflow-x: clip;
    max-width: 100%;
  }

  body.page-tc-system{
    width: 100%;
    max-width: 100vw;
  }

  body.page-tc-system .site-hero,
  body.page-tc-system .cap-hero--tc-system-photo,
  body.page-tc-system .cap-hero--tc-system-photo .cap-hero-photo-layer,
  body.page-tc-system .cap-hero--tc-system-photo .cap-hero-photo,
  body.page-tc-system main,
  body.page-tc-system .cap-section,
  body.page-tc-system .cap-section > .container,
  body.page-tc-system .site-footer{
    max-width: 100%;
    overflow-x: clip;
  }

  body.page-tc-system .cap-section--diagram,
  body.page-tc-system .cap-section--diagram > .container{
    overflow-x: clip;
    overflow-y: visible;
    max-width: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  body.page-tc-system .building-diagram--tc-system{
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding: 0.5rem 0.35rem 6.75rem;
    overflow: hidden;
  }

  body.page-tc-system .building-diagram--tc-system[data-active-cap="metering"]{
    padding-bottom: 6.75rem;
    padding-right: 0.35rem;
  }

  body.page-tc-system .building-diagram--bms-interactive .building-diagram__label{
    overflow: visible;
  }

  body.page-tc-system .bms-cap-panel--mobile-dock{
    position: absolute;
    left: 0.35rem;
    right: 0.35rem;
    bottom: 0.35rem;
    width: auto;
    z-index: 8;
  }

  body.page-tc-system .bms-cap-panel--mobile-dock .bms-cap-panel__inner{
    max-height: 7.5rem;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Pre-interactive details: keep copy inside the diagram, never expand sideways. */
  body.page-tc-system .building-diagram__label-detail{
    max-width: min(11rem, calc(100vw - 3rem));
  }

  body.page-tc-system .building-diagram--tc-system .building-diagram__label[data-pos="bottom"][data-cap="metering"] .building-diagram__label-stack{
    flex-direction: column-reverse;
    align-items: center;
  }

  body.page-tc-system .building-diagram--tc-system .building-diagram__label[data-pos="bottom"][data-cap="metering"] .building-diagram__label-detail,
  body.page-tc-system .building-diagram--tc-system .building-diagram__label[data-pos="bottom"][data-cap="metering"]:hover .building-diagram__label-detail,
  body.page-tc-system .building-diagram--tc-system .building-diagram__label[data-pos="bottom"][data-cap="metering"]:focus-visible .building-diagram__label-detail,
  body.page-tc-system .building-diagram--tc-system .building-diagram__label[data-pos="bottom"][data-cap="metering"].is-lit .building-diagram__label-detail{
    max-width: min(14rem, calc(100% - 0.5rem));
    margin-left: 0;
    margin-bottom: 0.35rem;
    text-align: center;
    transform: none;
  }

  .building-diagram{
    aspect-ratio: 3 / 4;
  }

  .building-diagram--process-scroll{
    aspect-ratio: 4 / 3;
  }
  .building-diagram__label{
    font-size: 0.85rem;
  }
  .building-diagram__label-pill{
    padding: 0.45rem 0.75rem;
  }
  .building-diagram__label-detail{
    max-width: 11rem;
    font-size: 0.68rem;
  }
  .building-diagram__label[data-pos="top"]{ top: 2%; }
  .building-diagram__label[data-pos="right-upper"]{ right: 2%; top: 22%; }
  .building-diagram__label[data-pos="right-lower"]{ right: 2%; bottom: 30%; }
  .building-diagram__label[data-pos="left-upper"]{ left: 2%; top: 22%; }
  .building-diagram__label[data-pos="left-lower"]{ left: 2%; bottom: 30%; }
  .building-diagram--tc-system .building-diagram__label[data-pos="bottom"][data-cap="metering"]:hover .building-diagram__label-detail,
  .building-diagram--tc-system .building-diagram__label[data-pos="bottom"][data-cap="metering"]:focus-visible .building-diagram__label-detail,
  .building-diagram--tc-system .building-diagram__label[data-pos="bottom"][data-cap="metering"].is-lit .building-diagram__label-detail{
    max-width: 11rem;
  }
  .building-diagram__label[data-pos="bottom"]{ bottom: 2%; }
  .building-diagram__center{
    width: 58%;
    height: clamp(220px, 52vw, 320px);
  }
  .building-diagram--remote-focus .building-diagram__center{
    top: 60%;
    width: 42%;
    height: clamp(155px, 34vw, 230px);
  }
  .building-diagram--remote-focus .building-diagram__remote-node{
    top: 30%;
    left: 50%;
  }
}

/* ── Building diagram — process variant (Our Approach: 4 stages) ── */

.building-diagram--process .building-diagram__center{
  width: clamp(240px, 42vw, 480px);
  height: clamp(280px, 48vw, 520px);
  overflow: visible;
}

.building-diagram--process .building-diagram__viewer{
  z-index: 1;
}

/* Support circuit — same particle-scene stack as homepage hero (no building PNG offset) */
.building-diagram--process .particle-scene--process{
  --process-scene-top: -13%;
  --process-scene-right: 1%;
  --process-scene-bottom: -12%;
  --process-scene-left: -26%;
  --process-scene-tune-x: 9.5%;
  --process-scene-tune-y: 14%;
  --process-scene-tune-scale: 0.910;
  --process-trace-x: -15px;
  --process-trace-y: 80px;
  --process-path-x: 17px;
  --process-path-y: 14px;
  --process-node-x: -28px;
  --process-node-y: -60px;
  --process-row-spacing: 6;
  position: absolute;
  top: var(--process-scene-top);
  right: var(--process-scene-right);
  bottom: var(--process-scene-bottom);
  left: var(--process-scene-left);
  width: auto;
  height: auto;
  z-index: 4;
  overflow: visible;
  pointer-events: none;
  visibility: hidden;
  transform: translate(var(--process-scene-tune-x), var(--process-scene-tune-y))
    scale(var(--process-scene-tune-scale));
  transform-origin: center center;
}

.building-diagram--process[data-visual-cap="support"] .particle-scene--process,
.building-diagram--process[data-active-cap="support"] .particle-scene--process,
.building-diagram--process.is-dev-circuit-pinned .particle-scene--process,
.building-diagram--process-scroll .particle-scene--process{
  visibility: visible;
}

.building-diagram--process .particle-scene--process .circuit-traces,
.building-diagram--process .particle-scene--process .circuit-glow,
.building-diagram--process .particle-scene--process .hero-target-logo{
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.building-diagram--process .particle-scene--process .circuit-traces,
.building-diagram--process .particle-scene--process .circuit-glow{
  transform: translate(var(--process-trace-x), var(--process-trace-y));
}

.building-diagram--process .particle-scene--process .hero-target-logo{
  transform: translate(var(--process-path-x), var(--process-path-y));
}

.building-diagram--process .particle-scene--process .circuit-traces,
.building-diagram--process .particle-scene--process .circuit-glow{
  opacity: 0;
  transition: opacity 0.35s ease, filter 0.35s ease;
}

.building-diagram--process[data-visual-cap="support"] .particle-scene--process .circuit-traces,
.building-diagram--process[data-visual-cap="support"] .particle-scene--process .circuit-glow,
.building-diagram--process[data-active-cap="support"] .particle-scene--process .circuit-traces,
.building-diagram--process[data-active-cap="support"] .particle-scene--process .circuit-glow{
  opacity: 0;
  visibility: hidden;
}

.building-diagram--process .particle-scene--process .particle-node{
  opacity: 0;
  transition: opacity 0.35s ease;
}

.building-diagram--process[data-visual-cap="support"] .particle-scene--process .particle-node,
.building-diagram--process[data-active-cap="support"] .particle-scene--process .particle-node,
.building-diagram--process.is-dev-circuit-pinned .particle-scene--process .particle-node{
  opacity: 0.9;
}

.building-diagram--process .process-circuit-logo-ref{
  --process-logo-ref-opacity: 0.55;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate(var(--process-trace-x), var(--process-trace-y));
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.building-diagram--process .process-circuit-logo-ref svg{
  width: 100%;
  height: 100%;
}

.building-diagram--process[data-visual-cap="support"] .process-circuit-logo-ref.is-visible,
.building-diagram--process[data-active-cap="support"] .process-circuit-logo-ref.is-visible,
.building-diagram--process.is-dev-circuit-pinned .process-circuit-logo-ref.is-visible{
  opacity: var(--process-logo-ref-opacity);
}

.building-diagram--process .process-logo-mark-ref{
  position: absolute;
  right: 2%;
  bottom: 5%;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: clamp(52px, 9vw, 88px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.building-diagram--process .process-logo-mark-ref svg{
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.45));
}

.building-diagram--process .process-logo-mark-ref__label{
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.building-diagram--process[data-visual-cap="support"] .process-logo-mark-ref.is-visible,
.building-diagram--process[data-active-cap="support"] .process-logo-mark-ref.is-visible,
.building-diagram--process.is-dev-circuit-pinned .process-logo-mark-ref.is-visible{
  opacity: 0.92;
}

.building-diagram__process-overlays{
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.process-overlay{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.building-diagram--process[data-visual-cap="optimize"] [data-stage-overlay="optimize"],
.building-diagram--process[data-active-cap="optimize"] [data-stage-overlay="optimize"]{
  opacity: 1;
}

.building-diagram--process-scroll .process-overlay--optimize{
  opacity: calc(
    var(--process-optimize-progress, 0) * (1 - var(--process-support-progress, 0))
  );
  transform: translateY(
    calc(
      (1 - var(--process-optimize-progress, 0)) * 18% +
      var(--process-support-progress, 0) * -12%
    )
  );
  transition: none;
  pointer-events: none;
}

.building-diagram--process-scroll .particle-scene--process .circuit-traces,
.building-diagram--process-scroll .particle-scene--process .circuit-glow{
  opacity: calc(var(--process-handoff-progress, 0) * 0.95);
  visibility: visible;
  transition: none;
}

.building-diagram--process-scroll .building-diagram__svg,
.building-diagram--process-scroll .building-diagram__process-overlays,
.building-diagram--process-scroll .process-logo-mark-ref{
  opacity: calc(1 - var(--process-handoff-progress, 0));
  transition: none;
}

.building-diagram--process-scroll .building-diagram__process-ring-lit{
  transition: none;
}

.building-diagram--process-scroll .building-diagram__process-ring-group,
.building-diagram--process-scroll .building-diagram__label{
  display: none !important;
}

.building-diagram--process-scroll .building-diagram__material-dev,
.building-diagram--process-scroll .process-circuit-logo-ref,
.building-diagram--process-scroll .process-logo-mark-ref,
.building-diagram--process-scroll #processRingDev,
.building-diagram--process-scroll #processCircuitAlignDev,
.building-diagram--process-scroll .building-diagram__circuit-dev,
.building-diagram--process-scroll .building-diagram__ring-dev,
.process-scroll-layout-dev{
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (prefers-reduced-motion: reduce){
  .building-diagram--process-scroll .process-soundboard__knob{
    animation: none;
  }
}

/* Optimize — soundboard-style fader row */
.process-overlay--optimize{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.process-soundboard{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(0.35rem, 1.8vw, 0.75rem);
  width: min(92%, 22rem);
  padding: 0.35rem 0.5rem 0.15rem;
}

.process-soundboard__fader{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 1 1 0;
  min-width: 0;
}

.process-soundboard__track{
  position: relative;
  display: block;
  width: 100%;
  max-width: 1.35rem;
  height: clamp(3.25rem, 9vw, 4.5rem);
  border-radius: 0.35rem;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(244, 121, 45, 0.35);
  box-shadow: inset 0 2px 6px rgba(0,0,0,.35);
}

.process-soundboard__knob{
  position: absolute;
  left: 50%;
  bottom: 18%;
  width: 72%;
  height: 0.55rem;
  border-radius: 0.2rem;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #f8951d, #f4792d);
  box-shadow: 0 0 10px rgba(244, 121, 45, 0.45);
  animation: process-soundboard-knob var(--fader-duration, 5.5s) ease-in-out infinite;
  animation-delay: var(--fader-delay, 0s);
}

.process-soundboard__icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  font-size: 0.68rem;
  color: var(--accent-orange);
  background: rgba(11, 16, 24, 0.88);
  border: 1px solid rgba(244, 121, 45, 0.45);
}

@keyframes process-soundboard-knob{
  0%, 100%{ bottom: 26%; }
  50%{ bottom: 34%; }
}

/* Four-way label anchors */
.building-diagram--process .building-diagram__stage-anchor--support{
  position: absolute;
  left: 3%;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transform: translateY(-50%);
}

.building-diagram--process .building-diagram__stage-anchor--support:hover,
.building-diagram--process .building-diagram__stage-anchor--support:focus-within{
  transform: translateY(calc(-50% - 3px));
}

.building-diagram--process .building-diagram__stage-anchor--support .building-diagram__label[data-pos="left"]{
  position: static;
  left: auto;
  top: auto;
  transform: none;
}

.building-diagram--process .building-diagram__stage-anchor--support .building-diagram__label[data-pos="left"]:hover,
.building-diagram--process .building-diagram__stage-anchor--support .building-diagram__label[data-pos="left"]:focus-visible,
.building-diagram--process .building-diagram__stage-anchor--support .building-diagram__label[data-pos="left"].is-lit{
  transform: none;
}

.building-diagram__circuit-dev{
  width: auto;
  max-width: min(14rem, 52vw);
  font-size: 0.62rem;
  line-height: 1.2;
  color: rgba(255,255,255,.88);
  background: rgba(8,12,18,.9);
  border: 1px dashed rgba(244,121,45,.55);
  border-radius: 0.45rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
  pointer-events: auto;
}

.building-diagram__circuit-dev.is-docked{
  position: fixed;
  z-index: 9999;
  margin: 0;
}

.building-diagram__circuit-dev.is-dragging{
  user-select: none;
}

.building-diagram__circuit-dev-tag{
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.55rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  cursor: grab;
  list-style: none;
  user-select: none;
  touch-action: none;
}

.building-diagram__circuit-dev.is-dragging .building-diagram__circuit-dev-tag{
  cursor: grabbing;
}

.building-diagram__circuit-dev-grip{
  font-size: 0.72rem;
  line-height: 1;
  opacity: 0.75;
}

.building-diagram__circuit-dev-drag-hint{
  margin-left: auto;
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: rgba(255,255,255,.45);
}

.building-diagram__circuit-dev-tag::-webkit-details-marker{
  display: none;
}

.building-diagram__circuit-dev-body{
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-height: min(72vh, 30rem);
  overflow: auto;
  padding: 0 0.55rem 0.45rem;
}

.building-diagram__circuit-dev-section{
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 100%;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

.building-diagram__circuit-dev-section:first-child{
  border-top: none;
  padding-top: 0;
}

.building-diagram__circuit-dev-heading{
  margin: 0;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.building-diagram__circuit-dev-row{
  display: grid;
  grid-template-columns: minmax(3.6rem, 1fr) minmax(4.5rem, 1fr);
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  margin: 0;
}

.building-diagram__circuit-dev-row span{
  color: rgba(255,255,255,.72);
}

.building-diagram__circuit-dev-row input[type="range"]{
  width: 100%;
  margin: 0;
  accent-color: var(--accent-orange);
}

.building-diagram__circuit-dev-freeze{
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  cursor: pointer;
}

.building-diagram__circuit-dev-freeze input{
  accent-color: var(--accent-orange);
}

.building-diagram__circuit-dev-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.building-diagram__circuit-dev-reset,
.building-diagram__circuit-dev-copy{
  padding: 0.2rem 0.45rem;
  font-size: 0.58rem;
  color: rgba(255,255,255,.85);
  background: rgba(244,121,45,.2);
  border: 1px solid rgba(244,121,45,.45);
  border-radius: 0.25rem;
  cursor: pointer;
}

.building-diagram__circuit-dev-note{
  margin: 0;
  font-size: 0.5rem;
  line-height: 1.35;
  color: rgba(255,255,255,.5);
}

.building-diagram__circuit-dev-export{
  display: block;
  width: 100%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.52rem;
  line-height: 1.35;
  color: rgba(255,255,255,.65);
  white-space: pre-wrap;
  word-break: break-all;
}

.building-diagram--process .building-diagram__stage-anchor--build{
  position: absolute;
  right: 3%;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-direction: row-reverse;
  transform: translateY(-50%);
}

.building-diagram--process .building-diagram__stage-anchor--build:hover,
.building-diagram--process .building-diagram__stage-anchor--build:focus-within{
  transform: translateY(calc(-50% - 3px));
}

.building-diagram--process .building-diagram__stage-anchor--build .building-diagram__label[data-pos="right"]{
  position: static;
  right: auto;
  top: auto;
  transform: none;
}

.building-diagram--process .building-diagram__stage-anchor--build .building-diagram__label[data-pos="right"]:hover,
.building-diagram--process .building-diagram__stage-anchor--build .building-diagram__label[data-pos="right"]:focus-visible,
.building-diagram--process .building-diagram__stage-anchor--build .building-diagram__label[data-pos="right"].is-lit{
  transform: none;
}

.building-diagram__material-dev{
  width: auto;
  max-width: min(12.5rem, 42vw);
  font-size: 0.62rem;
  line-height: 1.2;
  color: rgba(255,255,255,.88);
  background: rgba(8,12,18,.88);
  border: 1px dashed rgba(244,121,45,.55);
  border-radius: 0.45rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
  pointer-events: auto;
}

.building-diagram__material-dev-tag{
  display: block;
  padding: 0.35rem 0.55rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.building-diagram__material-dev-tag::-webkit-details-marker{
  display: none;
}

.building-diagram__material-dev-body{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  max-height: min(70vh, 28rem);
  overflow: auto;
  padding: 0 0.55rem 0.45rem;
}

.building-diagram__material-dev-freeze{
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  cursor: pointer;
}

.building-diagram__material-dev-freeze input{
  accent-color: var(--accent-orange);
}

.building-diagram--process.is-dev-build-frozen .building-diagram__material-dev-freeze{
  color: var(--accent-orange);
}

.building-diagram__material-dev-groups,
.building-diagram__material-dev-layers{
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 100%;
}

.building-diagram__material-dev-row{
  display: grid;
  grid-template-columns: auto minmax(3.2rem, 1fr) 2rem minmax(4.5rem, 1fr);
  align-items: center;
  gap: 0.3rem;
  width: 100%;
}

.building-diagram__material-dev-row--no-toggle{
  grid-template-columns: minmax(3.2rem, 1fr) 2rem minmax(4.5rem, 1fr);
}

.building-diagram__material-dev-label{
  color: rgba(255,255,255,.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.building-diagram__material-dev-row input[type="color"]{
  width: 2rem;
  height: 1.35rem;
  padding: 0;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 0.2rem;
  background: transparent;
  cursor: pointer;
}

.building-diagram__material-dev-row input[type="range"]{
  width: 100%;
  margin: 0;
  accent-color: var(--accent-orange);
}

.building-diagram__material-dev-details{
  width: 100%;
}

.building-diagram__material-dev-details summary{
  cursor: pointer;
  color: rgba(255,255,255,.7);
  user-select: none;
}

.building-diagram__material-dev-export{
  display: block;
  width: 100%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.56rem;
  line-height: 1.35;
  color: rgba(255,255,255,.72);
  white-space: pre-wrap;
  word-break: break-all;
}

.building-diagram--process .building-diagram__label[data-pos="right"]{
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  align-items: flex-end;
}

.building-diagram--process .building-diagram__label[data-pos="right"]:hover,
.building-diagram--process .building-diagram__label[data-pos="right"]:focus-visible,
.building-diagram--process .building-diagram__label[data-pos="right"].is-lit{
  transform: translateY(calc(-50% - 3px));
}

.building-diagram--process .building-diagram__label[data-pos="right"] .building-diagram__label-stack{
  align-items: flex-end;
}

.building-diagram--process .building-diagram__label[data-pos="right"] .building-diagram__label-detail{
  text-align: right;
}

.building-diagram--process .building-diagram__label[data-pos="left"]{
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
  align-items: flex-start;
}

.building-diagram--process .building-diagram__label[data-pos="left"]:hover,
.building-diagram--process .building-diagram__label[data-pos="left"]:focus-visible,
.building-diagram--process .building-diagram__label[data-pos="left"].is-lit{
  transform: translateY(calc(-50% - 3px));
}

.building-diagram--process .building-diagram__label[data-pos="left"] .building-diagram__label-stack{
  align-items: flex-start;
}

.building-diagram--process .building-diagram__label[data-pos="left"] .building-diagram__label-detail{
  text-align: left;
}

/* Process diagram — elliptical ring + auto-cycle step nodes */
.building-diagram--process .building-diagram__line{
  display: none;
}

.building-diagram__process-ring{
  fill: none;
  stroke: rgba(255,255,255,.14);
  stroke-width: 2;
  stroke-linecap: round;
}

.building-diagram__process-ring-lit{
  fill: none;
  stroke: var(--accent-orange);
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(244,121,45,.5));
  transition: stroke-dashoffset 0.85s cubic-bezier(0.45, 0, 0.2, 1);
}

.building-diagram--process-auto .building-diagram__label-expanded,
.building-diagram--process-scroll .building-diagram__label-expanded{
  display: none !important;
}

.building-diagram--process-auto .building-diagram__label-name,
.building-diagram--process-scroll .building-diagram__label-name{
  display: none;
}

.building-diagram--process-auto .building-diagram__label,
.building-diagram--process-auto .building-diagram__stage-anchor--build,
.building-diagram--process-auto .building-diagram__stage-anchor--support,
.building-diagram--process-scroll .building-diagram__label,
.building-diagram--process-scroll .building-diagram__stage-anchor--build,
.building-diagram--process-scroll .building-diagram__stage-anchor--support{
  cursor: default;
  pointer-events: none;
}

.building-diagram--process-auto .building-diagram__material-dev,
.building-diagram--process-auto .building-diagram__circuit-dev,
.building-diagram--process-auto .building-diagram__ring-dev,
.building-diagram--process-scroll .building-diagram__material-dev,
.building-diagram--process-scroll .building-diagram__circuit-dev,
.building-diagram--process-scroll .building-diagram__ring-dev{
  pointer-events: auto;
}

.building-diagram--process-scroll .building-diagram__stage-anchor--build,
.building-diagram--process-scroll .building-diagram__stage-anchor--support{
  position: static;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  pointer-events: none;
}

.building-diagram--process-scroll .building-diagram__label{
  position: absolute;
  width: max-content;
  max-width: none;
  min-width: 0;
  flex: none;
  margin: 0;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
}

.building-diagram--process-scroll .building-diagram__stage-anchor--build .building-diagram__label[data-pos="right"],
.building-diagram--process-scroll .building-diagram__stage-anchor--support .building-diagram__label[data-pos="left"]{
  position: absolute;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
}

.building-diagram--process-scroll #buildMaterialDev{
  position: absolute;
  right: 3%;
  top: 50%;
  z-index: 8;
  transform: translateY(-50%);
}

.building-diagram--process-scroll #processCircuitAlignDev{
  position: absolute;
  left: 3%;
  top: 50%;
  z-index: 8;
  transform: translateY(-50%);
}

.building-diagram--process-scroll #buildMaterialDev.is-docked,
.building-diagram--process-scroll #processCircuitAlignDev.is-docked{
  transform: none;
}

.building-diagram__ring-dev{
  position: absolute;
  right: 2%;
  bottom: 2%;
  z-index: 8;
  margin: 0;
}

.building-diagram--process-auto .building-diagram__label,
.building-diagram--process-scroll .building-diagram__label{
  opacity: 0.22;
  transition: opacity 0.65s ease;
}

.building-diagram--process-auto .building-diagram__label.is-process-revealed,
.building-diagram--process-scroll .building-diagram__label.is-process-revealed{
  opacity: 1;
}

.building-diagram--process-auto .building-diagram__label-pill,
.building-diagram--process-scroll .building-diagram__label-pill{
  width: calc(clamp(2.85rem, 5.2vw, 3.5rem) * var(--process-label-pill-scale, 1));
  height: calc(clamp(2.85rem, 5.2vw, 3.5rem) * var(--process-label-pill-scale, 1));
  padding: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  gap: 0;
  font-size: 0;
  opacity: 0.45;
  transition:
    opacity 0.65s ease,
    background 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.5s ease;
}

.building-diagram--process-auto .building-diagram__label.is-process-revealed .building-diagram__label-pill,
.building-diagram--process-scroll .building-diagram__label.is-process-revealed .building-diagram__label-pill{
  opacity: 1;
}

.building-diagram--process-auto .building-diagram__label-num::before,
.building-diagram--process-scroll .building-diagram__label-num::before{
  font-size: clamp(0.95rem, 1.55vw, 1.2rem);
  transition: color 0.5s ease;
}

.building-diagram--process-auto .building-diagram__label.is-process-active .building-diagram__label-pill,
.building-diagram--process-scroll .building-diagram__label.is-process-active .building-diagram__label-pill{
  color: #fff;
  background: rgba(244,121,45,.22);
  border-color: rgba(244,121,45,.85);
  box-shadow:
    0 0 0 2px rgba(244,121,45,.28),
    0 0 18px rgba(244,121,45,.35);
}

.building-diagram--process-auto .building-diagram__label.is-process-active .building-diagram__label-num::before,
.building-diagram--process-scroll .building-diagram__label.is-process-active .building-diagram__label-num::before{
  color: #fff;
}

.building-diagram--process-auto .building-diagram__label.is-process-active,
.building-diagram--process-scroll .building-diagram__label.is-process-active{
  z-index: 6;
}

.building-diagram--process-scroll .building-diagram__label{
  transition: none;
  opacity: calc(0.22 * (1 - var(--process-handoff-progress, 0)));
}

.building-diagram--process-scroll .building-diagram__label.is-process-revealed{
  opacity: calc(1 - var(--process-handoff-progress, 0));
}

/* Process diagram — numbered step counter (pill + future hover copy) */
.building-diagram--process{
  counter-reset: process-step;
}

.building-diagram--process .building-diagram__label{
  counter-increment: process-step;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.65rem, 1.4vw, 1rem);
  max-width: none;
}

.building-diagram--process .building-diagram__label-pill{
  flex-shrink: 0;
}

.building-diagram--process .building-diagram__label-num::before{
  content: counter(process-step, decimal-leading-zero);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Cascadia Mono", "Roboto Mono", Consolas, monospace;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--accent-orange);
  line-height: 1;
}

.building-diagram--process:not(.building-diagram--process-auto):not(.building-diagram--process-scroll) .building-diagram__label-expanded{
  display: block;
  width: 0;
  min-width: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition:
    width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease;
}

.building-diagram--process .building-diagram__label:hover .building-diagram__label-expanded,
.building-diagram--process .building-diagram__label:focus-visible .building-diagram__label-expanded,
.building-diagram--process .building-diagram__label.is-lit .building-diagram__label-expanded{
  width: min(26rem, 58vw);
  opacity: 1;
}

.building-diagram--process .building-diagram__label-copy{
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.building-diagram--process .building-diagram__label-detail{
  display: block;
  max-width: none;
  margin: 0;
  padding: 0;
  font-size: clamp(1.02rem, 1.5vw, 1.28rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  color: rgba(255,255,255,.84);
  text-align: left;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  transform: none;
  pointer-events: none;
}

.building-diagram--process .building-diagram__label[data-pos="top"]{
  flex-direction: row;
  align-items: flex-start;
}

.building-diagram--process .building-diagram__label[data-pos="top"] .building-diagram__label-detail,
.building-diagram--process .building-diagram__label[data-pos="bottom"] .building-diagram__label-detail{
  text-align: left;
}

.building-diagram--process .building-diagram__label[data-pos="bottom"]{
  flex-direction: row-reverse;
  align-items: flex-end;
}

.building-diagram--process .building-diagram__label[data-pos="right"],
.building-diagram--process .building-diagram__stage-anchor--build .building-diagram__label[data-pos="right"]{
  flex-direction: row-reverse;
  align-items: center;
}

.building-diagram--process .building-diagram__label[data-pos="right"] .building-diagram__label-detail,
.building-diagram--process .building-diagram__stage-anchor--build .building-diagram__label[data-pos="right"] .building-diagram__label-detail{
  text-align: right;
}

.building-diagram--process .building-diagram__label[data-pos="left"],
.building-diagram--process .building-diagram__stage-anchor--support .building-diagram__label[data-pos="left"]{
  flex-direction: row;
  align-items: center;
}

.building-diagram--process .building-diagram__stage-anchor--build,
.building-diagram--process .building-diagram__stage-anchor--support{
  align-items: center;
}

@media (max-width: 767.98px){
  .building-diagram--process .building-diagram__label:hover .building-diagram__label-expanded,
  .building-diagram--process .building-diagram__label:focus-visible .building-diagram__label-expanded,
  .building-diagram--process .building-diagram__label.is-lit .building-diagram__label-expanded{
    width: min(18rem, 72vw);
  }

  .building-diagram--process .building-diagram__label-detail{
    font-size: clamp(0.92rem, 3.6vw, 1.05rem);
    line-height: 1.5;
  }

  .building-diagram--process .building-diagram__label-num::before{
    font-size: clamp(1rem, 3.8vw, 1.35rem);
  }
}

@media (prefers-reduced-motion: reduce){
  .building-diagram--process .building-diagram__label-expanded{
    transition: none;
  }

  .building-diagram--process-auto .building-diagram__label,
  .building-diagram--process-auto .building-diagram__label-pill,
  .building-diagram--process-auto .building-diagram__label-num::before,
  .building-diagram__process-ring-lit{
    transition: none;
  }
}

@media (max-width: 767.98px){
  .building-diagram--process .building-diagram__center{
    width: 72%;
    height: clamp(240px, 58vw, 360px);
  }
  .building-diagram--process .building-diagram__label[data-pos="right"]{ right: 1%; }
  .building-diagram--process .building-diagram__stage-anchor--build{ right: 1%; }
  .building-diagram--process .building-diagram__label[data-pos="left"]{ left: 1%; }
  .building-diagram--process .building-diagram__stage-anchor--support{ left: 1%; }
  .building-diagram__material-dev,
  .building-diagram__circuit-dev{ width: min(11rem, 48vw); }
}

@media (prefers-reduced-motion: reduce){
  .process-soundboard__knob{
    animation: none;
  }
}

/* ── Gunpowder ignition (Our Approach hero — left-to-right circuit
       trace lighting up four steps in sequence) ── */

.gunpowder-ignition{
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 38vw, 420px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gunpowder-ignition__track{
  position: relative;
  width: 100%;
  padding: clamp(1rem, 2vw, 1.5rem) 0;
}

.gunpowder-ignition__svg{
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.gunpowder-ignition__trace-base{
  fill: none;
  stroke: rgba(255,255,255,.14);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gunpowder-ignition__trace-lit{
  fill: none;
  stroke: var(--accent-orange);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1 1;
  stroke-dashoffset: 1;
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(244,121,45,.55));
  transition: stroke-dashoffset 1.1s cubic-bezier(0.45, 0, 0.2, 1), opacity 0.22s ease;
}

.gunpowder-ignition.is-running .gunpowder-ignition__trace-lit,
.gunpowder-ignition.is-complete .gunpowder-ignition__trace-lit{
  opacity: 1;
}

.gunpowder-ignition__steps{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.5rem, 1vw, 1rem);
}

.gunpowder-step{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  padding: 0.5rem 0.25rem;
  background: transparent;
  border: 0;
  cursor: default;
  font-family: inherit;
  color: inherit;
}

.gunpowder-ignition:not(.gunpowder-ignition--interactive) .gunpowder-step{
  pointer-events: none;
}

.gunpowder-ignition:not(.gunpowder-ignition--interactive) .gunpowder-step:hover .gunpowder-step__node,
.gunpowder-ignition:not(.gunpowder-ignition--interactive) .gunpowder-step:focus .gunpowder-step__node,
.gunpowder-ignition:not(.gunpowder-ignition--interactive) .gunpowder-step:focus-visible .gunpowder-step__node{
  border-color: rgba(255,255,255,.18);
  box-shadow: none;
  transform: none;
}

/* Interactive variant: clickable pacing */
.gunpowder-ignition--interactive .gunpowder-step{
  cursor: pointer;
}

.gunpowder-ignition--interactive .gunpowder-step:hover .gunpowder-step__node,
.gunpowder-ignition--interactive .gunpowder-step:focus-visible .gunpowder-step__node{
  border-color: rgba(244,121,45,.7);
  box-shadow: 0 0 0 4px rgba(244,121,45,.15);
}

.gunpowder-step__node{
  position: relative;
  z-index: 1;
  width: clamp(46px, 6vw, 64px);
  height: clamp(46px, 6vw, 64px);
  border-radius: 50%;
  background: #0f1621;
  border: 2px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  transition:
    border-color 0.4s ease,
    color 0.4s ease,
    background 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.gunpowder-step__title{
  font-size: clamp(0.82rem, 1.2vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  transition: color 0.4s ease;
  line-height: 1.2;
  margin: 0;
}

.gunpowder-step.is-lit .gunpowder-step__node{
  border-color: var(--accent-orange);
  background: #1c2430;
  color: var(--accent-orange);
  transform: scale(1.06);
  box-shadow: 0 0 0 4px rgba(244,121,45,.12), 0 0 24px -4px rgba(244,121,45,.55);
}

.gunpowder-step.is-lit .gunpowder-step__title{
  color: #fff;
}

@media (prefers-reduced-motion: reduce){
  .gunpowder-ignition__trace-lit{ transition: none; }
  .gunpowder-step__node{ transition: none; }
  .gunpowder-step__title{ transition: none; }
}

@media (max-width: 991.98px){
  .cap-hero:has(.gunpowder-ignition) .cap-hero-row{
    --bs-gutter-y: 0.75rem;
  }

  .cap-hero:has(.gunpowder-ignition) .cap-hero-subtitle{
    margin-bottom: 0.75rem;
  }

  .cap-hero:has(.gunpowder-ignition) .cap-hero-visual{
    min-height: 0;
  }

  .cap-hero:has(.gunpowder-ignition) .gunpowder-ignition{
    min-height: 0;
    height: auto;
    justify-content: flex-start;
  }

  .cap-hero:has(.gunpowder-ignition) .gunpowder-ignition__track{
    padding-top: 0;
    padding-bottom: clamp(0.5rem, 2vw, 1rem);
  }
}

/* ── Spec-sheet block (used for "What 24/7 service means at TC" and the
       open systems technology section) ── */

.spec-sheet{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: #fff;
  border: 1px solid rgba(20, 26, 36, 0.1);
  border-radius: 14px;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.35rem, 2.5vw, 2rem);
  box-shadow: 0 14px 50px -32px rgba(20, 26, 36, 0.35);
}

.spec-sheet__row{
  display: grid;
  grid-template-columns: minmax(11rem, 16rem) 1fr;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  padding-bottom: clamp(0.85rem, 1.5vw, 1.15rem);
  border-bottom: 1px solid rgba(20, 26, 36, 0.08);
}

.spec-sheet__row:last-child{
  padding-bottom: 0;
  border-bottom: 0;
}

@media (max-width: 767.98px){
  .spec-sheet__row{
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

.spec-sheet__label{
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(20, 26, 36, 0.55);
  margin: 0;
  padding-top: 0.18rem;
}

.spec-sheet__value{
  font-size: 1rem;
  line-height: 1.55;
  color: #131820;
  margin: 0;
}

.spec-sheet__value--placeholder{
  color: rgba(20, 26, 36, 0.5);
  font-style: italic;
}

.spec-sheet__value--mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Cascadia Mono", "Roboto Mono", Consolas, monospace;
  font-weight: 600;
  color: #131820;
}

.spec-sheet__placeholder-flag{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  padding: 0.55rem 0.85rem;
  background: rgba(244, 121, 45, 0.1);
  border: 1px solid rgba(244, 121, 45, 0.32);
  border-radius: 8px;
  color: rgba(20, 26, 36, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
}

.spec-sheet__placeholder-flag i{
  color: var(--accent-orange);
}

/* ── Draft / placeholder notice (corner badge, expands on hover) ── */

.draft-notice{
  position: absolute;
  top: clamp(0.85rem, 2vw, 1.35rem);
  right: clamp(0.85rem, 2vw, 1.35rem);
  z-index: 8;
}

.draft-notice__trigger{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border: 0;
  border-radius: 999px;
  background: rgba(244, 121, 45, 0.12);
  color: var(--accent-orange);
  font-size: 0.72rem;
  line-height: 1;
  cursor: help;
  opacity: 0.42;
  transition: opacity 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.draft-notice:hover .draft-notice__trigger,
.draft-notice:focus-within .draft-notice__trigger{
  opacity: 1;
  background: rgba(244, 121, 45, 0.22);
  transform: scale(1.05);
}

.draft-notice__panel{
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  width: max-content;
  max-width: min(19rem, calc(100vw - 2.5rem));
  padding: 0.6rem 0.8rem;
  background: #fff;
  border: 1px solid rgba(244, 121, 45, 0.32);
  border-radius: 8px;
  box-shadow: 0 10px 28px -14px rgba(20, 26, 36, 0.45);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(20, 26, 36, 0.82);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  pointer-events: none;
}

.draft-notice:hover .draft-notice__panel,
.draft-notice:focus-within .draft-notice__panel{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.cap-section--dark .draft-notice__panel{
  background: rgba(8, 14, 22, 0.96);
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(244, 121, 45, 0.38);
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.65);
}

/* ── Service pillars (JCI 24/7 page) ── */

.service-pillars{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.15rem, 2.2vw, 1.65rem);
  max-width: 56rem;
  margin: 0 auto;
}

@media (max-width: 767.98px){
  .service-pillars{
    grid-template-columns: 1fr;
  }
}

.service-pillar{
  background: #fff;
  border: 1px solid rgba(20, 26, 36, 0.1);
  border-top: 3px solid var(--accent-orange);
  border-radius: 14px;
  padding: clamp(1.25rem, 2.2vw, 1.65rem);
  box-shadow: 0 12px 44px -30px rgba(20, 26, 36, 0.35);
}

.service-pillar__title{
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: #131820;
  margin: 0 0 0.6rem;
}

.service-pillar__body{
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(20, 26, 36, 0.78);
  margin: 0;
}

/* ── Testimonial column (JCI page — 3 plain attributed quotes, marked
       PLACEHOLDER for v1) ── */

.testimonial-column{
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.85rem);
  max-width: 56rem;
  margin: 0 auto;
}

.testimonial-quote-block{
  border-left: 3px solid var(--accent-orange);
  padding: 0.5rem 0 0.5rem clamp(1rem, 2vw, 1.5rem);
}

.testimonial-quote-block__quote{
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  color: #131820;
  font-style: italic;
  margin: 0 0 0.65rem;
}

.testimonial-quote-block__attribution{
  font-size: 0.92rem;
  color: rgba(20, 26, 36, 0.65);
  font-style: normal;
}

.testimonial-quote-block__attribution strong{
  color: #131820;
  font-weight: 700;
  font-style: normal;
}

.cap-section--dark .testimonial-quote-block__quote{ color: #fff; }
.cap-section--dark .testimonial-quote-block__attribution{ color: rgba(255,255,255,.68); }
.cap-section--dark .testimonial-quote-block__attribution strong{ color: #fff; }

.testimonial-column__placeholder-flag{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.5rem;
  padding: 0.45rem 0.75rem;
  background: rgba(244, 121, 45, 0.1);
  border: 1px solid rgba(244, 121, 45, 0.3);
  border-radius: 8px;
  color: rgba(20, 26, 36, 0.85);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  align-self: flex-start;
}

.testimonial-column__placeholder-flag i{
  color: var(--accent-orange);
}

.cap-section--dark .testimonial-column__placeholder-flag{
  background: rgba(244, 121, 45, 0.12);
  color: rgba(255,255,255,.85);
}

/* JCI 24/7 — testimonials over full-scale photo */
.cap-section--testimonials-photo{
  overflow: hidden;
  background: #0f1621;
  color: #fff;
  min-height: clamp(28rem, 52vw, 40rem);
}

.testimonials-section__photo{
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
}

.testimonials-section__photo img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.testimonials-section__photo-scrim{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(15, 22, 32, 0.98) 0%,
    rgba(15, 22, 32, 0.92) 22%,
    rgba(15, 22, 32, 0.72) 38%,
    rgba(15, 22, 32, 0.28) 58%,
    transparent 72%
  );
}

.cap-section--testimonials-photo .container{
  position: relative;
  z-index: 1;
}

.cap-section--testimonials-photo .testimonials-section__head{
  max-width: min(42rem, 100%);
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

.cap-section--testimonials-photo .cap-section__title{
  color: #fff;
}

.cap-section--testimonials-photo .testimonial-column{
  margin: 0;
  max-width: min(42rem, 100%);
}

.cap-section--testimonials-photo .testimonial-quote-block__quote{
  color: rgba(255, 255, 255, 0.94);
}

.cap-section--testimonials-photo .testimonial-quote-block__attribution{
  color: rgba(255, 255, 255, 0.72);
}

.cap-section--testimonials-photo .testimonial-quote-block__attribution strong{
  color: #fff;
}

@media (max-width: 575.98px){
  .cap-section--testimonials-photo{
    min-height: clamp(32rem, 120vw, 44rem);
  }

  .testimonials-section__photo-scrim{
    background: linear-gradient(
      180deg,
      rgba(15, 22, 32, 0.98) 0%,
      rgba(15, 22, 32, 0.94) 36%,
      rgba(15, 22, 32, 0.72) 58%,
      rgba(15, 22, 32, 0.2) 78%,
      transparent 92%
    );
  }
}

/* ── Capability section wrappers (consistent vertical rhythm and
       light/dark backgrounds across pages) ── */

.cap-section{
  position: relative;
  padding: clamp(2.75rem, 6vw, 5rem) 0;
}

.cap-section--light{ background: #f8f7f4; color: #131820; }
.cap-section--paper{ background: #fff; color: #131820; }
.cap-section--dark{
  background: var(--hero-bg-1);
  color: #fff;
  background-image:
    radial-gradient(900px 500px at 20% 15%, rgba(0,145,138,.18), transparent 60%),
    radial-gradient(700px 450px at 80% 30%, rgba(244,121,45,.12), transparent 60%),
    linear-gradient(135deg, var(--hero-bg-1), var(--hero-bg-2));
}

.cap-section__head{
  max-width: 56rem;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.cap-section__eyebrow{
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin: 0 0 0.5rem;
}

.cap-section__title{
  font-size: clamp(1.5rem, 2.85vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 0.6rem;
}

.cap-section__lede{
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.6;
  color: rgba(20, 26, 36, 0.72);
  margin: 0 auto;
  max-width: 42rem;
}

.cap-section--dark .cap-section__lede{ color: rgba(255,255,255,.78); }
.cap-section--dark .cap-section__title{ color: #fff; }

/* ==========================================================================
   V2 pages — FAQ, About, Service Agreement, Contact, Who We Serve,
   Work With Us, Blog, TC System hero v2
   ========================================================================== */

/* Legal / Service Agreement */
.legal-document{
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 6rem);
  color: #131820;
}
.legal-document h1{
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1.75rem;
}
.legal-document h2{
  font-size: 1.05rem;
  font-weight: 800;
  margin: 1.75rem 0 0.65rem;
  letter-spacing: -0.01em;
}
.legal-document p,
.legal-document li{
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(20, 26, 36, 0.88);
}
.legal-document ul{
  padding-left: 1.25rem;
  margin: 0 0 0.75rem;
}

/* About Us leadership */
.about-leadership-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 56rem;
  margin: 0 auto;
}
.about-leader{
  text-align: center;
}
.about-leader__photo{
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.65rem;
  background: rgba(20, 26, 36, 0.06);
}
.about-leader__name{
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 0.15rem;
}
.about-leader__title{
  font-size: 0.82rem;
  color: rgba(20, 26, 36, 0.62);
  margin: 0;
  line-height: 1.35;
}
.about-values-list{
  max-width: 46rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about-value-item{
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.about-value-item__icon{
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: rgba(0, 145, 138, 0.1);
  color: var(--tc-teal);
  font-size: 1.15rem;
  line-height: 1;
}
.about-value-item__body{
  flex: 1;
  min-width: 0;
}
.about-value-item h3{
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
}
.about-value-item p{
  margin: 0;
  line-height: 1.6;
  color: rgba(20, 26, 36, 0.78);
}

/* Contact page */
.contact-page-photo{
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  max-width: 100%;
}

.contact-page-photo img{
  display: block;
  width: 100%;
  height: auto;
}

.contact-page-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 992px){
  .contact-page-grid{
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr);
    align-items: start;
  }
}
.contact-info-block{
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-info-block address{
  font-style: normal;
  line-height: 1.6;
  color: rgba(20, 26, 36, 0.85);
}
.contact-map{
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  border-radius: 12px;
  background: rgba(20, 26, 36, 0.06);
}

/* Who We Serve */
.who-we-serve-layout{
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.who-we-serve-layout__main{
  min-width: 0;
}

.who-we-serve__section-head{
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  text-align: left;
}

.who-we-serve-cta-panel{
  display: none;
}

.who-we-serve-cta-card{
  background: #fff;
  border: 1px solid rgba(20, 26, 36, 0.1);
  border-radius: 14px;
  padding: clamp(1.25rem, 2vw, 1.65rem);
  box-shadow: 0 18px 48px -32px rgba(20, 26, 36, 0.45);
}

.who-we-serve-cta-card__title{
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 0.75rem;
  color: var(--ink, #141a24);
}

.who-we-serve-cta-card__body{
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(20, 26, 36, 0.72);
  margin: 0 0 1.15rem;
}

.who-we-serve-cta-card__btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: var(--accent-orange);
  border: 1px solid var(--accent-orange);
  color: #fff;
  font-weight: 700;
  font-size: 1.02rem;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.who-we-serve-cta-card__btn:hover,
.who-we-serve-cta-card__btn:focus-visible{
  background: #de6d27;
  border-color: #de6d27;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.who-we-serve-cta-card__more{
  display: inline-block;
  margin-top: 0.95rem;
}

@media (min-width: 992px){
  .who-we-serve-layout{
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
  }

  .who-we-serve-cta-panel{
    display: block;
    position: sticky;
    top: calc(var(--who-serve-nav-height, 4.5rem) + 0.75rem);
    align-self: start;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
  }

  .who-we-serve-cta-panel.is-visible{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  @media (prefers-reduced-motion: reduce){
    .who-we-serve-cta-panel{
      transition: none;
      transform: none;
    }
  }
}

.who-we-serve-nav{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 247, 244, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20, 26, 36, 0.08);
  padding: 0.65rem 0;
}
.who-we-serve-nav__list{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.who-we-serve-nav__link{
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(20, 26, 36, 0.62);
  text-decoration: none;
  padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.who-we-serve-nav__link:hover,
.who-we-serve-nav__link.is-active{
  color: var(--accent-orange);
  border-bottom-color: var(--accent-orange);
}
.who-segment{
  scroll-margin-top: 4.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid rgba(20, 26, 36, 0.08);
}
.who-segment__icon{
  width: clamp(48px, 6vw, 64px);
  height: clamp(48px, 6vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: var(--tc-teal);
  border: 1px solid rgba(20, 26, 36, 0.12);
  border-radius: 12px;
  flex-shrink: 0;
}
.who-segment__body h2{
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  margin: 0 0 0.65rem;
}
.who-segment__lede{
  line-height: 1.6;
  color: rgba(20, 26, 36, 0.78);
  margin: 0 0 1.25rem;
  max-width: 42rem;
}
.who-case-card{
  background: #fff;
  border: 1px solid rgba(20, 26, 36, 0.1);
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  max-width: 42rem;
  box-shadow: 0 12px 40px -28px rgba(20, 26, 36, 0.35);
}
.who-cta-block{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: start;
}

.who-cta-block--bottom{
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(20, 26, 36, 0.08);
}

.who-case-card--cta{
  margin-top: 0;
}
.who-case-card__tag{
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin: 0 0 0.4rem;
}
.who-case-card__title{
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.who-case-card p:not(.who-case-card__tag){
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(20, 26, 36, 0.78);
}
.who-case-card__actions{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-top: 1.1rem;
}
.who-case-card__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.who-case-card__cta--text{
  padding: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--tc-teal);
}
.who-case-card__cta--text:hover,
.who-case-card__cta--text:focus-visible{
  color: var(--accent-orange);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.who-case-card__cta--secondary{
  padding: 0.6rem 1rem;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 8px;
  background: transparent;
  border: 2px solid var(--tc-orange-left);
  color: var(--tc-orange-left);
}
.who-case-card__cta--secondary:hover,
.who-case-card__cta--secondary:focus-visible{
  background: rgba(244, 121, 45, 0.1);
  border-color: var(--tc-orange-left);
  color: var(--tc-orange-left);
  text-decoration: none;
}
@media (max-width: 767.98px){
  .who-segment,
  .who-cta-block{ grid-template-columns: 1fr; }
  .who-segment__icon{ width: 48px; height: 48px; font-size: 1.35rem; }
}

/* Work With Us */
.work-cards{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px){
  .work-cards{ grid-template-columns: repeat(3, 1fr); }
}
.work-card{
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  background: #fff;
  border: 1px solid rgba(20, 26, 36, 0.1);
  border-radius: 14px;
  min-height: 100%;
}
.work-card__num{
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-orange);
  margin: 0 0 0.5rem;
}
.work-card__title{
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 0.65rem;
}
.work-card__body{
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(20, 26, 36, 0.78);
  margin: 0 0 0.85rem;
  flex-grow: 1;
}
.work-card__quote{
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.5;
  color: rgba(20, 26, 36, 0.65);
  border-left: 2px solid var(--accent-orange);
  padding-left: 0.85rem;
  margin: 0;
}
.work-jobs-list{
  max-width: 46rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.work-job-row{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(20, 26, 36, 0.08);
}
.work-job-row__title{
  font-weight: 700;
  margin: 0;
}
.work-job-row__meta{
  font-size: 0.88rem;
  color: rgba(20, 26, 36, 0.55);
  margin: 0.15rem 0 0;
}
.work-job-row__apply{
  font-weight: 600;
  color: var(--accent-orange);
  text-decoration: none;
  white-space: nowrap;
}
.work-quote-strip{
  max-width: 46rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Blog */
.page-blog{
  background: #fff;
  color: #131820;
}

.page-blog main{
  background: #fff;
  color: #131820;
}

.page-blog .blog-post a,
.page-blog .cap-section--paper a:not(.blog-card){
  color: var(--tc-teal);
  font-weight: 600;
  text-decoration: none;
}

.page-blog .blog-post a:hover,
.page-blog .cap-section--paper a:not(.blog-card):hover{
  text-decoration: underline;
}

.blog-filters{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.blog-filter-btn{
  border: 1px solid rgba(20, 26, 36, 0.14);
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(20, 26, 36, 0.72);
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.blog-filter-btn.is-active,
.blog-filter-btn:hover{
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: rgba(244, 121, 45, 0.06);
}
.blog-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px){
  .blog-grid{ grid-template-columns: repeat(2, 1fr); }
}
.blog-card{
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(20, 26, 36, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, transform 0.18s ease;
  min-height: 100%;
}
.blog-card:hover{
  border-color: rgba(244, 121, 45, 0.45);
  transform: translateY(-2px);
  color: inherit;
}
.blog-card__category{
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin: 0 0 0.45rem;
}
.blog-card__title{
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}
.blog-card__excerpt{
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(20, 26, 36, 0.68);
  margin: 0 0 0.75rem;
  flex-grow: 1;
}
.blog-card__date{
  font-size: 0.82rem;
  color: rgba(20, 26, 36, 0.48);
}
.blog-post{
  max-width: 42rem;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) 0 4rem;
}
.blog-post__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  font-size: 0.85rem;
  color: rgba(20, 26, 36, 0.55);
  margin-bottom: 1.25rem;
}
.blog-post__title{
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}
.blog-post__body{
  line-height: 1.7;
  color: rgba(20, 26, 36, 0.88);
}
.blog-post__body p{ margin: 0 0 1rem; }
.blog-post__body h2{
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 2rem 0 0.85rem;
  color: #131820;
}
.blog-post__body h3{
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 1.6rem 0 0.6rem;
  color: #131820;
}
.blog-post__body ul,
.blog-post__body ol{
  margin: 0 0 1.25rem;
  padding-left: 1.3rem;
}
.blog-post__body li{
  margin-bottom: 0.5rem;
  line-height: 1.65;
}
.blog-post__body li:last-child{ margin-bottom: 0; }
.blog-post__body strong{ font-weight: 700; color: #131820; }
.blog-post__body blockquote{
  margin: 1.5rem 0;
  padding: 0.85rem 1.25rem;
  border-left: 3px solid var(--tc-teal);
  background: rgba(0, 145, 138, 0.05);
  border-radius: 0 8px 8px 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(20, 26, 36, 0.82);
}
.blog-post__body blockquote p{ margin: 0; }
.blog-post__body p + h2,
.blog-post__body ul + h2,
.blog-post__body ol + h2{ margin-top: 2.25rem; }
.blog-post__figure{
  margin: 0 0 1.5rem;
}
.blog-post__figure img,
.blog-post__body img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* TC System hero v2 — buildings slide past badge */
.buildings-slide-hero{
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 38vw, 420px);
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15,22,33,.95), rgba(8,14,22,.98));
}
.buildings-slide-hero__track{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  gap: clamp(2rem, 8vw, 5rem);
  padding-bottom: 12%;
  animation: buildingsSlide 28s linear infinite;
  will-change: transform;
}
.buildings-slide-hero__building{
  flex: 0 0 auto;
  width: clamp(120px, 22vw, 200px);
  opacity: 0.55;
  filter: grayscale(1) brightness(0.85);
  transition: filter 0.6s ease, opacity 0.6s ease;
}
.buildings-slide-hero__building.is-treated{
  opacity: 0.95;
  filter: grayscale(0) brightness(1) drop-shadow(0 0 12px rgba(244,121,45,.35));
}
.buildings-slide-hero__badge{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: clamp(100px, 18vw, 160px);
  pointer-events: none;
}
.buildings-slide-hero__badge img{
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.45));
}
@keyframes buildingsSlide{
  0%{ transform: translateX(40%); }
  100%{ transform: translateX(-120%); }
}
@media (prefers-reduced-motion: reduce){
  .buildings-slide-hero__track{ animation: none; justify-content: center; padding-bottom: 0; align-items: center; }
  .buildings-slide-hero__building{ opacity: 0.7; }
}

/* CMS admin */
.cms-admin{
  min-height: 100vh;
  background: #f4f3ef;
  padding: 2rem 0 4rem;
}
.cms-admin__panel{
  background: #fff;
  border: 1px solid rgba(20, 26, 36, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.cms-admin textarea{
  width: 100%;
  min-height: 200px;
  font-family: ui-monospace, monospace;
  font-size: 0.85rem;
}

/* ── Visually plan revisions (Notion) ── */

/* Global nav — turquoise laser underline (hover + active, left-to-right) */
:root{
  --nav-trace-duration: 0.42s;
  --nav-trace-ease: cubic-bezier(0.45, 0, 0.2, 1);
}

.navbar-tc-main .navbar-nav-tc .nav-link,
.navbar-secondary__link,
.navbar-tc-main .dropdown-item{
  position: relative;
}

.navbar-tc-main .navbar-nav-tc .nav-link.active,
.navbar-secondary__link.active,
.navbar-tc-main .dropdown-item.active,
.navbar-tc-main .dropdown-item:active{
  background-color: transparent !important;
}

.navbar-tc-main .navbar-nav-tc .nav-link.active{
  color: #fff !important;
}

.navbar-tc-main .navbar-nav-tc .nav-link::after,
.navbar-secondary__link::after,
.navbar-tc-main .dropdown-item::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2.5px;
  background: var(--tc-teal);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition:
    transform var(--nav-trace-duration) var(--nav-trace-ease),
    opacity 0.1s ease;
  filter: drop-shadow(0 0 6px rgba(0, 145, 138, 0.55));
  pointer-events: none;
}

.navbar-tc-main .dropdown-item::after{
  left: 1.15rem;
  width: calc(100% - 2.3rem);
}

.navbar-tc-main .navbar-nav-tc .nav-link:hover::after,
.navbar-tc-main .navbar-nav-tc .nav-link:focus-visible::after,
.navbar-secondary__link:hover::after,
.navbar-secondary__link:focus-visible::after,
.navbar-tc-main .dropdown-item:hover::after,
.navbar-tc-main .dropdown-item:focus-visible::after,
.navbar-tc-main .navbar-nav-tc .nav-link.active::after,
.navbar-secondary__link.active::after,
.navbar-tc-main .dropdown-item.active::after,
.navbar-tc-main .dropdown-item:active::after{
  transform: scaleX(1);
  opacity: 1;
}

.navbar-tc-main .dropdown-item.active,
.navbar-tc-main .dropdown-item:active{
  color: #fff !important;
  box-shadow: none;
}

@starting-style{
  .navbar-tc-main .navbar-nav-tc .nav-link.active::after,
  .navbar-secondary__link.active::after,
  .navbar-tc-main .dropdown-item.active::after{
    transform: scaleX(0);
    opacity: 0.7;
  }
}

@media (prefers-reduced-motion: reduce){
  .navbar-tc-main .navbar-nav-tc .nav-link::after,
  .navbar-secondary__link::after,
  .navbar-tc-main .dropdown-item::after{
    transition: none;
  }

  .navbar-tc-main .navbar-nav-tc .nav-link:hover::after,
  .navbar-tc-main .navbar-nav-tc .nav-link:focus-visible::after,
  .navbar-secondary__link:hover::after,
  .navbar-secondary__link:focus-visible::after,
  .navbar-tc-main .dropdown-item:hover::after,
  .navbar-tc-main .dropdown-item:focus-visible::after,
  .navbar-tc-main .navbar-nav-tc .nav-link.active::after,
  .navbar-secondary__link.active::after,
  .navbar-tc-main .dropdown-item.active::after,
  .navbar-tc-main .dropdown-item:active::after{
    transform: scaleX(1);
    opacity: 1;
  }
}

.site-hero--about-light .navbar-tc-main .navbar-nav-tc .nav-link.active{
  color: #1a2332 !important;
}

.site-hero--about-light .navbar-tc-main .dropdown-item.active,
.site-hero--about-light .navbar-tc-main .dropdown-item:active{
  color: #1a2332 !important;
  background-color: transparent !important;
}

/* Home — landing hero fills viewport on desktop; content-sized on mobile */
.site-hero.site-hero--landing{
  overflow: visible;
}

@media (min-width: 992px){
  .site-hero.site-hero--landing{
    min-height: 100vh;
    min-height: 100svh;
  }
}

@media (max-width: 991.98px){
  .site-hero.site-hero--landing{
    min-height: 0;
  }

  .hero-content--landing{
    justify-content: flex-start;
    padding-bottom: clamp(1.25rem, 4vw, 2rem);
  }

  .hero-content--landing .hero-copy{
    transform: none;
  }
}

.site-hero.site-hero--landing::after{
  opacity: 0.42;
}

/* Landing — tracers + nodes (via main.js layout) down 10%; building unchanged */
.site-hero--landing #particleScene .circuit-traces,
.site-hero--landing #particleScene .circuit-glow{
  transform: translateY(calc(25px + 10%));
}

.hero-content--landing{
  padding-top: clamp(0.35rem, 1.2vw, 1rem);
}

@media (min-width: 992px) and (max-height: 900px){
  .hero-content--landing .hero-content-row{
    margin-top: -1.25rem;
    margin-bottom: -2.5rem;
  }

  .hero-visual{
    min-height: 760px;
  }
}

/* BMS Incentives hub — desktop shift, mobile kicker padding */
@media (min-width: 992px) and (max-width: 1480px){
  .hero-content--incentives-hub.hero-content--landing{
    padding-top: clamp(0.25rem, 0.8vw, 0.75rem);
  }

  .hero-content--incentives-hub .hero-content-row{
    transform: translateY(-1.75rem);
  }
}

@media (max-width: 767.98px){
  .hero-content--incentives-hub .hero-kicker{
    padding-top: 2.75rem;
  }
}

/* JCI — intro width, phone, title breaks, form selects */
.cap-section__head--stack-left{
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.cap-section__head--stack-left .cap-section__lede{
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.cap-hero-title--jci-lines{
  line-height: 1.05;
}

.contact-panel__tier--emergency .contact-panel__label{
  margin-bottom: 0.35rem;
}

.contact-panel__tier--service .contact-panel__label{
  margin-bottom: 0.5rem;
}

.contact-panel__emergency-number{
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.assessment-form-group--building{
  margin-top: 1.75rem;
}

select.assessment-input{
  line-height: 1.5;
  min-height: 2.75rem;
}

select.assessment-input:invalid{
  color: rgba(255, 255, 255, 0.45);
}

.cap-section--paper select.assessment-input:invalid,
.cap-section--light select.assessment-input:invalid{
  color: rgba(19, 24, 32, 0.45);
}

select.assessment-input option[disabled]{
  color: rgba(255, 255, 255, 0.45);
}

.cap-section--paper select.assessment-input option[disabled],
.cap-section--light select.assessment-input option[disabled]{
  color: rgba(19, 24, 32, 0.45);
}

/* About — leadership grid min 2 per row, bottom CTAs */
.about-leadership-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px){
  .about-leadership-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.about-bottom-ctas{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Service Agreement — readable text */
.site-hero--nav-only::before,
.site-hero--nav-only::after{
  display: none;
}

.page-legal main{
  background: #f8f7f4;
  color: #131820;
}

.page-legal .legal-document{
  color: #131820;
}

.page-legal .legal-document h1,
.page-legal .legal-document h2{
  color: #131820;
}

/* ==========================================================================
   Gateway — CEA / BMS routing homepage
   ========================================================================== */
.gateway-page{
  background: var(--hero-bg-1);
}

.gateway-page .site-footer{
  display: none;
}

.gateway{
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.gateway-brand{
  position: absolute;
  top: clamp(1.25rem, 3vw, 2rem);
  left: clamp(1.25rem, 4vw, 3rem);
  z-index: 5;
}

.gateway-brand svg{
  height: clamp(1.6rem, 2.4vw, 2.1rem);
  width: auto;
  display: block;
}

.gateway-columns{
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.gateway-intro{
  color: #fff;
  text-align: center;
  padding: clamp(5.5rem, 22vw, 7rem) clamp(1.5rem, 6vw, 3rem) clamp(2rem, 6vw, 2.75rem);
}

.gateway-eyebrow{
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.gateway-headline{
  margin: 0 0 0.85rem;
  font-size: clamp(2.1rem, 7vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.gateway-headline .accent{
  background: linear-gradient(100deg, var(--tc-orange-left), var(--tc-orange-right));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gateway-subhead{
  margin: 0 auto 1.25rem;
  max-width: 30rem;
  font-size: clamp(1rem, 3vw, 1.1rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
}

.gateway-instruction{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
}

.gateway-instruction i{
  color: var(--tc-orange-right);
  transition: transform 0.25s ease;
}

.gateway-industry-select{
  position: relative;
  display: inline-block;
}

.gateway-industry-toggle{
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.gateway-industry-toggle::after{
  display: none;
}

.gateway-industry-select:hover .gateway-industry-toggle i,
.gateway-industry-toggle[aria-expanded="true"] i{
  transform: translateX(2px) rotate(90deg);
}

.gateway-industry-menu{
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  min-width: 17rem;
  margin: 0;
  padding: 0.4rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: #101722;
  box-shadow: 0 20px 45px rgba(0,0,0,0.45);
}

@media (hover: hover){
  .gateway-industry-select:hover .gateway-industry-menu{
    display: block;
  }
}

.gateway-industry-menu__link{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: normal;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.gateway-industry-menu__link:hover,
.gateway-industry-menu__link:focus-visible{
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.gateway-industry-menu__link--cea:hover,
.gateway-industry-menu__link--cea:focus-visible{
  color: #4fd8cf;
}

.gateway-industry-menu__link--bms:hover,
.gateway-industry-menu__link--bms:focus-visible{
  color: var(--tc-orange-right);
}

@media (max-width: 991.98px){
  .gateway-industry-menu{
    left: 50%;
    transform: translateX(-50%);
  }
}

.gateway-photos{
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.gateway-tile{
  position: relative;
  display: flex;
  align-items: flex-end;
  flex: 1 1 auto;
  min-height: 15rem;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
}

.gateway-tile__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.02);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  filter: saturate(0.92);
}

.gateway-tile--bms .gateway-tile__img{
  /* Keeps the standing technician framed the same way as the original manual crop of this photo. */
  object-position: 54% 50%;
}

.gateway-tile__scrim{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(4,6,10,0.88) 0%, rgba(4,6,10,0.42) 42%, rgba(4,6,10,0.12) 68%, rgba(4,6,10,0.05) 100%);
  transition: background 0.5s ease;
}

.gateway-tile--cea .gateway-tile__scrim{
  background:
    linear-gradient(to top, rgba(4,6,10,0.88) 0%, rgba(4,6,10,0.42) 42%, rgba(4,6,10,0.12) 68%, rgba(4,6,10,0.05) 100%),
    linear-gradient(100deg, rgba(0,145,138,0.16), rgba(0,145,138,0) 55%);
}

.gateway-tile--bms .gateway-tile__scrim{
  background:
    linear-gradient(to top, rgba(4,6,10,0.88) 0%, rgba(4,6,10,0.42) 42%, rgba(4,6,10,0.12) 68%, rgba(4,6,10,0.05) 100%),
    linear-gradient(260deg, rgba(244,121,45,0.18), rgba(244,121,45,0) 55%);
}

.gateway-tile__content{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(1.5rem, 5vw, 2.25rem) clamp(1.5rem, 5vw, 2.75rem) clamp(1.75rem, 6vw, 2.5rem);
}

.gateway-tile__kicker{
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.gateway-tile__title{
  display: block;
  margin-bottom: 0.85rem;
  font-size: clamp(1.5rem, 5.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.15;
}

.gateway-tile__cta{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, gap 0.3s ease;
}

.gateway-tile__cta i{
  transition: transform 0.3s ease;
}

.gateway-tile:hover .gateway-tile__img,
.gateway-tile:focus-visible .gateway-tile__img{
  transform: scale(1.08);
  filter: saturate(1.05);
}

.gateway-tile:hover .gateway-tile__cta,
.gateway-tile:focus-visible .gateway-tile__cta{
  border-color: currentColor;
}

.gateway-tile:hover .gateway-tile__cta i,
.gateway-tile:focus-visible .gateway-tile__cta i{
  transform: translateX(4px);
}

.gateway-tile--cea:hover .gateway-tile__cta,
.gateway-tile--cea:focus-visible .gateway-tile__cta{
  color: #4fd8cf;
}

.gateway-tile--bms:hover .gateway-tile__cta,
.gateway-tile--bms:focus-visible .gateway-tile__cta{
  color: var(--tc-orange-right);
}

.gateway-tile:focus-visible{
  outline: 2px solid #fff;
  outline-offset: -4px;
}

/* Diagonal seam accent */
.gateway-seam{
  position: relative;
  flex: 0 0 auto;
  height: 1.375rem;
  margin: -0.1px 0;
  z-index: 3;
  pointer-events: none;
}

.gateway-seam::before{
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  bottom: -1px;
  width: 130%;
  transform: translateX(-50%) skewY(-9deg);
  background: linear-gradient(90deg, var(--tc-orange-left), var(--tc-orange-right));
  box-shadow: 0 0 22px rgba(248, 149, 29, 0.55);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Mobile/stacked layout: clip each photo along the same diagonal the seam
   traces, so the BMS photo's bottom edge and the CEA photo's top edge are
   flush with the line (no gap, no bleed past it). The tiles keep equal
   flex-grow so they still fill exactly to the bottom of the screen; the
   negative margin on BMS "borrows" the overlap band from CEA and both
   grow to compensate, so total height is unchanged. */
@media (max-width: 991.98px){
  .gateway-page{
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
  }

  .gateway{
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
  }

  .gateway-columns{
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
  }

  .gateway-intro{
    flex: 0 0 auto;
    padding: clamp(4.75rem, 16vw, 6rem) clamp(1.25rem, 5vw, 2rem) clamp(1.1rem, 3.5vw, 1.5rem);
  }

  .gateway-photos{
    --gw-lean-m: clamp(2.25rem, 9vw, 3.25rem);
    --gw-seam-thick-m: 0.2rem;
    flex: 1 1 0;
    min-height: 0;
  }

  .gateway-tile{
    /* Equal flex-basis so the shared diagonal always sits at mid-overlap. */
    flex: 1 1 0;
    min-height: 0;
  }

  .gateway-tile--bms{
    margin-bottom: calc(-1 * var(--gw-lean-m));
    /* Bottom edge: left at 100%, right at 100%-lean — flush with orange diagonal. */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--gw-lean-m)), 0 100%);
    z-index: 2;
  }

  .gateway-tile--cea{
    /* Top edge: left at lean, right at 0 — flush with the same diagonal. */
    clip-path: polygon(0 var(--gw-lean-m), 100% 0, 100% 100%, 0 100%);
    z-index: 1;
  }

  /* With equal-height tiles + BMS negative margin, the overlap band starts at
     50% - lean/2. Pin the seam there (not centered on 50%) so the orange
     band sits exactly on the shared clip edges. */
  .gateway-seam{
    position: absolute;
    left: 0;
    right: 0;
    top: calc(50% - (var(--gw-lean-m) / 2));
    height: calc(var(--gw-lean-m) + var(--gw-seam-thick-m));
    margin: 0;
    transform: none;
  }

  .gateway-seam::before{
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: 100%;
    height: 100%;
    transform: none;
    clip-path: polygon(0 var(--gw-lean-m), 100% 0, 100% var(--gw-seam-thick-m), 0 calc(var(--gw-lean-m) + var(--gw-seam-thick-m)));
  }

  .gateway-tile__content{
    padding: clamp(1rem, 3.5vw, 1.5rem) clamp(1.25rem, 4vw, 1.75rem) clamp(1.1rem, 4vw, 1.6rem);
  }

  .gateway-tile__title{
    font-size: clamp(1.25rem, 5vw, 1.7rem);
    margin-bottom: 0.55rem;
  }
}

@media (max-width: 991.98px) and (max-height: 720px){
  .gateway-intro{
    padding-top: clamp(4.25rem, 12vw, 5rem);
    padding-bottom: 0.85rem;
  }

  .gateway-eyebrow{
    margin-bottom: 0.45rem;
  }

  .gateway-headline{
    margin-bottom: 0.5rem;
    font-size: clamp(1.75rem, 6.5vw, 2.25rem);
  }

  .gateway-subhead{
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
  }
}

@media (min-width: 992px){
  .gateway-columns{
    flex-direction: row;
    min-height: 100vh;
  }

  .gateway-intro{
    flex: 0 0 30%;
    max-width: 26rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem) clamp(4rem, 7vw, 6rem);
  }

  .gateway-eyebrow{
    text-align: left;
  }

  .gateway-subhead{
    margin: 0 0 1.5rem;
  }

  .gateway-photos{
    flex-direction: row;
    flex: 1 1 auto;
    --gw-lean: 12vh;
  }

  .gateway-tile{
    min-height: 100vh;
  }

  /* Each photo is widened past its fair share and clip-path'd along the shared
     diagonal, so the image itself fills every pixel up to the seam (no gap) and
     never paints past it (no overflow into the other tile). */
  .gateway-tile--bms{
    flex: 0 0 auto;
    width: calc(50% + var(--gw-lean) / 2);
    margin-right: calc(-1 * var(--gw-lean));
    clip-path: polygon(0 0, 100% 0, calc(100% - var(--gw-lean)) 100%, 0 100%);
    z-index: 2;
  }

  .gateway-tile--cea{
    flex: 0 0 auto;
    width: calc(50% + var(--gw-lean) / 2);
    clip-path: polygon(var(--gw-lean) 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
  }

  .gateway-seam{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 0;
    height: auto;
    margin: 0;
    flex: none;
  }

  .gateway-seam::before{
    left: -0.875rem;
    right: auto;
    width: 1.75rem;
    top: 0;
    bottom: 0;
    height: auto;
    transform: skewX(-6.84deg);
  }

  .gateway-tile__content{
    padding: clamp(2rem, 4vw, 3rem);
  }

  .gateway-tile__title{
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  }

  /* Keep left-tile title clear of the forward diagonal seam/clip on the right edge. */
  .gateway-tile--bms .gateway-tile__title{
    max-width: calc(100% - var(--gw-lean) - 3rem);
  }
}

@media (min-width: 1200px){
  .gateway-tile__content{
    padding: 3rem 3.5rem;
  }
}

/* ── Site footer (BMS) ── */

.site-footer{
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.88);
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(0,145,138,.18), transparent 55%),
    radial-gradient(700px 400px at 85% 100%, rgba(244,121,45,.12), transparent 55%),
    linear-gradient(135deg, var(--hero-bg-1), var(--hero-bg-2));
  border-top: 1px solid rgba(255,255,255,.08);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(1.5rem, 3vw, 2rem);
}

.site-footer__grid{
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.site-footer__brand .navbar-brand{
  margin: 0;
  padding: 0;
}

.site-footer__brand .brand-mark svg{
  height: clamp(1.75rem, 3vw, 2.25rem);
  width: auto;
}

.site-footer__tagline{
  margin: 1rem 0 1.25rem;
  max-width: 22rem;
  color: rgba(255,255,255,.68);
  font-size: .95rem;
  line-height: 1.55;
}

.site-footer__social{
  display: flex;
  gap: .65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible{
  border-color: rgba(244,121,45,.55);
  color: #fff;
  background: rgba(255,255,255,.06);
}

.site-footer__heading{
  margin: 0 0 .85rem;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer__links,
.site-footer__contact,
.site-footer__utility{
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li + li,
.site-footer__contact li + li{
  margin-top: .45rem;
}

.site-footer__links a,
.site-footer__contact a,
.site-footer__utility a{
  color: rgba(255,255,255,.72);
  font-size: .95rem;
  text-decoration: none;
  transition: color .2s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__contact a:hover,
.site-footer__contact a:focus-visible,
.site-footer__utility a:hover,
.site-footer__utility a:focus-visible{
  color: var(--accent-orange);
}

.site-footer__contact a{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.site-footer__cta{
  margin-top: 1rem;
}

.site-footer__bottom{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

.site-footer__copyright{
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
}

.site-footer__partners{
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.75rem);
  flex-wrap: wrap;
}

.site-footer__partner-logo{
  display: block;
  height: clamp(1.5rem, 3vw, 2rem);
  width: auto;
  opacity: .82;
}

.site-footer__utility{
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.1rem;
}

.site-footer__utility a{
  font-size: .85rem;
}

.site-footer__utility .bi{
  font-size: .75rem;
  vertical-align: .05em;
}

@media (max-width: 991.98px){
  .site-footer__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__brand-col{
    grid-column: 1 / -1;
  }
}

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

  .site-footer__bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}

.site-footer__photo-credit{
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.45);
  font-size: .8rem;
  text-align: center;
}

.site-footer__photo-credit a{
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

.site-footer__photo-credit a:hover,
.site-footer__photo-credit a:focus-visible{
  color: rgba(255,255,255,.72);
}

/* Temporarily hide capability-statement downloads sitewide */
.case-study-download,
.case-study-detail-download,
.case-study-detail-cta{
  display: none !important;
}
