:root {
  --canary: #ffd200;
  --canary-deep: #c89b00;
  --hot-pink: #ff3ea5;
  --hot-pink-deep: #c90f78;
  --ink: #080c0b;
  --charcoal: #101514;
  --panel: #18211f;
  --panel-2: #202b28;
  --paper: #f4eddd;
  --paper-2: #e7dfcf;
  --mist: #f8f4ea;
  --muted: #aeb9b2;
  --muted-dark: #59645f;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(8, 12, 11, 0.14);
  --field: #7c8b68;
  --signal: #67c8e9;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  padding-top: 78px;
  color: var(--mist);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #0b0f0e, #151c1a 34%, #101514);
  background-size: 56px 56px, 56px 56px, auto;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

::selection {
  color: var(--ink);
  background: var(--canary);
  text-shadow: none;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 34px;
  background: rgba(8, 12, 11, 0.78);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.16);
  transform: translateY(0);
  transition: transform 200ms ease;
}

body.header-hidden .site-header {
  pointer-events: none;
  transform: translateY(-100%);
}

.brand {
  width: clamp(148px, 13vw, 188px);
  height: 45px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.primary-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 760;
  font-size: 0.94rem;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--canary);
  outline: none;
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-header-call {
  display: none;
}

.mobile-header-tools {
  display: none;
}

.mobile-tool-nav {
  display: none;
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.speed-test-nav,
.tower-map-nav {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  font-size: 0.9rem;
  font-weight: 920;
  border-radius: 999px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.speed-test-nav {
  color: var(--hot-pink);
  border: 1px solid rgba(255, 62, 165, 0.52);
  background:
    linear-gradient(135deg, rgba(255, 62, 165, 0.18), transparent 58%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 26px rgba(255, 62, 165, 0.16);
}

.tower-map-nav {
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(103, 200, 233, 0.46);
  background:
    linear-gradient(135deg, rgba(103, 200, 233, 0.2), transparent 58%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 22px rgba(103, 200, 233, 0.12);
}

.speed-test-nav:hover,
.speed-test-nav:focus-visible {
  color: var(--hot-pink);
  border-color: rgba(255, 62, 165, 0.86);
  background:
    linear-gradient(135deg, rgba(255, 62, 165, 0.44), rgba(103, 200, 233, 0.14)),
    rgba(255, 255, 255, 0.08);
  outline: none;
  transform: translateY(-1px);
}

.tower-map-nav:hover,
.tower-map-nav:focus-visible {
  color: var(--ink);
  border-color: rgba(255, 210, 0, 0.86);
  background:
    linear-gradient(135deg, rgba(255, 210, 0, 0.92), rgba(103, 200, 233, 0.68));
  outline: none;
  transform: translateY(-1px);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  outline: none;
}

.call-button {
  color: var(--ink);
  border-color: var(--canary);
  background: var(--canary);
  box-shadow: 0 10px 28px rgba(255, 210, 0, 0.22);
}

.button-secondary {
  color: #fff;
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.08);
}

.speed-flair-button {
  color: #fff;
  border-color: rgba(255, 62, 165, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 62, 165, 0.2), rgba(103, 200, 233, 0.08)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 24px rgba(255, 62, 165, 0.13);
}

.speed-flair-button:hover,
.speed-flair-button:focus-visible {
  border-color: rgba(255, 62, 165, 0.9);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.24),
    0 0 28px rgba(255, 62, 165, 0.22);
}

.hero,
.rental-strip,
.onsite-section,
.credits-section,
.people-section,
.difference-section,
.quote-section {
  padding-inline: clamp(22px, 7vw, 104px);
  scroll-margin-top: 94px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(600px, 1.28fr);
  gap: clamp(24px, 3.5vw, 52px);
  align-items: center;
  min-height: calc(92svh - 78px);
  padding-top: 76px;
  padding-bottom: 78px;
  background:
    linear-gradient(120deg, rgba(255, 210, 0, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 64%);
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--canary);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.15vw, 4.25rem);
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  color: #fff;
}

h2 {
  margin-bottom: 16px;
}

h3 {
  line-height: 1.08;
}

.hero-copy > p:not(.eyebrow),
.deployment-copy p,
.credits-section .section-heading p {
  color: var(--muted);
  font-size: 1.1rem;
}

.deployment-copy .plain-bridge {
  margin: -2px 0 22px;
  padding: 12px 14px;
  border-left: 3px solid var(--canary);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
}

.section-heading p,
.people-copy p,
.quote-copy p {
  color: var(--muted-dark);
  font-size: 1.08rem;
}

.hero-actions {
  flex-wrap: wrap;
  margin: 30px 0 0;
}

.hero-eyebrow-bottom {
  margin: 28px 0 0;
}

.section-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.section-proof span,
.card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  font-weight: 800;
}

.section-proof span {
  color: rgba(8, 12, 11, 0.74);
  border-color: var(--line-light);
  background: rgba(8, 12, 11, 0.05);
}

.section-proof .proof-highlight {
  color: var(--ink);
  border-color: rgba(200, 155, 0, 0.36);
  background:
    linear-gradient(180deg, #ffe36b, var(--canary));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 10px 26px rgba(255, 210, 0, 0.2);
  font-weight: 920;
}

.section-proof .proof-highlight::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: rgba(8, 12, 11, 0.68);
}

.network-console {
  position: relative;
  min-height: 0;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background:
    radial-gradient(circle at 26% 22%, rgba(255, 210, 0, 0.13), transparent 25%),
    radial-gradient(circle at 78% 18%, rgba(103, 200, 233, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    #111816;
  box-shadow: var(--shadow);
}

.network-console::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
}

.console-header,
.topology-layout,
.topology-stage,
.network-tabs {
  position: relative;
  z-index: 1;
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-header strong {
  color: var(--canary);
}

.topology-layout {
  display: grid;
  grid-template-columns: minmax(218px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.topology-stage {
  order: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(8, 12, 11, 0.34);
}

.topology-map {
  width: 100%;
  height: auto;
  display: block;
}

.topology-grid-line,
.coverage-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.coverage-ring {
  stroke: rgba(103, 200, 233, 0.14);
}

.topology-route {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 9 13;
  opacity: 0.08;
  animation: topology-flow 5.8s linear infinite;
  transition: opacity 180ms ease, stroke-width 180ms ease, filter 180ms ease;
}

.route-cell-hubs,
.route-hubs-trailer,
.route-hubs-crew,
.route-hubs-video,
.route-bond-core,
.route-core-mesh,
.route-mesh-trailer,
.route-mesh-stage,
.route-mesh-crew,
.route-mesh-video {
  stroke: url(#route-canary);
}

.route-fiber-core,
.route-cell-bond,
.route-sat-bond {
  stroke: url(#route-signal);
}

.route-bond-core,
.route-core-mesh,
.route-fiber-core {
  stroke-dasharray: none;
  animation: none;
}

.network-console[data-mode="rentals"] .route-cell-hubs,
.network-console[data-mode="rentals"] .route-hubs-trailer,
.network-console[data-mode="rentals"] .route-hubs-crew,
.network-console[data-mode="rentals"] .route-hubs-video,
.network-console[data-mode="onsite"] .route-cell-bond,
.network-console[data-mode="onsite"] .route-sat-bond,
.network-console[data-mode="onsite"] .route-fiber-core,
.network-console[data-mode="onsite"] .route-bond-core,
.network-console[data-mode="onsite"] .route-core-mesh,
.network-console[data-mode="onsite"] .route-mesh-trailer,
.network-console[data-mode="onsite"] .route-mesh-stage,
.network-console[data-mode="onsite"] .route-mesh-crew,
.network-console[data-mode="onsite"] .route-mesh-video,
.network-console[data-mode="remote"] .route-sat-bond,
.network-console[data-mode="remote"] .route-bond-core,
.network-console[data-mode="remote"] .route-core-mesh,
.network-console[data-mode="remote"] .route-mesh-trailer,
.network-console[data-mode="remote"] .route-mesh-crew,
.network-console[data-mode="remote"] .route-mesh-video {
  opacity: 0.95;
  stroke-width: 3.2;
  filter: drop-shadow(0 0 8px rgba(255, 210, 0, 0.24));
}

.network-console[data-mode="onsite"] .route-bond-core,
.network-console[data-mode="onsite"] .route-core-mesh {
  opacity: 1;
  stroke-width: 4;
  filter: drop-shadow(0 0 10px rgba(255, 210, 0, 0.42));
}

.topology-node {
  color: rgba(255, 255, 255, 0.76);
  transition: opacity 180ms ease, transform 180ms ease;
}

.topology-node rect {
  fill: rgba(14, 21, 19, 0.88);
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
}

.topology-node path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topology-node .node-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topology-node text {
  fill: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 850;
  text-anchor: middle;
}

.node-cell,
.node-fiber,
.node-sat {
  color: var(--signal);
}

.node-hubs,
.node-bonding,
.node-core,
.node-mesh {
  color: var(--canary);
}

.node-trailer,
.node-device,
.node-stage,
.node-video {
  color: rgba(255, 255, 255, 0.78);
}

.node-hubs,
.node-fiber,
.node-bonding {
  opacity: 0.46;
}

.network-console[data-mode="rentals"] .node-hubs,
.network-console[data-mode="onsite"] .node-fiber,
.network-console[data-mode="onsite"] .node-bonding,
.network-console[data-mode="remote"] .node-bonding {
  opacity: 1;
}

.network-console[data-mode="rentals"] .node-cell rect,
.network-console[data-mode="rentals"] .node-hubs rect,
.network-console[data-mode="rentals"] .node-trailer rect,
.network-console[data-mode="rentals"] .node-device rect,
.network-console[data-mode="rentals"] .node-video rect,
.network-console[data-mode="onsite"] .node-cell rect,
.network-console[data-mode="onsite"] .node-fiber rect,
.network-console[data-mode="onsite"] .node-sat rect,
.network-console[data-mode="onsite"] .node-bonding rect,
.network-console[data-mode="onsite"] .node-core rect,
.network-console[data-mode="onsite"] .node-mesh rect,
.network-console[data-mode="onsite"] .node-trailer rect,
.network-console[data-mode="onsite"] .node-stage rect,
.network-console[data-mode="onsite"] .node-device rect,
.network-console[data-mode="onsite"] .node-video rect,
.network-console[data-mode="remote"] .node-sat rect,
.network-console[data-mode="remote"] .node-bonding rect,
.network-console[data-mode="remote"] .node-core rect,
.network-console[data-mode="remote"] .node-mesh rect,
.network-console[data-mode="remote"] .node-trailer rect,
.network-console[data-mode="remote"] .node-device rect,
.network-console[data-mode="remote"] .node-video rect {
  stroke: rgba(255, 210, 0, 0.48);
  fill: rgba(22, 29, 27, 0.96);
}

.network-side {
  order: 1;
  display: grid;
  gap: 12px;
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  align-content: start;
}

.network-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.mobile-network-flow {
  display: none;
}

.network-mobile-desc {
  display: none;
}

.network-tabs button {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  cursor: pointer;
}

.network-tabs button {
  display: grid;
  min-height: 48px;
  padding: 12px 12px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 850;
  overflow: hidden;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, min-height 180ms ease;
}

.network-tab-label {
  display: block;
  line-height: 1.12;
}

.network-tab-desc {
  display: block;
  max-height: 0;
  margin-top: 0;
  color: rgba(255, 255, 255, 0);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.35;
  opacity: 0;
  transition: max-height 220ms ease, margin-top 220ms ease, opacity 180ms ease, color 180ms ease;
}

.network-tabs button:hover,
.network-tabs button:focus-visible {
  color: #fff;
  border-color: rgba(255, 210, 0, 0.42);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.network-tabs button.is-active {
  color: var(--ink);
  background: var(--canary);
  border-color: var(--canary);
  outline: none;
}

.network-tabs button.is-active .network-tab-desc {
  max-height: 120px;
  margin-top: 8px;
  color: rgba(8, 12, 11, 0.78);
  opacity: 1;
}

.rental-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(380px, 1fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  margin-bottom: 26px;
}

.rental-showcase .section-heading {
  margin-bottom: 0;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(8, 12, 11, 0.76));
}

.hero-media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.rental-media::before {
  display: none;
}

.rental-media img {
  height: clamp(440px, 51vh, 580px);
  min-height: 0;
  object-position: center;
}

.rental-wifi-pulse {
  position: absolute;
  left: 38.2%;
  top: 52.3%;
  width: clamp(64px, 7vw, 94px);
  height: clamp(64px, 7vw, 94px);
  z-index: 3;
  overflow: visible;
  pointer-events: none;
  transform: translate(-4px, -100%) rotate(-4deg);
  transform-origin: 0 96px;
}

.rental-wifi-arc {
  fill: none;
  stroke: rgba(255, 210, 0, 0.92);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(255, 210, 0, 0.34));
  opacity: 0;
  animation: htc-wifi-pulse 3.25s ease-out infinite;
}

.rental-wifi-arc-1 {
  animation-delay: 0s;
}

.rental-wifi-arc-2 {
  animation-delay: 0.34s;
}

.rental-wifi-arc-3 {
  animation-delay: 0.68s;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 740px;
}

.section-heading .eyebrow {
  color: var(--canary);
  font-size: 0.82rem;
}

.rental-showcase .section-heading .eyebrow {
  color: rgba(52, 73, 76, 0.92);
  letter-spacing: 0.04em;
}

.rental-showcase .section-heading .eyebrow::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--signal);
}

.rental-strip {
  padding-top: clamp(68px, 7.7vh, 92px);
  padding-bottom: clamp(62px, 7vh, 86px);
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--paper), var(--mist));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.rental-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 1.35fr);
  gap: 16px;
  align-items: stretch;
}

.rental-card,
.device-card,
.contact-card {
  border: 1px solid var(--line-light);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(20, 25, 24, 0.12);
}

.rental-card {
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 20px;
  background:
    linear-gradient(145deg, var(--charcoal), #25322f);
  color: #fff;
}

.rental-card p {
  color: rgba(255, 255, 255, 0.76);
}

.card-tag {
  width: fit-content;
  margin-bottom: 10px;
  color: var(--ink);
  border-color: rgba(255, 210, 0, 0.2);
  background: var(--canary);
}

.inline-link {
  width: fit-content;
  color: var(--canary-deep);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.inline-link-dark {
  color: var(--canary);
}

.rental-card h3,
.device-card h3,
.people-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 760;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--canary);
}

.device-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 0;
  padding: 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(103, 200, 233, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.82);
}

.device-card p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted-dark);
}

.device-card-wide {
  grid-template-columns: minmax(220px, 0.78fr) minmax(320px, 1fr);
  grid-template-rows: auto 1fr;
  align-items: center;
  column-gap: 28px;
  padding: 24px;
}

.device-card-wide h3,
.device-card-wide p {
  grid-column: 1;
}

.device-card-wide h3 {
  align-self: end;
  max-width: 470px;
}

.device-card-wide p {
  align-self: start;
}

.device-points {
  counter-reset: device-point;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 0;
}

.device-card-wide .device-points {
  grid-column: 2;
  grid-row: 1 / span 2;
  grid-template-columns: 1fr;
  align-self: stretch;
}

.device-points span {
  counter-increment: device-point;
  position: relative;
  min-height: 60px;
  display: grid;
  align-content: end;
  padding: 30px 13px 12px;
  border: 1px solid rgba(8, 12, 11, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 210, 0, 0.14) 0 3px, transparent 3px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 234, 0.72));
  color: rgba(8, 12, 11, 0.78);
  font-weight: 820;
  line-height: 1.15;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 22px rgba(8, 12, 11, 0.06);
}

.device-card-wide .device-points span {
  min-height: 0;
  align-content: center;
  padding-block: 28px 14px;
}

.device-points span::before {
  content: counter(device-point, decimal-leading-zero);
  position: absolute;
  top: 10px;
  left: 13px;
  display: inline-grid;
  place-items: center;
  color: var(--canary-deep);
  font-size: 0.72rem;
  font-weight: 920;
  letter-spacing: 0.08em;
}

.device-points span::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 42px;
  right: 14px;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 155, 0, 0.44), transparent);
}

.credits-section,
.quote-section {
  padding-top: 88px;
  padding-bottom: 94px;
}

.people-section {
  color: var(--ink);
  background: var(--mist);
}

.onsite-section {
  padding-top: 86px;
  padding-bottom: 90px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 210, 0, 0.08), transparent 40%),
    var(--charcoal);
}

.deployment-section {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.74fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.deployment-carousel {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 0;
  overflow: visible;
  border-radius: 10px;
  border: 1px solid var(--line-dark);
  padding: 10px;
  background: rgba(232, 230, 228, 0.08);
  box-shadow: var(--shadow);
}

.deployment-carousel-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1672 / 941;
  background: #101514;
  touch-action: pan-y;
}

.deployment-carousel-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.01);
  transition:
    opacity 1200ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 2200ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.deployment-carousel-frame img[data-build-slide="set"] {
  left: -6%;
  right: auto;
  width: 108%;
  max-width: none;
  object-position: center top;
}

.deployment-carousel-frame img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.deployment-copy .eyebrow,
.credits-section .eyebrow {
  color: var(--canary);
}

.deployment-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.deployment-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  min-height: 20px;
  margin: -2px 0 0;
}

.deployment-carousel-controls button {
  width: auto;
  height: auto;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  background: transparent;
  cursor: pointer;
  box-shadow: none;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1;
  transition: color 160ms ease;
}

.deployment-carousel-controls button:hover,
.deployment-carousel-controls button:focus-visible {
  color: var(--canary);
  background: transparent;
  outline: none;
}

.bonding-console {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(103, 200, 233, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.06);
}

.bonding-header {
  display: grid;
  gap: 4px;
}

.bonding-header span {
  color: var(--canary);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bonding-header strong {
  color: #fff;
  line-height: 1.15;
}

.bonding-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.bond-link {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 120px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(8, 12, 11, 0.32);
}

.bond-link strong {
  color: #fff;
  font-size: 0.92rem;
}

.bond-link small {
  color: var(--muted);
  font-weight: 780;
  font-size: 0.74rem;
}

.source-meter-grid {
  display: grid;
  gap: 5px;
}

.source-meter-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.source-meter-row > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.link-meter {
  position: relative;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.link-meter span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--canary), var(--signal));
  transform: scaleX(var(--meter-b));
  transform-origin: left center;
  animation: meter-active 3.8s ease-in-out infinite;
}

.source-meter-grid .link-meter span {
  animation: none;
  transition: transform 680ms ease;
}

.source-meter-grid .link-meter-down span {
  transform: scaleX(var(--source-down-scale, 0.68));
}

.source-meter-grid .link-meter-up span {
  transform: scaleX(var(--source-up-scale, 0.72));
}

.link-meter span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-110%);
  animation: meter-scan 1.55s linear infinite;
}

.bond-link:nth-child(2) .link-meter span {
  animation-delay: 0.3s;
}

.bond-link:nth-child(2) .link-meter span::after {
  animation-delay: 0.24s;
}

.bond-link:nth-child(3) .link-meter span {
  animation-delay: 0.62s;
}

.bond-link:nth-child(3) .link-meter span::after {
  animation-delay: 0.48s;
}

.bonded-output {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 210, 0, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 210, 0, 0.14), rgba(103, 200, 233, 0.1)),
    rgba(8, 12, 11, 0.42);
}

.bonded-output-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
}

.bonded-output-head span {
  color: var(--canary);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bonded-output-head strong {
  color: #fff;
  font-size: 1rem;
}

.bonded-output-grid {
  display: grid;
  gap: 8px;
}

.bonded-output-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.bonded-output-row > span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bonded-meter {
  position: relative;
  height: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.bonded-meter span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  overflow: hidden;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 210, 0, 0.98), rgba(103, 200, 233, 0.98)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.2) 18px 20px);
  transform-origin: left center;
  transition: transform 680ms ease;
}

.bonded-meter-down span {
  transform: scaleX(var(--bonded-down-scale, 0.79));
}

.bonded-meter-up span {
  transform: scaleX(var(--bonded-up-scale, 0.68));
}

.bonded-meter span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: translateX(-120%);
  animation: meter-scan 1.4s linear infinite;
}

.bonded-meter-up span {
  animation-delay: 0.38s;
}

.bonded-output p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.35;
}

.mesh-explainer {
  display: grid;
  grid-template-columns: minmax(250px, 0.46fr) minmax(620px, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 210, 0, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(103, 200, 233, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.065);
}

.mesh-copy h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
}

.mesh-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.mesh-diagram {
  position: relative;
  min-height: 390px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.mesh-plan-map {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  min-height: 360px;
  display: block;
}

.mesh-plan-map-mobile {
  display: none;
}

.plan-road {
  fill: url(#mesh-road-fill);
  stroke: rgba(255, 255, 255, 0.08);
}

.plan-road-label {
  fill: rgba(255, 255, 255, 0.28);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.plan-zone {
  fill: none;
  stroke: none;
}

.plan-zone rect,
.plan-zone .trailer-body {
  fill: url(#mesh-zone-fill);
  stroke: rgba(255, 255, 255, 0.15);
}

.plan-zone .trailer-hitch {
  fill: rgba(246, 250, 249, 0.055);
  stroke: rgba(246, 250, 249, 0.28);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.plan-zone .trailer-window,
.plan-zone .trailer-door {
  fill: rgba(8, 12, 11, 0.24);
  stroke: rgba(255, 255, 255, 0.13);
  stroke-width: 1;
}

.plan-zone .trailer-wheel {
  fill: rgba(8, 12, 11, 0.9);
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 1.4;
}

.plan-zone text {
  fill: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 900;
  text-anchor: middle;
  text-transform: uppercase;
}

.plan-vip-label {
  fill: rgba(255, 255, 255, 0.88) !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em;
  text-anchor: middle !important;
  text-transform: uppercase;
}

.plan-cable {
  fill: none;
  stroke: rgba(255, 210, 0, 0.5);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plan-cable-trunk {
  stroke-width: 2.8;
}

.legend-cable {
  fill: none;
  stroke: rgba(255, 210, 0, 0.72);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legend-roam {
  fill: rgba(103, 200, 233, 0.2);
  stroke: rgba(103, 200, 233, 0.42);
}

.plan-core rect {
  fill: rgba(14, 21, 19, 0.94);
  stroke: rgba(255, 210, 0, 0.62);
}

.plan-core text {
  fill: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 880;
  text-anchor: middle;
}

.plan-core-small {
  fill: rgba(255, 210, 0, 0.82) !important;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.plan-ap {
  color: var(--canary);
  filter: drop-shadow(0 0 7px rgba(255, 210, 0, 0.24));
}

.plan-ap use {
  overflow: visible;
}

.roam-walk-path {
  fill: none;
  stroke: none;
}

.handoff-pulse {
  fill: rgba(103, 200, 233, 0.055);
  stroke: rgba(103, 200, 233, 0.58);
  stroke-width: 1.2;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation-duration: 14s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.handoff-1 {
  animation-name: handoff-stage-1;
}

.handoff-2 {
  animation-name: handoff-stage-2;
}

.handoff-3 {
  animation-name: handoff-stage-3;
}

.handoff-4 {
  animation-name: handoff-stage-4;
}

.roam-user {
  color: #fff;
  filter: drop-shadow(0 0 6px rgba(103, 200, 233, 0.22)) drop-shadow(0 2px 2px rgba(5, 8, 7, 0.5));
  animation: roam-user-visibility 14s linear infinite;
}

.mobile-roam-user {
  opacity: 1;
  transform-box: view-box;
  transform-origin: 0 0;
  animation: mobile-roam-walk 10s linear infinite;
}

.roam-bird-character {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: bird-waddle 0.72s ease-in-out infinite alternate;
}

.roam-bird {
  transform: rotate(-5deg);
  transform-box: fill-box;
  transform-origin: center;
}

.roam-user-signal,
.roam-bird-arm,
.roam-bird-leg,
.roam-bird-foot {
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.roam-bird-arm {
  stroke: rgba(255, 210, 0, 0.95);
  stroke-width: 2.1;
}

.roam-bird-leg,
.roam-bird-foot {
  stroke: rgba(255, 210, 0, 0.96);
  stroke-width: 2;
  filter: drop-shadow(0 1px 0 rgba(5, 8, 7, 0.72));
}

.roam-bird-leg {
  stroke-width: 2.25;
}

.roam-bird-foot-left {
  transform-box: fill-box;
  transform-origin: right center;
  animation: bird-foot-left 0.72s ease-in-out infinite;
}

.roam-bird-foot-right {
  transform-box: fill-box;
  transform-origin: left center;
  animation: bird-foot-right 0.72s ease-in-out infinite;
}

.roam-bird-leg-left {
  animation: bird-leg-left 0.72s ease-in-out infinite;
}

.roam-bird-leg-right {
  animation: bird-leg-right 0.72s ease-in-out infinite;
}

.roam-bird-hand {
  fill: rgba(255, 210, 0, 0.96);
  stroke: rgba(8, 12, 11, 0.44);
  stroke-width: 0.7;
}

.roam-user-phone {
  fill: var(--canary);
  stroke: rgba(8, 12, 11, 0.46);
  stroke-width: 0.9;
  filter: drop-shadow(0 0 4px rgba(255, 210, 0, 0.32));
}

.roam-user-phone-detail {
  fill: none;
  stroke: rgba(8, 12, 11, 0.62);
  stroke-width: 0.85;
  stroke-linecap: round;
}

.roam-user-signal {
  stroke: var(--signal);
  stroke-width: 1.35;
}

.roam-user-signal path {
  animation: roam-phone-pulse 1.4s ease-in-out infinite;
}

.roam-user-signal path:nth-child(2) {
  animation-delay: 0.2s;
}

.roam-user-signal path:nth-child(3) {
  animation-delay: 0.4s;
}

.plan-legend text {
  fill: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.credits-section {
  padding-top: 79px;
  padding-bottom: 85px;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 210, 0, 0.12), transparent 24%),
    linear-gradient(180deg, var(--mist), var(--paper));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}

.poster-card {
  position: relative;
  aspect-ratio: 2 / 2.6;
  overflow: hidden;
  border: 1px solid rgba(8, 12, 11, 0.16);
  border-radius: 10px;
  background: rgba(8, 12, 11, 0.1);
  box-shadow: 0 14px 32px rgba(20, 25, 24, 0.12);
}

.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-carrie img {
  transform: scale(1.085);
}

.poster-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
}

.poster-image::after {
  display: none;
}

.poster-card span {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.more-card {
  background: var(--canary);
}

.more-card::after {
  display: none;
}

.more-card span {
  color: var(--ink);
}

.people-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1fr);
  gap: clamp(30px, 4.6vw, 58px);
  align-items: center;
  padding-top: 82px;
  padding-bottom: 86px;
}

.people-image {
  overflow: hidden;
  border-radius: 10px;
  background: rgba(8, 12, 11, 0.94);
  box-shadow: 0 18px 50px rgba(20, 25, 24, 0.16);
}

.people-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.people-copy {
  max-width: 860px;
}

.people-copy h2 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 2.5vw, 2.65rem);
}

.people-copy p {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 1.08rem;
}

.people-intro {
  margin-bottom: 18px;
}

.people-bios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.people-bios article {
  position: relative;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(8, 12, 11, 0.1);
  border-left: 4px solid rgba(103, 200, 233, 0.78);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(103, 200, 233, 0.1), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 244, 234, 0.58));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 28px rgba(8, 12, 11, 0.06);
}

.people-bios article::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 16px;
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, rgba(103, 200, 233, 0.58), transparent);
}

.people-bios article::after {
  display: none;
}

.people-bios h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  padding: 0 0 8px;
  color: var(--ink);
  font-size: 1.05rem;
}

.people-bios h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: var(--signal);
}

.people-bios p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(8, 12, 11, 0.68);
  font-size: 0.94rem;
  line-height: 1.5;
}

.difference-section {
  padding: 30px clamp(22px, 7vw, 104px);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(255, 210, 0, 0.08), transparent 42%),
    linear-gradient(180deg, #101514, #151c1a);
  border-top: 1px solid var(--line-dark);
}

.difference-compact {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(420px, 1.35fr) auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.difference-section h2 {
  max-width: 470px;
  font-size: clamp(1.45rem, 2.35vw, 2rem);
}

.difference-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.difference-points p {
  margin: 0;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.42;
}

.difference-points strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.93rem;
  line-height: 1.15;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(460px, 0.94fr);
  gap: clamp(18px, 3vw, 40px);
  align-items: start;
  min-height: auto;
  padding-top: clamp(34px, 4vh, 46px);
  padding-bottom: clamp(34px, 4vh, 46px);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 210, 0, 0.2), transparent 36%),
    var(--paper-2);
}

.quote-copy {
  position: sticky;
  top: 104px;
  display: grid;
  align-content: start;
  gap: 16px;
  align-self: start;
  z-index: 3;
}

.quote-copy h2,
.quote-copy p {
  margin-bottom: 0;
}

.quote-copy .quote-call-button {
  width: fit-content;
}

.contact-card {
  align-self: start;
  display: grid;
  align-content: start;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 14px;
  height: 463px;
  min-height: 463px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
}

.quote-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  align-items: end;
  padding: 0 8px;
  border-bottom: 1px solid rgba(8, 12, 11, 0.16);
  background: transparent;
}

.quote-methods .quick-contact-toggle {
  height: 46px;
  min-height: 46px;
  padding: 0 12px;
  color: rgba(8, 12, 11, 0.66);
  border: 1px solid rgba(8, 12, 11, 0.13);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  background: rgba(255, 250, 240, 0.54);
  box-shadow: inset 0 -1px 0 rgba(8, 12, 11, 0.08);
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
  transform: translateY(1px);
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.quote-methods .quick-contact-toggle:hover {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.86);
  border-color: rgba(8, 12, 11, 0.22);
}

.quote-methods .quick-contact-toggle.is-active,
.quote-methods .quick-contact-toggle[aria-selected="true"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(8, 12, 11, 0.18);
  box-shadow:
    inset 0 4px 0 var(--canary),
    0 10px 22px rgba(8, 12, 11, 0.08);
}

.quote-methods .quick-contact-toggle:focus-visible {
  outline: 3px solid rgba(255, 210, 0, 0.36);
  outline-offset: 2px;
}

.quote-form {
  align-self: start;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.quick-contact-form {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 12px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.quote-form[hidden],
.quick-contact-form[hidden] {
  display: none;
}

.quick-contact-form .spam-check,
.quick-contact-form .button,
.quick-contact-form .contact-status {
  grid-column: 1 / -1;
}

.quick-contact-form .button {
  align-self: start;
  height: 46px;
  width: 196px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}

.quote-form label,
.quick-contact-form label {
  display: grid;
  gap: 5px;
  color: rgba(10, 13, 12, 0.74);
  font-size: 0.92rem;
  font-weight: 850;
}

.spam-check {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.quote-form input,
.quote-form select,
.quote-form textarea,
.quick-contact-form input {
  width: 100%;
  min-height: 38px;
  padding: 8px 11px;
  color: var(--ink);
  border: 1px solid rgba(10, 13, 12, 0.18);
  border-radius: 8px;
  background: #fff;
  outline: none;
}

.quote-form select option {
  color: var(--ink);
  background: #fff;
}

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

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.quick-contact-form input:focus {
  border-color: var(--canary-deep);
  box-shadow: 0 0 0 4px rgba(255, 210, 0, 0.18);
}

.full-span {
  grid-column: 1 / -1;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.form-footer .button {
  width: 196px;
}

#form-status {
  margin: 0;
  color: var(--muted-dark);
}

.contact-status {
  min-height: 1.2em;
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.82rem;
  font-weight: 760;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(22px, 7vw, 104px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.site-footer img {
  width: 42px;
}

.site-footer p {
  max-width: 780px;
  margin: 0;
}

.site-footer a {
  color: var(--canary);
  font-weight: 900;
}

@keyframes htc-wifi-pulse {
  0%,
  100% {
    opacity: 0;
  }

  28% {
    opacity: 0.64;
  }

  64% {
    opacity: 0.18;
  }
}


@keyframes topology-flow {
  to {
    stroke-dashoffset: -88;
  }
}

@keyframes mobile-signal-chain {
  0%,
  14% {
    opacity: 0;
    transform: translateY(-50%) translateX(-4px) scale(0.72);
  }

  20% {
    opacity: 1;
    transform: translateY(-50%) translateX(1px) scale(1);
  }

  34% {
    opacity: 1;
    transform: translateY(-50%) translateX(14px) scale(1);
  }

  40%,
  100% {
    opacity: 0;
    transform: translateY(-50%) translateX(22px) scale(0.74);
  }
}

@keyframes mobile-signal-chain-secondary {
  0%,
  46% {
    opacity: 0;
    transform: translateY(-50%) translateX(-4px) scale(0.72);
  }

  54% {
    opacity: 1;
    transform: translateY(-50%) translateX(1px) scale(1);
  }

  68% {
    opacity: 1;
    transform: translateY(-50%) translateX(14px) scale(1);
  }

  74%,
  100% {
    opacity: 0;
    transform: translateY(-50%) translateX(22px) scale(0.74);
  }
}

@keyframes handoff-stage-1 {
  0%,
  8% {
    opacity: 0;
    transform: scale(0.76);
  }

  15% {
    opacity: 0.78;
    transform: scale(1);
  }

  28%,
  100% {
    opacity: 0;
    transform: scale(1.26);
  }
}

@keyframes handoff-stage-2 {
  0%,
  30% {
    opacity: 0;
    transform: scale(0.76);
  }

  40% {
    opacity: 0.78;
    transform: scale(1);
  }

  54%,
  100% {
    opacity: 0;
    transform: scale(1.26);
  }
}

@keyframes handoff-stage-3 {
  0%,
  52% {
    opacity: 0;
    transform: scale(0.76);
  }

  62% {
    opacity: 0.78;
    transform: scale(1);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.26);
  }
}

@keyframes handoff-stage-4 {
  0%,
  72% {
    opacity: 0;
    transform: scale(0.76);
  }

  82% {
    opacity: 0.78;
    transform: scale(1);
  }

  96%,
  100% {
    opacity: 0;
    transform: scale(1.26);
  }
}

@keyframes roam-phone-pulse {
  0%,
  100% {
    opacity: 0.28;
  }

  50% {
    opacity: 1;
  }
}

@keyframes mobile-ap-pulse {
  0%,
  100% {
    opacity: 0.34;
  }

  50% {
    opacity: 0.95;
  }
}

@keyframes roam-user-visibility {
  0%,
  5%,
  96%,
  100% {
    opacity: 0;
  }

  10%,
  90% {
    opacity: 1;
  }
}

@keyframes mobile-roam-walk {
  0% {
    opacity: 0;
    transform: translate(56px, 216px);
  }

  4% {
    opacity: 1;
    transform: translate(66px, 216px);
  }

  94% {
    opacity: 1;
    transform: translate(306px, 216px);
  }

  100% {
    opacity: 0;
    transform: translate(318px, 216px);
  }
}

@keyframes bird-waddle {
  0% {
    transform: rotate(-4deg) translateY(1px);
  }

  100% {
    transform: rotate(4deg) translateY(-1px);
  }
}

@keyframes bird-leg-left {
  0%,
  100% {
    transform: translateX(-0.5px) rotate(3deg);
  }

  50% {
    transform: translateX(1.5px) rotate(-5deg);
  }
}

@keyframes bird-leg-right {
  0%,
  100% {
    transform: translateX(1px) rotate(-4deg);
  }

  50% {
    transform: translateX(-1px) rotate(5deg);
  }
}

@keyframes bird-foot-left {
  0%,
  100% {
    transform: rotate(-8deg) translateX(-0.8px);
  }

  50% {
    transform: rotate(10deg) translateX(1px);
  }
}

@keyframes bird-foot-right {
  0%,
  100% {
    transform: rotate(8deg) translateX(0.8px);
  }

  50% {
    transform: rotate(-10deg) translateX(-1px);
  }
}

@keyframes meter-active {
  0%,
  100% {
    filter: brightness(0.9);
    transform: scaleX(var(--meter-a));
  }

  44% {
    filter: brightness(1.18);
    transform: scaleX(var(--meter-b));
  }

  72% {
    filter: brightness(1.04);
    transform: scaleX(var(--meter-c));
  }
}

@keyframes meter-scan {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(130%);
  }
}

@media (max-width: 1220px) {
  .poster-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 681px) and (max-width: 1120px) {
  .rental-layout,
  .mesh-explainer {
    grid-template-columns: 1fr;
  }

  .device-card-wide {
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  }

  .device-card-wide .device-points {
    min-width: 0;
  }

  .device-card-wide .device-points span {
    padding-right: 12px;
  }

  .deployment-section {
    gap: 24px;
    align-items: start;
  }

  .bonding-console {
    margin-top: 22px;
    padding: 14px;
  }

  .bond-link {
    min-height: 106px;
  }

  .mesh-explainer {
    padding: 24px;
  }

  .mesh-diagram,
  .mesh-plan-map {
    min-width: 0;
    max-width: 100%;
  }

  .poster-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, minmax(0, auto));
    grid-auto-columns: calc((100% - 42px) / 4);
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 12px;
  }

  .poster-grid::-webkit-scrollbar {
    display: none;
  }

  .poster-card {
    width: 100%;
    min-width: 0;
    scroll-snap-align: start;
  }

}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .network-console {
    justify-self: center;
    width: min(100%, 860px);
    min-height: auto;
    padding: 16px;
  }

}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    padding-inline: 20px;
  }

  .brand {
    width: 154px;
    height: 37px;
  }

  .primary-nav {
    display: none;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 130px 92px;
    justify-self: end;
    gap: 8px;
  }

  .header-actions .button-secondary {
    display: none;
  }

  .site-header .header-actions .call-button {
    width: 92px;
    min-width: 92px;
    max-width: 92px;
    padding-inline: 0;
    font-size: 0;
  }

  .site-header .header-actions .call-button::after {
    content: "Call Us";
    font-size: 0.88rem;
  }

  .hero,
  .rental-showcase,
  .rental-layout,
  .deployment-section,
  .mesh-explainer,
  .people-section,
  .quote-section,
  .difference-compact {
    grid-template-columns: 1fr;
  }

  .difference-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .network-console {
    min-height: auto;
  }

  .hero-media img {
    min-height: 420px;
  }

  .quote-copy {
    position: static;
  }

  .mesh-diagram {
    min-height: 280px;
  }
}

@media (min-width: 681px) and (max-width: 980px) {
  .deployment-carousel-frame {
    aspect-ratio: 16 / 8;
    max-height: 330px;
  }

  .bonding-console {
    padding: 14px;
  }

  .bond-link {
    min-height: 96px;
  }

}

@media (max-width: 760px) {
  .topology-layout {
    grid-template-columns: 1fr;
  }

  .network-side {
    padding-right: 0;
    border-right: 0;
  }

  .network-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-top: 68px;
  }

  .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    justify-content: normal;
    width: 100%;
    max-width: 100vw;
    overflow: visible;
    min-height: 68px;
    gap: 8px;
    padding: 12px;
  }

  .brand {
    width: 120px;
    height: 29px;
  }

  .speed-test-nav {
    display: none;
  }

  .header-actions {
    display: none !important;
  }

  .mobile-header-tools {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    justify-self: end;
    gap: 6px;
    min-width: 0;
  }

  .mobile-header-call {
    display: inline-flex !important;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 78px;
    min-height: 40px;
    padding-inline: 0;
    border: 1px solid var(--canary);
    border-radius: 8px;
    background: var(--canary);
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 10px 28px rgba(255, 210, 0, 0.22);
  }

  .mobile-menu-toggle {
    width: 42px;
    min-height: 40px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    flex: 0 0 auto;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    transform-origin: center;
    transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-menu-toggle[aria-expanded="true"] span {
    background: rgba(255, 255, 255, 0.92);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 12px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 12, 11, 0.96);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    min-height: 44px;
    align-items: center;
    display: inline-flex;
    justify-content: flex-start;
    padding: 0 12px;
    border: 0;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.84);
    background: transparent;
    font-size: 0.9rem;
    font-weight: 900;
  }

  .mobile-menu a[aria-current="page"],
  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    color: var(--ink);
    border-color: var(--canary);
    background: var(--canary);
    outline: none;
  }

  .mobile-menu a[href*="speed"] {
    color: var(--hot-pink);
    background: transparent;
  }

  .mobile-menu a[href*="speed"]:hover,
  .mobile-menu a[href*="speed"]:focus-visible {
    color: #fff;
    border-color: rgba(255, 62, 165, 0.8);
    background: rgba(255, 62, 165, 0.34);
  }

  .mobile-menu a[href*="cell-tower"] {
    color: rgba(103, 200, 233, 0.95);
    background: transparent;
  }

  .hero,
  .rental-strip,
  .onsite-section,
  .credits-section,
  .difference-section,
  .people-section,
  .quote-section {
    padding-inline: 22px;
    scroll-margin-top: 78px;
  }

  .hero {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
  }

  .hero-copy {
    max-width: calc(100vw - 44px);
  }

  .hero-copy h1 {
    max-width: 9.8em;
    font-size: clamp(1.95rem, 7.8vw, 2.18rem);
    line-height: 1.06;
    text-wrap: wrap;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 20em;
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .hero-eyebrow-bottom {
    max-width: 23em;
    font-size: 0.75rem;
    line-height: 1.25;
    text-wrap: wrap;
  }

  .hero-actions {
    width: 100%;
    max-width: calc(100vw - 44px);
  }

  .hero-actions,
  .form-footer {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .page-actions {
    display: grid;
  }

  .quote-copy .quote-call-button {
    display: none;
  }

  .quote-copy {
    display: grid;
    gap: 10px;
  }

  .quote-methods {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding-inline: 0;
  }

  .quote-methods .quick-contact-toggle {
    height: 42px;
    min-height: 42px;
    padding-inline: 7px;
    font-size: 0.86rem;
  }

  .quick-contact-form {
    grid-template-columns: 1fr;
    box-shadow: none;
  }

  .quote-copy h2 {
    margin-bottom: 0;
    font-size: clamp(1.9rem, 8.6vw, 2.15rem);
    line-height: 1.04;
  }

  .quote-copy p {
    margin-bottom: 0;
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .network-console {
    min-width: 0;
    max-width: 100%;
    padding: 16px;
  }

  .hero-copy,
  .network-side,
  .network-tabs,
  .network-tabs button,
  .mobile-network-flow {
    min-width: 0;
    max-width: 100%;
  }

  .network-side {
    padding-right: 0;
    border-right: 0;
  }

  .console-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .topology-stage {
    display: none;
  }

  .network-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 2px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 11px;
    background: rgba(8, 12, 11, 0.38);
  }

  .network-tabs button {
    justify-content: center;
    min-height: 42px;
    padding-inline: 8px;
    border-radius: 8px;
    font-size: 0.74rem;
    text-align: center;
  }

  .network-tab-desc {
    display: none;
  }

  .network-mobile-desc {
    display: block;
    height: 70px;
    min-height: 70px;
    margin: 0;
    padding: 10px 2px 2px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
    font-weight: 650;
    line-height: 1.36;
  }

  .mobile-network-flow {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr) 18px minmax(0, 1fr);
    align-items: stretch;
    gap: 6px;
    height: 106px;
    margin-top: 8px;
    padding: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background:
      linear-gradient(135deg, rgba(255, 210, 0, 0.08), transparent 40%),
      rgba(8, 12, 11, 0.32);
  }

  .mobile-network-flow::before {
    content: none;
  }

  .mobile-network-flow::after {
    content: none;
  }

  .mobile-flow-node {
    position: relative;
    display: grid;
    z-index: 1;
    height: 84px;
    min-height: 84px;
    grid-template-rows: 18px minmax(38px, 1fr);
    align-content: stretch;
    align-items: center;
    gap: 4px;
    padding: 10px 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background:
      linear-gradient(135deg, rgba(255, 210, 0, 0.12), transparent 48%),
      rgba(8, 12, 11, 0.34);
    text-align: center;
  }

  .mobile-flow-node span {
    align-self: end;
    color: var(--canary);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .mobile-flow-node strong {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    align-self: start;
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.15;
  }

  .mobile-network-flow i {
    position: relative;
    z-index: 1;
    align-self: center;
    width: 18px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: var(--canary);
    opacity: 0.8;
  }

  .mobile-network-flow i:nth-of-type(1)::before,
  .mobile-network-flow i:nth-of-type(2)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -4px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--canary);
    box-shadow: 0 0 16px rgba(255, 210, 0, 0.74);
    opacity: 0;
    transform: translateY(-50%) scale(0.72);
    animation: mobile-signal-chain 3.2s ease-in-out infinite;
  }

  .mobile-network-flow i:nth-of-type(2)::before {
    animation-name: mobile-signal-chain-secondary;
  }

  .mobile-network-flow i::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1px;
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--canary);
    border-top: 2px solid var(--canary);
    transform: translateY(-50%) rotate(45deg);
  }

  .bonding-console {
    gap: 10px;
    margin-top: 18px;
    padding: 14px;
  }

  .bonding-header strong {
    font-size: 0.96rem;
  }

  .bonding-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .bond-link {
    min-height: 0;
    gap: 5px;
    padding: 10px 8px;
  }

  .bond-link strong {
    font-size: 0.78rem;
  }

  .bond-link small {
    font-size: 0.62rem;
    line-height: 1.2;
  }

  .bond-link .source-meter-grid {
    display: none;
  }

  .bonded-output {
    gap: 9px;
    padding: 12px;
  }

  .bonded-output-head {
    display: grid;
    gap: 3px;
  }

  .bonded-output-head strong {
    font-size: 0.96rem;
  }

  .mesh-diagram {
    min-height: auto;
    overflow: hidden;
  }

  .mesh-plan-map {
    display: none;
  }

  .mesh-plan-map-mobile {
    display: block;
    width: 100%;
    height: auto;
  }

  .mobile-plan-road {
    fill: rgba(255, 255, 255, 0.06);
    stroke: rgba(255, 255, 255, 0.1);
  }

  .mobile-road-label {
    fill: rgba(255, 255, 255, 0.32);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-anchor: start;
    text-transform: uppercase;
  }

  .mobile-plan-cable,
  .mobile-map-legend path {
    fill: none;
    stroke: rgba(255, 210, 0, 0.48);
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-plan-trunk {
    stroke-width: 2.6;
  }

  .mobile-plan-core rect {
    fill: rgba(14, 21, 19, 0.94);
    stroke: rgba(255, 210, 0, 0.68);
  }

  .mobile-plan-core text {
    fill: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 900;
    text-anchor: middle;
  }

  .mobile-plan-core text + text {
    fill: var(--canary);
    font-size: 10px;
  }

  .mobile-trailer rect,
  .mobile-vip-group rect {
    fill: rgba(255, 210, 0, 0.11);
    stroke: rgba(255, 255, 255, 0.16);
  }

  .mobile-trailer path:not(.mobile-hitch),
  .mobile-vip-group path:not(.mobile-hitch) {
    fill: rgba(8, 12, 11, 0.24);
    stroke: rgba(255, 255, 255, 0.13);
  }

  .mobile-hitch {
    fill: rgba(255, 255, 255, 0.055);
    stroke: rgba(255, 255, 255, 0.3);
    stroke-linejoin: round;
  }

  .mobile-trailer circle,
  .mobile-vip-group circle {
    fill: rgba(8, 12, 11, 0.92);
    stroke: rgba(255, 255, 255, 0.34);
    stroke-width: 1.3;
  }

  .mobile-trailer text,
  .mobile-vip-group text {
    fill: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 900;
    text-anchor: middle;
    text-transform: uppercase;
  }

  .mobile-vip-group text {
    font-size: 13px;
  }

  .mobile-ap {
    color: var(--canary);
    filter: drop-shadow(0 0 6px rgba(255, 210, 0, 0.25));
  }

  .mobile-ap circle {
    fill: currentColor;
  }

  .mobile-ap path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    animation: mobile-ap-pulse 2.6s ease-in-out infinite;
  }

  .mobile-ap path + path {
    opacity: 0.5;
    animation-delay: 0.35s;
  }

  .mobile-map-legend text {
    fill: rgba(255, 255, 255, 0.68);
    font-size: 9.4px;
    font-weight: 800;
  }

  .hero-media img {
    min-height: 310px;
  }

  .rental-media img {
    height: clamp(220px, 28vh, 240px);
    min-height: 220px;
    object-position: 44% 58%;
  }

  .deployment-carousel-controls {
    display: none;
  }

  .device-card {
    min-height: 180px;
    gap: 18px;
  }

  .device-card-wide {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .device-card-wide .device-points {
    grid-column: 1;
    grid-row: auto;
  }

  .device-points {
    grid-template-columns: 1fr;
  }

  .device-points span {
    min-height: 58px;
  }

  .rental-strip,
  .onsite-section,
  .credits-section,
  .quote-section,
  .people-section {
    padding-top: 34px;
    padding-bottom: 36px;
  }

  .difference-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .difference-compact {
    gap: 14px;
  }

  .difference-section .section-heading {
    margin-bottom: 0;
  }

  .difference-section h2 {
    margin-bottom: 0;
  }

  .difference-points {
    grid-template-columns: 1fr;
    border-left: 0;
    gap: 10px;
  }

  .difference-points p {
    padding: 0 0 0 12px;
    border-right: 0;
    border-left: 3px solid rgba(255, 210, 0, 0.58);
  }

  .people-image {
    width: 100%;
    max-width: none;
  }

  .people-image img {
    aspect-ratio: 4 / 3;
    object-position: center;
  }

  .people-bios {
    grid-template-columns: 1fr;
  }

  .poster-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, minmax(0, auto));
    grid-auto-columns: calc(50% - 5px);
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 10px;
  }

  .poster-grid::-webkit-scrollbar {
    display: none;
  }

  .poster-card {
    flex: none;
    width: 100%;
    min-width: 0;
    border-radius: 8px;
    scroll-snap-align: start;
  }

  .more-card {
    grid-row: auto;
    display: grid;
    align-items: center;
    justify-content: center;
    aspect-ratio: 2 / 2.6;
    border: 1px solid var(--line-dark);
    background: var(--canary);
  }

  .more-card span {
    position: absolute;
    display: block;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding-top: 0;
    color: var(--ink);
    text-align: left;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .form-grid label {
    grid-column: 1 / -1;
  }

  .form-grid label:nth-child(1),
  .form-grid label:nth-child(2),
  .form-grid label:nth-child(3),
  .form-grid label:nth-child(4) {
    grid-column: auto;
  }

  .quote-form label {
    gap: 3px;
    font-size: 0.84rem;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 7px;
  }

  .quote-form textarea {
    min-height: 66px;
  }

  .contact-card {
    height: auto;
    min-height: 0;
    padding: 14px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 6px;
    padding-inline: 8px;
  }

  .brand {
    width: 96px;
    height: 24px;
  }

  .speed-test-nav {
    display: none;
  }

  .mobile-header-call {
    width: 68px;
    min-height: 38px;
    font-size: 0.68rem;
  }

  .mobile-menu-toggle {
    width: 38px;
    min-height: 38px;
  }

  .mobile-menu {
    gap: 6px;
    padding: 8px;
  }

  .mobile-menu a {
    min-height: 40px;
    font-size: 0.76rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}
