.map-page {
  min-height: 100%;
  background: #050a11 !important;
  color: #fff !important;
}

.map-main {
  width: min(1600px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 24px;
}

.map-intro {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(320px, .65fr) auto;
  gap: clamp(24px, 4vw, 70px);
  align-items: end;
  padding: 22px 8px 24px;
}

.map-overline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #6f8095;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.map-overline span {
  width: 22px;
  height: 2px;
  background: var(--brand-blue-light);
}

.map-page .map-intro h1 {
  margin: 0 !important;
  color: #fff !important;
  font-family: var(--site-font-apple) !important;
  font-size: clamp(2rem, 3.2vw, 4rem) !important;
  font-weight: 760 !important;
  line-height: .95 !important;
  letter-spacing: -.065em !important;
  text-transform: none !important;
}

.map-intro-copy {
  max-width: 590px;
  color: #8795a8;
  font-size: clamp(.86rem, 1vw, 1rem);
  line-height: 1.55;
}

.map-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 38px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 0 15px;
  background: rgba(255,255,255,.035);
  color: #8290a3;
  font-size: .68rem;
  font-weight: 700;
  white-space: nowrap;
}

.map-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.map-legend i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

.legend-client {
  background: var(--brand-blue-light);
  box-shadow: 0 0 12px rgba(8,185,238,.8);
}

.legend-city {
  background: #555f6c;
}

.map-shell {
  position: relative;
}

.map-stage {
  position: relative;
  height: clamp(610px, calc(100svh - 205px), 920px);
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 30px;
  background:
    radial-gradient(circle at 64% 42%, rgba(8,119,232,.10), transparent 29%),
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px),
    #080e16;
  background-size: auto, 32px 32px, 32px 32px, auto;
  box-shadow: inset 0 1px rgba(255,255,255,.04), 0 30px 100px rgba(0,0,0,.35);
  cursor: grab;
  touch-action: none;
}

.map-stage:active {
  cursor: grabbing;
}

.map-stage::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,10,17,.98), transparent 20%, transparent 76%, rgba(5,10,17,.68)),
    linear-gradient(0deg, rgba(5,10,17,.8), transparent 22%, transparent 82%, rgba(5,10,17,.45));
}

.city-map {
  position: absolute;
  inset: -5% 0 0 11%;
  width: 80%;
  height: 108%;
  overflow: visible;
  user-select: none;
  filter: saturate(.82);
}

.river-shape {
  opacity: .82;
}

.city-shadow {
  fill: #000;
  opacity: .58;
  filter: url(#cityShadow);
}

.city-ground {
  fill: url(#cityGround);
  stroke: #3b4857;
  stroke-width: 2;
}

.map-road-minor {
  fill: none;
  stroke: #313b48;
  stroke-width: 5;
  opacity: .7;
}

.map-road-major {
  fill: none;
  stroke: #4b5663;
  stroke-width: 10;
  opacity: .82;
}

.road-center {
  fill: none;
  stroke: rgba(255,255,255,.16);
  stroke-width: 1;
  stroke-dasharray: 7 9;
}

.building-top {
  fill: #4a5562;
  stroke: #606b77;
  stroke-width: .7;
}

.building-front {
  fill: #252e39;
}

.building-side {
  fill: #333e4a;
}

.building-window {
  fill: #8da1b5;
  opacity: .14;
}

.landmark .building-top {
  fill: #596572;
}

.client-building {
  cursor: pointer;
  outline: none;
}

.client-building .client-top {
  stroke: rgba(255,255,255,.68);
  stroke-width: 1.5;
}

.client-building .client-front,
.client-building .client-side {
  filter: brightness(.56);
}

.client-building:hover .client-top,
.client-building:focus .client-top,
.client-building.is-active .client-top {
  filter: brightness(1.22);
}

.client-beam {
  opacity: .16;
  filter: url(#clientGlow);
  pointer-events: none;
}

.client-ring {
  fill: none;
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  animation: beaconPulse 2.6s ease-out infinite;
  pointer-events: none;
}

.client-pin {
  filter: url(#clientGlow);
}

.client-pin-bg {
  stroke: #fff;
  stroke-width: 2.5;
}

.client-pin text {
  fill: #fff;
  font-family: var(--site-font-apple);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: -.03em;
  text-anchor: middle;
  pointer-events: none;
}

.client-label {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}

.client-building:hover .client-label,
.client-building:focus .client-label,
.client-building.is-active .client-label {
  opacity: 1;
  transform: translateY(0);
}

.client-label rect {
  fill: rgba(5,10,17,.92);
  stroke: rgba(255,255,255,.14);
}

.client-label text {
  fill: #fff;
  font-family: var(--site-font-apple);
  font-size: 10px;
  font-weight: 720;
  text-anchor: middle;
}

@keyframes beaconPulse {
  0% { transform: scale(.55); opacity: .9; }
  75%, 100% { transform: scale(1.5); opacity: 0; }
}

.map-status {
  position: absolute;
  z-index: 20;
  top: 18px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8290a3;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.map-status strong {
  color: #d5deea;
  font-weight: 760;
}

.map-status a {
  margin-left: 4px;
  color: #4f6074;
  font-size: .55rem;
  font-weight: 650;
  letter-spacing: 0;
  text-decoration: none;
}

.map-status a:hover {
  color: #91a2b7;
}

.status-light {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2bd68f;
  box-shadow: 0 0 12px rgba(43,214,143,.8);
}

.business-directory {
  position: absolute;
  z-index: 12;
  top: 66px;
  left: 22px;
  width: 260px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 12px;
  background: rgba(9,15,24,.74);
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
  backdrop-filter: blur(16px);
  cursor: default;
}

.directory-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px 11px;
  color: #708095;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.directory-head strong {
  color: #fff;
  font-size: .67rem;
}

.directory-list {
  display: grid;
  gap: 4px;
}

.directory-item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 11px;
  padding: 5px 8px;
  text-align: left;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.directory-item:hover,
.directory-item.is-active {
  background: rgba(255,255,255,.065);
  transform: translateX(2px);
}

.directory-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  color: #fff;
  font-size: .66rem;
  font-weight: 850;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.3), 0 8px 18px rgba(0,0,0,.22);
}

.directory-item strong {
  display: block;
  overflow: hidden;
  color: #dfe6ef;
  font-size: .73rem;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.directory-item small {
  display: block;
  margin-top: 3px;
  color: #65758a;
  font-size: .58rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.directory-item > span:last-child {
  color: #526276;
  font-size: .8rem;
}

.location-preview {
  position: absolute;
  z-index: 15;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: minmax(160px, .72fr) minmax(250px, 1fr);
  width: min(610px, calc(100% - 330px));
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(7,12,19,.9);
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
  backdrop-filter: blur(20px);
  cursor: default;
}

.preview-image {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: #111b28;
}

.preview-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 62%, rgba(7,12,19,.88));
}

.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(.9) contrast(1.03);
}

.preview-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 24px 24px 22px 10px;
}

.preview-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #697a90;
  font-size: .58rem;
  font-weight: 820;
  letter-spacing: .11em;
}

.preview-meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #526277;
}

.map-page .preview-copy h2 {
  margin: 9px 0 7px !important;
  color: #fff !important;
  font-family: var(--site-font-apple) !important;
  font-size: clamp(1.4rem, 2vw, 2.1rem) !important;
  line-height: 1 !important;
  letter-spacing: -.05em !important;
  text-transform: none !important;
}

.preview-copy p {
  display: -webkit-box;
  overflow: hidden;
  color: #8290a3;
  font-size: .76rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.preview-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 17px;
}

.enter-location {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 7px 0 16px;
  background: var(--brand-blue);
  color: #fff;
  font: 750 .72rem/1 var(--site-font-apple);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(8,119,232,.3);
}

.enter-location b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
}

.preview-actions > a {
  color: #a8b4c3;
  font-size: .7rem;
  font-weight: 720;
  text-decoration: none;
}

.map-controls {
  position: absolute;
  z-index: 15;
  right: 22px;
  top: 22px;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  background: rgba(9,15,24,.76);
  backdrop-filter: blur(12px);
  cursor: default;
}

.map-controls button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: transparent;
  color: #d9e1ea;
  font: 500 1.15rem/1 var(--site-font-apple);
  cursor: pointer;
}

.map-controls button:last-child {
  border-bottom: 0;
}

.map-controls button:hover {
  background: rgba(255,255,255,.07);
}

.map-controls svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-compass {
  position: absolute;
  z-index: 8;
  right: 86px;
  top: 28px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  color: #718197;
  font-size: .55rem;
  font-weight: 850;
  cursor: default;
}

.map-compass span {
  position: absolute;
  top: 6px;
}

.map-compass i {
  width: 2px;
  height: 22px;
  border-radius: 2px;
  background: linear-gradient(#ef5350 50%, #4b5665 50%);
  transform: rotate(18deg);
}

.map-coordinates {
  position: absolute;
  z-index: 8;
  left: 24px;
  bottom: 20px;
  color: #4f6074;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.map-coordinates span {
  margin: 0 6px;
  color: #354356;
}

.map-instructions {
  position: absolute;
  z-index: 30;
  top: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 15px;
  padding: 7px 8px 7px 10px;
  background: rgba(8,14,22,.9);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
  cursor: default;
  transition: opacity .3s ease, transform .3s ease;
}

.map-instructions.is-hidden {
  opacity: 0;
  transform: translate(-50%, -12px);
  pointer-events: none;
}

.instruction-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #142234;
  color: var(--brand-blue-light);
}

.map-instructions strong,
.map-instructions small {
  display: block;
}

.map-instructions strong {
  color: #eef3f8;
  font-size: .69rem;
}

.map-instructions small {
  margin-top: 3px;
  color: #69798e;
  font-size: .58rem;
}

.map-instructions button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #68798d;
  font-size: 1rem;
  cursor: pointer;
}

.place-dialog {
  width: min(1180px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  padding: 0;
  background: #080e16;
  color: #fff;
  box-shadow: 0 40px 140px rgba(0,0,0,.7);
}

.place-dialog::backdrop {
  background: rgba(2,5,9,.82);
  backdrop-filter: blur(12px);
}

.place-experience {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, .7fr);
  min-height: min(720px, calc(100dvh - 34px));
}

.dialog-close {
  position: absolute;
  z-index: 8;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background: rgba(5,10,17,.66);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.space-viewer {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background-color: #141d27;
  background-position: 50% 10%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: ew-resize;
  user-select: none;
}

.viewer-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, transparent 25%, rgba(4,8,13,.18) 72%, rgba(4,8,13,.55)),
    linear-gradient(180deg, rgba(4,8,13,.45), transparent 20%, transparent 68%, rgba(4,8,13,.8));
  pointer-events: none;
}

.viewer-topbar {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  display: flex;
  gap: 15px;
  align-items: center;
  color: rgba(255,255,255,.7);
  font-size: .59rem;
  font-weight: 760;
  letter-spacing: .1em;
}

.viewer-live {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(5,10,17,.46);
  backdrop-filter: blur(10px);
}

.viewer-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2bd68f;
  box-shadow: 0 0 10px rgba(43,214,143,.8);
}

.viewer-reticle {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.viewer-reticle::before,
.viewer-reticle::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.26);
}

.viewer-reticle::before {
  width: 94px;
  height: 1px;
}

.viewer-reticle::after {
  width: 1px;
  height: 94px;
}

.viewer-reticle i {
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(255,255,255,.6);
}

.viewer-hotspot {
  position: absolute;
  z-index: 4;
  left: 63%;
  top: 42%;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.viewer-hotspot span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 0 8px rgba(8,119,232,.17), 0 10px 30px rgba(0,0,0,.35);
  font-size: 1.1rem;
}

.viewer-hotspot b {
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(5,10,17,.8);
  font-size: .66rem;
  backdrop-filter: blur(10px);
}

.viewer-bottom {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.viewer-brand {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 12px;
  color: #fff;
  font-size: .72rem;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}

.viewer-bottom strong,
.viewer-bottom span {
  display: block;
  text-shadow: 0 2px 14px #000;
}

.viewer-bottom strong {
  font-size: .84rem;
}

.viewer-bottom span {
  margin-top: 4px;
  color: rgba(255,255,255,.66);
  font-size: .61rem;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.place-details {
  display: flex;
  flex-direction: column;
  padding: 62px 34px 28px;
  background: #0a111a;
}

.place-index {
  color: var(--brand-blue-light);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.map-page .place-details h2 {
  margin: 14px 0 13px !important;
  color: #fff !important;
  font-family: var(--site-font-apple) !important;
  font-size: clamp(2rem, 3vw, 3.4rem) !important;
  line-height: .95 !important;
  letter-spacing: -.06em !important;
  text-transform: none !important;
}

.place-details p {
  color: #8290a3;
  font-size: .86rem;
  line-height: 1.6;
}

.place-actions {
  display: grid;
  gap: 9px;
  margin-top: 25px;
}

.place-actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: .74rem;
  font-weight: 760;
  text-decoration: none;
}

.place-actions a::after {
  content: "↗";
}

.place-primary-action {
  background: var(--brand-blue);
  color: #fff;
}

.place-secondary-action {
  border: 1px solid rgba(255,255,255,.12);
  color: #b7c2d0;
}

.space-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
  padding-top: 26px;
}

.space-thumb {
  position: relative;
  aspect-ratio: 1.3;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0;
  background: #141d27;
  cursor: pointer;
}

.space-thumb.is-active {
  border-color: var(--brand-blue-light);
}

.space-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 1100px) {
  .map-intro {
    grid-template-columns: 1fr 1fr;
  }

  .map-legend {
    display: none;
  }

  .city-map {
    left: 15%;
    width: 84%;
  }

  .business-directory {
    width: 230px;
  }

  .location-preview {
    width: min(560px, calc(100% - 280px));
  }
}

@media (max-width: 820px) {
  .map-main {
    width: min(100% - 16px, 760px);
    padding-top: 12px;
  }

  .map-intro {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 8px 18px;
  }

  .map-intro-copy {
    max-width: 680px;
  }

  .map-stage {
    height: calc(100svh - 214px);
    min-height: 590px;
    border-radius: 22px;
  }

  .city-map {
    inset: -2% -22% auto auto;
    width: 126%;
    height: 80%;
  }

  .business-directory {
    top: auto;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 8px;
  }

  .directory-head {
    display: none;
  }

  .directory-list {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .directory-list::-webkit-scrollbar {
    display: none;
  }

  .directory-item {
    flex: 0 0 auto;
    grid-template-columns: 34px 1fr;
    width: 150px;
  }

  .directory-item > span:last-child {
    display: none;
  }

  .location-preview {
    right: 12px;
    bottom: 84px;
    grid-template-columns: 105px 1fr;
    width: calc(100% - 24px);
    min-height: 142px;
  }

  .preview-image {
    min-height: 142px;
  }

  .preview-copy {
    padding: 15px 14px 14px 4px;
  }

  .preview-copy p {
    display: none;
  }

  .preview-actions {
    margin-top: 12px;
  }

  .map-status {
    left: 15px;
  }

  .map-status a {
    display: none;
  }

  .map-controls {
    right: 14px;
    top: 14px;
  }

  .map-compass,
  .map-coordinates {
    display: none;
  }

  .map-instructions {
    top: 15px;
    left: 14px;
    transform: none;
  }

  .map-instructions.is-hidden {
    transform: translateY(-10px);
  }

  .place-experience {
    display: block;
    min-height: 0;
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
  }

  .space-viewer {
    min-height: min(56dvh, 520px);
  }

  .place-details {
    min-height: 390px;
    padding: 30px 22px 24px;
  }
}

@media (max-width: 520px) {
  .map-page .map-intro h1 {
    font-size: 2rem !important;
  }

  .map-intro-copy {
    font-size: .78rem;
  }

  .map-stage {
    min-height: 560px;
  }

  .map-instructions {
    display: none;
  }

  .map-status {
    top: 18px;
  }

  .location-preview {
    grid-template-columns: 82px 1fr;
  }

  .preview-meta span:last-child,
  .preview-meta i {
    display: none;
  }

  .map-page .preview-copy h2 {
    font-size: 1.25rem !important;
  }

  .enter-location {
    gap: 10px;
    min-height: 38px;
    padding-left: 13px;
  }

  .enter-location b {
    width: 27px;
    height: 27px;
  }

  .preview-actions > a {
    display: none;
  }

  .viewer-topbar > span:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-ring {
    animation: none;
  }
}
