.school-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 27, 73, 0.98), rgba(13, 44, 103, 0.92)),
    var(--navy);
}

.school-hero::before {
  position: absolute;
  inset: auto -12% -24% 34%;
  height: 55%;
  content: "";
  background: rgba(245, 155, 25, 0.16);
  transform: skewY(-8deg);
}

.school-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.82fr);
  gap: 48px;
  align-items: center;
  min-height: 720px;
  padding: 78px 0 96px;
}

.school-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: 3.325rem;
  font-weight: 900;
  line-height: 1.03;
}

.school-hero-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.school-hero-visual {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.school-bus-art {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.3));
}

.school-hero-points {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 28px;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
  list-style: none;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
}

.school-hero-points li {
  display: flex;
  align-items: center;
  color: #fff;
}

.school-hero-points li::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  content: "";
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 210, 4, 0.7);
}

.school-playback-button {
  right: 22px;
  top: 22px;
  width: 87px;
  height: 87px;
  transform: none;
}

.school-playback-button .transit-playback-button__icon {
  width: 69px;
  height: 69px;
  padding-left: 0;
  border: 0;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.46);
}

.coverage-pill {
  position: absolute;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.coverage-pill::before {
  width: 10px;
  height: 10px;
  margin-right: 8px;
  content: "";
  border-radius: 50%;
  background: var(--orange);
}

.coverage-pill.seating {
  left: 8%;
  top: 18%;
}

.coverage-pill.stoparm {
  right: 4%;
  top: 24%;
}

.coverage-pill.roadway {
  left: 4%;
  bottom: 20%;
}

.coverage-pill.bev {
  right: 12%;
  bottom: 14%;
}

.school-proof-band {
  color: var(--white);
  background: var(--navy);
  border-top: 4px solid var(--orange);
}

.school-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.school-proof-grid div {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 18px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.school-proof-grid div:first-child {
  border-left: 0;
}

.school-proof-grid strong {
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.school-proof-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.school-coverage-section,
.workflow-section {
  background: var(--soft);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.coverage-card {
  position: relative;
  min-width: 0;
  min-height: 312px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(8, 28, 72, 0.06);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.coverage-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.09), transparent 44%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.coverage-card:hover,
.coverage-card:focus-visible {
  border-color: #ffcc00;
  background: #fffdf6;
  box-shadow:
    0 18px 38px rgba(8, 28, 72, 0.14),
    0 0 0 2px rgba(255, 204, 0, 0.18);
  transform: translateY(-6px);
  outline: none;
}

.coverage-card:hover::after,
.coverage-card:focus-visible::after {
  opacity: 1;
}

.coverage-card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.coverage-card-copy strong,
.workflow-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 850;
  line-height: 1.16;
}

.coverage-card-copy > span,
.workflow-grid p,
.bev-note {
  color: var(--muted);
}

.coverage-card-cue {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--navy);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coverage-card-cue b {
  color: #d78700;
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.coverage-card:hover .coverage-card-cue b,
.coverage-card:focus-visible .coverage-card-cue b {
  transform: translateX(4px);
}

.coverage-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.coverage-icon svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.coverage-icon.amber {
  background: #ffd204;
}

.coverage-icon.green {
  background: #ffd204;
}

.coverage-icon.blue {
  background: #ffd204;
}

body.theme-black main .coverage-card {
  color: #ffffff;
  border: 2px solid #343438;
  background: linear-gradient(145deg, #171719, #0d0d0f);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

body.theme-black main .coverage-card .coverage-card-copy strong {
  color: #ffffff !important;
}

body.theme-black main .coverage-card .coverage-card-copy > span {
  color: #c8c8cc !important;
}

body.theme-black main .coverage-card .coverage-card-cue {
  color: #ffffff !important;
}

body.theme-black main .coverage-card .coverage-card-cue b {
  color: #ffd204 !important;
}

body.theme-black main .coverage-card .coverage-icon {
  color: #ffd204 !important;
  border: 2px solid #ffd204;
  background: rgba(255, 210, 4, 0.08) !important;
}

body.theme-black main .coverage-card:hover,
body.theme-black main .coverage-card:focus-visible {
  color: #ffffff;
  border-color: #ffd204;
  background: linear-gradient(145deg, #202024, #111113);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.5),
    0 0 0 2px rgba(255, 210, 4, 0.2),
    0 0 24px rgba(255, 210, 4, 0.18);
}

.coverage-popup-modal[hidden] {
  display: none !important;
}

.coverage-popup-modal {
  position: fixed;
  z-index: 10020;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
}

.coverage-popup-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.coverage-popup-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  width: min(1220px, 94vw);
  max-height: 88vh;
  border: 1px solid rgba(255, 204, 0, 0.72);
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 204, 0, 0.12), transparent 26%),
    #0b0c0f;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.62);
  overflow: hidden;
  animation: coveragePopupIn 220ms ease-out both;
}

@keyframes coveragePopupIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.coverage-popup-panel.coverage-popup-switch .coverage-popup-visual,
.coverage-popup-panel.coverage-popup-switch .coverage-popup-content {
  animation: coveragePopupSwitch 220ms ease-out both;
}

@keyframes coveragePopupSwitch {
  from {
    opacity: 0.36;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.coverage-popup-close {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 16px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  color: #fff;
  background: rgba(12, 13, 17, 0.82);
  font: 300 1.8rem/1 Arial, sans-serif;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.coverage-popup-close:hover,
.coverage-popup-close:focus-visible {
  border-color: #ffcc00;
  background: #1b1d22;
  outline: none;
}

.coverage-popup-visual {
  position: relative;
  min-height: 540px;
  background: #050608;
  overflow: hidden;
}

.coverage-popup-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent 68%, rgba(11, 12, 15, 0.78));
}

.coverage-popup-visual img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: block;
  object-fit: cover;
}

.coverage-popup-image-label {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 20px;
  padding: 9px 12px;
  border-left: 3px solid #ffcc00;
  color: #fff;
  background: rgba(0, 0, 0, 0.74);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.coverage-popup-content {
  align-self: center;
  padding: clamp(38px, 5vw, 68px);
}

.coverage-popup-count {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.coverage-popup-content .eyebrow {
  margin-bottom: 10px;
  color: #ffcc00;
}

.coverage-popup-content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.02;
}

.coverage-popup-lead {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.65;
}

.coverage-popup-points {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.coverage-popup-points li {
  position: relative;
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
}

.coverage-popup-points li::before {
  position: absolute;
  top: 0.22em;
  left: 0;
  content: "\2713";
  color: #ffcc00;
  font-weight: 900;
}

.coverage-popup-note {
  margin: 26px 0 0;
  padding: 14px 16px;
  border-left: 3px solid #ffcc00;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.88rem;
  line-height: 1.5;
}

.coverage-popup-next {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 16px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid #ffcc00;
  border-radius: 50%;
  color: #090a0c;
  background: #ffcc00;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.coverage-popup-next span {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.coverage-popup-next:hover,
.coverage-popup-next:focus-visible {
  color: #ffcc00;
  background: #111318;
  outline: none;
  transform: translateY(-50%) scale(1.08);
}

body.coverage-popup-open {
  overflow: hidden;
}

.bev-section {
  color: var(--white);
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 68%, #173f83 100%);
}

.bev-layout,
.system-layout,
.csp-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.bev-copy h2,
.bev-copy p {
  color: var(--white);
}

.bev-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.bev-visual {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: var(--shadow);
}

.bev-visual-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.bev-visual-link:hover,
.bev-visual-link:focus-visible {
  border-color: #ffd204;
  background: #111113;
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.5),
    0 0 0 2px rgba(255, 210, 4, 0.2),
    0 0 26px rgba(255, 210, 4, 0.2);
  transform: translateY(-6px);
  outline: none;
}

.bev-bus-shell {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(244, 247, 251, 0.96), rgba(255, 255, 255, 0.94)),
    var(--soft);
}

.bev-bus-shell::before,
.bev-bus-shell::after {
  position: absolute;
  inset: 54px 28px;
  content: "";
  border: 2px solid rgba(245, 155, 25, 0.58);
  border-radius: 50%;
}

.bev-bus-shell::after {
  inset: 26px;
  border-color: rgba(23, 79, 155, 0.28);
}

.bev-bus-shell img {
  position: relative;
  z-index: 1;
  width: 78%;
  filter: drop-shadow(0 18px 18px rgba(6, 27, 73, 0.16));
}

.zone {
  position: absolute;
  z-index: 2;
  min-height: 30px;
  padding: 6px 10px;
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(8, 28, 72, 0.16);
}

.zone.front {
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.zone.curb {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.zone.rear {
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.zone.street {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.bev-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.9rem;
}

.system-section {
  background: var(--white);
}

.system-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.system-product-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #101010;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.36);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.system-product-card:hover,
.system-product-card:focus-within {
  border-color: var(--orange);
  background: #252529;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(255, 210, 4, 0.34);
  transform: translateY(-4px);
}

.system-product-card img {
  align-self: center;
  justify-self: center;
  width: min(88%, 430px);
  height: 310px;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.45));
}

.system-product-card figcaption {
  display: grid;
  gap: 5px;
  min-height: 82px;
  padding: 0 24px 22px;
}

.system-product-card figcaption span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.system-product-card figcaption strong {
  color: var(--white);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.12;
}

body.theme-black main .capability-grid {
  gap: 16px;
}

body.theme-black main .capability-grid > a {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 24px;
  grid-template-rows: auto auto;
  column-gap: 15px;
  row-gap: 8px;
  align-items: center;
  min-height: 154px;
  padding: 20px;
  border: 2px solid #343438;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #171719, #0d0d0f);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

body.theme-black main .capability-grid > a::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 210, 4, 0.11), transparent 48%);
  opacity: 0;
  transition: opacity 180ms ease;
}

body.theme-black main .capability-grid > a:hover,
body.theme-black main .capability-grid > a:focus-visible {
  border-color: #ffd204;
  background: linear-gradient(145deg, #202024, #111113);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.5),
    0 0 0 2px rgba(255, 210, 4, 0.2),
    0 0 24px rgba(255, 210, 4, 0.18);
  transform: translateY(-6px);
  outline: none;
}

body.theme-black main .capability-grid > a:hover::after,
body.theme-black main .capability-grid > a:focus-visible::after {
  opacity: 1;
}

body.theme-black main .capability-grid .capability-card-icon {
  position: relative;
  z-index: 1;
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffd204 !important;
  border: 1px solid rgba(255, 210, 4, 0.72);
  border-radius: 50%;
  background: rgba(255, 210, 4, 0.08);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

body.theme-black main .capability-grid .capability-card-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

body.theme-black main .capability-grid > a:hover .capability-card-icon,
body.theme-black main .capability-grid > a:focus-visible .capability-card-icon {
  color: #ffd204 !important;
  background: rgba(255, 210, 4, 0.16);
  transform: scale(1.06);
}

body.theme-black main .capability-grid > a > strong {
  position: relative;
  z-index: 1;
  grid-column: 2;
  align-self: end;
  color: #ffffff !important;
  font-size: 1.02rem;
  line-height: 1.18;
}

body.theme-black main .capability-grid .capability-card-description {
  position: relative;
  z-index: 1;
  grid-column: 2;
  align-self: start;
  color: #c8c8cc !important;
  font-size: 0.9rem;
  line-height: 1.42;
}

body.theme-black main .capability-grid .capability-card-arrow {
  position: relative;
  z-index: 1;
  grid-column: 3;
  grid-row: 1 / span 2;
  color: #ffd204 !important;
  font-size: 1.35rem;
  font-weight: 900;
  transition: transform 180ms ease;
}

body.theme-black main .capability-grid > a:hover .capability-card-arrow,
body.theme-black main .capability-grid > a:focus-visible .capability-card-arrow {
  transform: translateX(4px);
}

.school-csp-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.csp-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.csp-scrim {
  position: absolute;
  inset: 0;
  background: transparent;
}

.csp-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.86fr) auto;
}

.csp-layout h2,
.csp-layout p {
  color: var(--white);
}

.csp-layout h2 {
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.98), 0 1px 4px rgba(0, 0, 0, 1);
}

.csp-layout p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.workflow-grid article,
.workflow-card {
  min-height: 258px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8, 28, 72, 0.08);
}

.workflow-grid article > span {
  color: rgba(13, 44, 103, 0.18);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.workflow-card {
  appearance: none;
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.workflow-card:hover,
.workflow-card:focus-visible {
  transform: translateY(-7px);
  border-color: #ffd204;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 0 2px rgba(255, 210, 4, 0.28), 0 0 30px rgba(255, 210, 4, 0.13);
  outline: none;
}

.workflow-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.workflow-card .workflow-card-number {
  color: #ffd204 !important;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.workflow-card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #ffd204 !important;
  border: 2px solid #ffd204;
  border-radius: 14px;
  background: rgba(255, 210, 4, 0.08);
}

.workflow-card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-card-copy {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.workflow-card-copy strong {
  color: #121212;
  font-size: 1.34rem;
  line-height: 1.15;
}

.workflow-card-copy > span {
  color: #5c6370;
  line-height: 1.62;
}

.workflow-card-cue {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #101010;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-card-cue b {
  color: #ffd204;
  font-size: 1.45rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.workflow-card:hover .workflow-card-cue b,
.workflow-card:focus-visible .workflow-card-cue b {
  transform: translateX(5px);
}

body.theme-black main .workflow-card {
  border-color: #303036;
  background: linear-gradient(145deg, #18181b, #101012);
}

body.theme-black main .workflow-card:hover,
body.theme-black main .workflow-card:focus-visible {
  border-color: #ffd204;
  background: linear-gradient(145deg, #202024, #121214);
}

body.theme-black main .workflow-card-copy strong,
body.theme-black main .workflow-card-cue {
  color: #ffffff !important;
}

body.theme-black main .workflow-card-copy > span {
  color: #c8c8cc !important;
}

body.theme-black main .workflow-card-cue b {
  color: #ffd204 !important;
}

.school-cta {
  background: var(--white);
}

@media (max-width: 1080px) {
  .school-hero-inner,
  .bev-layout,
  .system-layout,
  .csp-layout {
    grid-template-columns: 1fr;
  }

  .school-hero-copy h1 {
    font-size: 2.8rem;
  }

  .school-proof-grid,
  .coverage-grid,
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .school-proof-grid div:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .school-hero-inner {
    min-height: auto;
    padding: 56px 0 66px;
  }

  .school-hero-copy h1 {
    font-size: 2.1rem;
  }

  .school-hero-visual {
    min-height: 360px;
    padding: 18px;
  }

  .school-playback-button {
    right: 14px;
    top: 14px;
    width: 69px;
    height: 69px;
  }

  .school-playback-button .transit-playback-button__icon {
    width: 56px;
    height: 56px;
  }

  .school-hero-points {
    top: 18px;
    left: 18px;
    gap: 9px;
  }

  .coverage-pill {
    position: static;
    width: 100%;
    margin-top: 8px;
  }

  .school-proof-grid,
  .coverage-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .school-proof-grid div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .school-proof-grid div:first-child {
    border-top: 0;
  }

  .bev-bus-shell {
    min-height: 320px;
  }

  .bev-bus-shell img {
    width: 92%;
  }

  .system-media {
    grid-template-columns: 1fr;
  }

  .system-product-card {
    min-height: 360px;
  }

  .system-product-card img {
    height: 250px;
  }
}

.school-config-trigger {
  font: inherit;
  cursor: pointer;
}

.sync-video-config-action {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  padding-top: 2px;
}

.recommended-config-modal .recommended-config-modal__dialog,
.recommended-config-modal .recommended-config-modal__dialog:not(.is-single-view) {
  width: min(1320px, 96vw);
  height: auto;
  max-height: 94vh;
  max-height: 94dvh;
  overflow-y: auto;
}

.recommended-config-modal__header {
  position: sticky;
  z-index: 5;
  top: 0;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(12px);
}

.recommended-config-modal__header .eyebrow {
  margin: 0 0 6px;
  color: var(--orange);
}

.recommended-config-modal__body {
  display: grid;
  gap: 22px;
  padding: 4px 24px 28px;
}

.bus-capacity-tabs {
  display: inline-flex;
  justify-self: start;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #111114;
}

.bus-capacity-tab {
  min-height: 44px;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
}

.bus-capacity-tab:hover,
.bus-capacity-tab:focus-visible {
  color: var(--white);
  border-color: rgba(255, 210, 4, 0.5);
}

.bus-capacity-tab.is-active {
  color: var(--navy);
  border-color: var(--orange);
  background: var(--orange);
}

.bus-config-panel {
  display: grid;
  gap: 18px;
}

.bus-config-panel[hidden] {
  display: none;
}

.bus-config-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.bus-config-intro .eyebrow {
  margin: 0 0 5px;
  color: var(--orange);
}

.bus-config-intro h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.bus-config-intro p:not(.eyebrow) {
  max-width: 820px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.bus-config-counts {
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  gap: 8px;
  margin: 0;
}

.bus-config-counts div {
  min-width: 96px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: #111114;
}

.bus-config-counts dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bus-config-counts dd {
  margin: 2px 0 0;
  color: var(--orange);
  font-size: 1.35rem;
  font-weight: 900;
}

.bus-config-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bus-config-toolbar label {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
}

.bus-config-toolbar select {
  min-height: 44px;
  min-width: min(100%, 420px);
  padding: 9px 38px 9px 12px;
  color: var(--white);
  font: inherit;
  border: 1px solid rgba(255, 210, 4, 0.5);
  border-radius: 6px;
  background: #111114;
}

.bus-config-option-section {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.bus-config-option-section legend {
  margin-bottom: 8px;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
}

.bus-config-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.bus-config-option.is-active {
  border-color: rgba(255, 210, 4, 0.72);
  background: rgba(255, 210, 4, 0.08);
}

.bus-config-option input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--orange);
}

.bus-config-option-copy {
  display: grid;
  gap: 2px;
}

.bus-config-option-copy strong {
  color: var(--white);
}

.bus-config-option-copy small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.bus-config-option-state {
  min-width: 56px;
  padding: 5px 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
}

.bus-config-option.is-active .bus-config-option-state {
  color: #090909;
  border-color: var(--orange);
  background: var(--orange);
}

.bus-config-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1240 / 333;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background:
    radial-gradient(circle at center, rgba(27, 116, 255, 0.12), transparent 58%),
    linear-gradient(145deg, #151517, #08080a);
}

.bus-config-stage.is-stop-arm-expanded {
  aspect-ratio: 1240 / 555;
}

.bus-config-stage svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.config-coverage {
  fill: rgba(33, 126, 255, 0.3);
  stroke: #2f8cff;
  stroke-width: 3;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  opacity: 0;
  transition: opacity 180ms ease;
}

.config-coverage--interior {
  fill: rgba(33, 126, 255, 0.24);
  stroke: #46a0ff;
  stroke-width: 4;
}

.config-coverage--stop-arm {
  fill: rgba(255, 45, 45, 0.2);
  stroke: #ff4141;
  stroke-width: 5;
}

.config-coverage--stop-arm.is-visible {
  opacity: 0.8;
}

.config-coverage--tag-camera {
  fill: rgba(255, 210, 4, 0.18);
  stroke: var(--orange);
  stroke-width: 5;
  stroke-opacity: 1;
  stroke-dasharray: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  paint-order: fill stroke markers;
}

.config-coverage.config-coverage--tag-camera.is-visible {
  opacity: 1;
}

.config-coverage.config-coverage--tag-camera.is-selected {
  opacity: 1;
  stroke-width: 6;
}

.config-coverage.is-visible {
  opacity: 0.45;
}

.config-coverage.is-selected {
  opacity: 0.72;
  stroke-width: 5;
}

.config-coverage--interior.is-selected {
  opacity: 0.82;
  stroke-width: 6;
}

.config-coverage-true {
  fill: rgba(255, 45, 45, 0.12);
  stroke: #ff4141;
  stroke-width: 4;
  stroke-dasharray: 11 7;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.config-coverage-true.is-visible {
  opacity: 0.82;
}

.config-camera-markers g {
  color: #2f8cff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.config-camera-markers g.is-visible {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}

.config-camera-markers .stop-arm-ai-marker {
  color: var(--orange);
}

.config-camera-markers .stop-arm-ai-marker circle {
  fill: #111114;
}

.config-camera-markers .tag-camera-marker {
  color: var(--orange);
}

.config-camera-markers .tag-camera-marker text {
  font-size: 8px;
}

.config-camera-markers circle {
  fill: #050505;
  stroke: currentColor;
  stroke-width: 4;
}

.config-camera-markers text {
  fill: var(--white);
  font-size: 11px;
  font-weight: 900;
  text-anchor: middle;
  dominant-baseline: central;
}

.config-camera-markers g.is-selected circle {
  fill: #173f75;
  stroke-width: 5;
}

.config-camera-markers g.is-visible:hover circle,
.config-camera-markers g.is-visible:focus circle {
  fill: #1f5f9f;
  stroke: #75bcff;
  stroke-width: 5;
}

.config-camera-markers g.is-draggable {
  cursor: ew-resize;
  touch-action: none;
}

.config-camera-markers g.is-draggable.is-dragging circle {
  fill: #1f5f9f;
  stroke: var(--orange);
  stroke-width: 5;
}

.camera-hover-preview {
  position: fixed;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 1200;
  width: min(560px, calc(100vw - 32px));
  max-height: 42vh;
  overflow: hidden;
  border: 2px solid #2f8cff;
  border-radius: 12px;
  background: #08090c;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.78), 0 0 0 1px rgba(255, 210, 4, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.96);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.camera-hover-preview--top {
  top: 16px;
  transform-origin: top center;
}

.camera-hover-preview--bottom {
  bottom: 16px;
  transform-origin: bottom center;
}

.camera-hover-preview--left {
  left: 16px;
}

.camera-hover-preview--right {
  right: 16px;
}

.camera-hover-preview.is-visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.camera-hover-preview img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(42vh - 52px);
  object-fit: contain;
  background: #000;
}

.camera-hover-preview p {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px 18px;
  margin: 0;
  padding: 10px 14px 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.camera-hover-preview strong {
  color: var(--white);
}

.bus-config-detail {
  min-height: 48px;
  margin: 0;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.74);
  border-left: 4px solid #2f8cff;
  background: rgba(255, 255, 255, 0.06);
}

.bus-config-detail strong {
  color: var(--white);
}

.recommended-config-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.recommended-config-actions .button.secondary {
  font: inherit;
  cursor: pointer;
}

@media (max-width: 900px) {
  .bus-config-intro {
    grid-template-columns: 1fr;
  }

  .bus-config-counts {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .recommended-config-modal {
    padding: 2vh 2vw;
  }

  .recommended-config-modal__header {
    padding: 18px;
  }

  .recommended-config-modal__body {
    gap: 18px;
    padding: 2px 18px 22px;
  }

  .bus-capacity-tabs {
    width: 100%;
  }

  .bus-capacity-tab {
    flex: 1 1 0;
    padding-inline: 10px;
  }

  .bus-config-counts {
    grid-template-columns: 1fr;
  }

  .bus-config-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .bus-config-toolbar select {
    width: 100%;
    min-width: 0;
  }

  .bus-config-stage {
    aspect-ratio: 3 / 1;
  }

  .recommended-config-actions .button {
    width: 100%;
  }

  .sync-video-config-action .button {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .coverage-popup-modal {
    padding: 16px;
  }

  .coverage-popup-panel {
    grid-template-columns: 1fr;
    width: min(720px, 96vw);
    max-height: 94vh;
    overflow-y: auto;
  }

  .coverage-popup-visual,
  .coverage-popup-visual img {
    min-height: 310px;
  }

  .coverage-popup-visual {
    height: 42vh;
  }

  .coverage-popup-visual::after {
    background: linear-gradient(0deg, rgba(11, 12, 15, 0.84), transparent 42%);
  }

  .coverage-popup-content {
    padding: 30px 52px 34px 28px;
  }

  .coverage-popup-next {
    position: fixed;
    right: 30px;
  }
}

@media (max-width: 560px) {
  .coverage-card {
    min-height: 250px;
  }

  .coverage-popup-modal {
    padding: 8px;
  }

  .coverage-popup-panel {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 12px;
  }

  .coverage-popup-visual {
    height: 34vh;
    min-height: 230px;
  }

  .coverage-popup-visual img {
    min-height: 230px;
  }

  .coverage-popup-content {
    padding: 24px 54px 28px 20px;
  }

  .coverage-popup-count {
    margin-bottom: 15px;
  }

  .coverage-popup-content h2 {
    font-size: 1.72rem;
  }

  .coverage-popup-lead {
    font-size: 0.95rem;
  }

  .coverage-popup-next {
    right: 18px;
    width: 46px;
    height: 46px;
  }

  .coverage-popup-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .config-coverage,
  .config-camera-markers g,
  .coverage-card,
  .coverage-card::after,
  .coverage-card-cue b,
  .coverage-popup-panel,
  .coverage-popup-visual,
  .coverage-popup-content,
  .coverage-popup-next {
    transition: none;
    animation: none;
  }
}
