:root {
  --bg: #070907;
  --panel: #111611;
  --panel-light: #182018;
  --text: #f3f0e8;
  --muted: #b9b5aa;
  --accent: #d2ff42;
  --accent2: #ff6b35;
  --border: rgba(255,255,255,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

.hero {
  min-height: 88vh;
  padding: 28px 7vw 70px;
  background:
    linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.9)),
    radial-gradient(circle at 20% 20%, rgba(210,255,66,0.18), transparent 30%),
    linear-gradient(135deg, #121812 0%, #070907 55%, #17100d 100%);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 74px;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
}
.logo span { color: var(--accent); }

.nav-btn, .primary-btn, .secondary-btn {
  border: 1px solid var(--border);
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
}
.nav-btn { background: rgba(255,255,255,0.06); }
.primary-btn { background: var(--accent); color: #111; border: none; }
.secondary-btn { background: transparent; }

.hero-content { max-width: 850px; position: relative; z-index: 2; }
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 1.5px;
}

h1 {
  font-size: clamp(46px, 7.5vw, 92px);
  line-height: 0.88;
  margin: 10px 0 20px;
  letter-spacing: -4px;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
  margin: 5px 0 10px;
  letter-spacing: -1.5px;
}

h3 { margin-top: 0; }
.subtext {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-note {
  margin: -35px 7vw 60px;
  background: #171b14;
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent2);
  padding: 18px 20px;
  border-radius: 16px;
  color: var(--muted);
}

section { padding: 55px 7vw; }
.section-heading { max-width: 720px; margin-bottom: 25px; }
.section-heading p { color: var(--muted); }

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.filter {
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 800;
}
.filter.active, .filter:hover {
  background: var(--accent);
  color: #111;
}

#map {
  height: 620px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  color: var(--muted);
}
.card h3 { color: var(--text); }

.submit-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: start;
}
.submit-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  display: grid;
  gap: 12px;
}
input, select, textarea {
  width: 100%;
  background: #090c09;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 15px;
}
textarea { min-height: 120px; resize: vertical; }
.submit-form button {
  background: var(--accent2);
  color: white;
  border: none;
  border-radius: 14px;
  padding: 14px;
  font-weight: 900;
  cursor: pointer;
}

footer {
  padding: 28px 7vw;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.popup h3 { margin: 0 0 6px; color: #111; }
.popup p { margin: 4px 0; color: #333; }
.badge { display: inline-block; padding: 3px 8px; border-radius: 999px; background: #111; color: white; font-size: 12px; }

@media (max-width: 800px) {
  nav { margin-bottom: 70px; }
  .cards, .submit-section { grid-template-columns: 1fr; }
  #map { height: 520px; }
}

.nav-actions { display: flex; gap: 10px; align-items: center; }
button { font-family: inherit; cursor: pointer; }
.hidden { display: none !important; }
.status-pill { display: inline-block; margin-top: 22px; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; font-weight: 700; }
.pin { width: 26px; height: 26px; border-radius: 50%; border: 3px solid #111; box-shadow: 0 2px 10px rgba(0,0,0,.4); display: flex; align-items: center; justify-content: center; font-size: 12px; }
.pin.locked { filter: grayscale(.15); }
.badge.premium { background: #111; color: #d2ff42; }
.popup-upgrade { width: 100%; border: 0; border-radius: 10px; padding: 10px; background: #111; color: #d2ff42; font-weight: 800; }
.pricing-section { padding: 70px 8%; background: #101010; color: white; }
.pricing-card { max-width: 420px; margin: 0 auto; background: #181818; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; padding: 28px; box-shadow: 0 18px 50px rgba(0,0,0,.25); }
.pricing-card h3 { font-size: 1.7rem; margin: 0 0 8px; }
.price { font-size: 2.4rem; font-weight: 900; margin: 8px 0 16px; color: #d2ff42; }
.pricing-card ul { padding-left: 20px; line-height: 1.9; }
.small-note { font-size: .9rem; opacity: .72; margin-top: 12px; }
.modal { position: fixed; inset: 0; background: rgba(0,0,0,.72); display: flex; align-items: center; justify-content: center; z-index: 9999; padding: 20px; }
.modal-card { width: 100%; max-width: 440px; background: #fff; color: #111; border-radius: 24px; padding: 28px; position: relative; box-shadow: 0 30px 90px rgba(0,0,0,.5); }
.close-btn { position: absolute; top: 14px; right: 14px; border: 0; background: #eee; border-radius: 999px; width: 34px; height: 34px; font-size: 22px; }
.modal-card input { width: 100%; box-sizing: border-box; margin: 8px 0; border: 1px solid #ddd; border-radius: 12px; padding: 13px; font-size: 1rem; }
.modal-actions { display: flex; gap: 10px; margin-top: 12px; }
.modal-actions button { flex: 1; }
.locked-panel { position: relative; }


/* Stronger launch/front-page treatment */
.hero { position: relative; overflow: hidden; }
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,9,7,.95) 0%, rgba(7,9,7,.72) 46%, rgba(7,9,7,.22) 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 1px, transparent 78px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 78px);
  pointer-events: none;
}
.hero nav { position: relative; z-index: 3; }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  gap: 46px;
  align-items: center;
}
.hero-proof {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-proof div {
  min-width: 145px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  padding: 14px 16px;
  backdrop-filter: blur(10px);
}
.hero-proof strong { display: block; font-size: 22px; color: var(--text); }
.hero-proof span { display: block; font-size: 13px; color: var(--muted); margin-top: 3px; }
.locked-map-card {
  position: relative;
  min-height: 540px;
  border: 1px solid rgba(210,255,66,.22);
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(145deg, #111611, #080a08 70%);
  box-shadow: 0 30px 100px rgba(0,0,0,.55), 0 0 70px rgba(210,255,66,.08);
}
.map-card-header, .map-card-footer {
  position: absolute;
  left: 22px;
  right: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.map-card-header { top: 20px; }
.map-card-header span { color: var(--muted); font-weight: 800; }
.map-card-header strong {
  color: #111;
  background: var(--accent);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
}
.fake-map {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 65% 30%, rgba(255,107,53,.26), transparent 22%),
    radial-gradient(circle at 24% 62%, rgba(210,255,66,.20), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 25%, rgba(255,255,255,.04) 50%, transparent 70%),
    #0b0f0b;
  filter: saturate(1.1);
}
.fake-map:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(35deg, rgba(255,255,255,.04) 0 2px, transparent 2px 38px),
    repeating-linear-gradient(125deg, rgba(210,255,66,.045) 0 1px, transparent 1px 52px);
  opacity: .6;
}
.locked-pin {
  position: absolute;
  z-index: 2;
  background: rgba(5,6,5,.82);
  border: 1px solid rgba(210,255,66,.35);
  color: var(--text);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
}
.p1 { top: 24%; left: 17%; }
.p2 { top: 38%; right: 16%; }
.p3 { top: 54%; left: 30%; }
.p4 { top: 68%; right: 23%; }
.p5 { top: 75%; left: 12%; }
.p6 { top: 18%; right: 35%; }
.scan-line {
  position: absolute;
  z-index: 4;
  left: 0; right: 0;
  height: 90px;
  background: linear-gradient(transparent, rgba(210,255,66,.13), transparent);
  animation: scan 4.5s linear infinite;
  pointer-events: none;
}
@keyframes scan { from { top: -100px; } to { top: 100%; } }
.map-card-footer {
  bottom: 20px;
  align-items: end;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 14px;
  backdrop-filter: blur(10px);
}
.map-card-footer p { margin: 0; color: var(--muted); max-width: 270px; line-height: 1.35; }
.mini-upgrade {
  border: 0;
  background: var(--accent2);
  color: #fff;
  border-radius: 999px;
  padding: 11px 14px;
  font-weight: 900;
  white-space: nowrap;
}
.fomo-strip {
  margin: -34px 7vw 24px;
  padding: 18px 20px;
  border: 1px solid rgba(210,255,66,.22);
  border-radius: 18px;
  background: rgba(210,255,66,.08);
  display: flex;
  gap: 10px 18px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--muted);
}
.fomo-strip strong { color: var(--accent); }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .locked-map-card { min-height: 420px; }
}
@media (max-width: 560px) {
  h1 { letter-spacing: -2.5px; }
  .locked-map-card { min-height: 360px; }
  .hero-proof div { flex: 1 1 100%; }
  .map-card-footer { align-items: stretch; flex-direction: column; }
  .mini-upgrade { width: 100%; }
}

.explore-hero { min-height: 48vh; padding-bottom: 55px; }
.explore-header-content { max-width: 820px; }
.explore-header-content h1 { font-size: clamp(40px, 6vw, 76px); }
.center-action { margin-top: 28px; }
.center-action .primary-btn { display: inline-block; }
a.primary-btn, a.secondary-btn, a.nav-btn, a.mini-upgrade { display: inline-block; cursor: pointer; }
.teaser-section { background: #0c0f0c; }

/* Stronger CTA buttons */
.hero-cta {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 245px;
  padding: 19px 30px;
  border-radius: 18px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .8px;
  box-shadow: 0 0 0 1px rgba(210,255,66,.45), 0 18px 45px rgba(210,255,66,.18), 0 0 35px rgba(210,255,66,.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.hero-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(210,255,66,.75), 0 24px 60px rgba(210,255,66,.24), 0 0 55px rgba(210,255,66,.22);
}
.hero-cta span { transition: transform .18s ease; }
.hero-cta:hover span { transform: translateX(5px); }
.cta-note {
  color: var(--muted);
  margin: 14px 0 0;
  font-weight: 800;
}
.full-cta { width: 100%; margin-top: 10px; border: none; }
@media (max-width: 560px) {
  .hero-cta { width: 100%; min-width: 0; }
  .hero-actions { width: 100%; }
  .hero-actions .secondary-btn { width: 100%; text-align: center; }
}

/* Clean Explore app layout */
.explore-body {
  background:
    radial-gradient(circle at 18% 12%, rgba(210,255,66,.10), transparent 24%),
    radial-gradient(circle at 82% 4%, rgba(255,107,53,.08), transparent 25%),
    #070907;
}
.app-topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4vw;
  background: rgba(7,9,7,.82);
  border-bottom: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
}
.app-topbar .nav-btn { padding: 11px 15px; }
.explore-shell {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 4vw 30px;
  min-height: calc(100vh - 76px);
}
.explore-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
}
.sidebar-card {
  background: rgba(17,22,17,.86);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,.20);
}
.intro-card h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: .92;
  letter-spacing: -2.5px;
  margin: 8px 0 12px;
}
.intro-card .subtext { font-size: 16px; }
.compact-warning {
  border-left: 5px solid var(--accent2);
  color: var(--muted);
}
.compact-warning p { margin-bottom: 0; line-height: 1.45; }
.sidebar-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.sidebar-heading p { margin: 0; }
.sidebar-heading span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 6px 9px;
}
.vertical-filters { margin: 0; }
.vertical-filters .filter { padding: 11px 13px; }
.location-panel { padding-bottom: 10px; }
.location-list { display: grid; gap: 10px; }
.location-card {
  border: 1px solid rgba(255,255,255,.10);
  background: #0a0d0a;
  border-radius: 18px;
  padding: 14px;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.location-card:hover {
  transform: translateY(-2px);
  border-color: rgba(210,255,66,.42);
  background: #101510;
}
.location-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.location-card h3 { margin: 0 0 8px; font-size: 17px; }
.location-card p { margin: 8px 0 0; color: var(--muted); line-height: 1.35; font-size: 14px; }
.location-lock {
  color: #111;
  background: var(--accent);
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
.map-workspace {
  min-width: 0;
  background: rgba(17,22,17,.62);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 25px 70px rgba(0,0,0,.28);
}
.map-toolbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 8px 16px;
}
.map-toolbar h2 { margin: 2px 0 0; font-size: 32px; }
.map-toolbar p { margin: 0; }
.toolbar-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.map-workspace #map {
  height: calc(100vh - 190px);
  min-height: 560px;
  border-radius: 22px;
}
.explore-bottom-grid {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 24px;
  padding: 30px 4vw 65px;
}
.explore-bottom-grid .pricing-card { margin: 0; max-width: none; }
.explore-submit {
  grid-template-columns: .75fr 1.25fr;
  background: rgba(17,22,17,.86);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 24px;
}
@media (max-width: 1050px) {
  .explore-shell { grid-template-columns: 1fr; }
  .map-workspace #map { height: 620px; }
  .explore-bottom-grid { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
  .app-topbar { align-items: flex-start; flex-direction: column; gap: 14px; }
  .app-topbar .nav-actions { width: 100%; flex-wrap: wrap; }
  .app-topbar .nav-btn { flex: 1; text-align: center; }
  .explore-shell { padding: 16px; }
  .map-toolbar { align-items: stretch; flex-direction: column; }
  .toolbar-actions .secondary-btn { flex: 1; text-align: center; }
  .map-workspace #map { min-height: 460px; height: 62vh; }
  .explore-bottom-grid { padding: 20px 16px 50px; }
  .explore-submit { grid-template-columns: 1fr; }
}

/* Product hub explore redesign */
.product-hub-body { min-height: 100vh; overflow-x: hidden; }
.product-topbar { gap: 18px; }
.top-search-wrap { flex: 1; max-width: 680px; }
.top-search {
  height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--text);
  padding: 0 20px;
  font-weight: 800;
}
.hub-shell {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr) 390px;
  gap: 18px;
  padding: 18px;
  min-height: calc(100vh - 82px);
}
.hub-sidebar { display: grid; gap: 16px; align-content: start; }
.hub-card {
  background: rgba(17,22,17,.88);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}
.hub-status-card h1 {
  font-size: 52px;
  line-height: .9;
  letter-spacing: -2.5px;
  margin: 8px 0 12px;
}
.hub-status-card .subtext { font-size: 14px; margin-bottom: 0; }
.hub-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.hub-stats div {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255,255,255,.05);
}
.hub-stats strong { display: block; font-size: 24px; color: var(--accent); }
.hub-stats span { color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .8px; }
.tiny-btn {
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 900;
}
.filter-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
  margin: 16px 0 8px;
}
.hub-select {
  background: #090d09;
  border-color: rgba(255,255,255,.14);
  border-radius: 14px;
  font-weight: 800;
}
.pill-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 0; }
.access-filter {
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 800;
}
.access-filter.active, .access-filter:hover { background: var(--accent); color: #111; }
.safety-card { border-left: 5px solid var(--accent2); color: var(--muted); line-height: 1.45; }
.safety-card p { margin-bottom: 0; }
.hub-main {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(420px, 58vh) minmax(280px, 1fr);
  gap: 18px;
}
.hub-map-panel {
  background: rgba(17,22,17,.72);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 12px;
  box-shadow: 0 25px 70px rgba(0,0,0,.30);
  min-height: 0;
}
.hub-map-panel #map {
  height: 100%;
  min-height: 420px;
  border-radius: 22px;
}
.results-panel {
  background: rgba(17,22,17,.72);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 18px;
  min-height: 0;
}
.results-header { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.results-header h2 { font-size: 34px; margin: 2px 0 0; }
.results-header p { margin: 0; }
.expedition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  max-height: 44vh;
  overflow: auto;
  padding-right: 4px;
}
.expedition-card .card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-pin {
  color: #111;
  font-weight: 1000;
  border: 3px solid rgba(0,0,0,.65);
}
.detail-panel {
  position: sticky;
  top: 98px;
  align-self: start;
  max-height: calc(100vh - 118px);
  overflow: auto;
  background: rgba(17,22,17,.92);
  border: 1px solid rgba(210,255,66,.22);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 25px 80px rgba(0,0,0,.35);
}
.close-detail {
  display: none;
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-size: 22px;
}
.detail-panel h2 { font-size: 40px; line-height: .95; margin: 6px 0 10px; }
.detail-meta { color: var(--accent); font-weight: 900; }
.detail-description { color: var(--muted); line-height: 1.55; }
.detail-actions { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin: 18px 0; }
.detail-actions a, .detail-actions button { text-align: center; padding: 12px 10px; }
.detail-section {
  border-top: 1px solid rgba(255,255,255,.11);
  padding-top: 16px;
  margin-top: 16px;
}
.detail-section h3 { margin: 0 0 10px; }
.detail-section ul { margin: 0; padding-left: 20px; color: var(--muted); line-height: 1.75; }
.detail-specs { display: grid; gap: 10px; }
.detail-specs div {
  display: grid;
  gap: 4px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 12px;
}
.detail-specs span { color: var(--muted); text-transform: uppercase; letter-spacing: .8px; font-size: 12px; font-weight: 900; }
.detail-specs strong { color: var(--text); }
.product-submit { margin: 0 18px 50px; }
.account-body { background: radial-gradient(circle at 18% 10%, rgba(210,255,66,.12), transparent 28%), #070907; min-height: 100vh; }
.account-shell { padding: 32px 7vw; }
.account-card {
  background: rgba(17,22,17,.88);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  padding: 24px;
}
.hero-account h1 { font-size: clamp(52px, 7vw, 92px); margin: 8px 0 14px; }
.account-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 18px; }
.account-grid p { color: var(--muted); line-height: 1.45; }

@media (max-width: 1280px) {
  .hub-shell { grid-template-columns: 310px minmax(0, 1fr); }
  .detail-panel {
    position: fixed;
    z-index: 5000;
    right: 18px;
    top: 92px;
    width: min(430px, calc(100vw - 36px));
    transform: translateX(calc(100% + 30px));
    transition: transform .2s ease;
  }
  .detail-panel.active { transform: translateX(0); }
  .close-detail { display: block; }
}
@media (max-width: 920px) {
  .product-topbar { align-items: stretch; flex-direction: column; }
  .top-search-wrap { max-width: none; width: 100%; }
  .hub-shell { grid-template-columns: 1fr; padding: 14px; }
  .hub-main { grid-template-rows: 58vh auto; }
  .expedition-grid { max-height: none; }
  .account-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hub-stats, .detail-actions, .account-grid { grid-template-columns: 1fr; }
  .product-submit { margin: 0 14px 40px; }
}

/* Member hub v2 fixes */
.hub-shell {
  grid-template-columns: 300px minmax(720px, 1fr) 360px;
  gap: 16px;
}
.hub-main {
  grid-template-rows: minmax(620px, 72vh) minmax(220px, auto);
}
.hub-map-panel #map { min-height: 620px; }
.single-stat { grid-template-columns: 1fr; }
.results-tabs { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.tab-btn {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 950;
  cursor: pointer;
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--accent);
  color: #111;
}
.location-lock { background: rgba(210,255,66,.12); border-color: rgba(210,255,66,.25); }
#saveLocationBtn { border-color: rgba(210,255,66,.36); }
@media (max-width: 1280px) {
  .hub-shell { grid-template-columns: 290px minmax(0, 1fr); }
  .hub-main { grid-template-rows: minmax(600px, 70vh) auto; }
}
@media (max-width: 920px) {
  .hub-main { grid-template-rows: minmax(560px, 68vh) auto; }
  .hub-map-panel #map { min-height: 560px; }
  .results-tabs { justify-content: flex-start; }
}

/* Nationwide product hub update */
.hub-shell {
  grid-template-columns: 290px minmax(820px, 1fr) 360px;
}
.hub-main {
  grid-template-rows: minmax(700px, 78vh) minmax(210px, auto);
}
.hub-map-panel #map { min-height: 700px; }
.expedition-grid { max-height: 36vh; }
.product-topbar .logo { min-width: 190px; }
.location-card { cursor: pointer; }
.location-card:hover { transform: translateY(-2px); border-color: rgba(210,255,66,.35); }
@media (max-width: 1280px) {
  .hub-shell { grid-template-columns: 280px minmax(0, 1fr); }
  .hub-main { grid-template-rows: minmax(680px, 76vh) auto; }
  .hub-map-panel #map { min-height: 680px; }
}
@media (max-width: 920px) {
  .hub-main { grid-template-rows: minmax(620px, 72vh) auto; }
  .hub-map-panel #map { min-height: 620px; }
}


/* Fix product hub side cutoff + cleaner responsive layout */
body.product-hub-body { overflow-x: hidden; }
.product-topbar { max-width: 100vw; }
.hub-shell {
  width: 100%;
  max-width: 100vw;
  grid-template-columns: minmax(250px, 280px) minmax(0, 1fr) minmax(310px, 350px) !important;
  gap: 14px;
  padding: 14px;
  overflow: hidden;
}
.hub-main { min-width: 0; grid-template-rows: minmax(690px, 76vh) minmax(220px, auto) !important; }
.hub-sidebar, .detail-panel, .results-panel, .hub-map-panel { min-width: 0; }
.hub-map-panel #map { min-height: 690px; }
.detail-actions { grid-template-columns: 1fr; }
.results-header { align-items: flex-start; }
.results-tabs .secondary-btn { white-space: nowrap; }
.expedition-grid { max-height: 34vh; }
@media (max-width: 1450px) {
  .hub-shell { grid-template-columns: minmax(240px, 270px) minmax(0, 1fr) !important; overflow: visible; }
  .detail-panel {
    position: fixed;
    z-index: 5000;
    right: 16px;
    top: 90px;
    width: min(430px, calc(100vw - 32px));
    transform: translateX(calc(100% + 28px));
    transition: transform .2s ease;
  }
  .detail-panel.active { transform: translateX(0); }
  .close-detail { display: block; }
}
@media (max-width: 920px) {
  .hub-shell { grid-template-columns: 1fr !important; padding: 12px; overflow: visible; }
  .hub-main { grid-template-rows: minmax(610px, 70vh) auto !important; }
  .hub-map-panel #map { min-height: 610px; }
}


/* Product update: wider/cleaner map, brighter tabs, 1k-ready dataset styling */
.hub-shell {
  grid-template-columns: minmax(220px, 250px) minmax(0, 1fr) minmax(285px, 320px) !important;
  gap: 12px;
}
.hub-main { grid-template-rows: minmax(625px, 70vh) minmax(220px, auto) !important; }
.hub-map-panel { padding: 10px; }
.hub-map-panel #map { min-height: 625px !important; }
.hub-sidebar .hub-card { padding: 15px; }
.detail-panel { padding: 18px; }
.tab-btn, .results-tabs .secondary-btn {
  background: rgba(210,255,66,.12) !important;
  border-color: rgba(210,255,66,.35) !important;
  color: #f8ffe6 !important;
  text-shadow: 0 1px 0 rgba(0,0,0,.45);
}
.tab-btn.active, .tab-btn:hover, .results-tabs .secondary-btn:hover {
  background: var(--accent) !important;
  color: #081006 !important;
  text-shadow: none;
}
#saveLocationBtn {
  background: rgba(210,255,66,.14) !important;
  color: #f8ffe6 !important;
  border-color: rgba(210,255,66,.42) !important;
}
#saveLocationBtn:hover { background: var(--accent) !important; color: #081006 !important; }
@media (max-width: 1450px) {
  .hub-shell { grid-template-columns: minmax(220px, 250px) minmax(0, 1fr) !important; }
  .hub-main { grid-template-rows: minmax(610px, 68vh) auto !important; }
  .hub-map-panel #map { min-height: 610px !important; }
}
@media (max-width: 920px) {
  .hub-main { grid-template-rows: minmax(560px, 66vh) auto !important; }
  .hub-map-panel #map { min-height: 560px !important; }
}


/* Tiny requested fix: make Mark visited readable without changing layout */
#markVisitedBtn {
  color: #ffffff !important;
  background: rgba(190, 214, 75, .14) !important;
  border-color: rgba(217, 255, 92, .48) !important;
  text-shadow: 0 1px 8px rgba(0,0,0,.55) !important;
}
#markVisitedBtn:hover {
  color: #081006 !important;
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  text-shadow: none !important;
}

/* Expedition database tab/card fix: prevent oversized tabs and card cutoff */
.results-panel {
  overflow: hidden;
}
.results-header {
  flex-wrap: wrap;
  align-items: flex-start !important;
}
.results-header > div:first-child {
  min-width: 0;
  flex: 1 1 180px;
}
.results-header h2 {
  overflow-wrap: anywhere;
  font-size: clamp(24px, 2.1vw, 32px) !important;
}
.results-tabs {
  min-width: 0;
  max-width: 100%;
  flex: 1 1 300px;
  justify-content: flex-end;
}
.tab-btn,
.results-tabs .secondary-btn {
  font-size: 12px !important;
  line-height: 1.05;
  padding: 9px 11px !important;
  white-space: nowrap;
}
.expedition-grid {
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)) !important;
  overflow-x: hidden;
}
.location-card,
.expedition-card {
  min-width: 0;
  overflow: hidden;
}
.location-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
  line-height: 1.15;
}
.location-card p {
  overflow-wrap: anywhere;
}
.location-card-top {
  min-width: 0;
}
.location-card-top > div {
  min-width: 0;
}
.location-lock {
  flex: 0 0 auto;
  max-width: 92px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
@media (max-width: 1450px) {
  .results-tabs { justify-content: flex-start; }
}
@media (max-width: 700px) {
  .results-tabs .secondary-btn, .tab-btn { flex: 1 1 auto; text-align: center; }
  .location-lock { max-width: 76px; }
}

/* Member database hard fix: keep the database header/tabs/cards from cutting off */
.results-panel {
  overflow: visible !important;
  padding: 16px !important;
}
.results-header {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  align-items: start !important;
  margin-bottom: 12px !important;
}
.results-header > div:first-child {
  min-width: 0 !important;
  width: 100% !important;
}
.results-header h2 {
  font-size: clamp(22px, 2vw, 28px) !important;
  line-height: 1.05 !important;
  margin: 1px 0 0 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}
.results-tabs {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
  justify-content: stretch !important;
  flex: none !important;
}
.tab-btn,
.results-tabs .secondary-btn {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  text-align: center !important;
  font-size: 12px !important;
  padding: 10px 8px !important;
}
.expedition-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 10px !important;
  max-height: 32vh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding: 2px 4px 8px 2px !important;
}
.location-card,
.expedition-card {
  min-width: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 12px !important;
}
.location-card-top {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  min-width: 0 !important;
}
.location-card-top > div {
  min-width: 0 !important;
  width: 100% !important;
}
.location-card h3 {
  display: block !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  line-height: 1.18 !important;
  font-size: 16px !important;
}
.location-lock {
  justify-self: start !important;
  max-width: 100% !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
  line-height: 1.1 !important;
}
@media (max-width: 700px) {
  .results-tabs {
    grid-template-columns: 1fr !important;
  }
}


/* Final member database panel fix: compact panel, list fills available space */
.results-panel {
  display: flex !important;
  flex-direction: column !important;
  height: clamp(265px, 28vh, 360px) !important;
  min-height: 265px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}
.results-header {
  flex: 0 0 auto !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 10px !important;
  margin-bottom: 10px !important;
}
.results-header > div:first-child {
  flex: 1 1 170px !important;
  min-width: 0 !important;
}
.results-tabs {
  flex: 0 1 auto !important;
  width: auto !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 8px !important;
}
.tab-btn,
.results-tabs .secondary-btn {
  width: auto !important;
  min-width: 112px !important;
  max-width: 170px !important;
  flex: 0 0 auto !important;
}
.expedition-grid {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  max-height: none !important;
  height: auto !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)) !important;
  align-content: start !important;
}
@media (max-width: 700px) {
  .results-panel { height: auto !important; min-height: 320px !important; }
  .results-tabs { width: 100% !important; justify-content: stretch !important; }
  .tab-btn, .results-tabs .secondary-btn { flex: 1 1 100% !important; max-width: none !important; }
}


/* FINAL FIX: member database panel should fit content and not create a giant empty box */
.results-panel {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}
.results-header {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 10px !important;
  margin-bottom: 10px !important;
}
.results-tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  justify-content: flex-end !important;
  width: auto !important;
}
.expedition-grid {
  height: min(320px, 34vh) !important;
  min-height: 245px !important;
  max-height: 320px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  align-content: start !important;
  grid-auto-rows: max-content !important;
}
.location-card,
.expedition-card {
  align-self: start !important;
}
@media (max-width: 920px) {
  .expedition-grid { height: auto !important; max-height: none !important; min-height: 0 !important; }
  .results-tabs { width: 100% !important; justify-content: stretch !important; }
  .tab-btn, .results-tabs .secondary-btn { flex: 1 1 100% !important; max-width: none !important; }
}

/* Quality pass fix: member database should behave like a compact full-width list, not broken cards in an oversized box */
.results-panel {
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
  overflow: visible !important;
}
.results-header {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}
.results-tabs {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
}
.expedition-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  height: auto !important;
  max-height: 390px !important;
  min-height: 0 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding-right: 6px !important;
}
.location-card,
.expedition-card {
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  align-self: stretch !important;
}
.location-card-top {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 12px !important;
  width: 100% !important;
}
.location-card-top > div {
  min-width: 0 !important;
  flex: 1 1 auto !important;
}
.location-card h3 {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  line-height: 1.1 !important;
}
.location-lock {
  flex: 0 0 auto !important;
  max-width: 150px !important;
  white-space: normal !important;
  text-align: right !important;
}
@media (max-width: 920px) {
  .expedition-grid { max-height: none !important; }
  .results-tabs { width: 100% !important; justify-content: stretch !important; }
  .tab-btn, .results-tabs .secondary-btn { flex: 1 1 100% !important; max-width: none !important; }
}

/* EXPEDITIONS PANEL REAL FIX: make Member Database readable and un-crammed */
.product-hub-body .results-panel {
  display: grid !important;
  grid-template-rows: auto minmax(0, 1fr) !important;
  gap: 16px !important;
  height: clamp(520px, 46vh, 680px) !important;
  min-height: 520px !important;
  max-height: none !important;
  padding: 22px !important;
  overflow: hidden !important;
}

.product-hub-body .results-header {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 14px !important;
  margin: 0 !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
}

.product-hub-body .results-header .eyebrow {
  margin: 0 0 5px !important;
}

.product-hub-body .results-header h2 {
  font-size: clamp(26px, 2.2vw, 36px) !important;
  line-height: 1.05 !important;
  letter-spacing: -1px !important;
  margin: 0 !important;
}

.product-hub-body .results-tabs {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(130px, 1fr)) !important;
  gap: 10px !important;
  width: 100% !important;
  justify-content: stretch !important;
  align-items: stretch !important;
}

.product-hub-body .tab-btn,
.product-hub-body .results-tabs .secondary-btn {
  min-width: 0 !important;
  max-width: none !important;
  width: 100% !important;
  padding: 12px 14px !important;
  border-radius: 14px !important;
  font-size: 13px !important;
  line-height: 1.1 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.product-hub-body .expedition-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 16px !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding: 2px 8px 10px 2px !important;
  align-content: start !important;
  grid-auto-rows: max-content !important;
}

.product-hub-body .location-card,
.product-hub-body .expedition-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  min-height: 168px !important;
  width: 100% !important;
  padding: 18px !important;
  border-radius: 20px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  align-self: start !important;
}

.product-hub-body .location-card-top {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 14px !important;
  align-items: start !important;
  width: 100% !important;
}

.product-hub-body .location-card-top > div {
  min-width: 0 !important;
}

.product-hub-body .location-card h3 {
  margin: 0 0 10px !important;
  font-size: 18px !important;
  line-height: 1.22 !important;
  letter-spacing: -.2px !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  color: #f6ffe8 !important;
}

.product-hub-body .location-card .badge {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 6px 6px 0 !important;
  padding: 5px 9px !important;
  line-height: 1 !important;
}

.product-hub-body .location-lock {
  justify-self: end !important;
  align-self: start !important;
  max-width: 130px !important;
  padding: 7px 10px !important;
  border-radius: 999px !important;
  line-height: 1.08 !important;
  text-align: center !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

.product-hub-body .location-card p {
  margin: 0 !important;
  line-height: 1.45 !important;
  font-size: 14px !important;
}

.product-hub-body .location-card .card-desc {
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  color: rgba(232,238,224,.72) !important;
}

.product-hub-body .expedition-grid::-webkit-scrollbar { width: 10px; }
.product-hub-body .expedition-grid::-webkit-scrollbar-track { background: rgba(255,255,255,.05); border-radius: 999px; }
.product-hub-body .expedition-grid::-webkit-scrollbar-thumb { background: rgba(210,255,66,.35); border-radius: 999px; }

@media (max-width: 1450px) {
  .product-hub-body .results-panel {
    height: clamp(500px, 44vh, 640px) !important;
    min-height: 500px !important;
  }
  .product-hub-body .expedition-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  }
}

@media (max-width: 920px) {
  .product-hub-body .results-panel {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }
  .product-hub-body .results-tabs {
    grid-template-columns: 1fr !important;
  }
  .product-hub-body .expedition-grid {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    grid-template-columns: 1fr !important;
  }
}


/* Simple map legend */
.hub-map-panel { position: relative; }
.map-legend {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 800;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  max-width: calc(100% - 48px);
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(5, 8, 5, .82);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 34px rgba(0,0,0,.35);
  color: #f7ffe9;
  font-size: 12px;
  font-weight: 900;
}
.map-legend .legend-title {
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
  margin-right: 2px;
}
.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.map-legend i {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,.72);
  box-shadow: 0 0 0 1px rgba(255,255,255,.18);
}
@media (max-width: 760px) {
  .map-legend {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
    font-size: 11px;
  }
}

.map-disclaimer {
  margin: 8px 10px 10px;
  color: rgba(237, 242, 255, 0.48);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: .1px;
}

.detail-coords-line {
  margin: 0.65rem 0 1rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.82);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86rem;
  word-break: break-word;
}

/* Filter tab refinement: broad quick filters plus specific hidden-map type chips */
.filter-subhead {
  margin-top: 14px;
}
.fine-filter-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}
.small-filter {
  font-size: 0.72rem;
  padding: 7px 8px;
  opacity: 0.9;
}
.small-filter.active {
  opacity: 1;
}
@media (max-width: 860px) {
  .fine-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* Marker clustering keeps the map usable as the database grows. */
.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
  background: rgba(142, 246, 228, 0.18);
}
.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div {
  background: rgba(8, 16, 26, 0.92);
  color: #eaffff;
  border: 1px solid rgba(142, 246, 228, 0.55);
  font-weight: 800;
}


/* About page */
.about-body {
  background:
    radial-gradient(circle at 18% 14%, rgba(210,255,66,.12), transparent 28%),
    radial-gradient(circle at 82% 5%, rgba(255,107,53,.08), transparent 30%),
    var(--bg);
}
.about-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0 70px;
}
.about-hero {
  padding: 42px;
  overflow: hidden;
  position: relative;
}
.about-hero:after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(210,255,66,.09);
  filter: blur(6px);
  pointer-events: none;
}
.about-hero h1 {
  max-width: 820px;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 26px 0;
}
.about-card p,
.about-note p {
  color: var(--muted);
  line-height: 1.65;
}
.about-note {
  padding: 32px;
}
.about-note h2 {
  max-width: 720px;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-hero { padding: 30px; }
}

.about-quote {
  margin-top: 1rem;
  color: var(--accent2);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  border-left: 3px solid var(--accent2);
  padding-left: 1rem;
}
.about-shell-tight {
  max-width: 980px;
}
.about-hero-tight {
  padding: 46px;
}
.about-hero-tight h1 {
  font-size: clamp(2.8rem, 8vw, 6.4rem);
  line-height: .9;
  letter-spacing: -0.08em;
  margin-bottom: 22px;
}
.about-quote-featured {
  margin: 28px 0 26px;
  padding: 24px 0 24px 24px;
  border-left: 5px solid var(--accent2);
  max-width: 800px;
}
.about-quote-featured blockquote {
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 4vw, 3.4rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.055em;
}
.about-quote-featured figcaption {
  margin-top: 14px;
  color: var(--accent2);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: .85rem;
}
.about-grid-tight {
  padding: 20px 0;
}
.about-note-tight {
  padding: 28px 32px;
}
.about-note-tight p {
  max-width: 820px;
}
@media (max-width: 640px) {
  .about-hero-tight { padding: 28px; }
  .about-quote-featured { padding-left: 18px; }
}


/* About page: visual heatmap rewrite */
.about-shell-visual {
  max-width: 1040px;
}
.about-hero-visual {
  min-height: 620px;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  border-color: rgba(210,255,66,.22);
  background:
    linear-gradient(180deg, rgba(7,9,7,.18), rgba(7,9,7,.88)),
    radial-gradient(circle at 72% 22%, rgba(210,255,66,.13), transparent 34%),
    radial-gradient(circle at 25% 76%, rgba(255,107,53,.10), transparent 36%),
    #090d09;
}
.about-hero-visual:after {
  display: none;
}
.about-map-underlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .92;
  overflow: hidden;
}
.about-map-underlay:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 62% 42%, black, transparent 78%);
}
.about-map-underlay svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: saturate(1.25);
}
.about-map-underlay path {
  fill: none;
  stroke: rgba(234,255,255,.14);
  stroke-width: 1.5;
  stroke-dasharray: 9 12;
}
.about-map-underlay .underlay-pins circle {
  fill: var(--accent);
  stroke: rgba(7,9,7,.92);
  stroke-width: 2;
  filter: drop-shadow(0 0 10px rgba(210,255,66,.58));
}
.about-hero-copy {
  max-width: 880px;
  position: relative;
  z-index: 1;
}
.about-hero-visual h1 {
  max-width: 980px;
  font-size: clamp(3rem, 8.8vw, 7.2rem);
  line-height: .82;
  text-transform: uppercase;
  text-shadow: 0 18px 50px rgba(0,0,0,.55);
}
.about-quote-poster {
  max-width: 820px;
  margin: 26px 0 24px;
  padding: 18px 22px;
  border-left: 0;
  border-radius: 22px;
  background: rgba(7,9,7,.66);
  border: 1px solid rgba(210,255,66,.24);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
}
.about-quote-poster blockquote {
  font-size: clamp(1.25rem, 3vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.about-quote-poster figcaption {
  color: var(--accent);
}
.about-hero-visual .subtext {
  max-width: 850px;
  color: rgba(243,240,232,.86);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  background: rgba(7,9,7,.42);
  border-left: 4px solid var(--accent2);
  padding: 16px 18px;
  border-radius: 0 18px 18px 0;
}
.about-strike {
  margin: 22px 0;
  padding: 34px;
  border-color: rgba(255,107,53,.24);
  background:
    radial-gradient(circle at 95% 0%, rgba(255,107,53,.08), transparent 32%),
    rgba(17,22,17,.9);
}
.about-strike h2 {
  max-width: 860px;
  font-size: clamp(2.1rem, 4.7vw, 4.8rem);
  line-height: .9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}
.about-strike p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}
.about-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.about-signal-row span {
  border: 1px solid rgba(210,255,66,.22);
  background: rgba(210,255,66,.08);
  color: #f7ffe4;
  border-radius: 999px;
  padding: 10px 13px;
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-note-final {
  background:
    linear-gradient(135deg, rgba(17,22,17,.96), rgba(12,14,12,.96)),
    radial-gradient(circle at 22% 100%, rgba(210,255,66,.10), transparent 38%);
}
.about-note-final h2 {
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}
@media (max-width: 700px) {
  .about-hero-visual {
    min-height: 560px;
    padding: 26px;
  }
  .about-strike,
  .about-note-final {
    padding: 26px;
  }
  .about-hero-visual .subtext {
    border-left-width: 3px;
  }
}

/* About page readability/hype pass */
.about-shell-readable {
  max-width: 980px;
}
.about-hero-readable {
  min-height: 560px;
  background:
    linear-gradient(180deg, rgba(6,8,7,.54), rgba(6,8,7,.92) 72%, rgba(6,8,7,.98)),
    radial-gradient(circle at 74% 24%, rgba(210,255,66,.09), transparent 34%),
    #080c08;
}
.about-hero-readable:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(5,7,6,.94) 0%, rgba(5,7,6,.78) 44%, rgba(5,7,6,.48) 100%);
  pointer-events: none;
}
.about-map-underlay-readable {
  opacity: .44;
}
.about-map-underlay-readable:before {
  opacity: .35;
}
.about-map-underlay-readable svg {
  filter: saturate(.9) contrast(.95);
}
.about-hero-readable .about-hero-copy {
  max-width: 820px;
  z-index: 2;
}
.about-hero-readable h1 {
  max-width: 900px;
  color: #fff;
  font-size: clamp(3.15rem, 8.2vw, 6.4rem);
  line-height: .86;
  letter-spacing: -0.075em;
  text-shadow: 0 18px 55px rgba(0,0,0,.78);
}
.about-quote-readable {
  max-width: 760px;
  margin: 28px 0 20px;
  background: rgba(3,5,4,.78);
  border-color: rgba(210,255,66,.32);
  box-shadow: 0 20px 70px rgba(0,0,0,.32), inset 0 0 0 1px rgba(255,255,255,.045);
}
.about-quote-readable blockquote {
  color: #fff;
  font-size: clamp(1.25rem, 2.7vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.about-hero-readable .subtext {
  max-width: 700px;
  color: rgba(245,244,237,.94);
  background: rgba(3,5,4,.70);
  border-left-color: var(--accent);
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
  line-height: 1.55;
}
.about-strike-readable,
.about-note-readable {
  background: rgba(14,18,14,.94);
}
.about-strike-readable h2,
.about-note-readable h2 {
  color: #fff;
}
.about-strike-readable p:not(.eyebrow),
.about-note-readable p:not(.eyebrow) {
  max-width: 730px;
  color: rgba(245,244,237,.78);
}
@media (max-width: 700px) {
  .about-hero-readable {
    min-height: 520px;
  }
  .about-hero-readable:before {
    background: rgba(5,7,6,.82);
  }
  .about-map-underlay-readable {
    opacity: .28;
  }
}

/* Home page simplification pass */
.home-hero {
  min-height: 82vh;
  padding-bottom: 56px;
}
.home-hero nav {
  margin-bottom: 62px;
}
.home-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .65fr);
  gap: 38px;
}
.home-hero h1 {
  max-width: 760px;
}
.home-hero .subtext {
  max-width: 700px;
  font-size: 20px;
}
.compact-proof {
  max-width: 620px;
}
.compact-proof div {
  min-width: 135px;
}
.home-map-card {
  min-height: 455px;
}
.home-map-card .locked-pin {
  font-size: 12px;
  padding: 8px 11px;
}
.home-submit {
  padding-top: 72px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 12% 0%, rgba(210,255,66,.08), transparent 28%),
    #090b09;
}
.home-submit h2 {
  max-width: 620px;
}
.home-submit p:not(.eyebrow):not(.small-note) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  max-width: 560px;
}
@media (max-width: 980px) {
  .home-hero-grid { grid-template-columns: 1fr; }
  .home-map-card { min-height: 380px; }
}
@media (max-width: 760px) {
  .home-hero nav { margin-bottom: 42px; }
  .home-hero { min-height: auto; }
  .home-submit { padding-top: 52px; padding-bottom: 52px; }
}


/* Home page hook rewrite pass */
.home-hero h1 {
  max-width: 880px;
}
.home-hero .subtext {
  max-width: 760px;
  font-size: clamp(19px, 2.1vw, 23px);
  color: rgba(243,240,232,.86);
}
.home-microcopy {
  margin: 18px 0 0;
  color: rgba(243,240,232,.72);
  font-weight: 800;
  letter-spacing: .01em;
}
.home-buy-strip {
  padding-top: 76px;
  padding-bottom: 76px;
  background:
    radial-gradient(circle at 78% 10%, rgba(210,255,66,.075), transparent 26%),
    linear-gradient(180deg, #080a08 0%, #0f140f 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.tight-heading {
  max-width: 840px;
  margin-bottom: 28px;
}
.tight-heading h2 {
  max-width: 820px;
}
.tight-heading p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(243,240,232,.74);
  font-size: 18px;
  line-height: 1.5;
}
.home-hook-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.home-hook-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 22px;
  padding: 22px;
}
.home-hook-card span {
  color: var(--accent);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .12em;
}
.home-hook-card h3 {
  margin: 10px 0 8px;
  color: #fff;
  font-size: 22px;
}
.home-hook-card p {
  color: rgba(243,240,232,.72);
  line-height: 1.48;
  margin: 0;
}
.home-map-card .map-card-header strong {
  color: var(--accent);
}
.home-map-card .map-card-footer p {
  font-weight: 800;
  color: rgba(243,240,232,.84);
}
@media (max-width: 920px) {
  .home-hook-cards { grid-template-columns: 1fr; }
  .home-buy-strip { padding-top: 56px; padding-bottom: 56px; }
}

/* Home: shorter, more secretive pitch */
.stripped-home .hero-content h1 {
  max-width: 760px;
}
.stripped-home .subtext {
  max-width: 720px;
}
.secret-buy-strip {
  padding-top: 48px;
  padding-bottom: 68px;
}
.compact-hook-cards .home-hook-card p {
  min-height: 0;
}
.secret-map {
  background:
    radial-gradient(circle at 72% 22%, rgba(210,255,66,.18), transparent 15%),
    radial-gradient(circle at 18% 72%, rgba(255,107,53,.18), transparent 18%),
    linear-gradient(135deg, rgba(255,255,255,.06), transparent 22%, rgba(255,255,255,.03) 52%, transparent 72%),
    #090d09;
}

/* Membership / payment prototype page */
.pricing-body {
  background:
    radial-gradient(circle at 16% 12%, rgba(210,255,66,.10), transparent 22%),
    radial-gradient(circle at 82% 3%, rgba(255,107,53,.08), transparent 20%),
    var(--bg);
}
.pricing-hero {
  min-height: auto;
  padding: 28px 7vw 34px;
  background:
    linear-gradient(rgba(0,0,0,.30), rgba(0,0,0,.84)),
    radial-gradient(circle at 20% 20%, rgba(210,255,66,.15), transparent 24%),
    linear-gradient(135deg, #111811 0%, #070907 70%);
  position: relative;
  overflow: hidden;
}
.pricing-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 74px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.022) 0, rgba(255,255,255,.022) 1px, transparent 1px, transparent 74px);
  pointer-events: none;
}
.pricing-hero nav,
.membership-headline { position: relative; z-index: 2; }
.membership-headline {
  max-width: 790px;
  padding: 24px 0 18px;
}
.membership-headline h1 {
  font-size: clamp(46px, 7vw, 88px);
}
.membership-section {
  padding: 54px 7vw 76px;
}
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.membership-card {
  background: rgba(17,22,17,.92);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 26px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
}
.membership-card.featured-tier {
  border-color: rgba(210,255,66,.42);
  box-shadow: 0 22px 70px rgba(210,255,66,.08), 0 18px 60px rgba(0,0,0,.25);
}
.supporter-tier {
  border-color: rgba(255,107,53,.34);
}
.tier-topline {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.3px;
  margin-bottom: 10px;
}
.supporter-tier .tier-topline { color: var(--accent2); }
.membership-card h2 {
  font-size: 30px;
  letter-spacing: -.8px;
  margin: 0 0 10px;
}
.tier-price {
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
  color: var(--text);
  margin: 8px 0 12px;
}
.tier-price span {
  font-size: 17px;
  color: var(--muted);
  font-weight: 800;
}
.tier-copy {
  color: var(--muted);
  line-height: 1.45;
  min-height: 44px;
}
.membership-card ul {
  margin: 18px 0 22px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}
.membership-card .full-cta {
  margin-top: auto;
  text-align: center;
}
.membership-note {
  margin-top: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  border-radius: 22px;
  padding: 18px 20px;
  color: var(--muted);
}
.membership-note p { margin: 0 0 8px; }
.membership-note p:last-child { margin-bottom: 0; }
.membership-note strong { color: var(--text); }
@media (max-width: 980px) {
  .membership-grid { grid-template-columns: 1fr; }
  .tier-copy { min-height: 0; }
}


/* Shadow Pins brand/home tightening pass */
.logo { letter-spacing: -.8px; }
.logo span { color: var(--accent); }
.home-hero-grid { align-items: center; }
.stripped-home .hero-content h1 {
  max-width: 780px;
  letter-spacing: -4.5px;
}
.stripped-home .subtext {
  max-width: 660px;
  font-size: 20px;
  color: rgba(243,240,232,.78);
}
.shadow-home-note {
  margin-top: 18px;
  color: rgba(243,240,232,.72);
  font-weight: 900;
  letter-spacing: .1px;
}
.home-minimal-main { display: none; padding: 0; }
.home-map-card {
  min-height: 510px;
  border-color: rgba(210,255,66,.28);
  box-shadow: 0 36px 110px rgba(0,0,0,.62), 0 0 85px rgba(210,255,66,.075);
}
.shadow-preview-map {
  background:
    radial-gradient(circle at 74% 22%, rgba(210,255,66,.22), transparent 13%),
    radial-gradient(circle at 31% 64%, rgba(255,107,53,.18), transparent 18%),
    radial-gradient(circle at 61% 74%, rgba(210,255,66,.12), transparent 16%),
    linear-gradient(115deg, rgba(0,0,0,.12), rgba(0,0,0,.72)),
    #070907;
}
.shadow-preview-map:before {
  opacity: .72;
  background:
    repeating-linear-gradient(27deg, rgba(255,255,255,.045) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(117deg, rgba(210,255,66,.05) 0 1px, transparent 1px 58px),
    linear-gradient(90deg, rgba(7,9,7,.82), transparent 48%, rgba(7,9,7,.55));
}
.shadow-preview-map:after {
  content: "";
  position: absolute;
  inset: 74px 34px 88px;
  border: 1px solid rgba(210,255,66,.16);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(210,255,66,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(210,255,66,.06) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .42;
}
.home-map-card .locked-pin {
  max-width: 190px;
  white-space: nowrap;
  background: rgba(5,7,5,.88);
  border-color: rgba(210,255,66,.38);
  backdrop-filter: blur(8px);
}
.home-map-card .p1 { top: 23%; left: 12%; }
.home-map-card .p2 { top: 36%; right: 10%; }
.home-map-card .p3 { top: 54%; left: 23%; }
.home-map-card .p4 { top: 68%; right: 15%; }
.home-map-card .p5 { top: 77%; left: 11%; }
.home-map-card .map-card-footer p {
  max-width: 260px;
  color: rgba(243,240,232,.82);
}
@media (max-width: 560px) {
  .stripped-home .hero-content h1 { letter-spacing: -2.7px; }
  .home-map-card .locked-pin { font-size: 12px; padding: 8px 10px; max-width: 165px; }
}


/* Shadow Pins nav + homepage visual cleanup pass */
.site-nav-shell {
  gap: 18px;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  white-space: nowrap;
}
.brand-logo .brand-main { color: var(--text); }
.brand-logo .brand-accent { color: var(--accent); }
.logo-pin {
  width: 18px;
  height: 18px;
  display: inline-block;
  position: relative;
  transform: rotate(-45deg);
  border-radius: 50% 50% 50% 4px;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(210,255,66,.25);
  flex: 0 0 auto;
}
.logo-pin:after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  background: #070907;
}
.site-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav .nav-btn {
  padding: 11px 15px;
}
.shadow-landing-home {
  min-height: 88vh;
  background:
    radial-gradient(circle at 74% 45%, rgba(210,255,66,.13), transparent 26%),
    radial-gradient(circle at 28% 24%, rgba(255,107,53,.08), transparent 20%),
    linear-gradient(135deg, #080a08 0%, #050605 46%, #10140f 100%);
}
.shadow-landing-home:before {
  opacity: .7;
  background:
    linear-gradient(90deg, rgba(7,9,7,.98), rgba(7,9,7,.78) 48%, rgba(7,9,7,.42)),
    repeating-linear-gradient(0deg, rgba(210,255,66,.035) 0 1px, transparent 1px 86px),
    repeating-linear-gradient(90deg, rgba(210,255,66,.028) 0 1px, transparent 1px 86px);
}
.shadow-home-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
}
.shadow-home-copy h1 {
  max-width: 820px;
  font-size: clamp(52px, 8vw, 104px);
  line-height: .86;
}
.shadow-home-copy .subtext {
  max-width: 690px;
  font-size: 20px;
  color: rgba(243,240,232,.80);
}
.shadow-home-note {
  max-width: 640px;
  color: rgba(243,240,232,.68);
}
.shadow-intel-card {
  position: relative;
  min-height: 520px;
  border-radius: 32px;
  border: 1px solid rgba(210,255,66,.24);
  background:
    linear-gradient(145deg, rgba(16,22,16,.92), rgba(3,5,3,.98)),
    #070907;
  overflow: hidden;
  box-shadow: 0 36px 110px rgba(0,0,0,.65), 0 0 80px rgba(210,255,66,.055);
}
.shadow-intel-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 55% 38%, rgba(210,255,66,.18), transparent 21%),
    radial-gradient(circle at 28% 70%, rgba(255,107,53,.12), transparent 22%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.026) 0 1px, transparent 1px 44px);
  opacity: .9;
}
.shadow-intel-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72), transparent 36%, rgba(0,0,0,.28));
  pointer-events: none;
}
.intel-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  top: 80px;
  border-radius: 999px;
  border: 1px solid rgba(210,255,66,.16);
  box-shadow: 0 0 0 44px rgba(210,255,66,.025), 0 0 0 92px rgba(210,255,66,.018);
  z-index: 1;
}
.intel-header,
.intel-footer {
  position: absolute;
  left: 22px;
  right: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.intel-header { top: 22px; }
.intel-header span,
.intel-footer span {
  color: rgba(243,240,232,.62);
  font-size: 12px;
  letter-spacing: 1.8px;
  font-weight: 900;
}
.intel-header strong {
  color: #070907;
  background: var(--accent);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 11px;
  letter-spacing: .6px;
}
.intel-grid {
  position: absolute;
  inset: 80px 30px 76px;
  z-index: 2;
  border: 1px solid rgba(210,255,66,.14);
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(210,255,66,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(210,255,66,.045) 1px, transparent 1px);
  background-size: 58px 58px;
}
.intel-grid span {
  position: absolute;
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(243,240,232,.14);
}
.intel-grid span:nth-child(1) { width: 130px; top: 44px; left: 38px; }
.intel-grid span:nth-child(2) { width: 70px; top: 88px; right: 44px; }
.intel-grid span:nth-child(3) { width: 155px; top: 170px; left: 84px; }
.intel-grid span:nth-child(4) { width: 95px; bottom: 70px; right: 50px; }
.intel-grid span:nth-child(5) { width: 60px; bottom: 38px; left: 52px; }
.intel-grid span:nth-child(6) { width: 120px; top: 18px; right: 116px; }
.intel-center-pin {
  position: absolute;
  top: 47%;
  left: 54%;
  width: 24px;
  height: 24px;
  z-index: 3;
  background: var(--accent);
  border-radius: 50% 50% 50% 4px;
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 0 0 10px rgba(210,255,66,.08), 0 0 44px rgba(210,255,66,.35);
}
.intel-center-pin:after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 999px;
  background: #070907;
}
.intel-drop-list {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 92px;
  z-index: 4;
  display: grid;
  gap: 10px;
}
.intel-drop {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(330px, 100%);
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background: rgba(4,6,4,.72);
  backdrop-filter: blur(10px);
}
.intel-drop:nth-child(even) { margin-left: auto; }
.mini-pin {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(210,255,66,.28);
  flex: 0 0 auto;
}
.intel-drop strong,
.intel-drop em {
  display: block;
}
.intel-drop strong {
  color: var(--text);
  font-size: 14px;
  line-height: 1.1;
}
.intel-drop em {
  margin-top: 4px;
  color: rgba(243,240,232,.52);
  font-size: 12px;
  font-style: normal;
  letter-spacing: .3px;
}
.intel-footer {
  bottom: 22px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  background: rgba(0,0,0,.50);
  backdrop-filter: blur(10px);
}
.intel-footer a {
  color: #070907;
  background: var(--accent);
  border-radius: 999px;
  padding: 10px 13px;
  font-weight: 900;
  white-space: nowrap;
}
@media (max-width: 1040px) {
  .shadow-home-grid { grid-template-columns: 1fr; }
  .shadow-intel-card { min-height: 500px; }
}
@media (max-width: 720px) {
  .site-nav-shell { align-items: flex-start; flex-direction: column; margin-bottom: 46px; }
  .site-nav { justify-content: flex-start; }
  .shadow-home-copy h1 { letter-spacing: -2.7px; }
  .shadow-home-copy .subtext { font-size: 18px; }
  .shadow-intel-card { min-height: 560px; }
  .intel-drop, .intel-drop:nth-child(even) { margin-left: 0; width: 100%; }
  .intel-drop-list { top: 88px; }
}

/* About page: customer value rewrite */
.about-shell-value {
  max-width: 1020px;
  padding-top: 38px;
}
.about-quote-hero {
  padding: clamp(32px, 6vw, 66px);
  background:
    linear-gradient(135deg, rgba(13,17,13,.98), rgba(7,9,7,.98)),
    radial-gradient(circle at 88% 12%, rgba(210,255,66,.10), transparent 30%);
  border-color: rgba(210,255,66,.22);
}
.about-lead-quote {
  margin: 0;
  max-width: 920px;
}
.about-lead-quote blockquote {
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 6.5rem);
  line-height: .9;
  letter-spacing: -0.07em;
  font-weight: 900;
}
.about-lead-quote figcaption {
  margin-top: 20px;
  color: var(--accent);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.about-value {
  margin-top: 22px;
  padding: clamp(28px, 5vw, 48px);
  background: rgba(14,18,14,.96);
}
.about-value h1 {
  max-width: 880px;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  line-height: .9;
  letter-spacing: -0.065em;
  margin-bottom: 18px;
}
.about-value .subtext {
  max-width: 850px;
  color: rgba(243,240,232,.82);
}
.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.about-proof-grid article {
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.035);
  border-radius: 20px;
  padding: 22px;
}
.about-proof-grid h2 {
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}
.about-proof-grid p,
.about-close p {
  color: var(--muted);
  line-height: 1.62;
  margin-bottom: 0;
}
.about-close {
  margin-top: 22px;
  padding: clamp(26px, 4vw, 36px);
  background:
    linear-gradient(135deg, rgba(18,23,18,.96), rgba(10,12,10,.96));
}
.about-close h2 {
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: .95;
  letter-spacing: -0.055em;
  margin-bottom: 10px;
}
.about-close p {
  max-width: 680px;
  font-size: 1.05rem;
}
@media (max-width: 820px) {
  .about-proof-grid { grid-template-columns: 1fr; }
  .about-quote-hero,
  .about-value,
  .about-close { border-radius: 22px; }
}

/* About page: polished value page */
.about-real-body {
  background:
    radial-gradient(circle at 12% 4%, rgba(210,255,66,.10), transparent 26%),
    radial-gradient(circle at 86% 10%, rgba(255,107,53,.07), transparent 25%),
    #070907;
}
.about-real-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 76px) 0 80px;
}
.about-real-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding: clamp(18px, 3vw, 34px) 0 clamp(38px, 6vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,.12);
  position: relative;
}
.about-real-hero:before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(210,255,66,.75), transparent 62%);
  opacity: .65;
}
.about-quote-line blockquote {
  margin: 0;
  max-width: 820px;
  color: #fff;
  font-size: clamp(3.2rem, 8.3vw, 7.9rem);
  line-height: .86;
  letter-spacing: -0.075em;
  font-weight: 900;
}
.about-quote-line p {
  margin: 22px 0 0;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
}
.about-real-intro {
  padding-bottom: 10px;
}
.about-real-intro h1 {
  font-size: clamp(2.45rem, 5.2vw, 5.2rem);
  line-height: .9;
  letter-spacing: -0.065em;
  margin: 10px 0 18px;
}
.about-real-intro p:not(.eyebrow) {
  color: rgba(243,240,232,.78);
  font-size: 1.06rem;
  line-height: 1.7;
  margin: 0;
}
.about-real-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 34px 0 0;
}
.about-real-grid article {
  min-height: 250px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02)),
    rgba(17,22,17,.72);
}
.about-real-grid span {
  display: inline-block;
  color: var(--accent);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .18em;
  margin-bottom: 28px;
}
.about-real-grid h2 {
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  line-height: .95;
  letter-spacing: -0.05em;
  margin: 0 0 14px;
}
.about-real-grid p {
  color: rgba(243,240,232,.72);
  line-height: 1.65;
  margin: 0;
}
.about-real-close {
  margin-top: 18px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 30px;
  border: 1px solid rgba(210,255,66,.22);
  background:
    radial-gradient(circle at 90% 10%, rgba(210,255,66,.10), transparent 28%),
    rgba(12,15,12,.86);
}
.about-real-close h2 {
  font-size: clamp(2.35rem, 5.2vw, 5rem);
  line-height: .9;
  letter-spacing: -0.065em;
  margin: 0 0 12px;
}
.about-real-close p {
  color: rgba(243,240,232,.76);
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.62;
  margin: 0;
}
@media (max-width: 880px) {
  .about-real-shell { width: min(100% - 28px, 1120px); }
  .about-real-hero { grid-template-columns: 1fr; align-items: start; }
  .about-real-grid { grid-template-columns: 1fr; }
  .about-real-grid article { min-height: 0; }
  .about-quote-line blockquote { letter-spacing: -0.06em; }
}


/* UI spacing fix: keep Explore disclaimer from colliding with the map/results layout */
.product-hub-body .hub-map-panel {
  display: grid !important;
  grid-template-rows: auto minmax(0, 1fr) !important;
  gap: 10px !important;
  overflow: hidden !important;
}
.product-hub-body .hub-map-panel #map {
  height: 100% !important;
  min-height: 0 !important;
}
.product-hub-body .map-disclaimer {
  margin: 0 !important;
  padding: 8px 10px !important;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}
@media (max-width: 920px) {
  .product-hub-body .hub-map-panel { min-height: 560px !important; }
}

/* Pin Drops panel height tweak: show more locations at once without changing data or layout */
.product-hub-body .results-panel {
  height: clamp(650px, 58vh, 820px) !important;
  min-height: 650px !important;
}

@media (max-width: 1450px) {
  .product-hub-body .results-panel {
    height: clamp(620px, 56vh, 760px) !important;
    min-height: 620px !important;
  }
}

@media (max-width: 920px) {
  .product-hub-body .results-panel {
    height: auto !important;
    min-height: 0 !important;
  }
}


/* Home page uploaded photo gallery */
.shadow-home-copy .subtext {
  max-width: 660px;
}

.shadow-home-note {
  font-size: 15px;
  color: rgba(243,240,232,.60);
}

.shadow-gallery-card {
  position: relative;
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(160deg, rgba(10,13,10,.98), rgba(17,22,17,.92));
  box-shadow: 0 36px 100px rgba(0,0,0,.52);
}

.shadow-gallery-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.10) 28%, rgba(0,0,0,.66) 100%);
  pointer-events: none;
  z-index: 2;
}

.gallery-card-head {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.gallery-card-head span {
  color: rgba(243,240,232,.74);
  font-size: 12px;
  letter-spacing: 1.8px;
  font-weight: 900;
}

.gallery-card-head strong {
  font-size: 11px;
  letter-spacing: .6px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.14);
}

.gallery-stage {
  position: absolute;
  inset: 0;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.90) contrast(1.05) brightness(.84);
}

.gallery-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 22px;
  z-index: 4;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(5,6,5,.20), rgba(5,6,5,.78));
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
}

.gallery-caption strong,
.gallery-caption em {
  display: block;
}

.gallery-caption strong {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 5px;
}

.gallery-caption em {
  font-style: normal;
  color: rgba(243,240,232,.66);
  font-size: 13px;
  letter-spacing: .4px;
}

.gallery-dot-row {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 104px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.22);
  padding: 0;
}

.gallery-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(210,255,66,.14);
}

@media (max-width: 1040px) {
  .shadow-gallery-card { min-height: 520px; }
}

@media (max-width: 720px) {
  .shadow-gallery-card { min-height: 460px; }
  .gallery-caption strong { font-size: 18px; }
  .gallery-dot-row { bottom: 96px; }
}


/* Homepage gallery caption cleanup */
.no-caption-gallery:before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.48), rgba(0,0,0,.08) 34%, rgba(0,0,0,.34) 100%),
    radial-gradient(circle at 50% 35%, rgba(210,255,66,.08), transparent 28%);
}

.no-caption-gallery .gallery-dot-row {
  bottom: 24px;
}

.no-caption-gallery .gallery-slide img {
  filter: saturate(.88) contrast(1.04) brightness(.78);
}

.no-caption-gallery .gallery-card-head {
  padding: 0;
}

.no-caption-gallery .gallery-card-head strong {
  background: rgba(0,0,0,.48);
  color: rgba(243,240,232,.88);
  border-color: rgba(255,255,255,.14);
}

@media (max-width: 720px) {
  .no-caption-gallery .gallery-dot-row {
    bottom: 22px;
  }
}


/* About page v2: polished buyer value */
.about-page-v2 {
  position: relative;
  padding: 0 7vw 70px;
}

.about-hero-v2 {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .75fr);
  gap: 38px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 0 38px;
}

.about-hero-copy-v2,
.about-hero-panel-v2,
.about-split-v2,
.about-value-grid-v2 article,
.about-bottom-v2 {
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(145deg, rgba(18,24,18,.82), rgba(7,9,7,.92));
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}

.about-hero-copy-v2 {
  border-radius: 30px;
  padding: clamp(28px, 5vw, 54px);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-hero-copy-v2:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(210,255,66,.12), transparent 28%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.026) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0 1px, transparent 1px 64px);
  opacity: .9;
  pointer-events: none;
}

.about-hero-copy-v2 > * {
  position: relative;
  z-index: 1;
}

.about-hero-copy-v2 blockquote {
  margin: 10px 0 16px;
  max-width: 860px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .94;
  letter-spacing: -3px;
  font-weight: 900;
}

.quote-credit {
  margin: 0;
  color: rgba(243,240,232,.60);
  font-size: 15px;
  font-weight: 800;
}

.about-hero-panel-v2 {
  border-radius: 30px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.panel-kicker {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.about-hero-panel-v2 h1 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: .95;
  letter-spacing: -2.4px;
  margin: 0 0 16px;
}

.about-hero-panel-v2 p,
.about-split-v2 p,
.about-value-grid-v2 p,
.about-bottom-v2 p {
  color: rgba(243,240,232,.72);
  line-height: 1.6;
  font-size: 17px;
}

.about-split-v2 {
  max-width: 1180px;
  margin: 0 auto 22px;
  border-radius: 30px;
  padding: clamp(26px, 4vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: 36px;
}

.about-split-v2 h2 {
  margin-top: 0;
}

.about-checklist-v2 {
  display: grid;
  gap: 12px;
}

.about-checklist-v2 div {
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.045);
  border-radius: 18px;
  padding: 18px;
}

.about-checklist-v2 strong,
.about-checklist-v2 span {
  display: block;
}

.about-checklist-v2 strong {
  color: var(--text);
  margin-bottom: 7px;
  font-size: 16px;
}

.about-checklist-v2 span {
  color: rgba(243,240,232,.64);
  line-height: 1.5;
  font-size: 14px;
}

.about-value-grid-v2 {
  max-width: 1180px;
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-value-grid-v2 article {
  border-radius: 24px;
  padding: 24px;
}

.about-value-grid-v2 h3 {
  color: var(--text);
  margin-bottom: 10px;
}

.about-bottom-v2 {
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 28px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.about-bottom-v2 p {
  max-width: 760px;
  margin: 0;
}

@media (max-width: 980px) {
  .about-hero-v2,
  .about-split-v2,
  .about-value-grid-v2 {
    grid-template-columns: 1fr;
  }

  .about-hero-copy-v2 {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .about-page-v2 {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .about-hero-copy-v2 blockquote {
    letter-spacing: -1.8px;
  }

  .about-bottom-v2 {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* About page v3: U.S. quality pins + smaller red quote treatment */
.about-page-v3 {
  isolation: isolate;
}

.about-page-v3:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(168, 28, 35, .20), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(210,255,66,.055), transparent 24%),
    radial-gradient(circle at 58% 76%, rgba(255,107,53,.075), transparent 30%),
    linear-gradient(135deg, rgba(0,0,0,.20), rgba(0,0,0,.72));
}

.about-hero-v3 {
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr);
}

.about-quote-card-v3 {
  min-height: 360px;
  justify-content: flex-end;
  border-color: rgba(255, 69, 76, .25);
  background:
    linear-gradient(145deg, rgba(20, 4, 5, .92), rgba(7,9,7,.96)),
    #070907;
}

.about-quote-card-v3:before {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 49, 59, .24), transparent 26%),
    radial-gradient(circle at 88% 80%, rgba(210,255,66,.045), transparent 24%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.024) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0 1px, transparent 1px 58px);
}

.about-quote-card-v3:after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 69, 76, .18);
  border-radius: 24px;
  pointer-events: none;
  box-shadow: inset 0 0 44px rgba(255, 49, 59, .06);
}

.quote-year-v3 {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 69, 76, .35);
  background: rgba(255, 49, 59, .10);
  color: #ff4b55;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.about-quote-card-v3 blockquote {
  font-size: clamp(24px, 3.1vw, 42px);
  line-height: 1.02;
  letter-spacing: -1.4px;
  max-width: 620px;
  color: rgba(243,240,232,.92);
  margin-bottom: 0;
}

.about-quote-card-v3 blockquote span {
  display: block;
}

.about-quote-card-v3 blockquote span:first-child {
  color: #ff4b55;
  text-shadow: 0 0 34px rgba(255, 49, 59, .20);
}

.about-hero-panel-v3 h1 {
  max-width: 760px;
}

.about-hero-panel-v3 p + p {
  margin-top: 10px;
}

.about-split-v3 {
  border-color: rgba(255,255,255,.11);
  background:
    linear-gradient(145deg, rgba(18,24,18,.88), rgba(8,9,8,.96)),
    radial-gradient(circle at 95% 5%, rgba(255, 49, 59, .12), transparent 22%);
}

.about-value-grid-v3 article:nth-child(3) {
  border-color: rgba(210,255,66,.20);
  box-shadow: 0 24px 70px rgba(0,0,0,.25), inset 0 0 42px rgba(210,255,66,.035);
}

.about-bottom-v3 {
  border-color: rgba(255, 69, 76, .18);
}

@media (max-width: 980px) {
  .about-hero-v3 {
    grid-template-columns: 1fr;
  }

  .about-quote-card-v3 {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .about-quote-card-v3 blockquote {
    letter-spacing: -1px;
  }
}


/* About manifesto page: simple long-form version */
.about-manifesto-page {
  position: relative;
  padding: 0 7vw 76px;
  isolation: isolate;
}

.about-manifesto-page:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(180, 18, 30, .16), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(210,255,66,.045), transparent 26%),
    radial-gradient(circle at 55% 82%, rgba(255,107,53,.055), transparent 34%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, transparent 1px 78px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.014) 0 1px, transparent 1px 78px),
    linear-gradient(145deg, #060806 0%, #090a08 48%, #120707 100%);
}

.about-manifesto-hero,
.about-prose,
.about-simple-cta {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.about-manifesto-hero {
  padding: 34px 0 30px;
}

.about-manifesto-hero h1 {
  max-width: 900px;
  margin: 8px 0 20px;
  font-size: clamp(48px, 7vw, 90px);
  line-height: .88;
  letter-spacing: -4px;
}

.about-lede {
  max-width: 880px;
  margin: 0;
  color: rgba(243,240,232,.76);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.about-quote-line {
  margin-top: 34px;
  padding: 18px 0 18px 22px;
  border-left: 3px solid #ff3945;
  max-width: 760px;
  background:
    linear-gradient(90deg, rgba(255, 49, 59, .10), transparent 82%);
}

.about-quote-line span {
  display: block;
  color: #ff4b55;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.about-quote-line blockquote {
  margin: 0;
  color: rgba(243,240,232,.88);
  font-size: clamp(21px, 2.6vw, 34px);
  line-height: 1.12;
  letter-spacing: -1px;
  font-weight: 900;
}

.about-prose {
  padding: 32px 0 20px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.about-prose p {
  max-width: 880px;
  margin: 0 0 24px;
  color: rgba(243,240,232,.78);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.78;
}

.about-prose p:first-child {
  color: rgba(243,240,232,.88);
  font-size: clamp(19px, 1.75vw, 23px);
  line-height: 1.68;
}

.about-prose p:nth-child(5),
.about-prose p:nth-child(8),
.about-prose p:nth-child(9) {
  color: rgba(243,240,232,.90);
}

.about-simple-cta {
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.about-simple-cta p {
  margin: 0;
  color: rgba(243,240,232,.86);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  font-weight: 900;
}

@media (max-width: 720px) {
  .about-manifesto-page {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .about-manifesto-hero h1 {
    letter-spacing: -2.4px;
  }

  .about-simple-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* About page: short text + simple info boxes */
.about-info-grid {
  max-width: 980px;
  margin: 10px auto 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-info-grid article {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(18,24,18,.78), rgba(7,9,7,.92)),
    radial-gradient(circle at 92% 12%, rgba(255, 49, 59, .10), transparent 28%);
  box-shadow: 0 18px 52px rgba(0,0,0,.22);
}

.about-info-grid h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1.02;
  letter-spacing: -1px;
}

.about-info-grid p {
  margin: 0;
  color: rgba(243,240,232,.70);
  font-size: 16px;
  line-height: 1.58;
}

.about-info-grid article:nth-child(3) {
  border-color: rgba(210,255,66,.18);
}

@media (max-width: 780px) {
  .about-info-grid {
    grid-template-columns: 1fr;
  }
}


/* Safety & Terms page + tiny footer link */
.footer-legal {
  margin-top: 8px;
  max-width: 920px;
  color: rgba(243,240,232,.46);
  font-size: 11px;
  line-height: 1.5;
}

.footer-legal a {
  color: rgba(243,240,232,.68);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-hero {
  min-height: 54vh;
  padding-bottom: 54px;
}

.legal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.legal-page {
  padding: 48px 7vw 78px;
  background:
    radial-gradient(circle at 18% 8%, rgba(168, 28, 35, .12), transparent 28%),
    linear-gradient(145deg, #070907 0%, #090b09 52%, #120707 100%);
}

.legal-prose {
  max-width: 920px;
  margin: 0 auto;
}

.legal-prose h2 {
  margin: 34px 0 10px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -1.2px;
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose p {
  margin: 0 0 14px;
  color: rgba(243,240,232,.74);
  font-size: 17px;
  line-height: 1.68;
}

@media (max-width: 720px) {
  .footer-legal {
    font-size: 10.5px;
  }

  .legal-page {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}


/* Homepage CTA punch-up */
.shadow-landing-home .hero-actions {
  align-items: center;
  gap: 16px;
}

.shadow-landing-home .hero-cta {
  position: relative;
  overflow: hidden;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #070907;
  box-shadow:
    0 0 0 1px rgba(210,255,66,.28),
    0 0 34px rgba(210,255,66,.24),
    0 16px 34px rgba(0,0,0,.34);
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease;
}

.shadow-landing-home .hero-cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.34) 42%, transparent 70%);
  transform: translateX(-120%);
  animation: cta-sweep 4.8s ease-in-out infinite;
}

.shadow-landing-home .hero-cta span,
.shadow-landing-home .hero-cta {
  z-index: 1;
}

.shadow-landing-home .hero-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(210,255,66,.36),
    0 0 48px rgba(210,255,66,.34),
    0 20px 40px rgba(0,0,0,.42);
}

.shadow-landing-home .hero-actions .secondary-btn {
  position: relative;
  padding: 15px 22px;
  border-color: rgba(255, 69, 76, .58);
  color: rgba(243,240,232,.94);
  background:
    linear-gradient(145deg, rgba(255, 49, 59, .12), rgba(255,255,255,.035));
  box-shadow:
    inset 0 0 24px rgba(255, 49, 59, .035),
    0 0 0 1px rgba(255, 49, 59, .07);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.shadow-landing-home .hero-actions .secondary-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 69, 76, .88);
  background:
    linear-gradient(145deg, rgba(255, 49, 59, .20), rgba(255,255,255,.055));
  box-shadow:
    0 0 30px rgba(255, 49, 59, .16),
    inset 0 0 24px rgba(255, 49, 59, .06);
}

@keyframes cta-sweep {
  0%, 58% { transform: translateX(-120%); }
  76%, 100% { transform: translateX(120%); }
}

@media (max-width: 720px) {
  .shadow-landing-home .hero-cta,
  .shadow-landing-home .hero-actions .secondary-btn {
    width: 100%;
    text-align: center;
  }
}


/* Account, admin, and protected database build */
.hidden { display: none !important; }

.account-auth-card input,
.admin-input,
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(5,6,10,0.72);
  color: #fff;
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  margin: 0.35rem 0;
  outline: none;
}

.account-card-wide,
.admin-card-wide {
  grid-column: 1 / -1;
}

.saved-row {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
}

.admin-shell {
  max-width: 1380px;
}

.admin-grid {
  display: grid;
  gap: 1rem;
}

.admin-card-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-search-row {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  min-width: min(460px, 100%);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: top;
}

.admin-table th {
  color: rgba(255,255,255,0.62);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.admin-form textarea {
  min-height: 96px;
}

.admin-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255,255,255,0.75);
  padding: 0.85rem 0.95rem;
}

.mini-lock {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 63, 86, 0.32);
  color: #ff7789;
  border-radius: 999px;
  padding: 0.18rem 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}

.disabled {
  opacity: 0.75;
}

@media (max-width: 760px) {
  .admin-card-head,
  .admin-search-row {
    display: block;
  }

  .admin-form-grid {
    grid-template-columns: 1fr;
  }
}


/* Account auth readability patch */
.account-body .nav-btn,
.pricing-body .nav-btn,
.product-hub-body .nav-btn {
  color: rgba(255,255,255,0.86);
}

.account-body .nav-btn:hover,
.pricing-body .nav-btn:hover,
.product-hub-body .nav-btn:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
}

.account-auth-card input,
.modal-card input {
  color: #ffffff;
  background: rgba(5, 7, 12, 0.94);
  border-color: rgba(255,255,255,0.20);
}

.account-auth-card input::placeholder,
.modal-card input::placeholder {
  color: rgba(255,255,255,0.52);
}

.account-auth-card .secondary-btn,
.modal-card .secondary-btn,
#logoutAccountBtn {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
}

.account-auth-card .secondary-btn:hover,
.modal-card .secondary-btn:hover,
#logoutAccountBtn:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
}

.account-auth-card .primary-btn,
.modal-card .primary-btn {
  color: #ffffff;
}

#accountMessage,
#authMessage {
  color: rgba(255,255,255,0.76);
  min-height: 1.25rem;
}

#adminAccountLink.hidden,
#logoutAccountBtn.hidden {
  display: none !important;
}


/* Normal account creation/login patch */
.auth-layout {
  align-items: stretch;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.35rem;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.30);
  border-radius: 16px;
}

.auth-tab {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.72);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.auth-tab.active {
  background: #ff3858;
  color: #050508;
  border-color: rgba(255, 56, 88, 0.85);
  box-shadow: 0 0 20px rgba(255, 56, 88, 0.22);
}

.auth-form h3 {
  margin: 0 0 0.35rem;
}

.auth-form label {
  display: block;
  margin: 0.9rem 0 0.35rem;
  color: rgba(255,255,255,0.76);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.auth-form input {
  width: 100%;
  color: #ffffff;
  background: rgba(5, 7, 12, 0.94);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 14px;
  padding: 0.9rem 0.95rem;
  outline: none;
}

.auth-form input:focus {
  border-color: rgba(255, 56, 88, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 56, 88, 0.12);
}

.auth-form input::placeholder {
  color: rgba(255,255,255,0.42);
}

.auth-create-btn {
  width: 100%;
  margin-top: 1rem;
  color: #050508 !important;
  background: #ff3858;
}

.auth-create-btn:hover {
  color: #050508 !important;
  filter: brightness(1.06);
}

#accountLoginBtn {
  color: #ffffff !important;
}

#logoutAccountBtn {
  color: #ffffff !important;
}


/* Account signup feedback fix */
.form-message {
  margin: 0.85rem 0 0;
  min-height: 1.25rem;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.45;
}

.auth-form button:disabled,
.primary-btn:disabled,
.secondary-btn:disabled {
  opacity: 0.62;
  cursor: wait;
}

.auth-form input:invalid {
  box-shadow: none;
}

.auth-form input {
  pointer-events: auto;
}

.account-auth-card {
  position: relative;
  z-index: 2;
}


/* Account hub and inline auth errors */
.account-hub-shell {
  max-width: 1180px;
}

.account-dashboard {
  display: grid;
  gap: 1rem;
}

.account-dashboard-top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
  gap: 1rem;
}

.account-summary-card,
.membership-status-card {
  min-height: 100%;
}

.account-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 1rem;
}

.account-hub-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.4rem;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
}

.account-hub-tab {
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 13px;
  padding: 0.78rem 0.95rem;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.055);
  cursor: pointer;
  font-weight: 850;
}

.account-hub-tab.active {
  color: #050508;
  background: #ff3858;
  border-color: rgba(255,56,88,0.85);
}

.hub-panel {
  display: block;
}

.three-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-tile strong {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.7rem);
  margin: 0.4rem 0;
  color: #ffffff;
}

.stat-label {
  display: block;
  color: rgba(255,255,255,0.58);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.saved-list {
  display: grid;
  gap: 0.7rem;
}

.saved-location-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.045);
}

.saved-location-card p {
  margin: 0.2rem 0 0;
}

.empty-state {
  padding: 1rem;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.20);
}

.membership-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  margin: 1rem 0;
}

.account-mini-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.account-mini-list span {
  display: block;
  padding: 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.82);
  font-weight: 800;
}

.field-error {
  min-height: 1.1rem;
  margin: 0.3rem 0 0;
  color: #ff2b2b;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.35;
}

.field-invalid {
  border-color: #ff2b2b !important;
  box-shadow: 0 0 0 3px rgba(255,43,43,0.18) !important;
}

.form-message {
  color: rgba(255,255,255,0.75);
}

.form-message-bad {
  color: #ff2b2b !important;
  font-weight: 900;
}

.form-message-good {
  color: #78ff9d !important;
  font-weight: 850;
}

.pricing-account-status {
  display: inline-flex;
  margin-top: 1rem;
  max-width: 760px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: rgba(255,255,255,0.76);
  background: rgba(0,0,0,0.28);
  font-weight: 750;
}

.pricing-account-status.good {
  color: #78ff9d;
  border-color: rgba(120,255,157,0.34);
}

.pricing-account-status.warn {
  color: #ffd166;
  border-color: rgba(255,209,102,0.34);
}

.pricing-account-status.bad {
  color: #ff2b2b;
  border-color: rgba(255,43,43,0.38);
}

@media (max-width: 850px) {
  .account-dashboard-top,
  .three-card-grid,
  .membership-detail-grid {
    grid-template-columns: 1fr;
  }

  .saved-location-card,
  .section-row {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* Overflow and admin panel stability patch */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.account-card,
.admin-card,
.pricing-card,
.map-card,
.location-card,
.saved-location-card,
.admin-result-card {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.account-card p,
.account-card span,
.account-card strong,
.account-card h1,
.account-card h2,
.account-card h3,
.admin-card p,
.admin-card span,
.admin-card strong,
.admin-card h1,
.admin-card h2,
.admin-card h3 {
  max-width: 100%;
}

.account-dashboard-top,
.account-grid,
.three-card-grid,
.membership-detail-grid {
  min-width: 0;
}

.primary-btn,
.secondary-btn,
.nav-btn {
  white-space: normal;
  text-align: center;
  min-width: 0;
}

.account-action-row .primary-btn,
.account-action-row .secondary-btn {
  max-width: 100%;
}

.saved-location-card,
.admin-result-card {
  min-width: 0;
  overflow: hidden;
}

.saved-location-card > div,
.admin-result-main {
  min-width: 0;
}

.saved-location-card strong,
.admin-result-main strong {
  display: block;
  overflow-wrap: anywhere;
}

.admin-result-card {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.045);
  margin-bottom: 0.7rem;
}

.admin-result-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
  min-width: min(300px, 100%);
}

.admin-result-actions .secondary-btn {
  padding: 0.65rem 0.75rem;
  font-size: 0.86rem;
}

.admin-card input,
.admin-card textarea,
.admin-card select,
.account-card input,
.account-card textarea,
.account-card select {
  max-width: 100%;
  min-width: 0;
}

.admin-card textarea {
  min-height: 92px;
  resize: vertical;
}

@media (max-width: 850px) {
  .admin-result-card {
    flex-direction: column;
  }

  .admin-result-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .admin-result-actions .secondary-btn {
    width: auto;
  }
}

@media (max-width: 520px) {
  .account-shell,
  .account-hub-shell {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .account-card,
  .admin-card {
    padding: 1rem;
  }

  .account-hub-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .account-action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .account-action-row .primary-btn,
  .account-action-row .secondary-btn {
    width: 100%;
  }
}


/* Wide account/admin layout repair */
.account-shell,
.account-hub-shell,
.admin-shell {
  width: min(1380px, calc(100vw - 48px));
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
}

.account-card,
.admin-card {
  padding: clamp(1.35rem, 2.2vw, 2.1rem);
  overflow: visible;
}

.account-card,
.admin-card,
.saved-location-card,
.admin-result-card,
.pricing-card {
  overflow-wrap: normal;
  word-break: normal;
}

.account-card h1,
.account-card h2,
.account-card h3,
.admin-card h1,
.admin-card h2,
.admin-card h3 {
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
}

.account-card p,
.admin-card p {
  line-height: 1.55;
}

.account-dashboard-top {
  grid-template-columns: minmax(560px, 1.35fr) minmax(420px, 0.9fr);
  gap: 1.25rem;
}

.account-grid {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.25rem;
}

.three-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.membership-detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.account-hub-tabs {
  gap: 0.7rem;
  padding: 0.55rem;
}

.account-hub-tab {
  flex: 1 1 190px;
  white-space: nowrap;
  padding: 0.9rem 1.15rem;
}

.account-action-row {
  gap: 0.75rem;
}

.account-action-row .primary-btn,
.account-action-row .secondary-btn,
.admin-result-actions .secondary-btn {
  white-space: nowrap;
  width: auto;
}

.saved-location-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 1rem 1.1rem;
}

.admin-result-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, auto);
  align-items: start;
  padding: 1rem 1.1rem;
}

.admin-result-actions {
  min-width: 360px;
}

.stat-tile strong {
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  line-height: 1.05;
}

#accountEmail,
#settingsEmail,
.admin-result-main strong,
.saved-location-card strong {
  overflow-wrap: anywhere;
}

.auth-form input,
.admin-card input,
.admin-card textarea,
.admin-card select,
.account-card input,
.account-card textarea,
.account-card select {
  font-size: 1rem;
}

@media (max-width: 1120px) {
  .account-dashboard-top {
    grid-template-columns: 1fr;
  }

  .account-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .admin-result-card {
    grid-template-columns: 1fr;
  }

  .admin-result-actions {
    min-width: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .account-shell,
  .account-hub-shell,
  .admin-shell {
    width: min(100%, calc(100vw - 28px));
  }

  .account-grid,
  .three-card-grid,
  .membership-detail-grid {
    grid-template-columns: 1fr;
  }

  .account-hub-tab {
    white-space: normal;
    flex: 1 1 100%;
  }

  .saved-location-card {
    grid-template-columns: 1fr;
  }

  .account-action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .account-action-row .primary-btn,
  .account-action-row .secondary-btn {
    width: 100%;
    white-space: normal;
  }
}


/* Complete admin users/access panel */
.admin-shell {
  width: min(1480px, calc(100vw - 48px));
  max-width: 1480px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
  display: grid;
  gap: 1.25rem;
}

.admin-grid {
  display: grid;
  gap: 1.25rem;
}

.admin-stats-grid {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
}

.admin-card-wide {
  width: 100%;
}

.admin-search-row {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex-wrap: wrap;
}

.admin-search-row input {
  min-width: min(360px, 100%);
  flex: 1 1 360px;
}

.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background: rgba(0,0,0,0.18);
}

.admin-user-table {
  width: 100%;
  min-width: 1060px;
  border-collapse: collapse;
}

.admin-user-table th,
.admin-user-table td {
  padding: 0.9rem 0.85rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.84);
}

.admin-user-table th {
  color: rgba(255,255,255,0.56);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 900;
  background: rgba(255,255,255,0.035);
}

.admin-email-cell {
  font-weight: 850;
  color: #ffffff !important;
  overflow-wrap: anywhere;
}

.admin-table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  min-width: 290px;
}

.small-admin-btn {
  padding: 0.58rem 0.7rem !important;
  font-size: 0.82rem !important;
  white-space: nowrap;
}

.admin-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.14);
}

.admin-pill.good {
  color: #78ff9d;
  border-color: rgba(120,255,157,0.35);
  background: rgba(120,255,157,0.08);
}

.admin-pill.muted {
  color: rgba(255,255,255,0.62);
  background: rgba(255,255,255,0.04);
}

.admin-mobile-results {
  display: none;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 0.9rem;
}

.admin-form-grid label,
.admin-wide-label {
  display: grid;
  gap: 0.38rem;
  color: rgba(255,255,255,0.68);
  font-size: 0.84rem;
  font-weight: 850;
}

.admin-wide-label {
  margin-top: 0.9rem;
}

.admin-results-stack {
  display: grid;
  gap: 0.7rem;
}

@media (max-width: 980px) {
  .admin-stats-grid,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-table-wrap {
    display: none;
  }

  .admin-mobile-results {
    display: grid;
    gap: 0.75rem;
  }
}

@media (max-width: 640px) {
  .admin-shell {
    width: min(100%, calc(100vw - 28px));
    padding-top: 1rem;
  }

  .admin-search-row {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-search-row input,
  .admin-search-row .secondary-btn {
    width: 100%;
  }
}


/* Admin visibility and action feedback fix */
.admin-body,
.admin-body p,
.admin-body td,
.admin-body th,
.admin-body label,
.admin-body span,
.admin-body input,
.admin-body textarea,
.admin-body select {
  color: rgba(255,255,255,0.92);
}

.admin-card {
  background: rgba(9, 12, 20, 0.94);
  border-color: rgba(255,255,255,0.16);
}

.admin-card .small-note,
.admin-body .small-note {
  color: rgba(255,255,255,0.72);
}

.admin-card h1,
.admin-card h2,
.admin-card h3,
.admin-user-table td,
.admin-result-main strong,
.admin-email-cell {
  color: #ffffff !important;
}

.admin-user-table th {
  color: rgba(255,255,255,0.82) !important;
  background: rgba(255,255,255,0.08);
}

.admin-user-table td {
  background: rgba(255,255,255,0.025);
}

.admin-user-table tr:hover td {
  background: rgba(255,255,255,0.055);
}

.admin-search-row input,
.admin-form-grid input,
.admin-form-grid select,
.admin-wide-label textarea,
.admin-card input,
.admin-card textarea,
.admin-card select {
  color: #ffffff !important;
  background: rgba(0,0,0,0.48) !important;
  border: 1px solid rgba(255,255,255,0.24) !important;
}

.admin-search-row input::placeholder,
.admin-form-grid input::placeholder,
.admin-wide-label textarea::placeholder {
  color: rgba(255,255,255,0.52);
}

.small-admin-btn,
.admin-result-actions .secondary-btn,
.admin-search-row .secondary-btn {
  color: #ffffff !important;
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
}

.grant-btn {
  color: #050508 !important;
  background: #78ff9d !important;
  border-color: rgba(120,255,157,0.70) !important;
}

.small-admin-btn:disabled,
.admin-result-actions .secondary-btn:disabled {
  opacity: 0.55;
  cursor: wait;
}

.row-status {
  display: block;
  flex-basis: 100%;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 900;
  color: rgba(255,255,255,0.78);
}

.row-status-good {
  color: #78ff9d !important;
}

.row-status-bad {
  color: #ff2b2b !important;
}

#adminStatus.form-message-good {
  color: #78ff9d !important;
}

#adminStatus.form-message-bad {
  color: #ff2b2b !important;
}

.admin-pill.good {
  color: #050508 !important;
  background: #78ff9d !important;
  border-color: rgba(120,255,157,0.8) !important;
}

.admin-pill.muted {
  color: rgba(255,255,255,0.86) !important;
  background: rgba(255,255,255,0.10) !important;
}

@media (max-width: 980px) {
  .admin-mobile-results {
    display: grid;
  }

  .admin-result-card {
    background: rgba(9,12,20,0.94);
    border-color: rgba(255,255,255,0.16);
  }
}


/* Grant full access repair visibility */
.grant-btn,
.small-admin-btn.grant-btn,
.admin-result-actions .grant-btn {
  color: #050508 !important;
  background: #78ff9d !important;
  border-color: rgba(120,255,157,0.85) !important;
  font-weight: 950 !important;
}

.row-status {
  display: block;
  flex-basis: 100%;
  width: 100%;
  margin-top: 0.45rem;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.35;
}

.row-status-good {
  color: #78ff9d !important;
}

.row-status-bad {
  color: #ff2b2b !important;
}

.admin-table-actions {
  min-width: 360px;
}

.admin-table-actions .row-status {
  white-space: normal;
}


/* Members-only Explore gate */
.membership-required-shell {
  width: min(960px, calc(100vw - 40px));
  margin: 0 auto;
  min-height: calc(100vh - 220px);
  display: grid;
  place-items: center;
  padding: 4rem 0;
}

.membership-required-card {
  width: 100%;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(circle at 15% 0%, rgba(255,56,88,0.18), transparent 34%),
    rgba(9, 12, 20, 0.94);
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}

.membership-required-card h1 {
  margin: 0.25rem 0 0.75rem;
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  line-height: 0.95;
  color: #ffffff;
}

.membership-required-card p {
  max-width: 760px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

.membership-required-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.4rem 0 1rem;
}

#map {
  min-height: 620px;
}

.shadowpin-marker {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--pin-color, #fff);
  color: #08080c;
  font-weight: 950;
  font-size: 0.78rem;
  border: 2px solid rgba(0,0,0,0.65);
  box-shadow: 0 0 0 5px rgba(255,255,255,0.10), 0 10px 26px rgba(0,0,0,0.5);
}

@media (max-width: 640px) {
  .membership-required-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .membership-required-actions .primary-btn,
  .membership-required-actions .secondary-btn {
    width: 100%;
  }

  #map {
    min-height: 520px;
  }
}


/* Master repair: restore original map dots and detail drawer behavior */
.shadowpin-marker,
.shadowpin-marker-wrap {
  display: none !important;
}

.leaflet-interactive {
  cursor: pointer;
}

.detail-panel.open,
.detail-panel.active {
  transform: translateX(0);
}

.location-card .save-inline {
  align-self: flex-start;
  margin-top: auto;
}

.popup h3 {
  margin: 0 0 8px;
  color: #111;
}

.popup p {
  margin: 6px 0;
  color: #222;
}

.popup .badge {
  background: rgba(0,0,0,0.08);
  color: #111;
}

.popup-upgrade {
  width: 100%;
  margin-top: 8px;
  border: none;
  border-radius: 10px;
  padding: 9px 10px;
  background: #d2ff42;
  color: #111;
  font-weight: 900;
  cursor: pointer;
}
