:root {
  --canary: #ffd200;
  --hot-pink: #ff3ea5;
  --ink: #080c0b;
  --charcoal: #101514;
  --mist: #f8f4ea;
  --paper: #fffaf0;
  --signal: #67c8e9;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(8, 12, 11, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  min-height: 100%;
}

body {
  width: 100%;
  max-width: 100vw;
  min-height: 100%;
  margin: 0;
  padding-top: 78px;
  color: #fff;
  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, #121a18);
  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: #fff;
  background: var(--hot-pink);
  text-shadow: none;
}

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

button,
input {
  font: inherit;
}

img,
svg {
  display: block;
}

.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-size: 0.94rem;
  font-weight: 760;
}

.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 {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.mobile-header-tools,
.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;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 920;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.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 {
  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);
}

.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;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  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);
}

.tower-page-main {
  height: calc(100vh - 78px);
  padding: clamp(14px, 1.8vw, 24px);
  overflow: hidden;
}

.tower-shell {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(310px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 28px);
  max-width: 1680px;
  margin: 0 auto;
}

.tower-panel,
.map-card {
  min-width: 0;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: var(--shadow);
}

.tower-panel {
  backdrop-filter: blur(12px);
}

.tower-panel {
  display: grid;
  align-content: start;
  gap: clamp(13px, 1.5vh, 18px);
  padding: clamp(18px, 1.7vw, 26px);
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}

.tower-copy h1 {
  max-width: 7.6em;
  margin: 0;
  color: #fff;
  font-size: clamp(2.45rem, 3.15vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.tower-copy h1 span {
  display: block;
}

.tower-search {
  position: relative;
  display: grid;
  gap: 8px;
}

.tower-filter-head span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tower-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.search-row input {
  min-height: 44px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #fff;
  background: rgba(8, 12, 11, 0.52);
  outline: none;
}

.search-row input:focus {
  border-color: rgba(103, 200, 233, 0.66);
  box-shadow: 0 0 0 4px rgba(103, 200, 233, 0.12);
}

.icon-button,
.map-toolbar button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.map-card .tower-search {
  width: min(430px, 100%);
}

.map-card .search-row input {
  color: var(--ink);
  border-color: rgba(8, 12, 11, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(8, 12, 11, 0.1);
}

.map-card .search-row input::placeholder {
  color: rgba(8, 12, 11, 0.52);
}

.map-card .icon-button {
  color: var(--ink);
  border-color: rgba(8, 12, 11, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(8, 12, 11, 0.1);
}

.map-card .address-suggestions {
  border-color: rgba(8, 12, 11, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(8, 12, 11, 0.18);
}

.map-card .address-suggestions button {
  color: rgba(8, 12, 11, 0.76);
}

.map-card .address-suggestions button:hover,
.map-card .address-suggestions button:focus-visible {
  color: var(--ink);
  background: rgba(8, 12, 11, 0.06);
}

.icon-button {
  width: 48px;
  display: grid;
  place-items: center;
}

.icon-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
}

.address-suggestions {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  z-index: 30;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(16, 21, 20, 0.98);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.address-suggestions button {
  width: 100%;
  display: block;
  padding: 12px 14px;
  border: 0;
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.address-suggestions button:hover,
.address-suggestions button:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.tower-filter-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.carrier-filter {
  min-height: 43px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(8, 12, 11, 0.36);
  cursor: pointer;
  text-align: left;
}

.carrier-filter[aria-pressed="true"] {
  color: #fff;
  border-color: color-mix(in srgb, var(--carrier-color), white 18%);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--carrier-color), transparent 78%), transparent),
    rgba(8, 12, 11, 0.48);
}

.carrier-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--carrier-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--carrier-color), transparent 80%);
}

.carrier-filter strong,
.carrier-filter small {
  display: block;
}

.carrier-filter strong {
  font-size: 0.94rem;
  line-height: 1.05;
}

.carrier-filter small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 760;
}

.tower-disclaimer {
  display: grid;
  gap: 7px;
  margin-top: 6px;
  padding: 10px 11px;
  border: 1px solid rgba(255, 210, 0, 0.22);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 18px 18px, rgba(255, 210, 0, 0.18), transparent 34px),
    linear-gradient(135deg, rgba(255, 210, 0, 0.09), rgba(103, 200, 233, 0.045) 48%, transparent),
    rgba(8, 12, 11, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tower-disclaimer-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
}

.tower-disclaimer-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 210, 0, 0.46);
  border-radius: 50%;
  color: var(--ink);
  background: var(--canary);
  font-size: 0.9rem;
  font-weight: 1000;
  box-shadow: 0 0 18px rgba(255, 210, 0, 0.2);
}

.tower-disclaimer strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.12;
}

.tower-disclaimer p {
  margin: 0;
  font-size: 0.73rem;
  line-height: 1.28;
}

.map-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #edf0ec;
}

.tower-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  user-select: none;
}

.leaflet-container {
  width: 100%;
  height: 100%;
  font: inherit;
  background: #dce0da;
}

.leaflet-container:focus,
.leaflet-interactive:focus {
  outline: none;
}

.tower-overlay-canvas {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 430;
  pointer-events: none;
  transform-origin: 0 0;
  will-change: transform;
}

.address-pin-marker {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--hot-pink);
  box-shadow:
    0 0 0 6px rgba(255, 62, 165, 0.2),
    0 14px 28px rgba(8, 12, 11, 0.24);
}

.address-pin-marker::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #fff;
}

.leaflet-popup-content-wrapper {
  padding: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 46px rgba(8, 12, 11, 0.24);
}

.leaflet-popup-content {
  margin: 0;
}

.leaflet-popup-tip {
  background: rgba(255, 255, 255, 0.98);
}

.leaflet-popup-close-button {
  top: 6px;
  right: 8px;
  width: 26px;
  height: 26px;
  color: rgba(8, 12, 11, 0.62);
  font-size: 18px;
  line-height: 1;
  border-radius: 50%;
}

.leaflet-popup-close-button:hover,
.leaflet-popup-close-button:focus-visible {
  color: var(--ink);
  background: rgba(8, 12, 11, 0.06);
  outline: none;
}

.tower-popup {
  min-width: 210px;
  padding: 12px 14px;
}

.address-popup {
  min-width: 190px;
  padding: 12px 14px;
}

.tower-popup strong,
.address-popup strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.tower-popup span,
.address-popup span {
  display: block;
  margin-top: 4px;
  color: rgba(8, 12, 11, 0.68);
  font-size: 0.86rem;
}

.tower-popup .popup-carrier {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
  font-weight: 900;
}

.tower-popup .popup-carrier::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--popup-color);
}

.tower-detail-toggle {
  min-height: 34px;
  width: 100%;
  margin-top: 10px;
  border: 1px solid rgba(8, 12, 11, 0.14);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 210, 0, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.tower-detail-toggle:hover,
.tower-detail-toggle:focus-visible {
  background: var(--canary);
  outline: none;
}

.tower-detail-panel {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(8, 12, 11, 0.1);
}

.tower-detail-panel dl {
  display: grid;
  gap: 6px;
  margin: 0;
}

.tower-detail-panel div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
}

.tower-detail-panel dt {
  color: rgba(8, 12, 11, 0.52);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tower-detail-panel dd {
  margin: 0;
  color: rgba(8, 12, 11, 0.78);
  font-size: 0.82rem;
  font-weight: 760;
}

.tower-detail-panel p {
  margin: 10px 0 0;
  color: rgba(8, 12, 11, 0.58);
  font-size: 0.78rem;
}

.map-topbar {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(290px, 430px) auto minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  pointer-events: none;
}

.map-topbar > * {
  pointer-events: auto;
}

.map-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.map-toolbar button {
  min-width: 42px;
  padding: 0 13px;
  color: var(--ink);
  border-color: rgba(8, 12, 11, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(8, 12, 11, 0.1);
  font-weight: 860;
}

.map-toolbar button:hover,
.map-toolbar button:focus-visible {
  border-color: rgba(8, 12, 11, 0.22);
  background: #fff;
  outline: none;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  justify-self: end;
  justify-content: flex-end;
  gap: 6px;
  max-width: min(420px, 100%);
}

.legend-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(8, 12, 11, 0.1);
  border-radius: 999px;
  color: rgba(8, 12, 11, 0.74);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(8, 12, 11, 0.08);
  font-size: 0.82rem;
  font-weight: 850;
}

.legend-chip::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--carrier-color);
}

.map-status {
  position: absolute;
  z-index: 10;
  left: 16px;
  bottom: 16px;
  max-width: min(520px, calc(100% - 32px));
  padding: 10px 12px;
  border: 1px solid rgba(8, 12, 11, 0.08);
  border-radius: 999px;
  color: rgba(8, 12, 11, 0.68);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(8, 12, 11, 0.08);
  font-size: 0.84rem;
  font-weight: 760;
}

.map-data-updated {
  position: absolute;
  z-index: 10;
  right: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  padding: 9px 11px;
  border: 1px solid rgba(8, 12, 11, 0.08);
  border-radius: 999px;
  color: rgba(8, 12, 11, 0.68);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(8, 12, 11, 0.08);
  font-size: 0.78rem;
  font-weight: 860;
  pointer-events: none;
}

@media (max-width: 1180px) {
  .tower-page-main {
    height: auto;
    min-height: calc(100vh - 78px);
    overflow: visible;
  }

  .tower-shell {
    grid-template-columns: 1fr;
  }

  .tower-copy h1 {
    max-width: 12em;
  }

  .map-card {
    min-height: 70vh;
  }

  .map-topbar {
    grid-template-columns: minmax(260px, 1fr) auto;
  }

  .map-legend {
    grid-column: 1 / -1;
    justify-self: start;
    justify-content: flex-start;
    max-width: 100%;
  }
}

@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;
  }
}

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

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

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

  body {
    padding-top: 68px;
  }

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

  .mobile-header-call {
    display: inline-flex !important;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 78px;
    min-height: 40px;
    padding: 0;
    border: 1px solid var(--canary);
    border-radius: 8px;
    color: var(--ink);
    background: var(--canary);
    font-size: 0.78rem;
    font-weight: 900;
  }

  .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;
    display: inline-flex;
    align-items: center;
    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;
  }

  .tower-page-main {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    overflow: hidden;
  }

  .tower-shell {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .tower-panel {
    width: 100%;
    max-width: 100%;
    padding: 18px;
    gap: 18px;
    overflow: hidden;
  }

  .tower-copy h1 {
    max-width: 7.1em;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .search-row {
    grid-template-columns: minmax(0, 1fr) 46px;
  }

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

  .carrier-filter {
    min-height: 40px;
    gap: 7px;
    padding: 7px 8px;
    border-radius: 9px;
  }

  .carrier-dot {
    width: 10px;
    height: 10px;
  }

  .carrier-filter strong {
    font-size: 0.8rem;
  }

  .carrier-filter small {
    font-size: 0.64rem;
  }

  .map-card {
    width: 100%;
    max-width: 100%;
    margin-top: 12px;
    min-height: 74vh;
    border-radius: 14px;
  }

  .map-topbar {
    top: 10px;
    left: 10px;
    right: 10px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .map-card .tower-search {
    width: 100%;
  }

  .map-toolbar {
    flex-wrap: wrap;
  }

  .map-toolbar button {
    min-height: 38px;
  }

  .map-legend {
    grid-column: auto;
    max-width: 100%;
    justify-content: flex-start;
  }

  .legend-chip {
    min-height: 28px;
    font-size: 0.76rem;
  }

  .map-status {
    left: 10px;
    bottom: 48px;
    max-width: calc(100% - 20px);
    border-radius: 12px;
  }

  .map-data-updated {
    right: 10px;
    bottom: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 0.72rem;
  }
}
