/* ═══════════════════════════════════════════════════════════════════════
   SEE Atlas — Interactive India project map
   Spec: clients-atlas-spec.md
   Tokens: --see-red #CC1B1B · --amber #F2B229
══════════════════════════════════════════════════════════════════════ */

:root{
  --atlas-bg:#0A0B0E;
  --atlas-text:#F1EEE8;
  --atlas-amber:#F2B229;
  --atlas-red:#FF5A3C;
  --atlas-cyan:#5DD9E0;
  --atlas-violet:#B084EF;
  --atlas-green:#7DC383;
  --atlas-warm:#E8B86E;
}

.see-atlas-page{
  font-family:'Inter','Helvetica Neue',Arial,sans-serif;
  font-feature-settings:'cv11','ss01';
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
  background:var(--atlas-bg);color:var(--atlas-text);
  width:100vw;left:50%;right:50%;
  margin-left:-50vw;margin-right:-50vw;
  position:relative;overflow:hidden;
  height:100vh;min-height:640px;
  display:flex;flex-direction:column;
}

/* Break out of Kadence wrappers + hide WP page title on the Atlas page */
body.page-our-work .entry-content,
body.our-work .entry-content,
body.page[class*="our-work"] .entry-content,
.see-atlas-page ~ *{
  max-width:none !important;
}
body.page[class*="our-work"] .entry-header,
body.page[class*="our-work"] .entry-title,
body.page[class*="our-work"] .kadence-title-area,
body.page[class*="our-work"] .page-title,
body.page[class*="our-work"] .site-main > header,
body.page[class*="our-work"] .above-entry-meta{display:none !important}

/* ── Header strip ─────────────────────────────────────────────────── */
.see-atlas-page__head{
  position:relative;z-index:5;
  padding:24px clamp(20px,3vw,42px);
  display:flex;justify-content:space-between;align-items:flex-end;gap:24px;
  border-bottom:1px solid rgba(255,255,255,.06);
  background:linear-gradient(180deg,rgba(0,0,0,.4),transparent);
}
.see-atlas-page__head-l{max-width:680px}
.see-atlas-page__ey{
  font-size:11px;font-weight:600;color:var(--atlas-amber);
  letter-spacing:.18em;text-transform:uppercase;margin-bottom:10px;
}
.see-atlas-page__h{
  font-size:clamp(22px,2.4vw,32px);font-weight:600;
  letter-spacing:-.018em;line-height:1.15;
  color:#fff;margin:0;
}
.see-atlas-page__head-r{
  display:flex;align-items:center;gap:24px;flex-shrink:0;
}
.see-atlas-page__counter{display:flex;flex-direction:column;align-items:flex-end;gap:0}
.see-atlas-page__counter-num{
  font-size:clamp(40px,4.5vw,60px);font-weight:600;color:var(--atlas-amber);
  letter-spacing:-.04em;line-height:1;
  font-variant-numeric:tabular-nums;
}
.see-atlas-page__counter-l{
  font-size:10px;font-weight:600;color:rgba(255,255,255,.5);
  letter-spacing:.08em;text-transform:uppercase;text-align:right;
  line-height:1.4;
}
.see-atlas-page__status{
  display:flex;align-items:center;gap:8px;
  font-size:10px;font-weight:600;color:#7DC383;
  letter-spacing:.12em;
  padding:8px 12px;border-radius:99px;
  background:rgba(125,195,131,.08);border:1px solid rgba(125,195,131,.22);
}
.see-atlas-page__status-dot{
  width:7px;height:7px;border-radius:50%;background:#7DC383;
  animation:see-atlas-pulse 1.8s ease-out infinite;
}
@keyframes see-atlas-pulse{
  0%   { box-shadow:0 0 0 0   rgba(125,195,131,.6) }
  70%  { box-shadow:0 0 0 10px transparent }
  100% { box-shadow:0 0 0 0   transparent }
}

/* ── Sample-of-portfolio callout ─────────────────────────────────── */
.see-atlas-page__callout{
  margin-top:14px;
  font-size:13px;line-height:1.65;
  color:rgba(241,238,232,.62);
  max-width:640px;
}
.see-atlas-page__callout strong{
  color:#fff;font-weight:600;
}

/* ── Brand strip — JP-Heating headline + two-row scrolling marquee ── */
.see-atlas-page__brands{
  position:relative;z-index:5;
  padding:28px 0 32px;
  border-bottom:1px solid rgba(255,255,255,.06);
  background:radial-gradient(ellipse 60% 80% at 50% 0%,rgba(242,178,41,.04),transparent),var(--atlas-bg);
  overflow:hidden;
}
.see-atlas-page__brands-headline{
  text-align:center;
  font-family:'Playfair Display','Georgia',serif;
  font-weight:700;font-size:clamp(22px,2.4vw,32px);
  line-height:1.15;letter-spacing:-.01em;
  color:#fff;
  max-width:760px;margin:0 auto 26px;
  padding:0 clamp(20px,3vw,42px);
}
.see-atlas-page__brands-headline em{
  font-style:italic;color:var(--atlas-amber);font-weight:700;
}
.see-atlas-page__marquee{
  display:flex;flex-direction:column;gap:12px;
  mask-image:linear-gradient(90deg,transparent 0%,#000 5%,#000 95%,transparent 100%);
  -webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 5%,#000 95%,transparent 100%);
}
.see-atlas-page__marquee-row{
  display:flex;overflow:hidden;width:100%;
}
.see-atlas-page__marquee-track{
  display:flex;flex-shrink:0;gap:12px;padding:0 6px;
  animation:see-atlas-marquee 42s linear infinite;
  will-change:transform;
}
.see-atlas-page__marquee-row--left .see-atlas-page__marquee-track{
  animation-direction:normal;
}
.see-atlas-page__marquee-row--right .see-atlas-page__marquee-track{
  animation-direction:reverse;
  animation-duration:52s;
}
.see-atlas-page__marquee-row:hover .see-atlas-page__marquee-track{
  animation-play-state:paused;
}
@keyframes see-atlas-marquee{
  from { transform:translate3d(0,0,0); }
  to   { transform:translate3d(-50%,0,0); }
}

/* Brand card — white panel, real logo centered (JP-Heating style) */
.see-atlas-page__brand-card{
  flex-shrink:0;
  width:170px;height:84px;
  background:#FFFFFF;
  border:1px solid rgba(0,0,0,.06);
  border-radius:8px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  padding:14px 18px;cursor:pointer;
  transition:transform 280ms cubic-bezier(.2,.7,.2,1),box-shadow 280ms,border-color 280ms;
  position:relative;overflow:hidden;
}
.see-atlas-page__brand-card:hover{
  transform:translateY(-3px);
  border-color:var(--atlas-amber);
  box-shadow:0 12px 28px rgba(242,178,41,.18);
}
.see-atlas-page__brand-card img{
  max-width:100%;max-height:100%;
  object-fit:contain;display:block;
  filter:none;
  transition:transform 280ms;
}
.see-atlas-page__brand-card:hover img{transform:scale(1.04);}
.see-atlas-page__brand-mark{display:block;width:100%;line-height:0;}
.see-atlas-page__brand-mark svg{max-width:100%;height:30px;display:block;margin:0 auto;}
.see-atlas-page__brand-tag{
  margin-top:6px;
  font-size:8px;font-weight:700;color:#999;
  letter-spacing:.2em;text-transform:uppercase;
}

@media (prefers-reduced-motion:reduce){
  .see-atlas-page__marquee-track{animation:none;}
}

/* ── City filter (inside filters aside) ─────────────────────────── */
.see-atlas-page__filters-h--city{
  margin-top:14px;padding-top:14px;
  border-top:1px solid rgba(255,255,255,.06);
}
.see-atlas-page__city-wrap{margin-bottom:8px;}
.see-atlas-page__city-select{
  width:100%;
  background:rgba(0,0,0,.5);color:#F1EEE8;
  border:1px solid rgba(255,255,255,.10);
  border-radius:5px;
  padding:8px 10px;
  font-family:'Inter',sans-serif;font-size:12px;font-weight:500;
  cursor:pointer;
}
.see-atlas-page__city-select:focus{outline:1px solid var(--atlas-amber);}

/* ── List panel (popup when sector/city/brand clicked) ──────────── */
.see-atlas-page__listpanel{
  position:absolute;top:0;right:0;bottom:0;
  width:420px;max-width:100%;
  background:rgba(12,13,16,.96);
  backdrop-filter:blur(20px);
  border-left:1px solid rgba(255,255,255,.08);
  box-shadow:-18px 0 36px rgba(0,0,0,.5);
  z-index:11;
  display:flex;flex-direction:column;
  transform:translateX(100%);
  transition:transform .32s cubic-bezier(.2,.7,.2,1);
}
.see-atlas-page__listpanel.is-open{transform:translateX(0);}
.see-atlas-page__listpanel-head{
  padding:24px 26px 18px;
  border-bottom:1px solid rgba(255,255,255,.06);
  display:flex;justify-content:space-between;align-items:flex-start;gap:16px;
}
.see-atlas-page__listpanel-ey{
  font-size:10px;font-weight:600;letter-spacing:.22em;text-transform:uppercase;
  color:var(--atlas-amber);margin-bottom:8px;
}
.see-atlas-page__listpanel-h{
  font-size:24px;font-weight:700;color:#fff;
  letter-spacing:-.012em;line-height:1.15;margin:0 0 4px;
}
.see-atlas-page__listpanel-meta{
  font-size:11px;color:rgba(241,238,232,.5);
  letter-spacing:.05em;
}
.see-atlas-page__listpanel-close{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  width:30px;height:30px;border-radius:5px;
  color:rgba(241,238,232,.6);
  font-size:18px;cursor:pointer;flex-shrink:0;
}
.see-atlas-page__listpanel-close:hover{background:rgba(255,255,255,.08);color:#fff;}
.see-atlas-page__listpanel-body{
  flex:1;overflow-y:auto;
  padding:8px 18px 28px;
}
.see-atlas-page__listpanel-city{margin-top:14px;}
.see-atlas-page__listpanel-city-h{
  font-size:10px;font-weight:600;letter-spacing:.18em;
  color:rgba(241,238,232,.45);text-transform:uppercase;
  padding:8px 8px 6px;
  display:flex;align-items:baseline;gap:8px;
}
.see-atlas-page__listpanel-city-h span{
  color:var(--atlas-amber);font-weight:700;
}
.see-atlas-page__listpanel-items{list-style:none;margin:0;padding:0;}
.see-atlas-page__listpanel-items li{margin:0;}
.see-atlas-page__listpanel-item{
  width:100%;background:transparent;border:none;
  display:flex;align-items:center;gap:10px;
  padding:9px 8px;
  border-radius:5px;
  cursor:pointer;text-align:left;
  color:#fff;font-size:13px;
  transition:background 120ms;
}
.see-atlas-page__listpanel-item:hover{background:rgba(255,255,255,.04);}
.see-atlas-page__listpanel-item-dot{
  width:7px;height:7px;border-radius:50%;flex-shrink:0;
}
.see-atlas-page__listpanel-item-name{
  flex:1;font-weight:500;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.see-atlas-page__listpanel-item-state{
  font-family:'JetBrains Mono','SF Mono',monospace;
  font-size:10px;color:rgba(241,238,232,.4);
  letter-spacing:.05em;flex-shrink:0;
}
.see-atlas-page__listpanel-empty{
  padding:24px;text-align:center;color:rgba(241,238,232,.4);font-size:13px;
}

/* ── Map stage ────────────────────────────────────────────────────── */
.see-atlas-page__stage{
  position:relative;flex:1;overflow:hidden;
  display:flex;
}

/* Filter panel */
.see-atlas-page__filters{
  position:absolute;left:24px;top:24px;z-index:6;
  width:260px;max-height:calc(100% - 48px);
  background:rgba(15,16,20,.78);
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;padding:16px;
  display:flex;flex-direction:column;gap:4px;
  backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
  overflow:auto;
}
.see-atlas-page__filters-h{
  font-size:10px;font-weight:700;color:rgba(255,255,255,.45);
  letter-spacing:.14em;text-transform:uppercase;
  padding:4px 8px 8px;margin-bottom:4px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.see-atlas-page__filter{
  display:flex;align-items:center;gap:10px;
  background:transparent;border:0;cursor:pointer;
  padding:8px 8px;border-radius:6px;
  font-family:inherit;color:rgba(255,255,255,.7);
  text-align:left;transition:background .2s,color .2s;
  font-size:13px;font-weight:500;
}
.see-atlas-page__filter:hover{background:rgba(255,255,255,.04);color:#fff}
.see-atlas-page__filter.is-active{
  background:rgba(242,178,41,.1);color:#fff;
  box-shadow:inset 0 0 0 1px rgba(242,178,41,.3);
}
.see-atlas-page__filter-dot{
  width:9px;height:9px;border-radius:50%;flex-shrink:0;
}
.see-atlas-page__filter-name{flex:1;letter-spacing:-.005em}
.see-atlas-page__filter-count{
  font-size:11px;font-weight:600;color:rgba(255,255,255,.4);
  font-variant-numeric:tabular-nums;
  padding:2px 8px;border-radius:99px;background:rgba(255,255,255,.05);
}
.see-atlas-page__filter.is-active .see-atlas-page__filter-count{
  background:rgba(242,178,41,.2);color:var(--atlas-amber);
}
.see-atlas-page__filters-hint{
  font-size:10px;font-weight:500;color:rgba(255,255,255,.3);
  letter-spacing:.04em;margin:14px 8px 0;line-height:1.5;
}

/* Map wrapper */
.see-atlas-page__map-wrap{
  flex:1;position:relative;
  cursor:grab;user-select:none;
  background-image:
    radial-gradient(circle at 50% 50%,rgba(204,27,27,.05) 0%,transparent 55%),
    radial-gradient(circle at 30% 30%,rgba(255,255,255,.015) 0%,transparent 40%);
}
.see-atlas-page__map-wrap.is-grabbing{cursor:grabbing}
.see-atlas-page__map{
  position:absolute;top:50%;left:50%;
  height:min(100%,1001px);aspect-ratio:899/1001;
  max-width:100%;
  transform:translate(-50%,-50%) scale(1);
  transform-origin:center center;
  transition:transform .25s ease-out;
}
.see-atlas-page__map.is-panning{transition:none}
.see-atlas-page__map-bg{
  width:100%;height:100%;
  filter:invert(1) brightness(.62);
  opacity:.7;display:block;pointer-events:none;
}

/* Scan line */
.see-atlas-page__scan{
  position:absolute;left:0;right:0;height:2px;
  background:linear-gradient(90deg,transparent 5%,rgba(242,178,41,.4) 50%,transparent 95%);
  opacity:.6;pointer-events:none;
  animation:see-atlas-scan 9s linear infinite;
}
@keyframes see-atlas-scan{
  0%   { top:0%;   opacity:0 }
  10%  { opacity:.6 }
  90%  { opacity:.6 }
  100% { top:100%; opacity:0 }
}

/* Hint */
.see-atlas-page__hint{
  position:absolute;bottom:16px;left:50%;transform:translateX(-50%);
  font-size:10px;font-weight:500;color:rgba(255,255,255,.35);
  letter-spacing:.08em;text-transform:uppercase;
  background:rgba(0,0,0,.4);padding:6px 12px;border-radius:99px;
  pointer-events:none;
}

/* ── Pins ────────────────────────────────────────────────────────── */
.see-atlas-pin{
  position:absolute;width:14px;height:14px;
  transform:translate(-50%,-50%);
  background:transparent;border:0;padding:0;cursor:pointer;
  z-index:3;
  transition:opacity .2s,transform .25s;
}
.see-atlas-pin.is-dim{opacity:.08;pointer-events:none}
.see-atlas-pin.is-loading{opacity:0;transform:translate(-50%,calc(-50% - 12px))}
.see-atlas-pin__dot{
  position:absolute;inset:0;border-radius:50%;
  background:var(--c,#fff);
  box-shadow:0 0 0 0 var(--c,#fff);
  animation:see-atlas-pin-pulse 2.6s ease-out infinite;
}
.see-atlas-pin:hover{z-index:5}
.see-atlas-pin:hover .see-atlas-pin__dot{
  transform:scale(1.5);transition:transform .15s;
}
@keyframes see-atlas-pin-pulse{
  0%   { box-shadow:0 0 0 0   var(--c) }
  70%  { box-shadow:0 0 0 14px transparent }
  100% { box-shadow:0 0 0 0   transparent }
}
.see-atlas-pin--hq{width:22px;height:22px;z-index:4}
.see-atlas-pin--hq .see-atlas-pin__dot{
  background:#CC1B1B;box-shadow:0 0 0 3px #fff;
  animation:none;
}
.see-atlas-pin--featured{width:18px;height:18px;z-index:4}
.see-atlas-pin__tag{
  position:absolute;top:-22px;left:50%;transform:translateX(-50%);
  font-size:9px;font-weight:700;color:#fff;background:#CC1B1B;
  padding:3px 6px;border-radius:3px;letter-spacing:.08em;
}
.see-atlas-pin__tip{
  position:absolute;bottom:calc(100% + 14px);left:50%;transform:translateX(-50%);
  background:#fff;color:var(--atlas-bg);
  padding:8px 12px;border-radius:6px;
  font-size:11px;line-height:1.3;white-space:nowrap;
  opacity:0;pointer-events:none;transition:opacity .15s;z-index:6;
  box-shadow:0 8px 22px rgba(0,0,0,.45);
  display:flex;flex-direction:column;gap:2px;
}
.see-atlas-pin__tip strong{font-weight:600}
.see-atlas-pin__tip span{font-size:10px;color:#666;font-weight:500}
.see-atlas-pin__tip::after{
  content:'';position:absolute;top:100%;left:50%;transform:translateX(-50%);
  border:5px solid transparent;border-top-color:#fff;
}
.see-atlas-pin:hover .see-atlas-pin__tip,
.see-atlas-pin:focus .see-atlas-pin__tip{opacity:1}

/* ── Zoom controls ───────────────────────────────────────────────── */
.see-atlas-page__zoom{
  position:absolute;right:24px;top:50%;transform:translateY(-50%);
  z-index:6;
  display:flex;flex-direction:column;gap:6px;
  background:rgba(15,16,20,.78);
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;padding:6px;
  backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
}
.see-atlas-page__zoom button{
  width:38px;height:38px;border:0;border-radius:8px;
  background:rgba(255,255,255,.05);color:#fff;cursor:pointer;
  font-size:18px;font-weight:600;font-family:inherit;
  transition:background .15s,color .15s;
}
.see-atlas-page__zoom button:hover{background:rgba(255,255,255,.12)}
.see-atlas-page__zoom-reset{font-size:14px !important}
.see-atlas-page__zoom-val{
  font-size:10px;font-weight:600;color:rgba(255,255,255,.55);
  text-align:center;padding:6px 0;
  letter-spacing:.04em;font-variant-numeric:tabular-nums;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

/* ── Stats stack ─────────────────────────────────────────────────── */
.see-atlas-page__stats{
  position:absolute;right:24px;bottom:24px;z-index:6;
  display:flex;gap:14px;
  background:rgba(15,16,20,.78);
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;padding:14px 20px;
  backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
}
.see-atlas-page__stats > div{display:flex;flex-direction:column;gap:2px}
.see-atlas-page__stats strong{
  font-size:20px;font-weight:600;color:#fff;letter-spacing:-.02em;line-height:1;
  font-variant-numeric:tabular-nums;
}
.see-atlas-page__stats span{
  font-size:9px;font-weight:600;color:rgba(255,255,255,.45);
  letter-spacing:.08em;text-transform:uppercase;
}

/* ── Detail panel ────────────────────────────────────────────────── */
.see-atlas-page__panel{
  position:absolute;top:0;right:0;bottom:0;width:420px;max-width:90vw;
  background:#0c0c10;border-left:1px solid rgba(255,255,255,.06);
  transform:translateX(100%);transition:transform .35s cubic-bezier(.16,1,.3,1);
  z-index:20;overflow-y:auto;
  box-shadow:-30px 0 60px rgba(0,0,0,.4);
}
.see-atlas-page__panel.is-open{transform:translateX(0)}
.see-atlas-page__panel-close{
  position:absolute;top:14px;right:14px;
  width:34px;height:34px;border-radius:50%;
  background:rgba(255,255,255,.06);color:#fff;border:0;cursor:pointer;
  font-size:20px;line-height:1;z-index:2;
  transition:background .15s;
}
.see-atlas-page__panel-close:hover{background:rgba(255,255,255,.12)}
.see-atlas-page__panel-body{padding:32px 28px}

/* Panel content — injected by JS */
.see-atlas-page__pd-ey{
  font-size:11px;font-weight:600;letter-spacing:.14em;
  text-transform:uppercase;margin-bottom:12px;
}
.see-atlas-page__pd-h{
  font-size:24px;font-weight:600;letter-spacing:-.02em;line-height:1.15;
  color:#fff;margin:0 0 6px;
}
.see-atlas-page__pd-loc{
  font-size:13px;font-weight:500;color:rgba(255,255,255,.55);
  margin-bottom:24px;
}
.see-atlas-page__pd-specs{
  display:grid;grid-template-columns:1fr 1fr;gap:14px;
  padding:18px;border-radius:10px;
  background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);
  margin-bottom:24px;
}
.see-atlas-page__pd-specs > div{display:flex;flex-direction:column;gap:4px}
.see-atlas-page__pd-specs dt{
  font-size:10px;font-weight:600;color:rgba(255,255,255,.4);
  letter-spacing:.1em;text-transform:uppercase;
}
.see-atlas-page__pd-specs dd{
  font-size:15px;font-weight:600;color:#fff;margin:0;
  letter-spacing:-.005em;font-variant-numeric:tabular-nums;
}
.see-atlas-page__pd-summary{
  font-size:14px;line-height:1.65;color:rgba(255,255,255,.7);
  margin-bottom:28px;
}
.see-atlas-page__pd-cta{
  display:flex;flex-direction:column;gap:10px;
}
.see-atlas-page__pd-cta a{
  padding:14px 20px;border-radius:8px;
  font-size:13px;font-weight:600;letter-spacing:.005em;
  text-decoration:none;text-align:center;
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  transition:all .2s;
}
.see-atlas-page__pd-cta-primary{background:#CC1B1B;color:#fff}
.see-atlas-page__pd-cta-primary:hover{background:#e02323;transform:translateY(-1px)}
.see-atlas-page__pd-cta-wa{background:#25D366;color:#fff}
.see-atlas-page__pd-cta-wa:hover{background:#1da851;transform:translateY(-1px)}

/* Hidden SR list for SEO + a11y */
.see-atlas-page__sr{
  position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden;
}

/* ────────────────────────────────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────────────────────────────── */
@media (max-width:900px){
  .see-atlas-page{height:auto;min-height:0}
  .see-atlas-page__head{flex-direction:column;align-items:flex-start;gap:14px;padding:20px}
  .see-atlas-page__head-r{width:100%;justify-content:space-between}
  .see-atlas-page__counter-num{font-size:42px}
  .see-atlas-page__callout{font-size:12px;}
  .see-atlas-page__brands{padding:20px 0 24px;}
  .see-atlas-page__brands-headline{font-size:20px;margin-bottom:18px;padding:0 18px;}
  .see-atlas-page__brand-card{width:140px;height:70px;padding:10px 14px;}
  .see-atlas-page__marquee-track{animation-duration:32s;}
  .see-atlas-page__marquee-row--right .see-atlas-page__marquee-track{animation-duration:38s;}
  .see-atlas-page__stage{height:70vh;min-height:480px}
  .see-atlas-page__filters{
    position:absolute;left:0;right:0;bottom:0;top:auto;
    width:auto;max-height:140px;
    flex-direction:row;overflow-x:auto;gap:8px;
    border-radius:0;border-left:0;border-right:0;border-bottom:0;
    padding:14px 16px;
  }
  .see-atlas-page__filters-h{display:none}
  .see-atlas-page__filter{
    flex-shrink:0;flex-direction:column;align-items:center;
    padding:8px 12px;min-width:80px;text-align:center;gap:4px;
  }
  .see-atlas-page__filter-count{font-size:9px;padding:1px 6px}
  .see-atlas-page__filters-hint{display:none}
  .see-atlas-page__city-wrap{flex-shrink:0;align-self:center;}
  .see-atlas-page__city-select{
    min-width:140px;height:36px;font-size:12px;
    border:1px solid rgba(255,255,255,.14);
  }
  .see-atlas-page__listpanel{width:100%;max-width:100%;}
  .see-atlas-page__listpanel-head{padding:18px 18px 14px;}
  .see-atlas-page__listpanel-h{font-size:20px;}
  .see-atlas-page__zoom{right:12px;top:auto;bottom:160px;transform:none;flex-direction:row;gap:4px;padding:4px}
  .see-atlas-page__zoom button{width:34px;height:34px;font-size:16px}
  .see-atlas-page__zoom-val{
    border-top:0;border-bottom:0;
    border-left:1px solid rgba(255,255,255,.06);
    border-right:1px solid rgba(255,255,255,.06);
    padding:0 8px;line-height:34px;
  }
  .see-atlas-page__stats{display:none}
  .see-atlas-page__hint{display:none}
  .see-atlas-page__panel{width:100vw;max-width:100vw}
}

@media (prefers-reduced-motion:reduce){
  .see-atlas-pin__dot,
  .see-atlas-page__scan,
  .see-atlas-page__status-dot{animation:none !important}
  .see-atlas-pin.is-loading{opacity:1;transform:translate(-50%,-50%)}
}
