﻿* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, system-ui, sans-serif;
  background: #eef3f4;
  color: #1a1a1a;
}
.app-body { padding-bottom: 72px; }
.app-header {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  background: #087f8c;
  color: #fff;
}
.app-header.compact { padding: 8px 14px; }
.brand {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.brand-logo {
  display: none;
  width: 132px;
  height: 30px;
  object-fit: contain;
  object-position: left center;
  opacity: 0.78;
  filter: saturate(0.92) brightness(1.04);
  transition: opacity 0.18s ease, filter 0.18s ease;
}
.brand:hover .brand-logo,
.sky-logo-chip:hover img,
.sky-logo-chip:hover .brand-logo {
  opacity: 0.96;
  filter: saturate(1) brightness(1.06);
}
.sky-logo-chip {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
  color: inherit;
}
.sky-logo-chip .brand-logo,
.sky-logo-chip img {
  display: block;
  width: 128px;
  height: 28px;
  object-fit: contain;
  object-position: center;
  opacity: 0.78;
  filter: saturate(0.92) brightness(1.04);
  transition: opacity 0.18s ease, filter 0.18s ease;
}
.brand-text { display: inline; }
.top-nav {
  display: flex;
  gap: 2px;
  align-items: center;
  overflow-x: auto;
  max-width: min(72vw, 560px);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.top-nav::-webkit-scrollbar { display: none; }
a.nav-link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  padding: 6px 8px;
  border-radius: 999px;
  opacity: 0.85;
  white-space: nowrap;
  flex: 0 0 auto;
}
a.nav-link.is-active { background: rgba(255,255,255,.2); opacity: 1; }
.header-right {
  margin-left: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}
.header-right span { opacity: 0.9; }
.header-right button {
  border: 0;
  border-radius: 8px;
  padding: 7px 10px;
  cursor: pointer;
  font-weight: 700;
}
.feed-bell {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
}
.feed-bell svg {
  width: 20px;
  height: 20px;
}
.feed-bell-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e11d48;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 16px;
  text-align: center;
}
.search-pill input, .search-pill select, .map-search input {
  padding: 11px 12px;
  border: 1px solid #cfd8dc;
  border-radius: 10px;
  font-size: 16px;
}
.search-pill button, .map-search > button, .sync-bar button {
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  background: #087f8c;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.error { color: #c62828; font-size: 14px; }
body.feed-body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: #1c2a2f;
  background: #f5f6f7;
  letter-spacing: -0.01em;
}
body.feed-body h1,
body.feed-body h2,
body.feed-body h3,
body.feed-body .kho-mine-code,
body.feed-body .feed-card-title {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: -0.03em;
}
.kho-layout {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: 0;
}
.kho-vtabs {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 18px 12px;
  border-right: 1px solid #eceff1;
  background: #fff;
}
.kho-vtabs-label {
  margin: 0 8px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a9aa0;
}
.kho-vtab {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  border-left: 2px solid transparent;
  border-radius: 0 10px 10px 0;
  padding: 12px 14px;
  background: transparent;
  color: #617278;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.kho-vtab:hover {
  color: #15262b;
  background: #f7f8f9;
}
.kho-vtab.is-on {
  color: #e03a3a;
  background: #fff5f5;
  border-left-color: #e03a3a;
  font-weight: 700;
}
a.kho-vtab {
  box-sizing: border-box;
}
.kho-content {
  min-width: 0;
  background: #f5f6f7;
}
.kho-pane[hidden] {
  display: none !important;
}
.kho-mine-head {
  padding: 22px 20px 6px;
  background: #fff;
  border-bottom: 1px solid #eceff1;
}
.kho-mine-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.kho-mine-head h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #142226;
}
.kho-mine-head p {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: #7a8b91;
}
.kho-mine-add {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #e03a3a;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(224, 58, 58, 0.22);
}
.kho-mine-add:hover {
  background: #c92f2f;
}
.kho-mine-body {
  padding: 12px 16px 32px;
}
.kho-mine-summary {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 -16px 8px;
  padding: 0 8px;
  background: #fff;
  border-bottom: 1px solid #eceff1;
}
.kho-mine-total {
  display: none;
}
.kho-mine-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.kho-mine-chips::-webkit-scrollbar {
  display: none;
}
.kho-mine-chip {
  flex: 0 0 auto;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #6a7b80;
  border-radius: 0;
  padding: 12px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}
.kho-mine-chip.is-on {
  border-color: #e03a3a;
  background: transparent;
  color: #e03a3a;
  font-weight: 700;
}
.kho-mine-empty {
  margin: 24px 0;
  text-align: center;
  color: #6a7b80;
  font-size: 14px;
}
.kho-mine-empty-box {
  margin: 48px auto 12px;
  max-width: 320px;
  text-align: center;
  color: #5c6d73;
}
.kho-mine-empty-ico {
  width: 88px;
  height: 88px;
  margin: 0 auto 14px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 68% 32%, rgba(224, 58, 58, 0.16), transparent 46%),
    linear-gradient(160deg, #f2f4f5 0%, #e8eef0 100%);
  position: relative;
}
.kho-mine-empty-ico::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 28px;
  height: 8px;
  border-radius: 999px;
  background: rgba(90, 110, 118, 0.18);
  box-shadow: 0 14px 0 rgba(90, 110, 118, 0.12), 0 28px 0 rgba(90, 110, 118, 0.08);
}
.kho-mine-empty-ico::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  right: 18px;
  bottom: 18px;
  border: 3px solid #e03a3a;
  border-radius: 999px;
  box-shadow: 10px 10px 0 -11px #e03a3a;
}
.kho-mine-empty-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}
.kho-mine-empty-box b {
  color: #1c2a2f;
  font-weight: 700;
}
.kho-mine-empty-cta {
  margin-top: 18px;
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  background: #e03a3a;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.kho-mine-empty-hint {
  margin-top: 12px !important;
  font-size: 12px !important;
  color: #7a8b90 !important;
}
.kho-mine-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eceff1;
}
.kho-mine-card {
  background: #fff;
  border: 0;
  border-bottom: 1px solid #f0f2f3;
  border-radius: 0;
  padding: 16px 16px 14px;
}
.kho-mine-card:last-child {
  border-bottom: 0;
}
.kho-mine-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.kho-mine-code {
  font-size: 16px;
  font-weight: 700;
  color: #142226;
}
.kho-mine-acts {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
}
.kho-mine-acts a,
.kho-mine-acts button {
  border: 0;
  background: transparent;
  color: #e03a3a;
  border-radius: 8px;
  padding: 4px 8px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.kho-mine-acts a:hover,
.kho-mine-acts button:hover {
  background: #fff5f5;
}
.kho-mine-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.kho-mine-meta span {
  font-size: 11px;
  font-weight: 650;
  color: #5a6c72;
  background: #f4f6f7;
  border-radius: 999px;
  padding: 4px 9px;
}
.kho-mine-addr {
  margin: 10px 0 0;
  font-size: 13px;
  color: #44555b;
  line-height: 1.45;
}
.kho-mine-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 10px;
  font-size: 12px;
  color: #7a8b91;
}
.kho-mine-facts a {
  color: #0b6e78;
  font-weight: 600;
}
.feed-main { max-width: 760px; margin: 0 auto; padding: 16px 16px 24px; }
.search-pill {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: #fff;
  padding: 10px;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  margin-bottom: 12px;
}
.search-pill input { flex: 1; min-width: 160px; }
.me-main { max-width: 920px; margin: 0 auto; padding: 16px 16px 24px; }
.me-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 1px 6px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.me-card h1 { margin: 0; font-size: 20px; color: #0b4f56; }
.me-card h2 { margin: 0; font-size: 18px; color: #0b4f56; }
.me-code { margin: 0; font-weight: 800; color: #087f8c; }
.me-card label { display: flex; flex-direction: column; gap: 6px; font-weight: 700; font-size: 13px; color: #33464b; }
.me-card input {
  padding: 10px 12px;
  border: 1px solid #cfd8dc;
  border-radius: 10px;
  font-size: 16px;
}
.me-ro { padding: 10px 12px; background: #f4f8f9; border-radius: 10px; font-weight: 650; }
.me-profile-sheet {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.me-id-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.me-id-copy {
  min-width: 0;
  flex: 1;
}
.me-id-code {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #9aa6ad;
}
.me-id-name {
  margin-top: 2px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  color: #1a1a1a;
  text-transform: uppercase;
}
.me-id-job {
  margin-top: 2px;
  font-size: 13px;
  color: #5f6e75;
}
.me-acc {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.me-acc > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 800;
  color: #1a1a1a;
}
.me-acc > summary::-webkit-details-marker {
  display: none;
}
.me-acc > summary::after {
  content: "▾";
  color: #90a4ae;
  font-size: 14px;
}
.me-acc[open] > summary::after {
  content: "▴";
}
.me-acc-body {
  padding: 0 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #f0f3f4;
}
.me-acc-body label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  color: #33464b;
}
.me-acc-body input,
.me-acc-body select {
  padding: 10px 12px;
  border: 1px solid #cfd8dc;
  border-radius: 10px;
  font-size: 16px;
  background: #fff;
  min-height: 44px;
}
.me-kv {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 13px;
}
.me-kv span {
  color: #8a969c;
  font-weight: 650;
  flex: 0 0 38%;
}
.me-kv b {
  flex: 1;
  text-align: right;
  font-weight: 700;
  color: #1a1a1a;
  word-break: break-word;
}
.me-role-box {
  padding: 12px 14px;
  border-radius: 10px;
  background: #f4f6f7;
  font-weight: 800;
  color: #1a1a1a;
}
.me-pane.is-profile {
  background: #f2f4f5;
}
.me-right-block {
  padding-top: 8px;
  border-top: 1px solid #f0f3f4;
}
.me-right-link {
  border: 0;
  background: transparent;
  padding: 0;
  color: #087f8c;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.me-body.is-rights #meMainHead,
.me-body.is-rights #meTabs,
.me-body.is-rights .dock {
  display: none !important;
}
.me-body.is-rights .me-pane {
  padding: 0;
  overflow: hidden;
}
.me-rights-pane {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #eef2f3;
  font-size: 12px;
}
.me-rights-pane .skyland-notify-title b {
  font-size: 15px;
  font-weight: 800;
}
.me-right-tabs {
  background: #fff;
  min-height: 40px;
}
.me-right-tabs button {
  font-size: 12px;
  font-weight: 700;
  padding: 8px 10px 7px;
}
.me-rights-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 8px 10px 20px;
  background: #eef2f3;
}
.me-rights-card {
  background: #fff;
  border-radius: 14px;
  padding: 10px 10px 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.me-rights-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.me-rights-card-head b {
  font-size: 13px;
  font-weight: 800;
  color: #1a1a1a;
}
.me-rights-card-head em {
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  color: #5f6e75;
}
.me-rights-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  font-size: 11px;
  color: #087f8c;
}
.me-rights-actions button {
  border: 0;
  background: transparent;
  padding: 0;
  color: #087f8c;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.me-rights-group {
  margin: 0 0 6px;
  border-radius: 10px;
  background: #f4f6f7;
  overflow: hidden;
}
.me-rights-group > summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 6px 10px;
  cursor: pointer;
}
.me-rights-group > summary::-webkit-details-marker {
  display: none;
}
.me-rights-dot {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 50%;
  border: 1.5px solid #c5ced2;
  background: #fff;
  box-sizing: border-box;
}
.me-rights-dot.is-on {
  border-color: #1faa59;
  background: #1faa59;
  box-shadow: inset 0 0 0 3px #fff;
}
.me-rights-gname {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}
.me-rights-gname i {
  font-style: normal;
  font-weight: 650;
  color: #6b7780;
}
.me-rights-chev {
  width: 8px;
  height: 8px;
  border-right: 1.6px solid #90a4ae;
  border-bottom: 1.6px solid #90a4ae;
  transform: rotate(45deg);
  margin-top: -3px;
}
.me-rights-group[open] > summary .me-rights-chev {
  transform: rotate(-135deg);
  margin-top: 3px;
}
.me-rights-subs {
  padding: 0 8px 8px 34px;
}
.me-rights-subs .me-right-check {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 4px 0;
  min-height: 28px;
  font-size: 11.5px;
  font-weight: 650;
  color: #33464b;
  border: 0;
}
.me-rights-subs .me-right-check input {
  width: 14px;
  height: 14px;
  min-height: 14px;
  margin: 0;
  padding: 0;
  flex: 0 0 14px;
  accent-color: #1faa59;
  pointer-events: none;
}
@media (min-width: 900px) {
  .me-rights-pane .skyland-notify-title b {
    font-size: 16px;
  }
  .me-right-tabs button {
    font-size: 13px;
  }
  .me-rights-gname {
    font-size: 13px;
  }
  .me-rights-subs .me-right-check {
    font-size: 12px;
    min-height: 30px;
  }
}
.me-right-label {
  margin: 4px 0 6px;
  font-size: 12px;
  font-weight: 700;
  color: #8a969c;
}
.me-right-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: #1a1a1a;
}
.me-right-row span {
  font-weight: 650;
}
.me-right-row b {
  font-weight: 700;
  color: #087f8c;
  text-align: right;
}
.me-profile-sheet.is-view .me-edit {
  display: none !important;
}
.me-profile-sheet.is-edit .me-view {
  display: none !important;
}
.me-profile-sheet.is-view #meSaveBtn,
.me-profile-sheet.is-view #meCancelBtn {
  display: none;
}
.me-profile-sheet.is-edit #meEditBtn {
  display: none;
}
.me-submit-ghost {
  background: #e8eef0;
  color: #33464b;
}
.me-kv b a {
  color: #087f8c;
  font-weight: 800;
  text-decoration: none;
}
.me-profile-savebar {
  position: sticky;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(242, 244, 245, 0), #f2f4f5 28%);
}
.me-avatar {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  padding: 0;
  background: #e8f3f4;
  color: #087f8c;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  position: relative;
}
.me-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.admin-user-ava {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: #e8f3f4;
  flex: 0 0 36px;
}
.me-submit {
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  background: #087f8c;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.me-body {
  background: #fff;
  padding-bottom: 0;
}
.me-shell {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.me-head-pad {
  visibility: hidden;
  pointer-events: none;
}
.me-pane {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 8px 10px 88px;
}
.me-tab-pane[hidden] {
  display: none !important;
}
a.skyland-mine-goto,
a.skyland-mine-edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
@media (min-width: 900px) {
  .me-body {
    background: #eef3f4;
    padding-bottom: 72px;
  }
  .me-shell {
    width: min(480px, calc(100vw - 32px));
    min-height: min(720px, calc(100vh - 120px));
    max-height: calc(100vh - 120px);
    margin: 24px auto 16px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.16);
  }
  .me-pane {
    padding-bottom: 24px;
  }
}
html.me-embed,
body.me-embed {
  background: #fff;
  height: 100%;
  padding-bottom: 0;
}
body.me-embed .dock {
  display: none !important;
}
body.me-embed .me-shell {
  width: 100%;
  min-height: 100%;
  max-height: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
body.me-embed .me-pane {
  padding-bottom: 16px;
}
.org-table-wrap { overflow-x: auto; }
.org-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.org-table th, .org-table td {
  text-align: left;
  padding: 8px 6px;
  border-bottom: 1px solid #eef2f4;
  white-space: nowrap;
}
.org-table th { color: #546e7a; font-size: 12px; font-weight: 700; }
.admin-org-form { align-items: center; }
.admin-org-form p { flex: 1 1 100%; margin: 0; }
.note { color: #546e7a; font-size: 13px; }
.source-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  margin: 12px 0;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.source-card h2 { margin: 6px 0 4px; font-size: 17px; color: #087f8c; }
.source-card p { margin: 8px 0 0; line-height: 1.45; white-space: pre-wrap; }
.card-top { display: flex; gap: 8px; align-items: center; }
.ma { font-weight: 800; font-size: 13px; }
.badge {
  background: #e0f4f6;
  color: #066c76;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
}
.type, .stats, .meta { font-size: 13px; color: #546e7a; }
.stats { font-weight: 700; color: #103d43; margin-top: 4px; }
.card-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
@media (min-width: 900px) {
  .source-card .card-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 18px;
  }
  .source-card .kv.kv-span {
    grid-column: 1 / -1;
  }
}
.chip {
  display: inline-block;
  border: 1px solid #1593a0;
  color: #087f8b;
  background: #fff;
  border-radius: 7px;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.sync-bar { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.admin-users { margin: 0 0 20px; padding: 14px; border: 1px solid #d5dee3; border-radius: 12px; background: #fff; }
.admin-users h2 { margin: 0 0 8px; font-size: 16px; }
.stats-main .admin-users {
  margin: 0;
  border-radius: 16px;
}
.stats-body .news-main {
  padding-bottom: 88px;
}
.admin-user-form { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.admin-user-form input, .admin-user-form select { flex: 1 1 140px; padding: 8px 10px; border: 1px solid #c5d0d6; border-radius: 8px; }
.admin-user-form button { padding: 8px 12px; border: 0; border-radius: 8px; background: #087f8c; color: #fff; font-weight: 700; cursor: pointer; }
.admin-user-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: flex-start; padding: 10px 0; border-top: 1px solid #eef2f4; font-size: 13px; }
.admin-user-row.is-pending { background: #fff8ef; margin: 0 -8px; padding-left: 8px; padding-right: 8px; border-radius: 10px; }
.admin-user-row button.danger { border-color: #b23b3b; color: #b23b3b; }
.admin-user-row .admin-user-meta { flex: 1 1 220px; }
.admin-user-acts { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.admin-user-row > .admin-edit-panel { flex: 1 1 100%; }
.admin-edit-panel {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid #d5dee3;
  border-radius: 12px;
  background: #f7fafb;
}
.admin-edit-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 750;
  color: #0b4f56;
}
.admin-edit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
}
.admin-edit-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #5a6a72;
}
.admin-edit-field input,
.admin-edit-field select {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
  border: 1px solid #c5d0d6;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #1a2226;
  background: #fff;
}
.admin-edit-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 10px 0;
  font-size: 13px;
  font-weight: 650;
  color: #2c3a40;
}
.admin-edit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.admin-edit-actions button {
  padding: 8px 12px;
  border: 0;
  border-radius: 8px;
  background: #087f8c;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.admin-edit-actions button[data-edit-cancel] {
  background: #fff;
  color: #087f8c;
  border: 1px solid #087f8c;
}
@media (max-width: 720px) {
  .admin-edit-grid {
    grid-template-columns: 1fr 1fr;
  }
  .admin-user-acts {
    width: 100%;
  }
}
.admin-ava-upload {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  font-size: 11px;
  font-weight: 700;
  color: #087f8c;
  margin-right: 8px;
}
.admin-ava-upload input {
  max-width: 140px;
}
.ghost-btn {
  border: 1px solid #087f8c;
  background: #fff;
  color: #087f8c;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}
.feed-more-wrap { text-align: center; }
.hidden { display: none !important; }
.map-header-more,
.map-more-item,
.map-wr-item { display: none; }
.map-more-menu {
  position: fixed;
  z-index: 12040;
  min-width: 188px;
  padding: 6px;
  border: 1px solid #d5dee3;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 43, 60, 0.22);
}
.map-more-menu button,
.map-more-menu a {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #1a1a1a;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.map-more-menu button:hover,
.map-more-menu a:hover {
  background: #e8f6f7;
  color: #087f8c;
}
.map-more-settings-row {
  display: flex !important;
  align-items: center;
  gap: 10px;
}
.map-more-gear {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23087f8c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z'/%3E%3C/svg%3E");
}
.map-more-people {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23087f8c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Cpath d='M3 19c.6-2.8 2.8-4.5 6-4.5s5.4 1.7 6 4.5'/%3E%3Ccircle cx='17' cy='9' r='2.4'/%3E%3Cpath d='M21 19c-.5-2.2-2-3.6-4.2-4'/%3E%3C/svg%3E");
}
.map-more-wr {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c2410c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 20V9l9-5 9 5v11'/%3E%3Cpath d='M9 20v-6h6v6'/%3E%3C/svg%3E");
}
.map-more-person {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23087f8c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.2'/%3E%3Cpath d='M5.5 19c.8-3.2 3.4-5 6.5-5s5.7 1.8 6.5 5'/%3E%3C/svg%3E");
}
.map-settings-panel {
  display: none;
}
@media (min-width: 900px) {
  .map-settings-panel:not(.hidden) {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    right: 16px;
    bottom: 118px;
    z-index: 36;
    width: min(320px, calc(100vw - 36px));
    overflow: auto;
    border: 1px solid rgba(213, 222, 227, 0.95);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 36px rgba(15, 43, 60, 0.2);
  }
}
.map-settings-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 12px 8px 16px;
  border-bottom: 1px solid #eef2f4;
}
.map-settings-head strong {
  color: #0b4f56;
  font-size: 16px;
}
.map-settings-head button {
  border: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #eef3f4;
  font-size: 20px;
  cursor: pointer;
}
.map-settings-list {
  padding: 4px 0 10px;
}
.map-set-block {
  border-bottom: 1px solid #eef2f4;
}
.map-set-block summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 14px;
  color: #1a1a1a;
}
.map-set-block summary::-webkit-details-marker {
  display: none;
}
.map-set-block summary::after {
  content: "▾";
  float: right;
  color: #087f8c;
}
.map-set-block[open] summary::after {
  content: "▴";
}
.map-set-body {
  padding: 0 16px 12px;
}
.map-set-body p {
  margin: 0 0 10px;
  color: #546e7a;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}
.map-set-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.map-set-body button,
.map-set-actions button {
  border: 1px solid #c5d0d6;
  border-radius: 10px;
  padding: 8px 12px;
  background: #fff;
  color: #087f8c;
  font-weight: 800;
  cursor: pointer;
}
.map-set-body .cust-dd-btn {
  font-weight: 400;
  font-size: 13px;
  color: #333;
  padding: 8px 10px;
  border-radius: 8px;
}
.map-set-logout {
  display: block;
  width: calc(100% - 24px);
  margin: 10px 12px 4px;
  padding: 11px 12px;
  border: 0;
  border-radius: 10px;
  background: #f4e8e8;
  color: #b23b3b;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
}
.cust-badge {
  display: inline-block;
  margin-left: 6px;
  min-width: 18px;
  padding: 1px 6px;
  border-radius: 999px;
  background: #e11d48;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  vertical-align: middle;
}
.cust-code-row {
  font-size: 13px;
  color: #4a5d63;
}
.cust-code-row b {
  color: #0b4f56;
  font-size: 15px;
}
.cust-need-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.cust-need-form input,
.cust-need-form select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #c5d0d6;
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
}
.cust-dd {
  position: relative;
}
.cust-dd-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid #c5d0d6;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}
.cust-dd-btn span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cust-dd.open .cust-dd-btn {
  border-color: #087f8c;
}
.cust-dd-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 8;
  max-height: 220px;
  overflow: auto;
  padding: 6px;
  border: 1px solid #c5d0d6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 43, 60, 0.16);
}
.cust-dd.open .cust-dd-menu {
  display: block;
}
.cust-dd-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 400;
  color: #333;
  cursor: pointer;
}
.cust-dd-item:hover {
  background: #eef6f7;
}
.cust-need-form .cust-dd-item input {
  width: auto;
  padding: 0;
  border: 0;
}
.cust-need-form > button[type="submit"] {
  border: 0;
  border-radius: 10px;
  padding: 9px 12px;
  background: #087f8c;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.cust-row {
  padding: 8px 0;
  border-top: 1px solid #eef2f4;
  font-size: 13px;
}
.cust-row b { color: #0b4f56; }
.cust-new {
  color: #b23b3b;
  font-weight: 800;
  font-size: 12px;
}
.map-set-body .cust-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1a1a1a;
  font: inherit;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}
.cust-src {
  display: block;
  width: 100%;
  margin: 4px 0 0;
  padding: 6px 8px;
  border-radius: 10px;
  background: #e8f6f7;
  color: #087f8c;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  border: 0;
  text-align: left;
  white-space: normal;
}
.cust-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: #1a1a1a;
  font: inherit;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}
.cust-count {
  color: #087f8c;
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
}
.cust-src-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 4px;
}
.cust-src-row .cust-src {
  flex: 1;
  margin: 0;
}
.map-set-body .cust-src-x {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  margin-top: 4px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #f4e8e8;
  color: #b23b3b;
  font-weight: 800;
  font-size: 16px;
  line-height: 28px;
  cursor: pointer;
}
.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 4px;
  background: #fff;
  border-top: 1px solid #d7e2e4;
  padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
  z-index: 20;
}
.dock-item {
  flex: 0 0 auto;
  text-align: center;
  padding: 8px 10px;
  color: #5f7a80;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  border-radius: 10px;
}
.dock-item.is-active { color: #087f8c; background: #e8f6f7; }
.map-body {
  position: relative;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #dfe7ea;
  padding-bottom: 56px;
}
#map { flex: 1; min-height: 0; width: 100%; }
.map-locate-btn {
  position: absolute;
  z-index: 12;
  right: 14px;
  top: auto;
  bottom: calc(72px + env(safe-area-inset-bottom));
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23087f8c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1 1 16 0z'/%3E%3Ccircle cx='12' cy='10' r='2.7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  box-shadow: 0 4px 14px rgba(15, 43, 60, 0.28);
  cursor: pointer;
  pointer-events: auto;
}
.maplibregl-ctrl-geolocate { display: none !important; }
.map-search {
  z-index: 5;
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fff;
  padding: 8px;
  border-radius: 30px;
  position: relative;
}
.map-search-box {
  position: relative;
  flex: 1;
  min-width: 0;
}
.map-search-box input {
  width: 100%;
}
.map-search-hits {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 40;
  max-height: min(52vh, 360px);
  overflow: auto;
  background: #fff;
  color: #0f172a;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
  border: 1px solid #e5eef0;
  padding: 6px;
}
.map-search .map-search-hit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
  border: 0;
  background: #fff;
  color: #0f172a;
  font-weight: 600;
  text-align: left;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
}
.map-search .map-search-hit b {
  font-size: 13px;
  color: #0f766e;
  font-weight: 800;
}
.map-search .map-search-hit span {
  font-size: 12px;
  color: #475569;
  font-weight: 500;
  line-height: 1.3;
}
.map-search .map-search-hit.is-on,
.map-search .map-search-hit:hover {
  background: #ecfeff;
  color: #0f172a;
}
.map-search-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}
.map-search-nav[hidden],
.map-search-hits[hidden] {
  display: none !important;
}
.map-search-nav button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #ecfeff;
  color: #0f766e;
  font-weight: 800;
  cursor: pointer;
}
.map-search-nav span {
  font-size: 12px;
  font-weight: 700;
  color: #0f766e;
  min-width: 36px;
  text-align: center;
}
.map-search-nav #mapSearchAll {
  width: auto;
  height: 28px;
  border-radius: 8px;
  padding: 0 8px;
  font-size: 11px;
}
.chip-fill {
  background: #087f8c;
  color: #fff;
  border-color: #087f8c;
}
.kv {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid #eef3f4;
  font-size: 13px;
}
.kv span { color: #78909c; }
.kv b { font-weight: 700; color: #103d43; }
.layer-switch {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,.2);
  padding: 3px;
  border-radius: 10px;
}
.layer-switch button {
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 8px;
  cursor: pointer;
}
.layer-switch button.is-on { background: #fff; color: #087f8c; }
.skyland-popup {
  z-index: 22 !important;
  width: max-content !important;
  max-width: none !important;
}
.skyland-popup .maplibregl-popup-content {
  padding: 0;
  min-width: 280px;
  max-height: min(72vh, 560px);
  overflow-y: auto;
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}
.skyland-popup .maplibregl-popup-close-button {
  width: 30px;
  height: 30px;
  font-size: 20px;
  padding: 3px;
  right: 8px;
  top: 8px;
  color: #52636b;
  z-index: 2;
}
@media (min-width: 900px) {
  .skyland-popup .maplibregl-popup-content {
    width: 372px;
    min-width: 372px;
    max-height: min(78vh, 640px);
  }
}
.skyland-v63-popup { padding: 8px 30px 8px 8px; font-size: 11px; line-height: 1.25; }
.skyland-priority-box {
  margin: 0 0 6px;
  padding: 5px 6px;
  border: 1px solid #f5c400;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(255,248,210,0.96), rgba(255,255,255,0.98));
}
.skyland-priority-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.skyland-priority-title {
  margin: 0;
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  color: #8a6500;
  white-space: nowrap;
}
.skyland-priority-chips {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  gap: 4px;
  overflow: hidden;
}
.skyland-priority-empty {
  color: #9a8a4a;
  font-size: 9px;
  font-weight: 700;
}
.skyland-priority-toggle {
  flex: 0 0 auto;
  margin: 0;
  padding: 3px 7px;
  border: 1px solid #e3b900;
  border-radius: 999px;
  background: #fff8d6;
  color: #8a6500;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}
.skyland-v63-priority-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  margin-top: 5px;
  overflow-x: auto;
}
.skyland-priority-option {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  margin: 0;
  padding: 3px 6px;
  gap: 4px;
  border: 1px solid #e7ecee;
  border-radius: 999px;
  background: #fff;
  font-size: 9px;
  line-height: 1.1;
  font-weight: 700;
  color: #31555a;
  white-space: nowrap;
  cursor: pointer;
}
.skyland-priority-option input {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  accent-color: #087f8c;
  opacity: 1;
}
.skyland-priority-badge {
  padding: 2px 6px;
  border: 1px solid #e3b900;
  border-radius: 999px;
  background: #fff4b8;
  color: #8a6500;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}
.skyland-v63-meta-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(108px, 118px);
  gap: 6px;
  align-items: start;
  margin: 0 0 5px;
}
.skyland-v63-code {
  min-width: 0;
  overflow: hidden;
  padding: 5px 7px;
  border: 1px solid #edf1f2;
  border-radius: 8px;
  background: #f7fafb;
  font-size: 11px;
}
.skyland-v63-code-line {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.skyland-v63-code-label { color: #829096; font-weight: 800; }
.skyland-v63-code strong { color: #087f8c; font-size: 12px; }
.skyland-v63-updated {
  display: block;
  margin-top: 2px;
  color: #087f8c;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
}
.skyland-v63-contact .skyland-v63-info-value a,
.skyland-v63-contact a { color: #087f8c; }
.skyland-v63-status { min-width: 0; }
.skyland-v63-status-select {
  width: 100%;
  min-width: 0;
  height: 32px;
  margin: 0;
  padding: 3px 6px;
  border: 1px solid #b9dfe2;
  border-radius: 8px;
  background: #eaf8f9;
  color: #087f8c;
  font-size: 10px;
  font-weight: 800;
  opacity: 1;
  color-scheme: light;
  cursor: pointer;
}
.skyland-v63-status-select:disabled {
  cursor: wait;
}
.skyland-v63-status-readonly {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 5px 7px;
  border: 1px solid #b9d9dc;
  border-radius: 999px;
  background: #f4fbfb;
  color: #31555a;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}
.skyland-v63-types { display: flex; flex-wrap: wrap; gap: 3px; margin: 0 0 5px; }
.skyland-v63-hero {
  margin: 0 0 5px;
  padding: 5px 7px;
  border: 1px solid #dceff1;
  border-radius: 8px;
  background: #f3fafb;
  color: #087f8c;
  font-size: 12px;
  font-weight: 800;
}
.skyland-v63-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 6px;
}
.skyland-v63-info-item {
  min-width: 0;
  padding: 4px 6px;
  border: 1px solid #edf1f2;
  border-radius: 8px;
  background: #fff;
}
.skyland-v63-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 6px;
}
.skyland-v63-type {
  padding: 3px 6px;
  border: 1px solid #b9dfe2;
  border-radius: 999px;
  background: #eaf8f9;
  color: #087f8c;
  font-size: 9px;
  font-weight: 800;
}
.skyland-v63-span-2 { grid-column: 1 / -1; }
.skyland-v63-info-label {
  display: block;
  margin-bottom: 1px;
  color: #829096;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.25px;
}
.skyland-v63-info-value {
  display: block;
  color: #26363b;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.skyland-v63-sale .skyland-v63-info-value { color: #087f8c; font-weight: 800; }
.skyland-v63-actions .popup-link {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 30px;
  padding: 5px 6px;
  border: 0;
  border-radius: 8px;
  background: #0b8f9c;
  color: #fff;
  text-decoration: none;
  font: inherit;
  font-size: 9.5px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}
.https-gps-bar {
  display: none;
}
.https-gps-bar:not([hidden]) {
  display: block;
  position: relative;
  z-index: 50;
  padding: 8px 12px;
  background: #fff4d6;
  color: #5c4300;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}
.https-gps-bar a {
  color: #0b57d0;
}
.skyland-gps-help {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 120;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
}
.skyland-gps-help.is-open {
  display: flex;
}
.skyland-gps-help-panel {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 18px 16px 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}
.skyland-gps-help-title {
  font-size: 17px;
  font-weight: 800;
  color: #087f8c;
  margin-bottom: 8px;
}
.skyland-gps-help-lead {
  margin: 0 0 10px;
  color: #44555a;
  font-size: 13px;
  line-height: 1.45;
}
.skyland-gps-help-steps {
  margin: 0 0 14px;
  padding-left: 18px;
  color: #334248;
  font-size: 13px;
  line-height: 1.45;
}
.skyland-gps-help-steps li {
  margin-bottom: 6px;
}
.skyland-gps-help-retry,
.skyland-gps-help-close {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}
.skyland-gps-help-retry {
  background: #087f8c;
  color: #fff;
  margin-bottom: 8px;
}
.skyland-gps-help-close {
  background: #eef1f5;
  color: #333;
}
.action-sheet {
  position: fixed;
  inset: 0;
  background: rgba(16, 40, 48, 0.35);
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
}
.action-sheet.hidden { display: none !important; }
.action-sheet-card {
  width: min(440px, 92vw);
  background: #fff;
  border-radius: 16px;
  padding: 20px 22px 22px;
  position: relative;
}
.action-sheet-card h2 { margin: 0 28px 10px 0; color: #087f8c; font-size: 18px; }
.action-sheet-card p { margin: 0 0 12px; color: #546e7a; line-height: 1.45; }
.action-sheet-card textarea {
  width: 100%;
  border: 1px solid #cfd8dc;
  border-radius: 10px;
  padding: 10px;
  font: inherit;
}
.sheet-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: #eef3f4;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
}
.filter-panel { display: none; }
@media (min-width: 900px) {
  .filter-panel {
    display: block;
    position: fixed;
    top: 72px;
    left: 12px;
    z-index: 34;
    width: 280px;
    max-width: calc(100vw - 24px);
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.22);
  }
  .filter-panel.collapsed {
    width: 58px;
    min-width: 58px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  .filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .filter-title {
    font-size: 15px;
    font-weight: 800;
    color: #222;
  }
  .filter-panel.collapsed .filter-title,
  .filter-panel.collapsed .filter-panel-content {
    display: none;
  }
  .filter-toggle {
    flex: 0 0 auto;
    width: 36px;
    height: 32px;
    border: 1px solid #dfe6e8;
    border-radius: 10px;
    background: #fff;
    color: #087f8c;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
  }
  .filter-panel.collapsed .filter-header {
    width: 58px;
    height: 42px;
    justify-content: center;
  }
  .filter-panel.collapsed .filter-toggle {
    width: 58px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 800;
    color: #263b55;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
  }
  .filter-panel.collapsed .filter-toggle::before {
    content: "";
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23263b55' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5h16l-6.5 7.3v5.2l-3 1.5v-6.7L4 5z'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
  }
  .map-body .header-right #layerSwitch {
    display: none !important;
  }
  .map-layer-panel {
    display: block;
    position: fixed;
    top: 10px;
    right: 12px;
    z-index: 37;
  }
  .map-layer-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid #dfe6e8;
    border-radius: 10px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23263b55' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2 3 7l9 5 9-5-9-5z'/%3E%3Cpath d='M3 12l9 5 9-5'/%3E%3Cpath d='M3 17l9 5 9-5'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
    cursor: pointer;
  }
  .map-layer-menu {
    display: none;
    margin-top: 6px;
    min-width: 148px;
    padding: 6px;
    border: 1px solid #d5dee3;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 43, 60, 0.18);
  }
  .map-layer-panel:not(.collapsed) .map-layer-menu {
    display: block;
  }
  .map-layer-menu button {
    display: block;
    width: 100%;
    margin: 0;
    padding: 8px 10px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #334155;
    font-weight: 800;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
  }
  .map-layer-menu button.is-on,
  .map-layer-menu button:hover {
    background: #e8f6f7;
    color: #087f8c;
  }
  .filter-panel.is-active.collapsed .filter-toggle {
    border-color: #087f8c;
    color: #087f8c;
  }
  .filter-panel-content { margin-top: 10px; }
  .filter-field { margin: 0 0 10px; position: relative; }
  .filter-label {
    display: block;
    margin-bottom: 4px;
    color: #5f7178;
    font-size: 11px;
    font-weight: 800;
  }
  .filter-dd-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    border: 1px solid #d5dee2;
    border-radius: 8px;
    background: #fff;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
  }
  .filter-dd-menu {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    max-height: 180px;
    overflow: auto;
    margin-top: 4px;
    padding: 6px;
    border: 1px solid #d5dee2;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  .filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 4px;
    font-size: 12px;
    cursor: pointer;
  }
  .filter-chips { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 6px; }
  .filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    border-radius: 999px;
    background: #eaf8f9;
    color: #087f8c;
    font-size: 11px;
    font-weight: 800;
  }
  .filter-chip button {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
  }
  .filter-clear {
    width: 100%;
    padding: 8px;
    border: 0;
    border-radius: 8px;
    background: #087f8c;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
  }
  .map-body .maplibregl-ctrl-top-right {
    top: 72px;
    right: 12px;
  }
  .maplibregl-ctrl-bottom-right,
  .maplibregl-ctrl-attrib { display: none !important; }
  .action-dock {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 25;
    width: min(348px, calc(100vw - 36px));
    gap: 6px 8px;
    align-items: start;
    padding: 10px 12px 8px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(244, 249, 252, 0.92));
    box-shadow: 0 18px 44px rgba(15, 43, 60, 0.24), 0 4px 12px rgba(15, 43, 60, 0.12), inset 0 1px 0 #fff;
    box-sizing: border-box;
  }
  .fab-item-btn {
    border: 0;
    background: transparent;
    padding: 0;
    font: inherit;
    cursor: pointer;
  }
  .fab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    gap: 5px;
    position: relative;
    text-decoration: none;
    color: inherit;
  }
  .fab {
    display: block;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(211, 224, 231, 0.9);
    border-radius: 14px;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    box-shadow: 0 6px 14px rgba(19, 54, 73, 0.16), inset 0 1px 0 #fff;
    cursor: pointer;
  }
  .fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(19, 54, 73, 0.2), inset 0 1px 0 #fff;
  }
  .fab-label {
    display: block;
    width: 100%;
    color: #334155;
    font: 800 10.5px/1.15 Arial, Helvetica, sans-serif;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .fab-add {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    background-color: #07977f;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
    background-size: 22px 22px;
    box-shadow: 0 12px 22px rgba(4, 139, 116, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }
  .fab-add:hover {
    background-color: #078a75;
    box-shadow: 0 15px 28px rgba(4, 139, 116, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
  .fab-bell {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d99a0b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8a6 6 0 0 0-12 0c0 7-3 7-3 9h18c0-2-3-2-3-9'/%3E%3Cpath d='M13.7 21a2 2 0 0 1-3.4 0'/%3E%3C/svg%3E");
  }
  .fab-settings {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555e6d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z'/%3E%3C/svg%3E");
  }
  .fab-person {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23087f8c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.2'/%3E%3Cpath d='M5.5 19c.8-3.2 3.4-5 6.5-5s5.7 1.8 6.5 5'/%3E%3C/svg%3E");
  }
  .fab-more {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23087f8c'%3E%3Ccircle cx='5' cy='12' r='2'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3Ccircle cx='19' cy='12' r='2'/%3E%3C/svg%3E");
  }
  .fab-wr {
    background-color: #ea580c;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 20V9l9-5 9 5v11'/%3E%3Cpath d='M9 20v-6h6v6'/%3E%3C/svg%3E");
    border-color: rgba(255, 255, 255, 0.75);
  }
  .fab-locate {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b76e8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1 1 16 0z'/%3E%3Ccircle cx='12' cy='10' r='2.7'/%3E%3C/svg%3E");
  }
  .map-body .dock { display: none; }
  .map-body { padding-bottom: 0; }
  .feed-main { max-width: 980px; padding: 24px 32px 40px; }
  .app-header { padding: 10px 22px; min-height: 58px; }
  .brand-logo { display: block; }
  .brand-text { display: none; }
  .map-body {
    position: relative;
  }
  .map-body .app-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 8;
    background: transparent;
    min-height: 0;
    padding: 10px 16px;
    pointer-events: none;
    gap: 12px;
  }
  .map-body .app-header > * {
    pointer-events: auto;
  }
  .map-body .app-header.compact .brand-logo {
    width: 168px;
    height: 40px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.55));
  }
  .map-body .top-nav {
    background: #fff;
    padding: 2px;
    gap: 1px;
    max-width: min(62vw, 440px);
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  }
  .map-body .nav-link {
    color: #087f8c;
    opacity: 1;
    text-shadow: none;
    padding: 5px 10px;
    font-size: 12px;
  }
  .map-body .map-more-btn {
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
  }
  .map-header-more {
    display: inline-block;
    border: 0;
    border-radius: 999px;
    padding: 6px 12px;
    background: #fff;
    color: #087f8c;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
  }
  .map-more-item,
  .map-wr-item { display: flex; }
  .map-me-item { display: none; }
  .map-settings-item { display: none; }
  .action-dock {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(280px, calc(100vw - 36px));
    padding: 8px 10px 6px;
    gap: 4px 6px;
  }
  .map-body .nav-link.is-active {
    background: #087f8c;
    color: #fff;
  }
  .map-body #who,
  .map-body #mapStatus {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  }
  .map-body .layer-switch {
    background: rgba(0, 0, 0, 0.35);
  }
  .map-body .header-right button {
    background: #fff;
  }
  .map-body #logoutBtn {
    display: none;
  }
  .map-locate-btn {
    right: 18px;
    bottom: 108px;
  }
  .map-body #map {
    position: absolute;
    inset: 0;
  }
  .map-search {
    position: static;
    transform: none;
    width: 420px;
    margin: 0 auto;
    box-shadow: none;
    background: rgba(255,255,255,.96);
  }
  .source-card { padding: 18px 20px; }
  .header-right span:not(#mapStatus) { display: inline; }
}
.kho-switch { display: none; }
.kho-switch-item {
  flex: 1;
  min-width: 96px;
  text-align: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: #087f8c;
  text-decoration: none;
}
.kho-switch-item.is-on {
  background: #087f8c;
  color: #fff;
}
@media (min-width: 900px) {
  .app-body .kho-switch {
    display: flex;
    align-items: center;
    justify-content: stretch;
    gap: 0;
    max-width: 980px;
    margin: 14px auto 0;
    padding: 3px;
    border-radius: 999px;
    background: #e8f3f4;
  }
  .app-body .kho-switch:not(:has([data-nav-map]:not(.hidden))) {
    display: none;
  }
}
@media (max-width: 899px) {
  .kho-switch {
    display: flex;
    align-items: center;
    justify-content: stretch;
    gap: 0;
    padding: 3px;
    border-radius: 999px;
    background: #e8f3f4;
  }
  .app-body .kho-switch:not(:has([data-nav-map]:not(.hidden))) {
    display: none;
  }
  .app-body .kho-switch {
    margin: 10px 16px 0;
  }
  .app-body:not(.me-body) .header-right {
    display: none;
  }
  .app-body:not(.me-body) .app-header {
    padding: calc(10px + env(safe-area-inset-top)) 16px 10px;
  }
  .map-body .brand {
    display: none;
  }
  .map-body .header-right {
    display: none;
  }
  .map-body .app-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 8;
    background: transparent;
    min-height: 0;
    padding: 0;
    pointer-events: none;
  }
  .map-body .app-header > * {
    pointer-events: auto;
  }
  .map-body #map {
    position: absolute;
    inset: 0;
  }
  .map-body .kho-switch {
    position: absolute;
    top: calc(10px + env(safe-area-inset-top));
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    width: min(280px, calc(100% - 24px));
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  }
  .top-nav { display: none; }
  .map-layer-panel { display: none !important; }
  .map-header-more,
  .map-more-item,
  .map-wr-item { display: none !important; }
  .map-search {
    position: absolute;
    top: calc(54px + env(safe-area-inset-top));
    left: 50%;
    transform: translateX(-50%);
    width: min(380px, calc(100% - 24px));
    flex-wrap: wrap;
  }
  .map-search-nav {
    width: 100%;
    justify-content: center;
  }
  .map-locate-btn {
    right: 12px;
    bottom: calc(118px + env(safe-area-inset-bottom));
  }
}
.skyland-edit-overlay {
  position: fixed;
  inset: 0;
  z-index: 120050;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8px;
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(3px);
  box-sizing: border-box;
}
.skyland-edit-overlay[hidden] {
  display: none !important;
}
.skyland-edit-panel {
  width: min(620px, calc(100vw - 16px));
  max-height: 92vh;
  margin: 4vh auto 0;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(8, 127, 140, 0.12);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.skyland-edit-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-bottom: 1px solid #e9eef0;
  flex: 0 0 auto;
}
.skyland-edit-head b {
  flex: 1;
  font-size: 16px;
  color: #17363b;
}
.skyland-edit-head small {
  display: block;
  margin-top: 2px;
  color: #829096;
  font-size: 11px;
  font-weight: 500;
}
.skyland-edit-close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #eef4f5;
  color: #65757a;
  font-size: 19px;
  cursor: pointer;
}
.skyland-edit-body {
  padding: 7px 9px;
  overflow: auto;
  flex: 1 1 auto;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}
.skyland-edit-section {
  padding: 6px 7px;
  margin-bottom: 6px;
  border: 1px solid #e8edef;
  border-radius: 11px;
}
.skyland-edit-section-title {
  margin-bottom: 5px;
  color: #087f8c;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.skyland-edit-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 8px;
}
.skyland-edit-field {
  display: block;
  min-width: 0;
  color: #47575c;
  font-size: 11px;
  font-weight: 800;
}
.skyland-edit-field input {
  display: block;
  width: 100%;
  height: 32px;
  margin-top: 2px;
  box-sizing: border-box;
  border: 1px solid #cbd5d8;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 13px;
  font-weight: 500;
  outline: none;
}
.skyland-edit-loc-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}
.skyland-edit-gps {
  width: 100%;
  min-height: 36px;
  border: 1px solid #087f8c;
  border-radius: 8px;
  background: #fff;
  color: #087f8c;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.skyland-edit-media-row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.skyland-edit-media-btn {
  flex: 1;
  min-height: 36px;
  border: 1px solid #cad5d8;
  border-radius: 8px;
  background: #fff;
  color: #16343c;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.skyland-edit-media-add {
  border-color: #087f8c;
  color: #087f8c;
}
.skyland-edit-media-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.skyland-edit-media-preview img,
.skyland-edit-media-preview video {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  background: #eef3f5;
}
.skyland-edit-media-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 8px;
  border-radius: 8px;
  background: #eef3f5;
  color: #16343c;
  font-size: 11px;
  font-weight: 700;
}
.skyland-edit-loc-status {
  color: #748087;
  font-size: 12px;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .skyland-edit-grid2 {
    grid-template-columns: 1fr;
  }
}
.skyland-edit-type-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.skyland-edit-type-chip {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 6px;
  border: 1px solid #cad5d8;
  border-radius: 999px;
  font-size: 11px;
  cursor: pointer;
  background: #fff;
}
.skyland-edit-type-chip input {
  width: auto;
  margin: 0;
}
.skyland-edit-type-chip.is-on {
  background: #e8f8f9;
  border-color: #0b8f9c;
  color: #087f8c;
  font-weight: 800;
}
.skyland-edit-note {
  padding: 0 2px 5px;
  color: #7a888d;
  font-size: 11px;
  text-align: center;
}
.skyland-edit-foot {
  padding: 7px 9px;
  border-top: 1px solid #e9eef0;
  flex: 0 0 auto;
}
.skyland-edit-foot button {
  width: 100%;
  min-height: 38px;
  border: 0;
  border-radius: 10px;
  background: #0b8f9c;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.skyland-edit-foot button:disabled {
  opacity: 0.58;
}
.skyland-info-overlay {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}
.skyland-info-overlay[hidden] {
  display: none !important;
}
.skyland-info-panel {
  width: min(92vw, 650px);
  max-height: 84vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.28);
  padding: 16px;
}
.skyland-info-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.skyland-info-head b {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  color: #17363b;
}
.skyland-info-back {
  border: 0;
  border-radius: 10px;
  padding: 6px 10px;
  background: #edf6f7;
  color: #087f8c;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
}
.skyland-info-text {
  white-space: pre-wrap;
  background: #f6f8f9;
  border: 1px solid #e1e7e9;
  border-radius: 10px;
  padding: 12px;
  margin: 10px 0;
  line-height: 1.55;
  font-size: 14px;
  color: #26363b;
}
.skyland-info-detail-box {
  margin-top: 4px;
}
.skyland-info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.skyland-info-copy {
  border: 0;
  border-radius: 10px;
  padding: 9px 12px;
  font-weight: 800;
  cursor: pointer;
  background: #edf6f7;
  color: #087f8c;
}
.skyland-info-save {
  border: 0;
  border-radius: 10px;
  padding: 9px 12px;
  font-weight: 800;
  cursor: pointer;
  background: #109eaa;
  color: #fff;
}
.skyland-info-reward {
  margin: 8px 0;
  padding: 8px 10px;
  border-radius: 8px;
  background: #eef8f9;
  color: #315e64;
  font-size: 12px;
}
.skyland-info-note {
  padding: 8px 10px;
  margin: 8px 0;
  border-radius: 9px;
  background: #fff7d6;
  color: #705d00;
  font-size: 12px;
}
#skylandInfoDetailInput {
  width: 100%;
  min-height: 130px;
  box-sizing: border-box;
  border: 1px solid #ccd9dc;
  border-radius: 10px;
  padding: 10px;
  font: inherit;
  resize: vertical;
  margin-top: 8px;
}
.skyland-ai-box {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid #dce8ea;
  border-radius: 12px;
  background: #f8fbfb;
}
.skyland-ai-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.skyland-ai-status {
  font-size: 11px;
  font-weight: 800;
  color: #087f8c;
}
.skyland-ai-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.skyland-ai-field {
  display: block;
  min-width: 0;
  color: #59686d;
  font-size: 11px;
  font-weight: 800;
}
.skyland-ai-staff-phone {
  display: block;
  margin-bottom: 8px;
}
.skyland-ai-staff-phone input {
  display: block;
  width: 100%;
  min-height: 40px;
  margin-top: 4px;
  border: 1px solid #7eb8be;
  border-radius: 9px;
  background: #fff;
  padding: 8px 10px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
}
.skyland-ai-field select,
.skyland-ai-field input {
  display: block;
  width: 100%;
  min-height: 38px;
  margin-top: 4px;
  border: 1px solid #ccd9dc;
  border-radius: 9px;
  background: #fff;
  padding: 7px 9px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
}
.skyland-ai-option {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 10px;
  padding: 10px;
  border: 1px dashed #bfd6da;
  border-radius: 10px;
  background: #fff;
  color: #315e64;
  font-size: 13px;
  cursor: pointer;
}
.skyland-ai-hide-box {
  margin-top: 10px;
  padding: 8px 10px 10px;
  border: 1px dashed #bfd6da;
  border-radius: 10px;
  background: #fff;
}
.skyland-ai-hide-title {
  font-size: 12px;
  font-weight: 700;
  color: #315e64;
  margin-bottom: 2px;
}
.skyland-ai-hide-box .skyland-ai-option {
  margin-top: 2px;
  padding: 6px 0;
  border: none;
  background: transparent;
}
.skyland-ai-hide-box .skyland-ai-option i {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: #69777b;
  font-weight: 400;
}
.skyland-ai-meta {
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.45;
  color: #69777b;
}
@media (max-width: 600px) {
  .skyland-edit-grid2,
  .skyland-ai-grid {
    grid-template-columns: 1fr;
  }
}

.skyland-desktop-float {
  width: max-content;
  height: auto;
  white-space: nowrap;
  background: transparent;
}
.skyland-desktop-float.is-label {
  pointer-events: auto;
  cursor: pointer;
}
.maplibregl-marker:has(> .skyland-desktop-float) {
  width: max-content !important;
  height: auto !important;
  background: transparent !important;
}
.skyland-label-box {
  display: inline-block;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #087f8c;
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 700;
  color: #222;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
body.is-mobile-map .skyland-label-box {
  font-size: 14px;
  padding: 2px 5px;
}
body.is-ios .skyland-label-box {
  font-size: 13px;
}
.skyland-label-box .label-ma-can {
  color: #087f8c;
}
.skyland-filter-label-highlight {
  border: 2px solid #dc2626 !important;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2), 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}
.skyland-prj-pin {
  line-height: 1;
  cursor: pointer;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
  user-select: none;
}
.skyland-prj-label {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #087f8c;
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 13px;
  font-weight: 700;
  color: #0f3d44;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
body.is-ios .skyland-prj-label {
  font-size: 12px;
}
.skyland-prj-pop {
  min-width: 240px;
  max-width: 360px;
  font-family: "Segoe UI", sans-serif;
}
.skyland-prj-pop-title {
  font-weight: 800;
  font-size: 17px;
  color: #0f766e;
  margin-bottom: 10px;
}
.skyland-prj-addr {
  font-size: 13px;
  line-height: 1.35;
  color: #111827;
  margin: 0 0 8px;
}
.skyland-prj-addr span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 2px;
}
.skyland-prj-pop-link {
  display: inline-block;
  margin: 0 8px 10px 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ecfeff;
  color: #0f766e;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}
.skyland-prj-val {
  margin-top: 4px;
  border-top: 1px solid #e5e7eb;
  padding-top: 10px;
  max-height: 46vh;
  overflow: auto;
}
.skyland-prj-val-title {
  font-weight: 800;
  margin-bottom: 8px;
  color: #134e4a;
}
.skyland-prj-val-empty {
  color: #6b7280;
}
.skyland-prj-val-group {
  margin-top: 8px;
  padding: 8px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f8fafc;
  font-size: 13px;
  line-height: 1.45;
}
.skyland-prj-val-kind {
  font-weight: 800;
  margin-bottom: 4px;
  color: #0f766e;
}

#skylandAddChooser,
#skylandAddOverlay {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.36);
}
#skylandAddChooser[hidden],
#skylandAddOverlay[hidden] {
  display: none !important;
}
.skyland-add-chooser-panel,
#skylandAddPanel {
  width: min(430px, 100%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}
.skyland-add-chooser-panel {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.skyland-add-chooser-panel .skyland-add-title {
  margin-bottom: 4px;
  color: #087f8c;
}
.skyland-add-type-btn {
  width: 100%;
  padding: 14px;
  border: 0;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  background: #0b57d0;
  color: #fff;
  cursor: pointer;
}
.skyland-add-type-btn.is-bulk {
  background: #138f9e;
}
.skyland-add-type-cancel {
  width: 100%;
  padding: 14px;
  border: 0;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  background: #eef1f5;
  cursor: pointer;
}
#skylandAddPanel {
  max-height: 88dvh;
  overflow: auto;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  background: #fff;
}
.skyland-add-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.skyland-add-title {
  font-size: 18px;
  font-weight: 800;
  color: #087f8c;
}
.skyland-add-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f1f3f4;
  color: #444;
  font-size: 22px;
  cursor: pointer;
}
.skyland-add-body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 15px 16px 18px;
  overflow: auto;
  flex: 1 1 auto;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}
.skyland-add-note {
  margin-bottom: 5px;
  padding: 9px 10px;
  border-radius: 8px;
  background: #f4f8f8;
  color: #555;
  font-size: 13px;
  line-height: 1.45;
}
.skyland-add-label {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #444;
}
.skyland-add-input,
.skyland-add-select {
  width: 100%;
  box-sizing: border-box;
  min-height: 40px;
  padding: 9px 10px;
  border: 1px solid #d0d5d8;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  background: #fff;
}
.skyland-add-input:focus,
.skyland-add-select:focus {
  border-color: #087f8c;
  box-shadow: 0 0 0 2px rgba(8, 127, 140, 0.12);
}
.skyland-add-hint {
  margin-top: 2px;
  color: #777;
  font-size: 12px;
  line-height: 1.4;
}
.skyland-add-section {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #e5e7eb;
  color: #087f8c;
  font-size: 14px;
  font-weight: 800;
}
#skylandAddOverlay .skyland-edit-media-row {
  margin: 8px 0;
}
#skylandAddPhoto {
  margin-top: 8px;
}
.skyland-add-dd {
  position: relative;
}
.skyland-add-dd.open .skyland-add-dd-btn {
  border-color: #087f8c;
}
.skyland-add-dd-btn {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid #d0d5d8;
  border-radius: 8px;
  background: #fff;
  color: #333;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
}
.skyland-add-dd-menu {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 4;
  max-height: 260px;
  overflow: auto;
  padding: 8px;
  border: 1px solid #d0d5d8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}
.skyland-add-dd.open .skyland-add-dd-menu {
  display: grid;
}
.skyland-add-dd-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}
.skyland-add-loc-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.skyland-add-secondary {
  flex: 1;
  min-height: 40px;
  border: 1px solid #087f8c;
  border-radius: 8px;
  background: #fff;
  color: #087f8c;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.skyland-add-or {
  color: #777;
  font-size: 12px;
}
.skyland-add-submit {
  width: 100%;
  min-height: 42px;
  margin-top: 9px;
  border: 0;
  border-radius: 9px;
  background: #087f8c;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.skyland-add-submit:disabled {
  opacity: 0.55;
  cursor: wait;
}
.skyland-add-textarea {
  min-height: 92px;
  resize: vertical;
  line-height: 1.45;
}
@media (max-width: 899px) {
  #skylandAddChooser,
  #skylandAddOverlay {
    align-items: flex-end;
    padding: 8px;
  }
  #skylandAddPanel,
  .skyland-add-chooser-panel {
    width: 100%;
    border-radius: 18px 18px 10px 10px;
  }
  .skyland-edit-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .skyland-edit-panel {
    width: 100%;
    max-height: 94dvh;
    margin: 0;
    border-radius: 16px 16px 0 0;
  }
  .skyland-edit-foot {
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }
}
#skylandMediaOverlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 120080;
  background: rgba(0, 0, 0, 0.48);
  padding: 10px;
  box-sizing: border-box;
}
#skylandMediaOverlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
#skylandMediaPanel {
  position: relative;
  width: min(760px, 100%);
  height: min(88dvh, 860px);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
}
#skylandMediaFrame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}
#skylandMediaClose {
  position: absolute;
  top: max(8px, env(safe-area-inset-top));
  right: max(8px, env(safe-area-inset-right));
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #333;
  font-size: 24px;
  line-height: 38px;
  cursor: pointer;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  #skylandMediaOverlay {
    padding: 0;
  }
  #skylandMediaPanel {
    width: 100%;
    height: 100dvh;
    height: 100svh;
    border-radius: 0;
  }
}

.home-body {
  margin: 0;
  background: #f2f3f5;
  color: #1f2937;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  padding-bottom: calc(78px + env(safe-area-inset-bottom));
}
.home-hero {
  position: relative;
  padding: calc(14px + env(safe-area-inset-top)) 18px 58px;
  background: #e03a3a;
  overflow: hidden;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("/home-city.png?v=1") center 70% / cover no-repeat;
  opacity: 0.6;
}
.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 0;
  height: 72px;
  background: linear-gradient(180deg, transparent 0%, rgba(224, 58, 58, 0.92) 100%);
  pointer-events: none;
}
.home-hero-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.home-brand,
.home-hero .sky-logo-chip {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}
.home-brand img,
.home-hero .sky-logo-chip img {
  width: 148px;
  height: 36px;
  object-fit: contain;
  opacity: 0.8;
  filter: saturate(0.9) brightness(1.05);
}
.home-bell {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.home-bell svg {
  width: 22px;
  height: 22px;
}
.home-bell-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e11d48;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 0 0 2px #e03a3a;
}
.home-wrap {
  position: relative;
  z-index: 1;
  margin: -38px 14px 0;
}
.home-card {
  background: #fff;
  border-radius: 22px;
  padding: 14px 6px 8px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
}
.home-grid {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  grid-auto-columns: minmax(76px, 78px);
  gap: 10px 6px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding: 2px 8px 8px;
  scrollbar-width: thin;
}
.home-grid::-webkit-scrollbar {
  height: 4px;
}
.home-grid::-webkit-scrollbar-thumb {
  background: rgba(224, 58, 58, 0.35);
  border-radius: 999px;
}
.home-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 2px 2px 4px;
  color: #3d4f57;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  letter-spacing: -0.01em;
  scroll-snap-align: start;
  min-width: 0;
}
.home-tile-ico {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #eef9fa, #e2f3f5);
  color: #087f8c;
  box-shadow: inset 0 1px 0 #fff;
}
.home-tile-ico svg {
  width: 24px;
  height: 24px;
}
.home-tile-ico.is-add {
  background: linear-gradient(180deg, #14a3b0, #087f8c);
  color: #fff;
  box-shadow: 0 8px 16px rgba(8, 127, 140, 0.28);
}
.home-tile-ico.is-train {
  background: linear-gradient(180deg, #e8f8ef, #c8eed8);
  color: #0f8a4b;
}
.home-tile-ico.is-lead {
  background: linear-gradient(180deg, #fff4e8, #ffe0c2);
  color: #d97706;
}
.home-tile-ico.is-user {
  background: linear-gradient(180deg, #fde8f0, #f8c5d8);
  color: #c0266b;
}
.home-tile-ico.is-stats {
  background: linear-gradient(180deg, #fff7d6, #ffe58f);
  color: #ca8a04;
}
.home-tile-ico.is-event {
  background: linear-gradient(180deg, #efe8ff, #d9ccff);
  color: #6d28d9;
}
.home-tile-ico.is-me {
  background: linear-gradient(180deg, #e8f6f7, #d2eef1);
  color: #087f8c;
  border: 0;
  box-shadow: inset 0 1px 0 #fff;
}
.home-tile-ico.is-me svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
}
.home-tile-ico.is-invest {
  background: #0a0a0a;
  overflow: hidden;
  padding: 5px;
  border: 1px solid #0a0a0a;
}
.home-tile-ico.is-invest img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.map-more-invest-logo {
  width: 96px;
  height: 32px;
  object-fit: contain;
  background: #0a0a0a;
  border-radius: 4px;
  border: 0;
}
.me-invest-pane {
  padding: 4px 0 20px;
  font-family: "Manrope", "Segoe UI", sans-serif;
}
.me-invest-stage {
  overflow: hidden;
  border: 1px solid #d7e4e7;
  background: #fff;
  color: #1a2a2e;
}
.me-invest-brand {
  position: relative;
  overflow: hidden;
  min-height: 84px;
  padding: 12px 16px 10px;
  background:
    linear-gradient(180deg, rgba(120, 178, 190, 0.28) 0%, rgba(238, 243, 245, 0.72) 100%),
    url("/invest-hero-city.png?v=1") center 62% / cover no-repeat,
    #9fcad4;
}
.me-invest-mark {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 196px);
  height: auto;
  opacity: 0.8;
  filter: saturate(0.92) brightness(1.02);
}
.me-invest-copy {
  padding: 14px 18px 18px;
}
.me-invest-eyebrow {
  margin: 0 0 8px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #087f8c;
}
.me-invest-lead {
  margin: 0 0 18px;
  max-width: 36ch;
  font-size: 14px;
  font-weight: 550;
  line-height: 1.55;
  color: #4a5c62;
}
.me-invest-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  background: #087f8c;
  color: #fff;
  text-decoration: none;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, transform 0.2s ease;
}
.me-invest-cta:hover {
  background: #066c76;
}
.invest-body {
  --invest-ink: #142428;
  --invest-muted: #5a6b71;
  --invest-line: #d5e2e5;
  --invest-teal: #087f8c;
  margin: 0;
  min-height: 100dvh;
  background:
    radial-gradient(90% 40% at 100% 0%, rgba(8, 127, 140, 0.07), transparent 55%),
    #eef3f5;
  color: var(--invest-ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  padding-bottom: 88px;
}
.invest-hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 14px 16px 12px;
  min-height: 96px;
  border: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(110, 172, 186, 0.22) 0%, rgba(238, 243, 245, 0.55) 78%, rgba(238, 243, 245, 0.92) 100%),
    url("/invest-hero-city.png?v=1") center 68% / cover no-repeat,
    #9fcad4;
  text-align: left;
  animation: investHeroIn 0.55s ease both;
}
.invest-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(238, 243, 245, 0.55) 100%);
}
.invest-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding-left: 40px;
}
.invest-back {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(8, 127, 140, 0.22);
  border-radius: 0;
  display: grid;
  place-items: center;
  color: #066c76;
  text-decoration: none;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}
.invest-logo {
  display: block;
  width: min(210px, 68%);
  height: auto;
  margin: 0;
  opacity: 0.8;
  filter: saturate(0.92) brightness(1.02);
  transition: opacity 0.18s ease;
}
.invest-hero:hover .invest-logo,
a:hover .invest-logo {
  opacity: 0.96;
}
.invest-main {
  position: relative;
  z-index: 1;
  margin: -22px auto 0;
  padding: 14px 18px 36px;
  max-width: 920px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, #fff 0%, #eef3f5 120px);
}
.invest-note {
  color: var(--invest-muted);
  text-align: left;
  font-size: 14px;
}
.invest-ok {
  animation: investMainIn 0.55s ease 0.08s both;
}
.invest-eyebrow {
  margin: 0 0 10px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--invest-teal);
}
.invest-title {
  margin: 0 0 12px;
  max-width: 16ch;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(26px, 4.2vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--invest-ink);
}
.invest-lead {
  margin: 0 0 28px;
  max-width: 46ch;
  text-align: left;
  color: var(--invest-muted);
  font-size: 15.5px;
  line-height: 1.65;
  font-weight: 550;
}
.invest-grid {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--invest-line);
  background: rgba(255, 255, 255, 0.72);
}
@media (min-width: 900px) {
  .invest-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .invest-body {
    padding-bottom: 24px;
  }
  .invest-hero {
    padding: 16px 40px 14px;
    min-height: 108px;
  }
  .invest-hero-inner {
    padding-left: 0;
  }
  .invest-back {
    left: 16px;
    top: 12px;
  }
  .invest-logo {
    width: min(240px, 36%);
  }
  .invest-main {
    margin-top: -28px;
    padding: 16px 40px 48px;
    max-width: none;
    border-radius: 0;
    background: transparent;
  }
  .invest-ok {
    max-width: 980px;
  }
}
.invest-card {
  position: relative;
  padding: 22px 20px 24px;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--invest-line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s ease;
}
.invest-card:hover {
  background: rgba(8, 127, 140, 0.04);
}
@media (min-width: 900px) {
  .invest-card {
    padding: 26px 24px 28px;
    border-bottom: 0;
    border-right: 1px solid var(--invest-line);
  }
  .invest-card:last-child {
    border-right: 0;
  }
}
.invest-card-idx {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  color: var(--invest-teal);
}
.invest-card b {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: 0.01em;
  color: var(--invest-ink);
}
.invest-card span:not(.invest-card-idx) {
  color: var(--invest-muted);
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 500;
}
.invest-soon {
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--invest-line);
  color: #7a8a90;
  font-size: 13px;
  line-height: 1.55;
}
@keyframes investHeroIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
@keyframes investMainIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .invest-hero,
  .invest-ok {
    animation: none;
  }
}
.income-tabs button {
  white-space: normal;
  line-height: 1.2;
  font-size: 12px;
}
.me-main-tabs {
  flex-wrap: wrap;
}
.me-main-tabs button {
  flex: 1 1 18%;
  min-width: 0;
  white-space: normal;
  line-height: 1.15;
  font-size: 11.5px;
  padding: 10px 3px 8px;
}
#meIncomePane {
  margin: -8px -10px 0;
}
#meIncomePane .me-card,
#meIncomePane #incomeSourcePane,
#meIncomePane #incomeLandPane {
  margin: 8px 10px 12px;
}
.home-toast {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(86px + env(safe-area-inset-bottom));
  z-index: 40;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(17, 24, 39, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}
.home-banner {
  margin: 12px 8px 4px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 13px;
  font-weight: 700;
}
.home-section {
  margin: 22px 0 0;
}
.home-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 18px 12px;
}
.home-section-head h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: #111827;
}
.home-section-head h2::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 6px;
  border-radius: 99px;
  background: #087f8c;
}
.home-more {
  color: #087f8c;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}
.home-news {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 18px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.home-news::-webkit-scrollbar { display: none; }
.home-news-card {
  flex: 0 0 78%;
  max-width: 280px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}
.home-news-thumb {
  position: relative;
  height: 108px;
  display: flex;
  align-items: flex-end;
  padding: 10px 12px;
  background:
    linear-gradient(180deg, transparent 20%, rgba(0,40,48,.72)),
    linear-gradient(135deg, #0e8a96, #087f8c 48%, #0b5f68);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.home-news-kicker {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(226, 32, 46, 0.92);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.home-news-body { padding: 12px 12px 14px; }
.home-news-tag {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  background: #e11d48;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.home-news-date { margin: 8px 0 4px; color: #6b7280; font-size: 12px; }
.home-news-title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-empty { color: #6b7280; font-size: 13px; padding: 4px 18px 12px; }
@media (min-width: 900px) {
  .dock-home-link { display: none !important; }
  .dock-ico { display: none; }
}
@media (max-width: 899px) {
  .dock {
    justify-content: space-around;
    padding: 4px 6px calc(6px + env(safe-area-inset-bottom));
  }
  .dock-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 4px;
    font-size: 11px;
  }
  .dock-item.is-active {
    background: transparent;
    color: #087f8c;
  }
  .home-body .dock-item.is-active .dock-ico,
  .app-body .dock-item.is-active .dock-ico {
    background: #087f8c;
    box-shadow: 0 0 0 7px #e8f6f7;
    border-radius: 50%;
  }
  .home-body .dock-item.is-active,
  .app-body .dock-item.is-active {
    background: transparent;
    color: #087f8c;
  }
  .dock-ico {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.85;
    -webkit-mask: center / 18px 18px no-repeat;
    mask: center / 18px 18px no-repeat;
  }
  .dock-ico-home {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Cpath d='M4 11.5 12 4l8 7.5V20a1 1 0 0 1-1 1h-5v-6H10v6H5a1 1 0 0 1-1-1z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Cpath d='M4 11.5 12 4l8 7.5V20a1 1 0 0 1-1 1h-5v-6H10v6H5a1 1 0 0 1-1-1z'/%3E%3C/svg%3E");
  }
  .dock-ico-kho {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Cpath d='M12 3 3 8v3h18V8z'/%3E%3Cpath d='M5 11v7h4v-5h6v5h4v-7'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Cpath d='M12 3 3 8v3h18V8z'/%3E%3Cpath d='M5 11v7h4v-5h6v5h4v-7'/%3E%3C/svg%3E");
  }
  .dock-ico-chat {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a8 8 0 0 1-8 8H7l-4 3V12a8 8 0 1 1 18 0z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a8 8 0 0 1-8 8H7l-4 3V12a8 8 0 1 1 18 0z'/%3E%3C/svg%3E");
  }
  .dock-ico-map {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Cpath d='M9 4 3 6v14l6-2 6 2 6-2V4l-6 2z'/%3E%3Cpath d='M9 4v14M15 6v14'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Cpath d='M9 4 3 6v14l6-2 6 2 6-2V4l-6 2z'/%3E%3Cpath d='M9 4v14M15 6v14'/%3E%3C/svg%3E");
  }
  .dock-ico-more {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.2'/%3E%3Cpath d='M5.5 19c.8-3.2 3.4-5 6.5-5s5.7 1.8 6.5 5'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.2'/%3E%3Cpath d='M5.5 19c.8-3.2 3.4-5 6.5-5s5.7 1.8 6.5 5'/%3E%3C/svg%3E");
  }
}
.skyland-apt-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #138f9e;
  border: 3px solid #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
}
.skyland-apt-label {
  padding: 3px 7px;
  border: 1px solid #138f9e;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.24);
  color: #263238;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
}
.skyland-apt-pop {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 430px;
  max-width: calc(100vw - 48px);
  max-height: 72vh;
  min-height: 380px;
  overflow: hidden;
  padding: 2px 2px 4px 0;
}
.skyland-apt-list {
  flex: 1;
  min-height: 0;
  overflow: auto;
}
.skyland-apt-filter-btn {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 5px 8px;
  border: 1px solid #c5d6d9;
  border-radius: 8px;
  background: #f4fbfb;
  color: #0a6e78;
  cursor: pointer;
}
.skyland-apt-filter-btn.is-active {
  border-color: #087f8c;
  background: #e8f6f7;
}
.skyland-apt-filter-btn.is-active::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e53935;
}
.skyland-apt-sheet {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}
.skyland-apt-sheet.hidden { display: none; }
.skyland-apt-sheet-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 40px 10px;
  border-bottom: 1px solid #eceff1;
  font-size: 16px;
  font-weight: 800;
}
.skyland-apt-sheet-close {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #607d8b;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.skyland-apt-sheet-body {
  flex: 1;
  overflow: auto;
  padding: 0 12px 10px;
  background: #fff;
}
.skyland-apt-acc {
  border-bottom: 1px solid #eeeeee;
}
.skyland-apt-acc > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 2px;
  font-size: 15px;
  font-weight: 700;
  color: #212121;
  cursor: pointer;
  list-style: none;
}
.skyland-apt-acc > summary::-webkit-details-marker,
.skyland-apt-dd > summary::-webkit-details-marker { display: none; }
.skyland-apt-acc > summary::after,
.skyland-apt-dd > summary::after {
  content: "▾";
  color: #9e9e9e;
  font-size: 13px;
  font-weight: 500;
  margin-left: 8px;
}
.skyland-apt-acc[open] > summary::after,
.skyland-apt-dd[open] > summary::after { content: "▴"; }
.skyland-apt-acc-body { padding: 0 0 10px; }
.skyland-apt-dd {
  margin: 0 0 8px;
}
.skyland-apt-dd > summary {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  list-style: none;
}
.skyland-apt-dd[open] > summary {
  border-color: #b0bec5;
}
.skyland-apt-dd-name {
  flex: 0 0 auto;
  margin-right: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #263238;
}
.skyland-apt-dd-val {
  flex: 1;
  min-width: 0;
  text-align: right;
  color: #9e9e9e;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.skyland-apt-dd-val.is-picked { color: #212121; }
.skyland-apt-dd-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 8px 0 2px;
}
.skyland-apt-opt {
  display: block;
  width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid #eceff1;
  border-radius: 8px;
  background: #fafafa;
  color: #37474f;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.skyland-apt-opt.is-on {
  border-color: #e53935;
  background: #fff5f5;
  color: #c62828;
}
.skyland-apt-hint {
  margin: 0 0 8px;
  font-size: 11px;
  color: #78909c;
  font-weight: 600;
}
.skyland-apt-money {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 8px;
}
.skyland-apt-money input {
  width: 100%;
  box-sizing: border-box;
  height: 38px;
  padding: 0 10px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  background: #fff;
}
.skyland-apt-sheet-foot {
  display: flex;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid #eceff1;
  background: #fff;
}
.skyland-apt-reset,
.skyland-apt-confirm {
  flex: 1;
  border-radius: 8px;
  padding: 11px 8px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.skyland-apt-reset {
  border: 1px solid #cfd8dc;
  background: #fff;
  color: #455a64;
}
.skyland-apt-confirm {
  border: 0;
  background: #e53935;
  color: #fff;
}
.skyland-apt-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
  padding: 0 0 6px;
}
.skyland-apt-title {
  flex: 1;
  min-width: 0;
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  line-height: 1.25;
}
.skyland-apt-filter-count {
  font-size: 11px;
  font-weight: 800;
}
.skyland-apt-tower {
  margin: 7px 0;
  border: 1px solid #d8e4e7;
  border-radius: 9px;
  background: #fff;
}
.skyland-apt-tower summary {
  cursor: pointer;
  font-weight: 800;
  padding: 9px 10px;
}
.skyland-apt-tower-body { padding: 0 9px 9px; }
.skyland-apt-btn {
  border: 1px solid #1593a0;
  border-radius: 7px;
  padding: 5px 9px;
  background: #fff;
  color: #087f8c;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.skyland-apt-btn.is-off {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}
.skyland-apt-unit {
  padding: 8px 0;
  border-top: 1px solid #eef3f4;
  font-size: 13px;
}
.skyland-apt-need { font-weight: 700; margin: 2px 0; }
.skyland-apt-price { margin: 0 0 4px; color: #263238; font-size: 12px; }
.skyland-apt-date { margin: 0 0 5px; color: #6f7f84; font-size: 10px; font-weight: 800; }
.skyland-apt-actions {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  align-items: center;
}
.skyland-phone-line {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  color: #263238;
}
.skyland-phone-hint {
  color: #6f7f84;
  font-weight: 800;
  margin-right: 4px;
}
a.skyland-phone {
  color: #087f8c;
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px dotted #087f8c;
  cursor: pointer;
}
.skyland-apt-phone {
  display: block;
  max-width: 100%;
  margin-top: 6px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
}
.skyland-apt-detail { margin-top: 6px; font-size: 12px; color: #374151; }
.maplibregl-popup.skyland-apt-popup .maplibregl-popup-content {
  border-radius: 12px;
  padding: 10px 12px;
}
.skyland-apt-phone-sheet {
  display: none;
}
@media (max-width: 899px) {
  .skyland-apt-phone-sheet {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 70;
    align-items: flex-end;
    justify-content: center;
    background: rgba(20, 32, 38, 0.38);
    padding: 0;
  }
  .skyland-apt-phone-sheet.hidden {
    display: none !important;
  }
  .skyland-apt-phone-sheet-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: calc(100dvh - 58px - env(safe-area-inset-bottom));
    border-radius: 16px 16px 0 0;
    background: #fff;
    box-shadow: 0 -10px 32px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    padding: 0 10px calc(10px + 56px + env(safe-area-inset-bottom));
  }
  .skyland-apt-phone-bar {
    position: relative;
    flex: 0 0 auto;
    height: 28px;
  }
  .skyland-apt-phone-handle {
    display: block;
    width: 42px;
    height: 4px;
    margin: 10px auto 0;
    border-radius: 999px;
    background: #cfd8dc;
  }
  .skyland-apt-phone-close {
    position: absolute;
    right: 0;
    top: 2px;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #607d8b;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
  }
  .skyland-apt-phone-sheet-panel .skyland-apt-pop {
    width: 100%;
    max-width: none;
    min-height: 0;
    max-height: none;
    flex: 1 1 auto;
    height: auto;
    overflow: hidden;
  }
  .skyland-apt-phone-sheet-panel .skyland-apt-list {
    max-height: none;
  }
  .maplibregl-popup.skyland-apt-popup {
    display: none !important;
  }
  .skyland-apt-pop {
    width: 100%;
    max-width: none;
    max-height: none;
    min-height: 0;
  }
  .skyland-apt-title { font-size: 16px; }
  .skyland-apt-filter-btn {
    min-height: 36px;
    padding: 6px 10px;
  }
}

.home-tile-ico.is-news {
  background: linear-gradient(180deg, #e8f1ff, #cfe0ff);
  color: #1d4ed8;
}
.home-tile-ico.is-kho {
  background: linear-gradient(180deg, #e8f8ef, #c8eed8);
  color: #0f8a4b;
}
.home-news-sum {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-news-thumb-honor {
  background:
    linear-gradient(180deg, transparent 20%, rgba(40,20,0,.72)),
    linear-gradient(135deg, #f59e0b, #d97706 48%, #92400e);
}
.home-news-thumb-event {
  background:
    linear-gradient(180deg, transparent 20%, rgba(20,0,40,.72)),
    linear-gradient(135deg, #8b5cf6, #6d28d9 48%, #4c1d95);
}
.kho-chooser {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(15, 23, 42, 0.45);
}
.kho-chooser[hidden] { display: none !important; }
.kho-chooser-btn[hidden] { display: none !important; }
.kho-chooser-panel {
  width: min(420px, 100%);
  padding: 20px 18px 16px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}
.kho-chooser-panel h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #087f8c;
}
.kho-chooser-panel p {
  margin: 0 0 14px;
  color: #546e7a;
  font-size: 13px;
}
.kho-chooser-btn {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 14px 12px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
}
.kho-chooser-btn.is-map {
  background: #087f8c;
  color: #fff;
}
.kho-chooser-btn.is-list {
  background: #e8f3f4;
  color: #087f8c;
}
.kho-chooser-close {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: #546e7a;
  font-weight: 700;
  padding: 8px;
  cursor: pointer;
}
.news-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: calc(10px + env(safe-area-inset-top)) 12px 10px;
  background: #087f8c;
  color: #fff;
}
.news-head h1 {
  flex: 1;
  margin: 0;
  font-size: 17px;
  text-align: center;
}
.news-back, .news-head-pad {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  border-radius: 12px;
}
.news-tabs {
  display: flex;
  gap: 0;
  padding: 8px 10px 0;
  background: #fff;
}
.news-tabs button {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 6px;
  font-weight: 800;
  font-size: 13px;
  color: #5f7a80;
  cursor: pointer;
  border-bottom: 3px solid transparent;
}
.news-tabs button.is-on {
  color: #087f8c;
  border-bottom-color: #087f8c;
}
.news-main {
  padding: 12px 14px 96px;
  max-width: 760px;
  margin: 0 auto;
}
.news-list { display: grid; gap: 10px; }
.news-card {
  display: block;
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}
.news-card h2, .news-detail h2 {
  margin: 6px 0 4px;
  font-size: 17px;
  color: #103d43;
}
.news-card p { margin: 6px 0 0; color: #546e7a; font-size: 13px; line-height: 1.45; }
.news-card-kicker {
  font-size: 11px;
  font-weight: 800;
  color: #087f8c;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.news-card-date { color: #6b7280; font-size: 12px; }
.news-detail {
  padding: 4px 2px 20px;
}
.news-detail-body {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: #1a1a1a;
  white-space: pre-wrap;
}
.news-back-inline {
  display: inline-block;
  margin-bottom: 10px;
  color: #087f8c;
  font-weight: 800;
  text-decoration: none;
}
.news-del {
  margin-top: 16px;
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  background: #fde8e8;
  color: #b42318;
  font-weight: 800;
  cursor: pointer;
}
.news-admin {
  margin-top: 22px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}
.news-admin h2 { margin: 0 0 10px; font-size: 15px; }
.news-form {
  display: grid;
  gap: 8px;
}
.news-form input, .news-form select, .news-form textarea {
  padding: 10px 12px;
  border: 1px solid #cfd8dc;
  border-radius: 10px;
  font: inherit;
}
.news-form button {
  border: 0;
  border-radius: 10px;
  padding: 12px;
  background: #087f8c;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.news-pin { font-size: 13px; color: #33464b; }
@media (min-width: 900px) {
  .home-body {
    background: #eef3f4;
  }
  .home-hero {
    max-width: 980px;
    margin: 0 auto;
    border-radius: 0 0 24px 24px;
  }
  .home-wrap {
    max-width: 980px;
    margin: -38px auto 0;
    padding: 0 16px;
  }
  .home-section {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }
  .home-grid {
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    grid-auto-columns: minmax(84px, 88px);
    gap: 12px 8px;
  }
  .home-tile { font-size: 12px; }
  .home-tile-ico {
    width: 52px;
    height: 52px;
  }
  .home-news-card {
    flex: 0 0 260px;
    max-width: none;
  }
  .dock-home-link { display: flex !important; }
  .home-body .dock,
  .news-body .dock {
    display: flex;
  }
}

.home-hero-copy { display: none; }

html.desk-ui {
  height: 100%;
}
html.desk-ui body {
  min-height: 100%;
}
html.desk-ui .desk-shell {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 40;
  width: 248px;
  display: flex;
  flex-direction: column;
  padding: 22px 16px 18px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(184, 255, 42, 0.12), transparent 42%),
    linear-gradient(180deg, #0b4f56 0%, #087f8c 48%, #055862 100%);
  box-shadow: 8px 0 32px rgba(4, 40, 48, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
html.desk-ui .desk-toggle {
  position: absolute;
  top: 18px;
  right: -14px;
  z-index: 42;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: #087f8c;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(4, 40, 48, 0.28);
}
html.desk-ui .desk-toggle:hover {
  background: #066c76;
}
html.desk-ui .desk-brand {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 4px 2px;
  margin: 0 4px 16px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
html.desk-ui .desk-brand img {
  width: 138px;
  height: 30px;
  object-fit: contain;
  opacity: 0.72;
  filter: saturate(0.88) brightness(1.08);
  transition: opacity 0.18s ease, filter 0.18s ease;
}
html.desk-ui .desk-brand:hover img {
  opacity: 0.94;
  filter: saturate(1) brightness(1.1);
}
html.desk-ui .desk-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 2px;
  scrollbar-width: thin;
}
html.desk-ui .desk-nav::-webkit-scrollbar {
  width: 5px;
}
html.desk-ui .desk-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}
html.desk-ui .desk-nav-link {
  padding: 9px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 750;
  font-size: 13px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
html.desk-ui .desk-nav-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
html.desk-ui .desk-nav-link.is-on {
  background: #fff;
  color: #087f8c;
  box-shadow: 0 8px 18px rgba(0, 20, 24, 0.16);
}
html.desk-ui .desk-foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
html.desk-ui .desk-who {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}
html.desk-ui .desk-logout {
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
html.desk-ui .desk-logout:hover { background: rgba(255, 255, 255, 0.22); }
html.desk-ui .dock { display: none !important; }
html.desk-ui body.home-body,
html.desk-ui body.news-body,
html.desk-ui body.app-body,
html.desk-ui body.invest-body,
html.desk-ui body.train-body {
  padding-left: 248px;
  padding-bottom: 0;
  background: #eef3f5;
  transition: padding-left 0.22s ease;
}
html.desk-ui.desk-nav-collapsed .desk-shell {
  transform: translateX(-100%);
  box-shadow: none;
}
html.desk-ui.desk-nav-collapsed .desk-toggle {
  right: -40px;
  background: #e03a3a;
}
html.desk-ui.desk-nav-collapsed body.home-body,
html.desk-ui.desk-nav-collapsed body.news-body,
html.desk-ui.desk-nav-collapsed body.app-body,
html.desk-ui.desk-nav-collapsed body.invest-body,
html.desk-ui.desk-nav-collapsed body.train-body {
  padding-left: 0;
}
html.desk-ui body.home-body {
  background:
    radial-gradient(80% 40% at 100% 0%, rgba(224, 58, 58, 0.08), transparent 50%),
    #f3e9ea;
}
html.desk-ui .home-hero {
  max-width: none;
  margin: 0;
  padding: 28px 40px 72px;
  border-radius: 0;
  background: #e03a3a;
}
html.desk-ui .home-hero-bar .home-brand { display: none; }
html.desk-ui .home-hero-bar {
  justify-content: flex-end;
}
html.desk-ui .home-hero-copy {
  display: block;
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 22px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -0.03em;
}
html.desk-ui .home-wrap {
  display: none;
}
html.desk-ui .home-desk-stage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8px 28px;
  max-width: none;
  margin: 8px 40px 40px;
  align-items: start;
}
html.desk-ui .home-desk-stage .home-section { margin: 18px 0 0; }
html.desk-ui .home-section-head { margin: 0 0 14px; }
html.desk-ui .home-news {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  overflow: visible;
  padding: 0;
}
html.desk-ui .home-desk-stage .home-section:first-child .home-news {
  grid-template-columns: 1fr 1fr;
}
html.desk-ui .home-news-card {
  flex: none;
  max-width: none;
  width: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
html.desk-ui .home-news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}
html.desk-ui .home-news-thumb { height: 128px; }
html.desk-ui body.app-body:not(.me-body) .app-header { display: none; }
html.desk-ui body.app-body:not(.me-body) .kho-switch {
  display: flex;
  max-width: none;
  margin: 20px 40px 0;
  width: min(420px, calc(100% - 80px));
}
html.desk-ui .kho-layout {
  margin: 0;
  min-height: 100vh;
  padding: 0;
  gap: 0;
  grid-template-columns: 188px minmax(0, 1fr);
  align-items: stretch;
  background: #f5f6f7;
}
html.desk-ui .kho-vtabs {
  position: sticky;
  top: 0;
  align-self: start;
  min-height: 100vh;
  padding: 28px 14px;
  border-radius: 0;
  border: 0;
  border-right: 1px solid #eceff1;
  background: #fff;
  box-shadow: none;
}
html.desk-ui .kho-content {
  min-width: 0;
  padding: 24px 28px 48px;
}
html.desk-ui .kho-mine-head {
  margin: -24px -28px 16px;
  padding: 24px 28px 14px;
}
html.desk-ui .kho-mine-body {
  padding: 0;
}
html.desk-ui .kho-mine-summary {
  margin: 0 0 14px;
  border: 1px solid #eceff1;
  border-radius: 14px;
  overflow: hidden;
}
html.desk-ui .feed-main {
  max-width: none;
  padding: 0 0 48px;
}
html.desk-ui .search-pill {
  background: #fff;
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}
html.desk-ui .source-card {
  border: 1px solid #e7eef0;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
html.desk-ui .source-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(8, 127, 140, 0.1);
}
html.desk-ui body.me-body {
  background: #eef3f5;
  padding-left: 248px;
  padding-bottom: 24px;
}
html.desk-ui .me-shell {
  width: min(920px, calc(100% - 48px));
  min-height: calc(100vh - 48px);
  max-height: none;
  margin: 24px auto;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}
html.desk-ui .me-main-tabs button {
  font-size: 13px;
  padding: 12px 8px;
}
html.desk-ui .news-head {
  padding: 18px 40px;
  background: transparent;
  color: #103d43;
}
html.desk-ui .news-head h1 {
  text-align: left;
  font-size: 28px;
  letter-spacing: -0.03em;
}
html.desk-ui .news-back,
html.desk-ui .news-head-pad { display: none; }
html.desk-ui .news-tabs {
  margin: 0 40px;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}
html.desk-ui .news-main {
  max-width: none;
  padding: 20px 40px 48px;
}
html.desk-ui .news-list {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
html.desk-ui .news-card,
html.desk-ui .news-admin {
  border: 1px solid #e7eef0;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
html.desk-ui .news-card:hover {
  border-color: #087f8c;
}
html.desk-ui body.invest-body {
  padding-left: 248px;
  background:
    radial-gradient(90% 40% at 100% 0%, rgba(8, 127, 140, 0.07), transparent 55%),
    #eef3f5;
}
html.desk-ui.desk-nav-collapsed body.invest-body {
  padding-left: 0;
}
html.desk-ui .invest-hero {
  padding: 18px 56px 14px;
  min-height: 112px;
  text-align: left;
  max-width: none;
  margin: 0;
}
html.desk-ui .invest-back { display: none; }
html.desk-ui .invest-hero-inner {
  max-width: 980px;
  margin: 0;
  padding-left: 0;
}
html.desk-ui .invest-logo {
  width: min(250px, 28%);
}
html.desk-ui .invest-main {
  margin-top: -24px;
  padding: 14px 56px 56px;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  background: transparent;
}
html.desk-ui .invest-ok {
  max-width: 980px;
}
html.desk-ui .me-invest-stage {
  max-width: 560px;
}
html.desk-ui .kho-chooser { z-index: 90; }
html.desk-ui .home-toast {
  left: 280px;
  right: 40px;
  bottom: 28px;
}

.train-body {
  margin: 0;
  min-height: 100dvh;
  background: #f3f3f3;
  color: #111;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
.train-head {
  padding: calc(8px + env(safe-area-inset-top)) 20px 4px;
}
.train-close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0 0 10px -8px;
  color: #111;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}
.train-head h1 {
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.train-main {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px 16px 32px;
}
.train-main[hidden],
.train-pane[hidden] {
  display: none !important;
}
.train-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 88px;
  padding: 20px 22px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: #111;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.train-card:active {
  transform: scale(0.99);
}
.train-ico {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
}
.train-ico svg {
  width: 100%;
  height: 100%;
  display: block;
}
.train-pane {
  padding: 8px 16px 32px;
}
.train-empty {
  margin: 0;
  padding: 36px 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  text-align: center;
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.5;
}
html.desk-ui body.train-body {
  padding-left: 248px;
  background: #eef3f5;
}
html.desk-ui .train-close { display: none; }
html.desk-ui .train-head {
  padding: 32px 40px 8px;
}
html.desk-ui .train-head h1 {
  font-size: 32px;
}
html.desk-ui .train-main,
html.desk-ui .train-pane {
  max-width: 720px;
  padding-left: 40px;
  padding-right: 40px;
}
html.desk-ui .train-card:hover {
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}
html.desk-ui .train-pane,
html.desk-ui .train-main {
  max-width: 860px;
}
.train-level {
  margin: 0 0 14px;
  color: #4b5563;
  font-size: 14px;
}
.train-admin,
.train-course,
.train-course-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}
.train-admin {
  padding: 18px 18px 8px;
  margin-bottom: 16px;
}
.train-admin h2 {
  margin: 0 0 8px;
  font-size: 18px;
}
.train-form,
.train-quiz {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.train-form input,
.train-form select,
.train-form button,
.train-quiz button,
.train-add-stage {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 0 12px;
  font: inherit;
}
.train-form button,
.train-quiz button {
  background: #111;
  color: #fff;
  border: 0;
  font-weight: 700;
}
.train-add-stage {
  background: #f3f4f6;
}
.train-stage-form {
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.train-q {
  display: grid;
  gap: 6px;
  padding: 8px 0;
  border-top: 1px solid #f0f0f0;
}
.train-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.train-course-card {
  display: block;
  padding: 16px 18px;
  text-decoration: none;
  color: #111;
}
.train-course-kicker,
.train-course-meta {
  color: #6b6b6b;
  font-size: 13px;
}
.train-course-card h2,
.train-course h2 {
  margin: 6px 0;
  font-size: 20px;
}
.train-sub {
  margin: 18px 0 0;
  font-size: 15px;
}
.train-course {
  padding: 18px;
}
.train-player {
  width: 100%;
  max-height: 70vh;
  background: #000;
  border-radius: 12px;
}
.train-watchbar {
  height: 6px;
  background: #ececec;
  border-radius: 99px;
  overflow: hidden;
  margin: 8px 0 16px;
}
.train-watchbar span {
  display: block;
  height: 100%;
  background: #c62828;
}
.train-stage-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}
.train-chip {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  font-size: 13px;
  font-weight: 650;
}
.train-chip.is-on { background: #111; color: #fff; }
.train-chip.is-ok { background: #e8f5e9; color: #1b5e20; }
.train-chip.is-lock { opacity: 0.55; }
.train-opt {
  display: block;
  padding: 8px 0;
}
.train-done {
  padding: 12px;
  border-radius: 12px;
  background: #e8f5e9;
  color: #1b5e20;
}
.train-progress-hero {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  padding: 18px 18px 16px;
  margin-bottom: 8px;
}
.train-progress-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b6b6b;
}
.train-progress-hero h2 {
  margin: 6px 0 4px;
  font-size: 22px;
}
.train-progress-hero p {
  margin: 0 0 10px;
  color: #6b6b6b;
  font-size: 14px;
}
.train-progress-score {
  font-weight: 800;
  margin-bottom: 8px;
}
.train-watchbar.is-lg {
  height: 10px;
}
.train-path {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 6px;
}
.train-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-decoration: none;
  color: #111;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  padding: 14px 16px;
  margin: 0 0 12px;
}
.train-step-num {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}
.train-step.is-done .train-step-num {
  background: #2e7d32;
}
.train-step.is-lock {
  opacity: 0.55;
  pointer-events: none;
}
.train-step-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.train-step-body strong {
  font-size: 16px;
}
.train-manage-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.train-manage-actions a,
.train-manage-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.train-edit {
  background: #111;
  color: #fff;
}
.train-admin-msg,
#trainAdminMsg {
  min-height: 1.4em;
  color: #c62828;
  font-weight: 650;
}

.skyland-wr-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.skyland-wr-row .skyland-add-label {
  margin-top: 0;
}
.skyland-wr-more {
  margin-top: 10px;
  border: 1px solid #e8edef;
  border-radius: 10px;
  padding: 2px 10px 10px;
  background: #fafcfd;
}
.skyland-wr-more > summary {
  cursor: pointer;
  font-weight: 800;
  color: #087f8c;
  padding: 10px 0;
  list-style: none;
}
.skyland-wr-more > summary::-webkit-details-marker { display: none; }
.skyland-wr-more > summary::after {
  content: " ▾";
  font-weight: 700;
}
.skyland-wr-more[open] > summary::after {
  content: " ▴";
}
.skyland-add-type-btn.is-wr {
  background: #c2410c;
}
#skylandAddPanel.is-warehouse .skyland-add-land-only,
.skyland-edit-overlay.is-warehouse .skyland-edit-land-only {
  display: none !important;
}
#skylandAddPanel:not(.is-warehouse) .skyland-add-wr-only,
.skyland-edit-overlay:not(.is-warehouse) .skyland-edit-wr-only {
  display: none !important;
}
.skyland-edit-span2 {
  grid-column: 1 / -1;
}
#skylandWrOverlay {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(15, 23, 42, 0.52);
  padding: 18px;
  box-sizing: border-box;
}
#skylandWrOverlay[hidden] {
  display: none !important;
}
.skyland-wr-panel {
  width: min(960px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  font: 14px/1.45 Arial, sans-serif;
  color: #172033;
}
.skyland-wr-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.skyland-wr-head h2 {
  margin: 0;
  flex: 1;
  font-size: 19px;
}
.skyland-wr-head button {
  border: 0;
  border-radius: 9px;
  padding: 9px 13px;
  cursor: pointer;
  font-weight: 700;
}
#skylandWrAdd {
  background: #166534;
  color: #fff;
}
#skylandWrAdd[hidden] {
  display: none !important;
}
.skyland-wr-close {
  background: #eef2f7;
  color: #172033;
}
.skyland-wr-body {
  padding: 15px;
}
.skyland-wr-msg {
  margin-bottom: 10px;
  color: #475569;
}
.skyland-wr-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}
.skyland-wr-card {
  border: 1px solid #dbe2ea;
  border-radius: 12px;
  padding: 12px;
  background: #fafcff;
}
.skyland-wr-card h3 {
  margin: 0 0 7px;
  font-size: 15px;
}
.skyland-wr-meta {
  color: #475569;
  margin: 4px 0;
}
.skyland-wr-private {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #cbd5e1;
  color: #7c2d12;
}
.skyland-wr-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.skyland-wr-edit {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  background: #0b8f9c;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.skyland-wr-price-box,
#skylandEditWrRentPrice {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#skylandAddWrRentPrice[hidden],
#skylandAddWrSalePrice[hidden],
#skylandEditWrRentPrice[hidden],
#skylandEditWrSalePrice[hidden] {
  display: none !important;
}
.skyland-wr-price-mode {
  display: flex;
  gap: 8px;
  margin: 4px 0 8px;
}
.skyland-wr-price-mode button {
  flex: 1;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #1e293b;
  border-radius: 10px;
  padding: 10px 8px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.skyland-wr-price-mode button.is-on {
  background: #c2410c;
  color: #fff;
  border-color: #9a3412;
}
#skylandAddWrPriceM2,
#skylandAddWrPriceTotal,
#skylandAddWrPrice,
#skylandAddWrFee,
#skylandEditWrPriceM2,
#skylandEditWrPriceTotal,
#skylandEditWrPrice,
#skylandEditWrFee {
  pointer-events: auto;
  background: #fff;
}
@media (max-width: 600px) {
  #skylandWrOverlay {
    padding: 0;
    align-items: flex-end;
  }
  .skyland-wr-panel {
    border-radius: 16px 16px 0 0;
    max-height: 94vh;
  }
}

.skyland-addr-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 2px 0 4px;
}
.skyland-addr-col {
  min-width: 0;
  border: 1px solid #d7e4e6;
  border-radius: 10px;
  padding: 5px 7px 7px;
}
.skyland-addr-col.is-new {
  background: #f3fbfb;
}
.skyland-addr-col.is-old {
  background: #faf7f0;
}
.skyland-addr-head {
  margin-bottom: 2px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}
.skyland-addr-col.is-new .skyland-addr-head {
  color: #087f8c;
}
.skyland-addr-col.is-old .skyland-addr-head {
  color: #9a6b12;
}
.skyland-addr-mini {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 800;
  color: #6a7b80;
  line-height: 1;
}
.skyland-addr-col input {
  width: 100%;
  box-sizing: border-box;
  min-height: 34px;
  margin-top: 3px;
  padding: 6px 8px;
  border: 1px solid #d0d5d8;
  border-radius: 7px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  background: #fff;
}
.skyland-addr-col input:focus {
  border-color: #087f8c;
  box-shadow: 0 0 0 2px rgba(8, 127, 140, 0.12);
}
.skyland-edit-grid2 > .skyland-addr-box {
  grid-column: 1 / -1;
}

.skyland-ac-list {
  display: none;
  position: fixed;
  z-index: 130000;
  max-height: 280px;
  overflow: auto;
  background: #fff;
  border: 1px solid #cfe3e6;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  padding: 4px;
  box-sizing: border-box;
}
.skyland-ac-list.is-open {
  display: block;
}
.skyland-ac-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}
.skyland-ac-item.is-on,
.skyland-ac-item:hover {
  background: #e7f6f7;
}
.skyland-ac-name {
  font-size: 15px;
  font-weight: 700;
  color: #17363b;
}
.skyland-ac-name i {
  font-style: normal;
  font-weight: 650;
  font-size: 11px;
  color: #087f8c;
  margin-left: 6px;
}
.skyland-ac-sub {
  font-size: 12px;
  color: #6a7b80;
}

/* —— Feed list (mobile sample layout) —— */
.feed-m-head { display: none; }
.feed-card {
  background: #fff;
  border-bottom: 1px solid #eceff1;
  padding: 12px 14px 10px;
}
.feed-card-main {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.feed-card-thumb {
  position: relative;
  display: block;
  width: 108px;
  height: 108px;
  border: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #cfd8dc;
  text-decoration: none;
  cursor: pointer;
}
.feed-card-thumb img,
.feed-card-thumb-ph {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #cfd8dc;
}
.feed-card-thumb-ph {
  background:
    linear-gradient(145deg, #c5d4d8 0%, #e8eef0 55%, #b7c8cd 100%);
}
.feed-card-place {
  position: absolute;
  left: 6px;
  top: 6px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  max-width: calc(100% - 12px);
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #24363b;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.feed-card-place i {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: #e03a3a;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.feed-card-shots {
  position: absolute;
  right: 6px;
  bottom: 6px;
  z-index: 1;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}
.feed-card-body { min-width: 0; }
.feed-card-title-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.feed-card-title {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  color: #15262b;
  font-size: 13.5px;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
}
.feed-card-fav {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #9aa7ad;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}
.feed-card-fav.is-on { color: #e03a3a; }
.feed-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}
.feed-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.2;
}
.feed-tag.is-hot {
  background: #fde8ea;
  color: #d12b3a;
}
.feed-tag.is-soft {
  background: #eef1f3;
  color: #5b6b71;
}
.feed-tag.is-blue {
  background: #e7f1ff;
  color: #2f6fed;
}
.feed-card-agent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #f3f5f6;
}
.feed-card-ava {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: #d7e2e5;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #087f8c;
}
.feed-card-ava img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feed-card-agent-text {
  flex: 1 1 auto;
  min-width: 0;
}
.feed-card-agent-text b {
  display: block;
  font-size: 13px;
  color: #1a2a2e;
}
.feed-card-agent-text small {
  display: block;
  margin-top: 1px;
  color: #7a8a90;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feed-card-agent-acts {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
.feed-act-chat,
.feed-act-call {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: #fff center / 18px 18px no-repeat;
  box-shadow: 0 1px 3px rgba(20, 40, 48, 0.12);
  cursor: pointer;
  text-decoration: none;
}
.feed-act-chat {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5c63' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M21 12a8 8 0 0 1-8 8H7l-4 3V12a8 8 0 1 1 18 0z'/%3E%3C/svg%3E");
}
.feed-act-call {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5c63' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1.9.3 1.8.6 2.6a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.5-1.1a2 2 0 0 1 2.1-.4c.8.3 1.7.5 2.6.6a2 2 0 0 1 1.7 1.9z'/%3E%3C/svg%3E");
}
.feed-act-call.is-off { opacity: 0.35; cursor: default; }
.feed-card-extra {
  margin-top: 8px;
  border-top: 1px dashed #e4eaec;
  padding-top: 6px;
}
.feed-card-extra summary {
  cursor: pointer;
  color: #087f8c;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}
.feed-card-extra summary::-webkit-details-marker { display: none; }
.feed-card-extra-body { margin-top: 8px; }
.feed-empty {
  padding: 40px 16px;
  text-align: center;
  color: #6a7b80;
}
.feed-sort-menu {
  position: absolute;
  left: 14px;
  top: calc(100% + 4px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  min-width: 160px;
  padding: 6px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 40, 48, 0.18);
}
.feed-sort-menu[hidden] { display: none !important; }
.feed-sort-menu button {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  color: #24363b;
  cursor: pointer;
}
.feed-sort-menu button:hover { background: #f3f6f7; }

@media (max-width: 899px) {
  body.feed-body {
    background: #f7f8f9;
    padding-bottom: 72px;
  }
  body.feed-body .kho-layout {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 72px);
  }
  body.feed-body .kho-vtabs {
    flex-direction: column;
    gap: 0;
    padding: 10px 10px 4px;
    border-right: 0;
    border-bottom: 1px solid #eceff1;
    background: #fff;
  }
  body.feed-body .kho-vtabs-label {
    display: none;
  }
  body.feed-body .kho-vtab {
    border-left: 0;
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 14px;
  }
  body.feed-body .kho-vtab.is-on {
    background: #fff5f5;
    border-left-color: transparent;
  }
  body.feed-body .kho-content {
    flex: 1 1 auto;
    background: #f5f6f7;
  }
  body.feed-body .kho-mine-head {
    padding: 14px 14px 10px;
  }
  body.feed-body .kho-mine-body {
    padding: 0 0 24px;
  }
  body.feed-body .kho-mine-summary {
    margin: 0 0 8px;
  }
  body.feed-body .kho-mine-list {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
  body.feed-body .feed-desk-head,
  body.feed-body .feed-desk-only {
    display: none !important;
  }
  body.feed-body .feed-m-head {
    display: block;
    position: sticky;
    top: 0;
    z-index: 30;
    background: #e03a3a;
    padding: calc(10px + env(safe-area-inset-top)) 12px 0;
  }
  body.feed-body .feed-m-search {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 10px 0 12px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  }
  body.feed-body .feed-m-pin {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    background: #e03a3a;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") center / contain no-repeat;
  }
  body.feed-body .feed-m-search input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 14px;
    color: #1a2a2e;
  }
  body.feed-body .feed-m-filter {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    background: transparent center / 20px 20px no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6b71' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M4 5h16M7 12h10M10 19h4'/%3E%3C/svg%3E");
    cursor: pointer;
  }
  body.feed-body .feed-m-tabs {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    margin: 10px -4px 0;
    padding: 0 4px;
    scrollbar-width: none;
  }
  body.feed-body .feed-m-tabs::-webkit-scrollbar { display: none; }
  body.feed-body .feed-m-tabs button {
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 10px 12px;
    white-space: nowrap;
    cursor: pointer;
    border-bottom: 2px solid transparent;
  }
  body.feed-body .feed-m-tabs button.is-on {
    color: #fff;
    border-bottom-color: #fff;
  }
  body.feed-body .feed-m-sort-row {
    position: relative;
    background: #fff;
    margin: 0 -12px;
    padding: 8px 14px;
  }
  body.feed-body .feed-m-sort {
    border: 1px solid #e1e7ea;
    border-radius: 999px;
    background: #fff;
    color: #31464e;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    cursor: pointer;
  }
  body.feed-body .feed-m-sort::after {
    content: " ▾";
    opacity: 0.7;
  }
  body.feed-body .feed-main {
    max-width: none;
    margin: 0;
    padding: 0 0 18px;
    background: #fff;
  }
  body.feed-body .feed-desk-filters {
    display: none;
  }
  body.feed-body .feed-meta {
    margin: 0;
    padding: 8px 14px 0;
    font-size: 12px;
  }
  body.feed-body .feed-list {
    background: #fff;
  }
  body.feed-body .sync-bar {
    margin: 0;
    padding: 8px 14px;
  }
  body.feed-body .dock-item.is-active {
    color: #e03a3a;
  }
  body.feed-body .dock-item.is-active .dock-ico {
    background: #e03a3a;
    box-shadow: 0 0 0 8px #fde8ea;
  }
}

@media (min-width: 900px) {
  body.feed-body .feed-m-head {
    display: none;
  }
  body.feed-body .feed-list {
    display: grid;
    gap: 12px;
  }
  body.feed-body .feed-card {
    border: 1px solid #e5ecee;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  }
  body.feed-body .feed-desk-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    padding: 0;
    border: 0;
    background: transparent;
  }
  body.feed-body .feed-desk-search {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 10px 0 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e5ecee;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  }
  body.feed-body .feed-desk-search .feed-m-pin {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    background: #e03a3a;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") center / contain no-repeat;
  }
  body.feed-body .feed-desk-search input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 14px;
  }
  body.feed-body .feed-desk-search .feed-m-filter {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    background: transparent center / 20px 20px no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6b71' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M4 5h16M7 12h10M10 19h4'/%3E%3C/svg%3E");
    cursor: pointer;
  }
  body.feed-body .feed-desk-go {
    height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 12px;
    background: #e03a3a;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
  }
  body.feed-body .feed-desk-sort {
    height: 46px;
    padding: 0 14px;
    border: 1px solid #e5ecee;
    border-radius: 12px;
    background: #fff;
    color: #1a2a2e;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
  }
  body.feed-body .feed-desk-sort.is-on {
    border-color: #f3b6bb;
    background: #fde8ea;
    color: #c62828;
  }
  body.feed-body .feed-filter-chip {
    height: 36px;
    padding: 0 12px;
    border: 1px solid #f3b6bb;
    border-radius: 999px;
    background: #fde8ea;
    color: #c62828;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
  }
}

.feed-filter-sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.feed-filter-sheet[hidden] {
  display: none !important;
}
.feed-filter-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 28, 0.45);
}
.feed-filter-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(92vh, 860px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.16);
}
.feed-filter-head {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 8px 48px;
  border-bottom: 1px solid #eef1f2;
}
.feed-filter-head h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: #1a2a2e;
}
.feed-filter-x {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #5b6b71;
  cursor: pointer;
}
.feed-filter-body {
  flex: 1 1 auto;
  overflow: auto;
  padding: 14px 16px 20px;
  -webkit-overflow-scrolling: touch;
}
.feed-filter-field {
  display: block;
  margin: 0 0 14px;
}
.feed-filter-field > span {
  display: block;
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  color: #1a2a2e;
}
.feed-filter-field select,
.feed-filter-field input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: #f3f4f6;
  color: #1a2a2e;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
}
.feed-filter-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239aa4a8' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}
.feed-filter-acc {
  border-top: 1px solid #eceff1;
}
.feed-filter-acc > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  font-size: 15px;
  font-weight: 700;
  color: #1a2a2e;
  cursor: pointer;
}
.feed-filter-acc > summary::-webkit-details-marker {
  display: none;
}
.feed-filter-acc > summary::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239aa4a8' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.15s ease;
}
.feed-filter-acc[open] > summary::after {
  transform: rotate(180deg);
}
.feed-filter-acc > :not(summary) {
  padding: 0 0 14px;
}
.feed-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 2px 0 8px;
}
.feed-filter-chip-opt {
  border: 1px solid #e5ecee;
  border-radius: 999px;
  background: #f7f8f9;
  color: #334347;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  cursor: pointer;
}
.feed-filter-chip-opt.is-on {
  border-color: #f3b6bb;
  background: #fde8ea;
  color: #c62828;
}
.feed-filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.feed-filter-foot {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid #eef1f2;
  background: #fff;
}
.feed-filter-reset,
.feed-filter-apply {
  height: 48px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}
.feed-filter-reset {
  border: 1px solid #d9dee1;
  background: #fff;
  color: #1a2a2e;
}
.feed-filter-apply {
  border: 0;
  background: #e03a3a;
  color: #fff;
}
body.feed-filter-open {
  overflow: hidden;
}
body.feed-body .feed-m-filter.is-on {
  background-color: #fde8ea;
}
@media (min-width: 900px) {
  .feed-filter-sheet {
    align-items: center;
    padding: 24px;
  }
  .feed-filter-panel {
    border-radius: 18px;
    max-height: min(88vh, 820px);
  }
}

.feed-sort-panel {
  max-height: min(78vh, 560px);
}
.feed-sort-body {
  flex: 1 1 auto;
  overflow: auto;
  padding: 4px 0 12px;
}
.feed-sort-opt {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #f0f2f3;
  background: transparent;
  text-align: left;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #1a2a2e;
  cursor: pointer;
}
.feed-sort-opt:last-child {
  border-bottom: 0;
}
.feed-sort-opt.is-on {
  color: #e03a3a;
  background: #fff7f7;
}
body.feed-body .feed-m-sort.is-on {
  color: #e03a3a;
}

/* Product detail (chi tiết nguồn hàng) */
.skyland-info-overlay.skyland-pd-open {
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
  background: rgba(15, 20, 24, 0.35);
}
.skyland-info-overlay.skyland-pd-open .skyland-info-panel {
  width: 100%;
  max-width: 720px;
  max-height: 100vh;
  margin: 0 auto;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: #f4f5f6;
}
.skyland-info-overlay.skyland-pd-open .skyland-pd-head,
.skyland-info-overlay.skyland-pd-open .skyland-info-head {
  flex: 0 0 auto;
  margin: 0;
  padding: 10px 12px;
  background: #e03a3a;
  color: #fff;
}
.skyland-info-overlay.skyland-pd-open .skyland-info-head b {
  color: #fff;
  text-align: center;
  font-size: 16px;
}
.skyland-info-overlay.skyland-pd-open .skyland-info-back,
.skyland-info-overlay.skyland-pd-open .skyland-edit-close {
  background: transparent;
  color: #fff;
  border: 0;
}
.skyland-pd {
  flex: 1 1 auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.skyland-pd-gallery {
  position: relative;
  background: #12181b;
  aspect-ratio: 4 / 3;
  min-height: 220px;
  max-height: min(48vh, 360px);
}
.skyland-pd-slide {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.skyland-pd-slide img,
.skyland-pd-slide video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #12181b;
}
.skyland-pd-empty-media {
  height: 100%;
  display: grid;
  place-items: center;
  color: #c8d0d4;
  font-size: 14px;
}
.skyland-pd-gphoto {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:
    linear-gradient(145deg, #2b3a42 0%, #1a2226 55%, #314047 100%);
  color: #fff;
}
.skyland-pd-gphoto-label {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.92;
}
.skyland-pd-album-btn {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  border: 0;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.skyland-pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 12050;
  display: flex;
  flex-direction: column;
  background: rgba(8, 12, 14, 0.94);
  color: #fff;
}
.skyland-pd-lightbox[hidden] {
  display: none !important;
}
.skyland-pd-lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  flex: 0 0 auto;
}
.skyland-pd-lightbox-bar button {
  border: 0;
  border-radius: 999px;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.skyland-pd-lightbox-stage {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 8px 12px 20px;
}
.skyland-pd-lightbox-stage img,
.skyland-pd-lightbox-stage video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}
.feed-card-thumb.is-gphoto .feed-card-thumb-ph {
  background:
    linear-gradient(145deg, #3a4d56 0%, #243238 55%, #4a646e 100%);
}
.feed-card-thumb.is-gphoto .feed-card-thumb-ph::after {
  content: "GP";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.feed-card-thumb-ph {
  position: relative;
}
.skyland-pd-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.skyland-pd-fav.is-on { color: #ff6b6b; }
.skyland-pd-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.skyland-pd-summary {
  padding: 14px 14px 8px;
  background: #fff;
}
.skyland-pd-summary h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #15262b;
}
.skyland-pd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.skyland-pd-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #f1f3f4;
  color: #44555a;
}
.skyland-pd-pill.is-hot {
  background: #fde8ea;
  color: #c62828;
}
.skyland-pd-pill.is-blue {
  background: #e8f2ff;
  color: #1e5fbf;
}
.skyland-pd-pill.is-soft {
  background: #eef1f2;
  color: #4a5b60;
}
.skyland-pd-agent {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border-top: 1px solid #eef1f2;
  border-bottom: 1px solid #eef1f2;
}
.skyland-pd-ava {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  overflow: hidden;
  background: #e8eef0;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #e03a3a;
}
.skyland-pd-ava img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.skyland-pd-agent-text {
  flex: 1 1 auto;
  min-width: 0;
}
.skyland-pd-agent-text b {
  display: block;
  font-size: 14px;
  color: #15262b;
}
.skyland-pd-agent-text small {
  color: #6a7b80;
  font-size: 12px;
}
.skyland-pd-agent-acts {
  display: flex;
  gap: 8px;
}
.skyland-pd-tabs {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  background: #fff;
  padding: 0 8px;
  border-bottom: 1px solid #eef1f2;
  scrollbar-width: none;
}
.skyland-pd-tabs::-webkit-scrollbar { display: none; }
.skyland-pd-tabs button {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 700;
  color: #7a8a8f;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.skyland-pd-tabs button.is-on {
  color: #e03a3a;
  border-bottom-color: #e03a3a;
}
.skyland-pd-panels {
  padding: 12px 12px 24px;
}
.skyland-pd-panel { display: none; }
.skyland-pd-panel.is-on { display: block; }
.skyland-pd-card {
  background: #fff;
  border: 1px solid #e8ecee;
  border-radius: 14px;
  margin: 0 0 12px;
  overflow: hidden;
}
.skyland-pd-card > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  font-size: 15px;
  font-weight: 800;
  color: #15262b;
  cursor: pointer;
}
.skyland-pd-card > summary::-webkit-details-marker { display: none; }
.skyland-pd-card > summary::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239aa4a8' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
}
.skyland-pd-card[open] > summary::after { transform: rotate(180deg); }
.skyland-pd-card-body { padding: 0 14px 12px; }
.skyland-pd-kv {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid #f1f3f4;
  font-size: 13px;
}
.skyland-pd-kv span { color: #6a7b80; }
.skyland-pd-kv b {
  text-align: right;
  color: #15262b;
  font-weight: 750;
  word-break: break-word;
}
.skyland-pd-desc {
  border-top: 1px solid #f1f3f4;
  padding: 10px 0 4px;
}
.skyland-pd-desc span {
  display: block;
  color: #6a7b80;
  font-size: 13px;
  margin-bottom: 6px;
}
.skyland-pd-desc p {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f5f6f7;
  color: #24363b;
  font-size: 13px;
  line-height: 1.5;
  white-space: pre-wrap;
}
.skyland-pd-link,
.skyland-pd-link-btn {
  color: #e03a3a !important;
  font-weight: 750;
  text-decoration: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.skyland-pd-legal-tag {
  display: inline-flex;
  margin: 0 0 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e8f0f8;
  color: #2b567a;
  font-size: 12px;
  font-weight: 700;
}
.skyland-pd-empty {
  color: #6a7b80;
  text-align: center;
  padding: 24px 12px;
}
@media (min-width: 900px) {
  .skyland-info-overlay.skyland-pd-open {
    padding: 24px;
    align-items: center;
    justify-content: center;
  }
  .skyland-info-overlay.skyland-pd-open .skyland-info-panel {
    max-height: min(92vh, 900px);
    border-radius: 18px;
  }
  .skyland-pd-gallery {
    aspect-ratio: 16 / 10;
    min-height: 260px;
    max-height: min(46vh, 440px);
  }
}


