@import url('/ui-core.css');

html,body{height:100%}
body{overflow:hidden}
.app{
  position:relative;
  width:100%;
  height:100dvh;
  z-index:2;
}
#map{
  position:absolute;
  inset:0;
  z-index:1;
}
.topbar{
  position:absolute;
  top:14px;
  left:14px;
  right:14px;
  z-index:950;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  pointer-events:none;
}
.brand,
.chips,
.sidebar,
.detail,
.mobile-actions,
.sheet{
  pointer-events:auto;
}
.brand{
  min-width:290px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border:1px solid rgba(0,170,255,.16);
  background:rgba(3,6,15,.84);
  backdrop-filter:blur(16px) saturate(1.35);
  box-shadow:0 12px 40px rgba(0,0,0,.28),0 0 30px rgba(0,170,255,.06);
}
.brand-mark{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(0,170,255,.18);
  background:linear-gradient(180deg,rgba(0,170,255,.08),rgba(0,170,255,.03));
  overflow:hidden;
  flex:0 0 44px;
}
.brand-mark img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.brand b{
  font-family:var(--f-syne);
  font-size:16px;
  color:var(--white);
  letter-spacing:-.03em;
  line-height:1;
}
.brand b span{color:var(--b1)}
.brand small{
  display:block;
  margin-top:4px;
  font-family:var(--f-mono);
  font-size:9px;
  color:var(--txt2);
  letter-spacing:.18em;
}
.chips{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.chip{
  min-height:42px;
  padding:0 14px;
  border:1px solid rgba(0,170,255,.18);
  background:rgba(3,6,15,.82);
  color:var(--b1);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-family:var(--f-mono);
  font-size:10px;
  letter-spacing:.16em;
  text-transform:uppercase;
  backdrop-filter:blur(14px);
  box-shadow:0 8px 28px rgba(0,0,0,.2);
}
.chip.action{
  background:linear-gradient(180deg,#28beff,#008fea);
  color:#04101a;
  border-color:#28beff;
}
.chip.mode-active{
  background:linear-gradient(180deg,#28beff,#008fea);
  color:#04101a;
  border-color:#28beff;
  box-shadow:0 0 30px rgba(0,170,255,.2);
}
.sidebar{
  position:absolute;
  top:86px;
  left:14px;
  width:min(440px,calc(100vw - 28px));
  height:calc(100dvh - 100px);
  max-height:calc(100dvh - 100px);
  z-index:930;
  display:flex;
  flex-direction:column;
  border:1px solid rgba(0,170,255,.16);
  background:
    linear-gradient(180deg,rgba(255,255,255,.01),rgba(255,255,255,0)),
    linear-gradient(145deg,rgba(6,15,38,.95),rgba(3,6,15,.98));
  box-shadow:0 16px 60px rgba(0,0,0,.32),0 0 40px rgba(0,170,255,.06);
  padding:14px;
  overflow:hidden;
}
.sidebar::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--b1) 35%,transparent);
}
.sidebar-tabs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-bottom:12px;
  flex-shrink:0;
}
.tab-btn,
.sheet-tab,
.btn,
.submit-btn,
.fab{
  border:none;
  font-family:var(--f-mono);
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.tab-btn,
.sheet-tab{
  min-height:46px;
  border:1px solid rgba(0,170,255,.14);
  background:rgba(0,170,255,.03);
  color:var(--txt2);
}
.tab-btn.active,
.sheet-tab.active{
  background:linear-gradient(180deg,#28beff,#008fea);
  color:#04101a;
  box-shadow:0 0 32px rgba(0,170,255,.18);
}
.tab-panel{
  display:none;
  min-height:0;
}
.tab-panel.active{
  display:flex;
  flex-direction:column;
  flex:1;
  min-height:0;
}
.panel-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  flex-shrink:0;
}
.panel-head.compact h2{font-size:24px}
.k{
  font-family:var(--f-mono);
  font-size:9px;
  letter-spacing:.22em;
  color:var(--b1);
  opacity:.8;
  text-transform:uppercase;
}
.panel-head h2{
  margin-top:8px;
  font-family:var(--f-syne);
  font-size:30px;
  color:var(--white);
  letter-spacing:-.05em;
  line-height:.95;
}
.btn{
  min-height:42px;
  padding:0 14px;
  border:1px solid rgba(0,170,255,.18);
  background:rgba(0,170,255,.04);
  color:var(--b1);
  flex-shrink:0;
}
.form-grid{
  display:grid;
  gap:9px;
  margin-top:12px;
  min-height:0;
  overflow:auto;
  padding-right:4px;
  padding-bottom:104px;
}
.form-grid::-webkit-scrollbar{width:8px}
.form-grid::-webkit-scrollbar-thumb{background:rgba(0,170,255,.16)}
.field{
  display:grid;
  gap:6px;
}
.field span{
  font-family:var(--f-mono);
  font-size:9px;
  letter-spacing:.16em;
  color:var(--b1);
  text-transform:uppercase;
  opacity:.86;
}
.field input,.field select,.field textarea{
  width:100%;
  border:1px solid rgba(0,170,255,.16);
  background:
    linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,0)),
    rgba(0,170,255,.035);
  color:var(--txt);
  outline:none;
  border-radius:12px;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.015);
}
.field input,.field select{
  min-height:48px;
  padding:0 14px;
}
.field textarea{
  min-height:110px;
  resize:vertical;
  padding:14px;
}
.field select{
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 5l4 4 4-4' stroke='%2300aaff' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  padding-right:42px;
}
.field input::placeholder,.field textarea::placeholder{color:var(--txt3)}
.field input:focus,.field select:focus,.field textarea:focus{
  border-color:rgba(0,170,255,.45);
  box-shadow:0 0 0 3px rgba(0,170,255,.10),0 0 24px rgba(0,170,255,.12);
}
.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9px;
}
.toggles{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.toggle{
  min-height:40px;
  padding:0 10px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid rgba(0,170,255,.12);
  background:rgba(0,170,255,.03);
  color:var(--txt2);
  font-family:var(--f-mono);
  font-size:10px;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.toggle input{accent-color:var(--b1)}
.results-meta{
  margin-top:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-family:var(--f-mono);
  font-size:10px;
  letter-spacing:.16em;
  color:var(--txt3);
  text-transform:uppercase;
  flex-shrink:0;
}
.list{
  margin-top:10px;
  min-height:0;
  flex:1;
  overflow:auto;
  display:grid;
  gap:10px;
  padding-right:2px;
}
.list::-webkit-scrollbar{width:8px}
.list::-webkit-scrollbar-thumb{background:rgba(0,170,255,.18)}
.item{
  position:relative;
  border:1px solid rgba(0,170,255,.14);
  background:
    linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,0)),
    rgba(0,170,255,.04);
  padding:15px;
  cursor:pointer;
  overflow:hidden;
  transition:transform .2s var(--ease),border-color .2s var(--ease),background .2s var(--ease),box-shadow .2s var(--ease);
}
.item::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--b1),transparent);
  opacity:.55;
}
.item:hover{
  transform:translateY(-2px);
  border-color:rgba(0,170,255,.32);
  background:
    linear-gradient(180deg,rgba(255,255,255,.025),rgba(255,255,255,0)),
    rgba(0,170,255,.065);
  box-shadow:0 0 30px rgba(0,170,255,.10);
}
.item.active{
  border-color:rgba(0,170,255,.56);
  background:
    linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,0)),
    rgba(0,170,255,.10);
  box-shadow:0 0 36px rgba(0,170,255,.14);
}
.item h3{
  font-family:var(--f-syne);
  font-size:18px;
  color:var(--white);
  letter-spacing:-.04em;
  line-height:.95;
}
.item p{
  margin-top:7px;
  color:var(--txt2);
  font-size:12px;
  line-height:1.65;
}
.badges{
  margin-top:12px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.badge{
  min-height:28px;
  padding:0 10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(0,170,255,.18);
  font-family:var(--f-mono);
  font-size:9px;
  color:var(--b1);
  letter-spacing:.14em;
  text-transform:uppercase;
  background:rgba(0,170,255,.05);
}
.quick-actions{
  position:sticky;
  bottom:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  padding-top:12px;
  margin-top:12px;
  background:linear-gradient(180deg,rgba(3,6,15,0),rgba(3,6,15,.96) 28%);
}
.submit-btn{
  min-height:48px;
  background:linear-gradient(180deg,#28beff,#008fea);
  color:#04101a;
  box-shadow:0 0 34px rgba(0,170,255,.22);
}
.submit-status{
  min-height:18px;
  color:var(--txt2);
  font-size:13px;
}
.submit-status.ok{color:#7ff3ca}
.submit-status.err{color:#ff9e9e}
.detail{
  position:absolute;
  right:14px;
  bottom:14px;
  width:min(430px,calc(100vw - 28px));
  max-height:min(54dvh,520px);
  z-index:930;
  border:1px solid rgba(0,170,255,.16);
  background:
    linear-gradient(180deg,rgba(255,255,255,.01),rgba(255,255,255,0)),
    rgba(3,6,15,.9);
  backdrop-filter:blur(18px) saturate(1.45);
  box-shadow:0 16px 60px rgba(0,0,0,.32),0 0 34px rgba(0,170,255,.06);
  padding:16px;
  overflow:auto;
}
.detail h2{
  font-family:var(--f-syne);
  font-size:24px;
  color:var(--white);
  letter-spacing:-.03em;
  line-height:.95;
}
.detail .sub{
  margin-top:8px;
  color:var(--txt2);
  font-size:13px;
  line-height:1.68;
}
.detail-grid{
  margin-top:12px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.dbox{
  border:1px solid rgba(0,170,255,.12);
  background:rgba(0,170,255,.035);
  padding:10px 12px;
}
.dbox span{
  display:block;
  font-family:var(--f-mono);
  font-size:9px;
  color:var(--txt3);
  letter-spacing:.16em;
  text-transform:uppercase;
}
.dbox strong{
  display:block;
  margin-top:7px;
  color:var(--txt);
  font-family:var(--f-mono);
  font-size:11px;
  letter-spacing:.08em;
}
.detail-cover{
  margin:12px 0 12px;
  border:1px solid rgba(0,170,255,.14);
  overflow:hidden;
  background:rgba(0,170,255,.03);
}
.detail-cover img{
  display:block;
  width:100%;
  height:210px;
  object-fit:cover;
}
.detail-thumbs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:0 0 14px;
}
.detail-thumb{
  width:58px;
  height:58px;
  border:1px solid rgba(0,170,255,.16);
  background:rgba(0,170,255,.04);
  overflow:hidden;
}
.detail-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.upload-builder{
  margin-top:10px;
}
.upload-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
  font-family:var(--f-mono);
  font-size:10px;
  letter-spacing:.14em;
  color:var(--txt2);
  text-transform:uppercase;
}
.upload-head strong{
  color:var(--b1);
}
.upload-grid{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.upload-slot{
  width:84px;
  height:84px;
  border:1px solid rgba(0,170,255,.16);
  background:
    linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,0)),
    rgba(0,170,255,.04);
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .2s var(--ease),border-color .2s var(--ease),box-shadow .2s var(--ease);
}
.upload-slot:hover{
  transform:translateY(-2px);
  border-color:rgba(0,170,255,.34);
  box-shadow:0 0 24px rgba(0,170,255,.10);
}
.upload-slot.add{
  color:var(--b1);
  font-family:var(--f-syne);
  font-size:34px;
  font-weight:900;
}
.upload-slot.filled img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.upload-remove{
  position:absolute;
  top:6px;
  right:6px;
  width:22px;
  height:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(3,6,15,.84);
  color:#fff;
  font-size:14px;
  line-height:1;
}
.detail-actions{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.mobile-actions{
  position:absolute;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:940;
  display:none;
  gap:10px;
  padding-bottom:calc(env(safe-area-inset-bottom) * .35);
}
.fab{
  flex:1;
  min-height:56px;
  border:1px solid rgba(0,170,255,.18);
  background:
    linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,0)),
    rgba(3,6,15,.90);
  color:var(--b1);
  backdrop-filter:blur(16px);
  box-shadow:0 10px 26px rgba(0,0,0,.22),0 0 20px rgba(0,170,255,.05);
}
.fab.primary{
  background:linear-gradient(180deg,#35c6ff,#0b94ea);
  color:#04101a;
  border:none;
  box-shadow:0 12px 32px rgba(0,170,255,.22);
}
.sheet{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:960;
  height:min(90dvh,920px);
  border-top:1px solid rgba(0,170,255,.18);
  background:
    linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,0)),
    linear-gradient(180deg,rgba(3,6,15,.84),rgba(3,6,15,.99));
  backdrop-filter:blur(20px) saturate(1.45);
  transform:translateY(calc(100% - 74px));
  transition:transform .35s var(--ease);
  display:none;
  box-shadow:0 -18px 60px rgba(0,0,0,.30),0 0 40px rgba(0,170,255,.05);
}
.sheet.open{transform:translateY(0)}
.sheet-handle{
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.handle-bar{
  width:52px;
  height:4px;
  background:rgba(0,170,255,.26);
}
.panel-dock-btn{
  position:absolute;
  top:0;
  bottom:0;
  width:14px;
  padding:0;
  border:none;
  background:transparent;
  color:transparent;
  z-index:20;
  transition:opacity .2s var(--ease),filter .2s var(--ease);
}
.panel-dock-btn::before{
  content:'';
  position:absolute;
  top:10px;
  bottom:10px;
  left:50%;
  width:1px;
  transform:translateX(-50%);
  background:linear-gradient(180deg,transparent,rgba(0,170,255,.16) 8%,rgba(0,170,255,.72) 50%,rgba(0,170,255,.16) 92%,transparent);
  box-shadow:0 0 10px rgba(0,170,255,.24);
}
.panel-dock-btn::after{
  content:'';
  position:absolute;
  top:0;
  bottom:0;
  width:100%;
  left:0;
  background:linear-gradient(180deg,rgba(255,255,255,.015),rgba(255,255,255,0));
  opacity:.45;
}
.panel-dock-btn:hover{
  filter:drop-shadow(0 0 10px rgba(0,170,255,.22));
}
.panel-dock-left{
  right:0;
  border-left:1px solid rgba(0,170,255,.08);
  background:linear-gradient(90deg,rgba(0,170,255,0),rgba(0,170,255,.03));
}
.panel-dock-right{
  left:0;
  border-right:1px solid rgba(0,170,255,.08);
  background:linear-gradient(270deg,rgba(0,170,255,0),rgba(0,170,255,.03));
}
.sidebar,.detail{
  transition:transform .28s var(--ease),opacity .28s var(--ease);
}
.sidebar.is-collapsed{
  transform:translateX(calc(-100% + 14px));
}
.detail.is-collapsed{
  transform:translateX(calc(100% - 14px));
}
.sidebar.is-collapsed .sidebar-tabs,
.sidebar.is-collapsed .tab-panel{
  opacity:0;
  pointer-events:none;
}
.detail.is-collapsed > :not(.panel-dock-btn){
  opacity:0;
  pointer-events:none;
}
.sheet-tabs{
  display:grid;
  grid-template-columns:1fr 1fr auto;
  gap:8px;
  padding:0 12px 12px;
  flex-shrink:0;
  position:sticky;
  top:0;
  background:linear-gradient(180deg,rgba(3,6,15,.98),rgba(3,6,15,.88));
  z-index:5;
}
.sheet-close{
  min-height:48px;
  padding:0 14px;
  border:none;
  background:rgba(255,255,255,.04);
  color:var(--txt2);
  font-family:var(--f-mono);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.sheet-body{
  padding:0 12px calc(14px + env(safe-area-inset-bottom));
  min-height:0;
  flex:1;
  overflow:auto;
  display:flex;
  flex-direction:column;
}
.sheet-panel{display:none}
.sheet-panel.active{
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.mobile-list{
  max-height:none;
  padding-bottom:8px;
}
.blip-shell{
  position:relative;
  width:22px;
  height:22px;
}
.blip-ring{
  position:absolute;
  inset:0;
  border-radius:999px;
  border:1px solid rgba(0,170,255,.42);
  animation:blipRing 1.8s infinite ease-out;
}
.blip-core{
  position:absolute;
  inset:5px;
  border-radius:999px;
  background:var(--inner);
  box-shadow:0 0 0 1px rgba(255,255,255,.15),0 0 18px var(--glow);
}
@keyframes blipRing{
  0%{transform:scale(.7);opacity:.9}
  100%{transform:scale(1.65);opacity:0}
}
@media (max-width:1180px){
  .sidebar{
    width:min(400px,calc(100vw - 28px));
    height:calc(100dvh - 100px);
    max-height:calc(100dvh - 100px);
  }
  .detail{width:min(370px,calc(100vw - 28px))}
}
@media (max-width:920px){
  .sidebar{display:none}
  .panel-dock-btn{display:none}
  .mobile-actions{display:flex}
  .sheet{display:flex;flex-direction:column}
  .detail{
    left:12px;
    right:12px;
    width:auto;
    bottom:86px;
    max-height:34dvh;
    padding:14px;
    background:
      linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,0)),
      rgba(3,6,15,.92);
    box-shadow:0 14px 36px rgba(0,0,0,.24),0 0 22px rgba(0,170,255,.05);
  }
  .detail h2{
    font-size:22px;
  }
  .detail .sub{
    font-size:12px;
    line-height:1.6;
  }
  .detail-cover img{
    height:150px;
  }
  .detail-thumbs{
    gap:7px;
    margin-bottom:12px;
  }
  .detail-thumb{
    width:52px;
    height:52px;
  }
}

@media (max-width:760px){
  .topbar{
    top:10px;
    left:10px;
    right:10px;
    gap:10px;
    flex-direction:column;
    align-items:stretch;
  }
  .brand{
    width:100%;
    min-width:0;
    padding:10px 11px;
  }
  .brand-mark{
    width:40px;
    height:40px;
    flex:0 0 40px;
  }
  .brand b{
    font-size:15px;
  }
  .brand small{
    font-size:8px;
    letter-spacing:.16em;
  }
  .chips{
    justify-content:flex-start;
  }
  .chip{
    flex:1 1 calc(50% - 4px);
    min-height:40px;
    padding:0 10px;
    font-size:9px;
    letter-spacing:.12em;
  }
  .detail-grid,.grid2,.quick-actions{
    grid-template-columns:1fr;
  }
  .detail{
    padding:13px;
    max-height:32dvh;
  }
  .panel-head{
    gap:10px;
  }
  .panel-head h2{
    font-size:23px;
  }
  .panel-head.compact h2{
    font-size:21px;
  }
  .form-grid{
    gap:8px;
    margin-top:10px;
    padding-bottom:112px;
  }
  .field span{
    font-size:8px;
  }
  .field input,.field select{
    min-height:42px;
    padding:0 11px;
    font-size:13px;
  }
  .field textarea{
    min-height:88px;
    max-height:140px;
    padding:11px;
    font-size:13px;
  }
  .toggle{
    min-height:38px;
    padding:0 9px;
    font-size:9px;
  }
  .results-meta{
    margin-top:10px;
    font-size:9px;
  }
  .list{
    gap:9px;
  }
  .item{
    padding:13px;
  }
  .item h3{
    font-size:17px;
  }
  .item p{
    font-size:11px;
  }
  .upload-slot{
    width:68px;
    height:68px;
  }
  .quick-actions{
    gap:8px;
    padding-top:10px;
    margin-top:10px;
  }
  .submit-btn{
    min-height:50px;
  }
  .sheet{
    height:calc(100dvh - 72px);
    transform:translateY(calc(100% - 70px));
  }
  .sheet-body{
    padding:0 10px calc(12px + env(safe-area-inset-bottom));
  }
}

@media (max-width:520px){
  .chip{
    flex:1 1 100%;
  }
  .detail{
    bottom:82px;
    max-height:30dvh;
  }
  .detail h2{
    font-size:20px;
  }
  .detail-cover img{
    height:132px;
  }
  .detail-thumb{
    width:46px;
    height:46px;
  }
  .fab{
    min-height:52px;
    font-size:10px;
    letter-spacing:.12em;
  }
  .sheet-tabs{
    grid-template-columns:1fr 1fr;
  }
  .sheet-close{
    grid-column:1 / -1;
  }
}


.field input,.field select,.field textarea{
  width:100%;
  border:1px solid rgba(0,170,255,.16);
  background:
    linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,0)),
    rgba(0,170,255,.035);
  color:var(--txt);
  outline:none;
  border-radius:12px;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.015);
}
.field input,.field select{
  min-height:48px;
  padding:0 14px;
}
.field textarea{
  min-height:110px;
  resize:vertical;
  padding:14px;
}
.field select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  cursor:pointer;
  font-family:var(--f-mono);
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--white);
  border:1px solid rgba(0,170,255,.18);
  background:
    linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,0)),
    linear-gradient(90deg,rgba(0,170,255,.05),rgba(0,170,255,0)),
    rgba(0,170,255,.04);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.015),
    0 0 0 0 rgba(0,170,255,0);
  background-image:
    linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,0)),
    linear-gradient(90deg,rgba(0,170,255,.05),rgba(0,170,255,0)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 5l4 4 4-4' stroke='%2300aaff' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat,no-repeat,no-repeat;
  background-position:0 0,0 0,right 14px center;
  background-size:auto,auto,14px 14px;
  padding-right:44px;
}
.field select:hover{
  border-color:rgba(0,170,255,.34);
  background-image:
    linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,0)),
    linear-gradient(90deg,rgba(0,170,255,.07),rgba(0,170,255,0)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 5l4 4 4-4' stroke='%2300aaff' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  box-shadow:0 0 22px rgba(0,170,255,.08);
}
.field select:focus{
  border-color:rgba(0,170,255,.46);
  box-shadow:0 0 0 3px rgba(0,170,255,.10),0 0 24px rgba(0,170,255,.14);
}
.field select option{
  background:#07101f;
  color:#d8eeff;
  font-family:var(--f-mono);
  font-size:11px;
}
.field select option[disabled]{
  color:#5d7695;
}
.field input::placeholder,.field textarea::placeholder{color:var(--txt3)}
.field input:focus,.field textarea:focus{
  border-color:rgba(0,170,255,.45);
  box-shadow:0 0 0 3px rgba(0,170,255,.10),0 0 24px rgba(0,170,255,.12);
}
.leaflet-container{background:#020611}
.leaflet-control-zoom a{
  background:rgba(9,17,36,.94)!important;
  color:var(--b1)!important;
  border-color:rgba(0,170,255,.14)!important;
}
.leaflet-bar{border:none!important;box-shadow:none!important}
.leaflet-control-layers{
  background:rgba(9,17,36,.96)!important;
  color:var(--txt)!important;
  border:1px solid rgba(0,170,255,.14)!important;
  box-shadow:0 0 40px rgba(0,170,255,.06)!important
}