:root {
  --bg: #050607;
  --panel: #0b0d0f;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f7f7f2;
  --muted: #a5a79f;
  --muted-strong: #d5d8cf;
  --accent: #cfff24;
  --accent-soft: rgba(207, 255, 36, 0.14);
  --accent-line: rgba(207, 255, 36, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  overflow: hidden;
}

.page-body {
  min-height: 100%;
  overflow: auto;
  background:
    radial-gradient(circle at 30% 20%, rgba(207, 255, 36, 0.13), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 76px 76px, 76px 76px, auto;
}

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

.app-shell {
  position: relative;
  display: grid;
  grid-template-rows: 76px 1fr 58px;
  height: 100dvh;
  min-height: 560px;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 35%, rgba(172, 220, 14, 0.16), transparent 32%),
    radial-gradient(circle at 76% 20%, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    #050607;
  background-size: auto, auto, 76px 76px, 76px 76px, auto;
}

.app-shell::before {
  content: "";
  position: absolute;
  inset: 76px 0 58px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.25), rgba(5, 6, 7, 0) 42%, rgba(5, 6, 7, 0.7)),
    radial-gradient(circle at 70% 58%, rgba(207, 255, 36, 0.1), transparent 28%);
}

.site-header,
.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 7, 0.74);
  backdrop-filter: blur(18px);
}

.site-header {
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 64px);
}

.page-header {
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: #111400;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(207, 255, 36, 0.26);
}

.brand-text {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-text strong {
  color: var(--accent);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 30px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.main-nav a,
.login-link,
.site-footer a {
  transition: color 180ms ease, opacity 180ms ease;
}

.main-nav a:hover,
.main-nav a.active,
.login-link:hover,
.site-footer a:hover {
  color: var(--text);
}

.login-link {
  min-width: 130px;
  text-align: right;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 800;
}

.session-menu {
  display: inline-flex;
  min-width: 170px;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 900;
}

.session-menu button {
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font: inherit;
  font-size: 11px;
  cursor: pointer;
}

.session-menu button:hover {
  border-color: var(--accent-line);
  color: var(--accent);
}

.session-admin-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  background: rgba(207, 255, 36, 0.08);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
}

.page-close {
  position: fixed;
  z-index: 20;
  top: 18px;
  right: 22px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 6, 7, 0.72);
  color: var(--muted-strong);
  font-size: 24px;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.page-close:hover {
  border-color: var(--accent-line);
  color: var(--accent);
}

.report-body .page-close {
  top: 84px;
  right: 22px;
}

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

.admin-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.admin-summary > div,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(11, 13, 15, 0.88);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.admin-summary > div {
  padding: 18px;
}

.admin-summary-foldout {
  grid-column: 1 / -1;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(11, 13, 15, 0.88);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.admin-summary-foldout > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

.admin-summary-foldout > summary::-webkit-details-marker {
  display: none;
}

.admin-summary-foldout > summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(207, 255, 36, 0.25);
  border-radius: 999px;
  color: #cffb24;
  font-size: 18px;
  font-weight: 900;
}

.admin-summary-foldout[open] > summary::after {
  content: "-";
}

.admin-summary-foldout > summary span {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.admin-summary-foldout > summary small {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-summary-foldout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  padding: 0 18px 18px;
}

.admin-summary-section {
  grid-column: 1 / -1;
  padding: 0 2px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.admin-summary-card {
  position: relative;
  overflow: hidden;
}

.admin-summary-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: rgba(207, 255, 36, 0.35);
}

.admin-summary-card-sales::before {
  background: #cffb24;
}

.admin-summary-card-usage::before {
  background: #5ed7ff;
}

.admin-summary-card-cost::before {
  background: #ffb454;
}

.admin-summary-card-muted::before {
  background: rgba(255, 255, 255, 0.28);
}

.admin-summary-wide {
  grid-column: span 2;
}

.admin-summary-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.admin-public-stats-card {
  display: grid;
  gap: 16px;
}

.admin-public-stats-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-public-stats-head > div {
  display: grid;
  gap: 6px;
}

.admin-public-stats-fields {
  display: grid;
  grid-template-columns: 0.8fr 0.7fr 1.2fr 1.2fr;
  gap: 12px;
}

.admin-public-stats-fields label {
  display: grid;
  gap: 7px;
}

.admin-public-stats-fields input,
.admin-public-stats-fields select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(236, 255, 230, 0.16);
  border-radius: 12px;
  background: rgba(3, 9, 7, 0.54);
  color: #f5ffe9;
  padding: 0 12px;
  font: inherit;
}

.admin-summary-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.admin-refresh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-refresh-actions .admin-alert-button,
.admin-refresh-actions .secondary-form-button {
  width: auto;
  min-height: 38px;
  margin-top: 0;
  white-space: nowrap;
}

.admin-monthly-sales {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
}

.admin-month-card {
  border: 1px solid rgba(207, 255, 36, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.admin-month-card summary {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
}

.admin-month-card summary::-webkit-details-marker {
  display: none;
}

.admin-month-card summary span {
  text-transform: capitalize;
  font-weight: 950;
}

.admin-month-card summary em,
.admin-day-head em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.admin-month-days {
  display: grid;
  gap: 10px;
  padding: 0 14px 14px;
}

.admin-day-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.16);
}

.admin-day-head,
.admin-day-sale {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) auto auto;
  gap: 10px;
  align-items: center;
}

.admin-day-head {
  margin-bottom: 8px;
}

.admin-day-head span {
  text-transform: capitalize;
  font-weight: 900;
}

.admin-day-sale {
  padding-top: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-day-sale b,
.admin-day-sale strong {
  color: var(--text);
}

.admin-day-sale > small {
  grid-column: 1 / -1;
  color: var(--muted);
  line-height: 1.35;
}

.admin-day-sale .admin-purchase-searches {
  grid-column: 1 / -1;
}

.admin-purchase-searches {
  display: grid;
  gap: 4px;
  margin-top: 6px;
}

.admin-purchase-searches small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.admin-purchase-searches a {
  color: var(--accent);
  font-weight: 900;
  margin-left: 6px;
}

.admin-alert-button {
  min-height: 34px;
  margin-top: 10px;
  padding: 0 12px;
  border: 1px solid rgba(207, 255, 36, 0.28);
  border-radius: 999px;
  background: rgba(207, 255, 36, 0.08);
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.admin-whatsapp-panel {
  margin-top: 14px;
  padding: 18px;
}

.admin-whatsapp-message {
  width: 100%;
  min-height: 150px;
  resize: vertical;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(37, 211, 102, 0.24);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.admin-whatsapp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.admin-whatsapp-actions .primary-form-button,
.admin-whatsapp-actions .secondary-form-button {
  width: auto;
  min-height: 40px;
}

@media (max-width: 640px) {
  .admin-summary-wide {
    grid-column: auto;
  }

  .admin-summary-actions,
  .admin-refresh-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-public-stats-head {
    flex-direction: column;
  }

  .admin-public-stats-head .primary-form-button {
    width: 100%;
  }

  .admin-public-stats-fields {
    grid-template-columns: 1fr;
  }

  .admin-refresh-actions .admin-alert-button,
  .admin-refresh-actions .secondary-form-button {
    width: 100%;
  }

  .admin-whatsapp-actions .primary-form-button,
  .admin-whatsapp-actions .secondary-form-button {
    width: 100%;
  }
}

.admin-summary span,
.admin-credit-grid span,
.admin-mini-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-summary strong,
.admin-credit-grid strong,
.admin-mini-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 24px;
  font-weight: 900;
}

.admin-cost-card label,
.admin-cost-card small {
  display: block;
}

.admin-cost-card input {
  width: 100%;
  min-height: 38px;
  margin-top: 8px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  font: inherit;
  font-weight: 900;
}

.admin-cost-card small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.admin-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-panel {
  padding: 18px;
}

.admin-list-panel {
  position: sticky;
  top: 18px;
}

.admin-list-panel input {
  width: 100%;
  min-height: 44px;
  margin-bottom: 14px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.admin-toolbar {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.admin-view-toggle {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-view-button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.admin-view-button.active {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  color: var(--text);
}

.admin-toolbar-note {
  margin: 0;
}

.admin-bulk-whatsapp {
  display: grid;
  gap: 12px;
  margin: 12px 0;
  padding: 14px;
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: 14px;
  background: rgba(37, 211, 102, 0.07);
}

.admin-bulk-whatsapp strong,
.admin-bulk-whatsapp small {
  display: block;
}

.admin-bulk-whatsapp small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-bulk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-bulk-actions .primary-form-button,
.admin-bulk-actions .secondary-form-button {
  width: auto;
  min-height: 36px;
  padding: 0 12px;
  font-size: 12px;
}

.admin-customer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: stretch;
}

.admin-customer-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 74px;
  padding: 0 10px;
  border: 1px solid rgba(37, 211, 102, 0.24);
  border-radius: 14px;
  background: rgba(37, 211, 102, 0.06);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.admin-customer-check input {
  accent-color: #25d366;
}

.admin-customer-check.disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .admin-bulk-actions {
    flex-direction: column;
  }

  .admin-customer-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .admin-bulk-actions .primary-form-button,
  .admin-bulk-actions .secondary-form-button {
    width: 100%;
    min-height: 40px;
  }

  .admin-customer-check {
    min-height: 40px;
  }
}

.admin-list {
  display: grid;
  gap: 10px;
  max-height: 760px;
  overflow: auto;
}

.admin-customer-button {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.admin-customer-button.active,
.admin-customer-button:hover {
  border-color: var(--accent-line);
  background: var(--accent-soft);
}

.admin-customer-button strong,
.admin-customer-button span,
.admin-customer-button small,
.admin-row span,
.admin-row small {
  display: block;
}

.admin-customer-button span,
.admin-customer-button small,
.admin-id,
.admin-row span,
.admin-row small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  word-break: break-word;
}

.admin-subtitle {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.admin-customer-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 22px;
  align-items: start;
  margin-bottom: 18px;
}

.admin-customer-head h2 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.admin-credit-grid,
.admin-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.admin-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.admin-info-grid > div {
  min-width: 92px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.admin-info-grid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.admin-info-grid strong {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.admin-business-type-list {
  display: grid;
  gap: 5px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.admin-business-type-list li {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.admin-credit-tools {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.admin-credit-grid > div,
.admin-mini-grid > div {
  min-width: 92px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.admin-credit-form {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--accent-line);
  border-radius: 14px;
  background: rgba(207, 255, 36, 0.06);
}

.admin-credit-form label,
.admin-credit-form small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-credit-form input {
  width: 100%;
  min-height: 38px;
  margin-top: 6px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  font: inherit;
  font-weight: 900;
}

.admin-credit-form .primary-form-button {
  min-height: 38px;
  font-size: 12px;
}

.admin-credit-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.admin-credit-actions .primary-form-button,
.admin-credit-actions .secondary-form-button {
  min-height: 38px;
  font-size: 12px;
}

.secondary-form-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.secondary-form-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.admin-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
}

.admin-panel h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.admin-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.admin-row:first-of-type {
  border-top: 0;
}

.admin-right {
  min-width: 120px;
  text-align: right;
}

.admin-right b,
.admin-right em {
  display: block;
}

.admin-right em,
.admin-analysis summary em {
  margin-top: 5px;
  color: var(--accent);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.admin-analysis-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  padding: 7px 10px;
  border: 1px solid rgba(207, 255, 36, 0.22);
  border-radius: 999px;
  background: rgba(207, 255, 36, 0.08);
  text-align: center;
  white-space: nowrap;
}

.admin-analysis-type-basico,
.admin-analysis-type-reutilizado,
.admin-analysis-type-sin-cobro,
.admin-analysis-type-basico-gratis {
  color: var(--muted) !important;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.admin-analysis-type-completo,
.admin-analysis-type-pagado,
.admin-analysis-type-completo-pagado,
.admin-analysis-type-completo-interno {
  color: var(--accent) !important;
}

.admin-analysis {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.admin-analysis:first-of-type {
  border-top: 0;
}

.admin-analysis-group {
  margin: 18px 0 2px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.admin-analysis summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}

.admin-analysis summary small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.admin-analysis-body {
  margin-top: 14px;
}

.admin-mini-grid {
  grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
  margin-bottom: 14px;
}

.admin-mini-grid strong {
  font-size: 18px;
  line-height: 1.15;
  word-break: break-word;
}

.admin-analysis-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.admin-analysis-actions span,
.admin-analysis-note,
.admin-analysis-address {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.admin-analysis-address,
.admin-analysis-note {
  margin: 0 0 12px;
}

.admin-analysis-address strong {
  color: var(--text);
}

.admin-report-button {
  width: auto;
  min-height: 40px;
  padding: 0 16px;
  text-decoration: none;
}

.admin-text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.admin-analysis-toggle {
  width: 100%;
  min-height: 38px;
  margin-top: 10px;
  border: 1px solid rgba(207, 255, 36, 0.25);
  border-radius: 999px;
  background: rgba(207, 255, 36, 0.08);
}

.admin-debug {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.admin-debug summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  list-style: none;
}

.admin-debug pre {
  max-height: 420px;
  overflow: auto;
  margin-top: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #050607;
  color: var(--muted-strong);
  white-space: pre-wrap;
  word-break: break-word;
}

@media (max-width: 980px) {
  .admin-summary,
  .admin-layout,
  .admin-split,
  .admin-customer-head {
    grid-template-columns: 1fr;
    display: grid;
  }

  .admin-info-grid,
  .admin-credit-grid,
  .admin-mini-grid {
    grid-template-columns: 1fr;
  }

  .admin-list-panel {
    position: static;
  }
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 5vw, 78px);
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  text-align: left;
}

.hero-copy {
  display: flex;
  max-width: 760px;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
}

h1 {
  max-width: 650px;
  margin: 0;
  color: var(--text);
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

h1 span {
  color: var(--accent);
}

.hero-description {
  max-width: 580px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.55vw, 18px);
  font-weight: 600;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 28px;
}

.hero-demo-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  max-width: 620px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-demo-links a {
  min-height: 36px;
  padding: 9px 13px;
  border: 1px solid rgba(207, 255, 36, 0.28);
  border-radius: 999px;
  background: rgba(207, 255, 36, 0.06);
  color: #eaff8a;
}

.home-trust-panel {
  width: min(100%, 330px);
  flex: 0 0 330px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(11, 13, 15, 0.76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.trust-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.trust-panel-header span {
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-panel-header small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-panel-header strong {
  color: var(--accent);
  font-size: 39px;
  font-weight: 900;
  line-height: 0.9;
}

.home-trust-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.trust-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.trust-metrics div {
  min-height: 62px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.trust-metrics strong,
.trust-metrics span {
  display: block;
}

.trust-metrics strong {
  color: var(--text);
  font-size: 19px;
  font-weight: 900;
}

.trust-metrics strong span {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.trust-metrics span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
}

.trust-insight-copy {
  margin-top: 12px;
  color: var(--muted-strong);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
}

.trust-expandable {
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.trust-expandable summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 39px;
  padding: 0 12px 0 14px;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.trust-expandable summary::-webkit-details-marker {
  display: none;
}

.trust-expandable summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  transition: transform 160ms ease, opacity 160ms ease;
  opacity: 0.9;
}

.trust-expandable[open] summary::after {
  transform: rotate(225deg);
}

.trust-scroll-box {
  max-height: 104px;
  margin: 0 10px 10px;
  padding: 9px 10px;
  border-radius: 10px;
  background: #f7f7f2;
  color: #111400;
  overflow-y: auto;
  scrollbar-color: #7b7f72 #eceee5;
  scrollbar-width: thin;
}

.trust-list-group + .trust-list-group {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #d7dacd;
}

.trust-list-group strong {
  display: block;
  margin-bottom: 7px;
  color: #111400;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-list-group span {
  display: block;
  color: #111400;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.trust-list-group span + span {
  margin-top: 3px;
}

.content-demo-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: 680px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.content-demo-links a {
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(207, 255, 36, 0.28);
  border-radius: 999px;
  background: rgba(207, 255, 36, 0.06);
  color: #eaff8a;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.primary-button {
  gap: 10px;
  background: var(--accent);
  color: #111400;
  box-shadow: 0 0 40px rgba(207, 255, 36, 0.24);
}

.secondary-button {
  gap: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.secondary-button:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.play-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--accent);
  font-size: 9px;
}

.signal-panel {
  display: flex;
  justify-content: center;
}

.radar-card {
  width: min(100%, 360px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(9, 10, 10, 0.82);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.radar-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.radar-top strong {
  color: var(--accent);
}

.radar-visual {
  position: relative;
  height: min(30vh, 245px);
  min-height: 190px;
  margin: 14px 0;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at center, rgba(207, 255, 36, 0.12), transparent 20%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #070909;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.ring,
.pulse-dot,
.pin {
  position: absolute;
  border-radius: 999px;
}

.ring {
  inset: 50%;
  border: 1px solid var(--accent-line);
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 72px;
  height: 72px;
}

.ring-two {
  width: 148px;
  height: 148px;
}

.ring-three {
  width: 222px;
  height: 222px;
}

.pulse-dot {
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: var(--accent);
  box-shadow: 0 0 34px var(--accent);
  transform: translate(-50%, -50%);
}

.pin {
  width: 13px;
  height: 13px;
  border: 2px solid #050607;
  background: #ffffff;
}

.pin-a {
  top: 31%;
  left: 33%;
}

.pin-b {
  top: 60%;
  left: 68%;
  background: var(--accent);
}

.pin-c {
  top: 73%;
  left: 42%;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metrics div {
  min-height: 60px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.metrics span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.metrics strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
}

.site-footer {
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 0 clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: #74776f;
  font-size: 11px;
  font-weight: 800;
}

.footer-links,
.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 28px);
  min-width: 0;
}

.footer-links a,
.footer-links span,
.social-links a {
  white-space: nowrap;
}

.social-links {
  color: var(--muted-strong);
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 12px;
  line-height: 1;
}

.social-links svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:nth-child(2) svg,
.social-links a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.social-links a:hover {
  border-color: var(--accent-line);
  color: var(--accent);
}

.info-panel {
  position: fixed;
  z-index: 10;
  top: 50%;
  left: 50%;
  display: none;
  width: min(620px, calc(100vw - 40px));
  max-height: calc(100dvh - 130px);
  overflow: auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(7, 8, 9, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  transform: translate(-50%, -50%);
}

.info-panel:target {
  display: block;
}

.panel-close {
  position: absolute;
  top: 14px;
  right: 16px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 20px;
}

.panel-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.info-panel h2 {
  max-width: 520px;
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.info-panel p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.panel-grid {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.panel-grid a {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 900;
}

.panel-grid a:hover {
  border-color: var(--accent-line);
  color: var(--accent);
}

.compact-panel {
  width: min(420px, calc(100vw - 40px));
}

.content-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0;
}

.content-shell > .brand {
  margin-bottom: 44px;
}

.content-shell h1,
.auth-card h1 {
  max-width: 760px;
  font-size: clamp(38px, 6vw, 70px);
}

.help-shell h1 span {
  display: block;
  margin-top: 10px;
  color: var(--muted-strong);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.04;
}

.page-lead {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.6;
}

.page-cta {
  margin-top: 26px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.plan-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.plan-card.featured {
  border-color: var(--accent-line);
  box-shadow: 0 0 42px rgba(207, 255, 36, 0.12);
}

.plan-card.tracker-plan {
  border-color: rgba(96, 239, 208, 0.38);
  background: linear-gradient(180deg, rgba(96, 239, 208, 0.08), rgba(255, 255, 255, 0.045));
  box-shadow: 0 0 42px rgba(96, 239, 208, 0.08);
}

.plan-card.tracker-plan p {
  color: #60efd0;
}

.plan-card.tracker-plan > span {
  font-size: 10px;
  line-height: 1.15;
  margin-top: -8px;
  margin-bottom: -2px;
  max-width: 190px;
}

.plan-card.tracker-plan .plan-features li::before {
  background: #60efd0;
}

.plan-card p {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card h2 {
  margin: 0;
  color: var(--text);
  font-size: 42px;
}

.plan-card span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.plan-features {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

.plan-features li {
  position: relative;
  padding-left: 15px;
}

.plan-features li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.plan-card button,
.primary-form-button,
.google-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.plan-card button,
.primary-form-button {
  background: var(--accent);
  color: #111400;
}

.google-button {
  gap: 10px;
  margin-top: 0;
  border: 1px solid var(--line);
  background: #fff;
  color: #111;
}

.google-mark {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 18px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.auth-divider::before,
.auth-divider::after {
  height: 1px;
  background: var(--line);
  content: "";
}

.auth-shell {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 34px 20px;
}

.auth-brand {
  position: fixed;
  top: 26px;
  left: 32px;
}

.page-body[data-page="analizar"] .auth-shell {
  place-items: start center;
}

.page-body[data-page="analizar"] .auth-brand {
  position: static;
  justify-self: start;
  margin: 0 0 24px;
}

.auth-card {
  width: min(470px, 100%);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(7, 8, 9, 0.92);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.auth-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.auth-back-link[hidden] {
  display: none;
}

.wide-card {
  width: min(720px, 100%);
}

.auth-card h1 {
  font-size: clamp(30px, 5vw, 46px);
}

.auth-card form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.auth-card label {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 900;
}

.auth-card input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.auth-card textarea {
  min-height: 110px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.divider {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.form-link {
  display: block;
  margin-top: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.inline-link {
  width: fit-content;
  margin-top: 0;
  text-align: left;
}

.helper-text {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.5;
  text-align: center;
}

.success-card {
  text-align: center;
}

.analysis-panel {
  width: min(1120px, 100%);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(7, 8, 9, 0.92);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.analysis-copy {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.analysis-copy h1 {
  max-width: 840px;
  font-size: clamp(32px, 5vw, 56px);
}

.analysis-copy .page-lead {
  margin: 0;
}

.analysis-status {
  text-align: left;
}

.business-request-notice {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 16px;
  background: #f8f7ed;
  color: #151712;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.business-request-notice strong {
  color: #11140c;
}

.business-request-notice p,
.business-request-notice small {
  margin: 0;
  color: #303428;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.business-request-notice small {
  color: #5b641e;
  font-weight: 900;
}

.business-request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.business-request-actions .primary-button,
.business-request-actions button {
  min-height: 40px;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 950;
}

.business-request-actions .primary-button {
  margin: 0;
  color: #101209;
}

.business-request-actions button {
  border: 1px solid rgba(15, 18, 9, 0.18);
  background: rgba(15, 18, 9, 0.06);
  color: #171a10;
}

.analysis-form {
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(420px, 1.18fr);
  gap: 22px;
}

.analysis-fields {
  display: grid;
  align-content: start;
  gap: 14px;
}

.analysis-fields label {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 900;
}

.analysis-fields label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.analysis-fields label [data-business-type-label] {
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 900;
}

.analysis-mode-selector {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.analysis-mode-selector legend {
  margin-bottom: 2px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 950;
}

.analysis-mode-selector label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.analysis-mode-selector label:has(input:checked) {
  border-color: var(--accent-line);
  background: rgba(207, 255, 36, 0.1);
}

.analysis-mode-selector input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.analysis-mode-selector strong,
.property-details > div > span,
.property-map-extra > div > span {
  display: block;
  color: var(--text);
  font-size: 13px;
  font-weight: 950;
}

.analysis-mode-selector small,
.property-details p,
.property-map-extra p {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.property-details {
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(207, 255, 36, 0.045));
}

.property-details[hidden] {
  display: none;
}

.property-map-extra[hidden] {
  display: none;
}

[data-property-zone-field][hidden] {
  display: none !important;
}

[data-business-type-help][hidden] {
  display: none !important;
}

[data-business-type-field][hidden],
.analysis-form.property-mode [data-business-type-field] {
  display: none !important;
}

[data-property-type-field][hidden] {
  display: none !important;
}

.analysis-form.property-mode [data-property-type-field] {
  display: block;
}

.analysis-form input[readonly] {
  border-color: rgba(207, 255, 36, .28);
  background: rgba(207, 255, 36, .08);
  color: #f4f7f2;
  cursor: default;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.property-vat-option {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  min-height: 0;
  margin-top: -4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.2;
}

.property-vat-option input {
  width: 12px;
  min-height: 12px;
  height: 12px;
  margin: 0;
  accent-color: var(--accent);
}

.property-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.property-checks label {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.15;
}

.property-checks input {
  flex: 0 0 auto;
  width: 14px;
  min-height: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--accent);
}

.property-quick-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.property-quick-fields label,
.property-service-checks {
  display: grid;
  gap: 7px;
  color: var(--muted-strong);
  font-size: 11px;
  font-weight: 850;
}

.property-quick-fields input,
.property-quick-fields select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 0 12px;
  font: inherit;
  font-size: 12px;
}

.property-quick-fields select option {
  background: #101612;
  color: var(--text);
}

.property-checks-small {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.property-extra-notes {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 900;
}

.property-extra-notes textarea {
  min-height: 180px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
  resize: vertical;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.property-extra-notes textarea::placeholder {
  color: rgba(213, 216, 207, 0.62);
  font-weight: 700;
}

.property-extra-notes textarea:focus {
  outline: none;
  border-color: rgba(207, 255, 36, 0.42);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 3px rgba(207, 255, 36, 0.09);
}

.property-type-select select {
  width: 100%;
  margin-top: 8px;
  min-height: 52px;
  border: 1px solid rgba(207, 255, 36, 0.22);
  border-radius: 14px;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%) right 18px center / 7px 7px no-repeat,
    linear-gradient(135deg, var(--accent) 50%, transparent 50%) right 13px center / 7px 7px no-repeat,
    rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 0 42px 0 14px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.property-type-select select option {
  background: #101612;
  color: var(--text);
}

.property-map-extra {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(207, 255, 36, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(207, 255, 36, 0.075), rgba(255, 255, 255, 0.035));
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.street-field {
  grid-column: 1 / -1;
}

.business-picker {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 8px;
}

.business-picker .business-picker-toggle {
  position: relative;
  min-height: 52px;
  border: 1px solid rgba(207, 255, 36, 0.25);
  border-radius: 13px;
  background: rgba(207, 255, 36, 0.08);
  color: #cffb24;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.business-picker .business-picker-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #cffb24;
  border-bottom: 2px solid #cffb24;
  transform: translate(-50%, -65%) rotate(45deg);
}

.business-picker .business-picker-toggle:hover {
  border-color: rgba(207, 255, 36, 0.55);
  background: rgba(207, 255, 36, 0.14);
}

.business-picker-list {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: grid;
  gap: 8px;
  max-height: min(420px, 64vh);
  overflow: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(7, 8, 9, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.business-picker-list[hidden] {
  display: none;
}

.business-picker-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 2px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.business-picker-head span {
  color: var(--text);
  font-size: 13px;
  font-weight: 950;
}

.business-picker-head small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.business-picker-table {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.business-picker-table-header,
.business-picker-row {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(96px, 0.55fr);
  align-items: center;
  gap: 10px;
  width: 100%;
}

.business-picker-table-header {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.business-picker-row {
  min-height: 38px;
  padding: 8px 10px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
}

.business-picker-row {
  cursor: pointer;
}

.business-picker-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

.business-picker-row strong {
  overflow: hidden;
  font-size: 12px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.business-picker-row span {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.business-picker-list small,
.business-picker-empty {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.business-picker-empty {
  padding: 10px 2px;
}

.business-picker-new {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.business-picker-new strong {
  color: var(--text);
  font-size: 12px;
  font-weight: 950;
}

.business-picker-new span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.35;
}

.analysis-fields input,
.analysis-fields select,
.analysis-fields textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.analysis-fields textarea {
  min-height: 104px;
  padding: 13px 14px;
  resize: vertical;
}

.analysis-fields select {
  color-scheme: dark;
}

.analysis-fields input.input-needs-review {
  border-color: rgba(255, 204, 77, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 204, 77, 0.14);
}

.analysis-fields input[readonly] {
  color: var(--muted-strong);
  cursor: default;
}

.map-action {
  width: 100%;
  min-height: 48px;
  margin-top: 0;
  border-radius: 999px;
}

.map-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px;
  gap: 8px;
}

.map-link-row .map-action {
  min-height: 48px;
  padding: 0 12px;
}

.confirm-location-button {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  background: rgba(207, 255, 36, 0.14);
  color: var(--accent);
  font: inherit;
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 0 28px rgba(207, 255, 36, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.confirm-location-button:hover {
  background: rgba(207, 255, 36, 0.2);
  box-shadow: 0 0 34px rgba(207, 255, 36, 0.18);
  transform: translateY(-1px);
}

.confirm-location-button.is-confirmed {
  border-color: var(--accent-line);
  background: var(--accent);
  color: #111400;
}

.confirm-location-button.needs-confirmation {
  animation: confirmPulse 520ms ease;
}

.confirmation-status {
  margin: -4px 0 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.primary-form-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

@keyframes confirmPulse {
  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-4px);
  }

  75% {
    transform: translateX(4px);
  }
}

.map-panel {
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.map-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.map-toolbar strong {
  color: var(--text);
  font-size: 13px;
}

.location-map {
  width: 100%;
  height: 480px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #0b0d0f;
  background-size: 34px 34px;
}

.map-fallback {
  display: grid;
  height: 100%;
  min-height: 426px;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.analysis-result {
  display: grid;
  gap: 14px;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid var(--accent-line);
  border-radius: 18px;
  background: rgba(207, 255, 36, 0.08);
}

.analysis-result[hidden],
.helper-text:empty {
  display: none;
}

.result-verdict {
  display: grid;
  gap: 5px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.result-verdict span {
  color: var(--accent);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.result-verdict strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
}

.result-verdict p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.result-grid div {
  min-height: 74px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
}

.result-grid span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.result-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
}

.result-section h2 {
  margin: 0 0 8px;
  font-size: 15px;
}

.result-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.result-section li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 12px;
}

.result-section li span,
.result-section p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.history-summary {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.history-summary div {
  grid-column: span 1;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.history-summary .history-action {
  grid-column: span 2;
  display: grid;
  align-content: start;
  gap: 8px;
  border-color: var(--accent-line);
  background: rgba(207, 255, 36, 0.08);
}

.history-summary span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.history-summary strong {
  display: block;
  margin-top: 10px;
  color: var(--accent);
  font-size: 30px;
  font-weight: 900;
}

.history-action strong {
  margin-top: 0;
  color: var(--text);
  font-size: 22px;
}

.history-action p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.history-action .primary-button {
  width: fit-content;
  min-height: 40px;
  margin-top: 2px;
  padding: 0 16px;
  font-size: 12px;
}

.history-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.history-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.history-card p {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.history-card h2 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
}

.history-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.business-request-card {
  border-color: rgba(255, 255, 255, 0.48);
  background: #f8f7ed;
}

.business-request-card p,
.business-request-card h2,
.business-request-card span {
  color: #151712;
}

.business-request-card .history-metrics span {
  color: #303428;
}

.business-request-card .history-metrics strong {
  color: #5b641e;
}

.business-request-card.is-ready {
  border-color: rgba(207, 255, 36, 0.58);
}

.history-metrics {
  display: grid;
  gap: 6px;
  min-width: 210px;
  text-align: right;
}

.history-metrics strong {
  color: var(--accent);
}

.history-delete {
  justify-self: end;
  border: 1px solid rgba(255, 95, 95, 0.36);
  border-radius: 999px;
  padding: 8px 12px;
  color: #ffb4b4;
  background: rgba(255, 95, 95, 0.08);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.history-delete:hover {
  border-color: rgba(255, 95, 95, 0.72);
  background: rgba(255, 95, 95, 0.14);
}

.history-delete:disabled {
  cursor: wait;
  opacity: 0.65;
}

.info-list {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-top: 28px;
}

.info-list p {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-weight: 750;
}

.report-body {
  overflow: auto;
}

.report-header {
  position: static;
}

.report-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.report-print-button,
.report-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.report-print-button {
  background: var(--accent);
  color: #111400;
}

.report-whatsapp-button {
  border-color: rgba(37, 211, 102, 0.7);
  background: #25d366;
  color: #06140b;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.22);
  text-shadow: none;
}

.report-print-button[hidden],
.report-whatsapp-button[hidden] {
  display: none;
}

@media (max-width: 760px) {
  .report-body .page-close {
    top: 118px;
    right: 14px;
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .report-header-actions {
    width: 100%;
  }

  .report-print-button,
  .report-whatsapp-button {
    flex: 1;
    min-width: 0;
    padding: 0 10px;
    font-size: 11px;
  }
}

.report-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 70px;
}

.report-loading-state[hidden] {
  display: none !important;
}

.report-loading-state {
  display: grid;
  gap: 16px;
  align-content: center;
  min-height: 420px;
  padding: 42px;
  border: 1px solid var(--accent-line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(196, 255, 0, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.report-loading-state span {
  width: max-content;
  padding: 8px 12px;
  border: 1px solid rgba(196, 255, 0, 0.28);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
  background: rgba(196, 255, 0, 0.08);
}

.report-loading-state h1 {
  max-width: 720px;
  margin: 0;
  color: var(--text);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.report-loading-state p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.55;
}

.report-loading-bar {
  position: relative;
  width: min(420px, 100%);
  height: 12px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.report-loading-bar i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 45%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #ffffff);
  animation: reportLoadingSweep 1.25s ease-in-out infinite alternate;
}

@keyframes reportLoadingSweep {
  from { transform: translateX(0); }
  to { transform: translateX(122%); }
}

.report-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 22px;
  align-items: stretch;
}

.report-verdict,
.report-section,
.report-conclusion,
.report-guide article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.report-verdict {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  border-color: var(--accent-line);
}

.report-verdict span {
  color: var(--accent);
  font-size: 54px;
  font-weight: 950;
  line-height: 1;
}

.report-verdict strong {
  font-size: 22px;
  font-weight: 950;
}

.report-verdict p,
.report-guide p,
.folder-content p,
.report-metric-grid p,
.report-note p,
.factor-grid p,
.report-conclusion p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.report-body .premium-report-section[hidden] {
  display: none !important;
}

.locked-report-section {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.locked-report-section > :not(.premium-lock) {
  filter: blur(5px);
  opacity: 0.28;
  pointer-events: none;
  user-select: none;
}

.premium-lock {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  background: rgba(7, 9, 8, 0.78);
  border: 1px solid rgba(196, 255, 0, 0.24);
  border-radius: inherit;
}

.premium-lock strong {
  color: var(--accent);
  font-size: 18px;
}

.premium-lock span {
  color: var(--text);
  font-weight: 700;
}

.premium-lock .primary-button {
  margin-top: 6px;
}

.locked-metric {
  opacity: 0.72;
}

.locked-metric strong {
  color: var(--accent);
  font-size: 18px;
}

.report-location-box {
  display: inline-grid;
  gap: 7px;
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.report-location-box span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.report-location-box strong {
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
}

.report-guide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.report-guide article,
.report-section,
.report-conclusion {
  padding: 20px;
}

.report-guide span,
.section-heading p,
.report-metric-grid span {
  display: block;
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.report-guide h2,
.section-heading h2,
.report-conclusion h2 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  line-height: 1.12;
}

.report-guide h2 {
  margin-bottom: 8px;
  font-size: 18px;
}

.report-section {
  margin-top: 18px;
}

.report-note {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--accent-line);
  border-radius: 16px;
  background: rgba(207, 255, 36, 0.075);
}

.report-note strong {
  color: var(--text);
  font-size: 16px;
}

.section-heading {
  margin-bottom: 16px;
}

.sabueso-folder details {
  border: 1px solid var(--accent-line);
  border-radius: 16px;
  background: rgba(207, 255, 36, 0.08);
}

.sabueso-folder summary {
  padding: 16px;
  color: var(--text);
  font-weight: 950;
  cursor: pointer;
}

.folder-content {
  display: grid;
  gap: 12px;
  padding: 0 16px 16px;
}

.folder-content strong {
  color: var(--text);
}

.report-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.report-metric-grid article {
  min-height: 130px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
}

.report-metric-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 30px;
  font-weight: 950;
}

.two-column-report {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.business-columns {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(340px, 1.05fr);
  gap: 14px;
}

.wide-business-columns {
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
}

.business-summary-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 14px;
}

.business-summary-row span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  font-size: 11px;
  font-weight: 850;
}

.business-columns > article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.16);
}

.business-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.business-panel-heading p {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.business-panel-heading h3 {
  margin: 0;
  font-size: 17px;
}

.business-panel-heading > span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.compact-business-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: business;
}

.compact-business-list li {
  counter-increment: business;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.compact-business-list li::before {
  content: counter(business);
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(207, 255, 36, 0.12);
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
}

.compact-business-list a,
.commerce-groups a {
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.compact-business-list a:hover,
.commerce-groups a:hover {
  color: var(--accent);
}

.compact-business-list span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.compact-business-list li.empty-competitor {
  display: block;
  min-height: 0;
  padding: 10px 12px;
}

.compact-business-list li.empty-competitor::before {
  content: none;
}

.compact-business-list li.empty-competitor span {
  display: block;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.compact-business-list li.expanded-direct-reference {
  border-color: rgba(190, 255, 36, .18);
  background: rgba(190, 255, 36, .06);
}

.compact-business-list li.expanded-direct-reference strong {
  color: var(--accent);
}

.compact-business-list li.expanded-direct-reference small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.35;
}

.compact-business-list .competitor-content {
  display: flex;
  align-items: center;
  gap: 6px 8px;
  min-width: 0;
  flex-wrap: wrap;
  white-space: normal;
}

.compact-business-list .competitor-name {
  min-width: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  white-space: normal;
  overflow-wrap: anywhere;
}

.compact-business-list .competitor-name span,
.compact-business-list .competitor-name a {
  white-space: normal;
  overflow-wrap: anywhere;
}

.direct-competition-list {
  grid-template-columns: 1fr;
  max-height: none;
}
.direct-competition-list .competitor-extra { display: none; }
.direct-competition-list .competitor-extra.is-visible { display: list-item; }
.competitor-status-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.competitor-status-badge.activity-active_confirmed,
.competitor-status-badge.activity-active_probable {
  color: var(--accent);
  border-color: rgba(207, 255, 36, 0.25);
  background: rgba(207, 255, 36, 0.08);
}
.competitor-status-badge.activity-unconfirmed {
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.competitor-status-badge.activity-closed,
.competitor-status-badge.activity-temporarily_closed,
.competitor-status-badge.activity-future_opening {
  color: #ffb4b4;
  border-color: rgba(255, 180, 180, 0.25);
  background: rgba(255, 180, 180, 0.08);
}
.inactive-competitor {
  opacity: 0.6;
  filter: grayscale(0.28);
}
.inactive-competitor .competitor-status-badge {
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.competitor-status-note {
  display: block;
  flex-basis: 100%;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: anywhere;
}
.competitor-toggle { margin-top: 12px; width: 100%; }

.commerce-groups {
  display: grid;
  gap: 8px;
}

.commerce-category-list {
  display: grid;
  gap: 8px;
}

.commerce-category-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.commerce-category-list summary {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  cursor: pointer;
}

.commerce-category-list summary::before {
  content: "›";
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease;
}

.commerce-category-list details[open] summary::before {
  background: rgba(207, 255, 36, 0.12);
  transform: rotate(90deg);
}

.commerce-category-list summary strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--text);
  font-size: 13px;
}

.commerce-category-list summary small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-align: right;
}

.count-pill {
  display: inline-grid;
  min-width: 26px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(207, 255, 36, 0.14);
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
}

.commerce-category-list details > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 11px 11px;
}

.commerce-category-list details > p {
  margin: -2px 11px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
}

.commerce-category-list .commerce-place,
.commerce-category-list .commerce-more-button {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
}

.commerce-category-list .commerce-place a,
.commerce-category-list .commerce-place span {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.commerce-category-list a:hover {
  color: var(--accent);
}

.commerce-category-list .commerce-place {
  color: var(--muted);
}

.commerce-category-list .commerce-extra {
  display: none;
}

.commerce-category-list .commerce-expanded .commerce-extra {
  display: inline-flex;
}

.commerce-category-list .commerce-more-button {
  cursor: pointer;
  color: var(--accent);
}

.commerce-groups details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.commerce-groups summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 11px;
  cursor: pointer;
}

.commerce-groups summary strong {
  font-size: 13px;
}

.commerce-groups summary span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.commerce-groups details > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 11px 11px;
}

.commerce-groups a {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
}

.report-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.report-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.report-map-placeholder {
  display: grid;
  position: relative;
  min-height: 270px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at center, rgba(207, 255, 36, 0.13), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    #080a0b;
  background-size: auto, 34px 34px, 34px 34px, auto;
  text-align: center;
}

.report-map-example {
  min-height: 360px;
}

.report-map-placeholder.google-report-map {
  display: block;
  padding: 0;
  background: #080a0b;
  text-align: left;
}

.google-report-map-canvas {
  display: block;
  width: 100%;
  min-height: 360px;
}

.google-map-legend {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 28px);
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(5, 6, 7, 0.82);
  backdrop-filter: blur(8px);
}

.report-center-marker-label {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border: 1px solid rgba(8, 10, 11, 0.22);
  border-radius: 999px;
  background: rgba(207, 255, 36, 0.96);
  color: #080a0b !important;
  font-size: 11px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  text-shadow: none;
}

.report-map-placeholder div {
  display: grid;
  gap: 8px;
}

.report-map-placeholder strong {
  color: var(--accent);
  font-size: 22px;
}

.report-map-placeholder span {
  color: var(--muted);
  font-weight: 800;
}

.report-map-placeholder .map-ring {
  position: absolute;
  inset: 50%;
  display: block;
  border: 1px solid rgba(207, 255, 36, 0.35);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.report-map-placeholder .ring-one {
  width: 130px;
  height: 130px;
}

.report-map-placeholder .ring-two {
  width: 230px;
  height: 230px;
}

.report-map-placeholder .map-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(5, 6, 7, 0.86);
  color: #f4f7f2;
  font-size: 11px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.report-map-placeholder .map-pin.center {
  left: 50%;
  top: 50%;
  background: var(--accent);
  color: #111400;
}

.report-map-placeholder .map-pin.direct {
  border: 1px solid rgba(255, 108, 108, 0.55);
}

.report-map-placeholder .map-pin.commerce {
  border: 1px solid rgba(107, 199, 255, 0.55);
}

.report-map-placeholder.google-report-map div {
  display: block;
  gap: 0;
}

.report-map-placeholder.google-report-map .google-map-legend {
  display: flex;
  gap: 8px;
}

.map-radius {
  position: absolute;
  display: grid;
  place-items: start center;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  pointer-events: none;
}

.radius-5 {
  width: 310px;
  height: 310px;
  padding-top: 12px;
}

.radius-1 {
  width: 142px;
  height: 142px;
  padding-top: 8px;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--muted-strong);
}

.map-center-pin {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 82px;
  min-height: 32px;
  place-items: center;
  padding: 0 10px;
  border: 2px solid #111400;
  border-radius: 999px;
  background: var(--accent);
  color: #111400 !important;
  font-size: 11px;
  font-weight: 950;
  box-shadow: 0 0 30px rgba(207, 255, 36, 0.28);
}

.map-point {
  position: absolute;
  z-index: 2;
  max-width: 118px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 6, 7, 0.86);
  color: var(--text);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.map-point::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.map-point.competitor::before,
.legend-dot.competitor {
  background: #ff6b6b;
}

.map-point.commerce::before,
.legend-dot.commerce {
  background: #6bc7ff;
}

.legend-dot[style*="--legend-color"] {
  background: var(--legend-color);
}

.map-point.anchor::before {
  background: #ffffff;
}

.point-a {
  top: 40%;
  left: 26%;
}

.point-b {
  top: 28%;
  right: 22%;
}

.point-c {
  right: 27%;
  bottom: 28%;
}

.point-d {
  left: 22%;
  bottom: 30%;
}

.point-e {
  right: 14%;
  top: 52%;
}

.map-legend {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 6, 7, 0.78);
  color: var(--muted-strong);
  font-size: 10px;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.future-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.future-grid span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 850;
}

.factor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.factor-grid details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.factor-grid summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  cursor: pointer;
}

.factor-grid summary strong {
  color: var(--text);
  font-size: 13px;
}

.factor-grid summary span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.factor-grid p {
  padding: 0 12px 12px;
  font-size: 12px;
}

.report-conclusion {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  border-color: var(--accent-line);
}

.report-conclusion div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 980px) {
  .app-shell { grid-template-rows: 112px 1fr 56px; }
  .site-header { min-height: 112px; flex-wrap: wrap; align-content: center; padding-top: 10px; padding-bottom: 10px; }
  .main-nav { display: flex; order: 3; flex: 1 0 100%; justify-content: flex-start; gap: 18px; max-width: 100%; overflow-x: auto; padding-top: 10px; white-space: nowrap; scrollbar-width: none; }
  .main-nav::-webkit-scrollbar { display: none; }
  .login-link, .session-menu { min-width: auto; }
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-shell {
    grid-template-rows: 70px 1fr 56px;
    min-height: 540px;
  }

  .hero {
    gap: 18px;
    text-align: center;
  }

  .signal-panel {
    display: none;
  }

  .home-trust-panel {
    display: none;
  }

  .hero-copy {
    max-width: 720px;
    align-items: center;
  }

  .report-hero,
  .report-guide,
  .report-metric-grid,
  .business-columns,
  .factor-grid,
  .two-column-report {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .app-shell {
    min-height: 560px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand {
    min-width: auto;
  }

  .brand-text {
    font-size: 15px;
  }

  .login-link {
    min-width: auto;
    font-size: 12px;
  }

  .session-menu {
    min-width: auto;
    gap: 7px;
    font-size: 11px;
  }

  .session-menu button {
    padding: 0 8px;
    font-size: 10px;
  }

  .hero {
    padding: 0 20px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero-description {
    margin-top: 16px;
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 22px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .site-footer {
    justify-content: center;
    gap: 7px;
    padding: 0 16px;
    font-size: 9px;
  }

  .footer-links,
  .social-links {
    gap: 12px;
  }

  .footer-links a:nth-child(2),
  .footer-links span {
    display: none;
  }

  .info-panel {
    padding: 24px;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }

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

  .address-grid {
    grid-template-columns: 1fr;
  }

  .map-link-row {
    grid-template-columns: 1fr;
  }

  .map-panel {
    min-height: 360px;
  }

  .location-map,
  .map-fallback {
    height: 360px;
    min-height: 306px;
  }

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

  .history-summary {
    grid-template-columns: 1fr 1fr;
  }

  .history-summary .history-action {
    grid-column: 1 / -1;
  }

  .history-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .history-metrics {
    min-width: 0;
    text-align: left;
  }

  .auth-brand {
    position: static;
    margin-bottom: 22px;
  }

  .auth-shell {
    align-content: start;
  }

  .report-shell {
    width: min(100% - 24px, 1120px);
    padding-top: 26px;
  }

  .report-verdict span {
    font-size: 44px;
  }

  .report-list {
    gap: 4px;
  }

  .report-list li {
    align-items: flex-start;
    flex-direction: column;
  }

  .compact-business-list li {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .compact-business-list li > span {
    grid-column: 2;
  }

  .compact-business-list .competitor-status-badge,
  .compact-business-list .competitor-name {
    grid-column: auto;
  }

  .commerce-groups summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .commerce-category-list summary {
    grid-template-columns: 20px 1fr;
  }

  .commerce-category-list summary small {
    grid-column: 2;
    text-align: left;
  }
}

/* Mobile navigation, footer links and password visibility controls. */
.mobile-menu-toggle {
  display: none;
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  width: 100%;
  padding-right: 48px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 18px;
}

.password-toggle.is-visible {
  color: var(--accent);
}

@media (max-width: 980px) {
  .app-shell {
    grid-template-rows: 76px 1fr auto;
  }

  .site-header {
    position: relative;
    min-height: 76px;
    flex-wrap: nowrap;
    padding-top: 0;
    padding-bottom: 0;
  }

  .mobile-menu-toggle {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    gap: 4px;
    margin-left: auto;
    padding: 8px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .site-header .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 12px;
    left: 12px;
    z-index: 20;
    display: none;
    flex-direction: column;
    gap: 2px;
    max-width: none;
    padding: 10px;
    overflow: visible;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(5, 6, 7, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  }

  .site-header.mobile-menu-open .main-nav {
    display: flex;
  }

  .site-header .main-nav a {
    display: block;
    padding: 12px;
    border-radius: 8px;
  }

  .site-header .main-nav a:hover,
  .site-header .main-nav a.active {
    background: var(--accent-soft);
  }

  .site-header.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .site-footer {
    min-height: 86px;
    padding: 12px 16px;
    line-height: 1.4;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
  }

  .footer-links a:nth-child(2),
  .footer-links span {
    display: inline;
  }

  .footer-links a,
  .footer-links span {
    white-space: normal;
  }
}

.report-body {
  background: #050607;
  color: #f4f7f2;
}
.report-body::before,
.report-body::after { display: block; }
.report-body .report-header { border-bottom: 1px solid rgba(207, 255, 36, 0.18); background: rgba(5, 6, 7, 0.92); }
.report-body .report-shell { width: min(1120px, calc(100% - 32px)); padding: 34px 0 56px; }
.report-body .report-hero,
.report-body .report-note,
.report-body .report-section,
.report-body .report-conclusion { border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 14px; background: rgba(13, 15, 16, 0.96); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24); }
.report-body .report-hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); gap: 28px; padding: 34px; }
.report-body .report-location-box { border-color: rgba(207, 255, 36, 0.18); background: rgba(207, 255, 36, 0.06); }
.report-body .report-verdict { border: 1px solid rgba(207, 255, 36, 0.28); border-radius: 12px; background: rgba(207, 255, 36, 0.08); color: #f4f7f2; }
.report-body .report-verdict span { color: var(--accent); }
.report-body .report-highlight-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 18px 0; }
.report-body .report-highlight { min-height: 142px; padding: 22px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; background: rgba(13, 15, 16, 0.96); }
.report-body .report-highlight.positive { border-color: rgba(207, 255, 36, 0.28); background: rgba(207, 255, 36, 0.08); }
.report-body .report-highlight.caution { border-color: rgba(255, 190, 70, 0.28); background: rgba(255, 190, 70, 0.07); }
.report-body .report-highlight.recommendation { border-color: rgba(107, 199, 255, 0.28); background: rgba(107, 199, 255, 0.07); }
.report-body .report-highlight span { display: block; margin-bottom: 10px; color: var(--accent); font-size: 13px; font-weight: 800; }
.report-body .report-highlight.caution span { color: #ffca63; }
.report-body .report-highlight.recommendation span { color: #8bd5ff; }
.report-body .report-highlight strong { display: block; margin-bottom: 8px; color: #f4f7f2; font-size: 20px; }
.report-body .report-highlight p { margin: 0; color: #c3cbc4; line-height: 1.45; }
.report-body .report-note { padding: 18px 22px; background: rgba(207, 255, 36, 0.06); box-shadow: none; color: #dce5dc; }
.report-body .report-section,
.report-body .report-conclusion { margin-top: 18px; padding: 24px; }
.report-body .report-metric-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.report-body .report-metric-grid article { min-height: 142px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 10px; background: rgba(5, 6, 7, 0.58); }
.report-body .report-map-placeholder { border: 1px solid rgba(207, 255, 36, 0.2); border-radius: 10px; background: rgba(5, 6, 7, 0.7); }
.report-body .business-columns article,
.report-body .factor-grid details,
.report-body .compact-business-list li,
.report-body .commerce-category-list details { border-color: rgba(255, 255, 255, 0.1); background: rgba(5, 6, 7, 0.58); }
.report-body .section-heading p,
.report-body .report-conclusion h2 { color: var(--accent); }
.report-body .report-metric-grid article { min-width: 0; }
.report-body .report-metric-grid strong { overflow-wrap: anywhere; word-break: break-word; line-height: 1.1; }
.report-body .report-metric-grid .socioeconomic-metric strong { font-size: 20px; }
.report-body .report-metric-grid .gender-metric strong,
.report-body .report-metric-grid .age-metric strong,
.report-body .report-metric-grid .vehicle-metric strong,
.report-body .report-metric-grid .pedestrian-metric strong { white-space: normal; overflow-wrap: anywhere; line-height: 1.2; font-size: 1.15rem; }
.report-body .report-metric-grid .movement-metric strong { margin-bottom: 6px; font-size: 1rem; }
.report-body .report-metric-grid .movement-note { font-size: 10px; line-height: 1.35; font-weight: 700; }
.report-body .report-metric-grid .main-roads-metric .road-card-title { margin-bottom: 8px; font-size: .95rem; line-height: 1.1; }
.report-body .report-metric-grid .road-links { display: grid; gap: 6px; margin: 0 0 10px; padding: 0; list-style: none; }
.report-body .report-metric-grid .road-links li { margin: 0; padding: 0; }
.report-body .report-metric-grid .road-links a,
.report-body .report-metric-grid .road-links li > span { display: grid; grid-template-columns: 15px minmax(0, 1fr) auto; gap: 2px 7px; align-items: baseline; color: #f4f7f2; font-size: 10px; line-height: 1.2; text-decoration: none; }
.report-body .report-metric-grid .road-links a:hover strong { color: var(--accent); text-decoration: underline; }
.report-body .report-metric-grid .road-links em { display: grid; place-items: center; width: 15px; height: 15px; border-radius: 999px; background: rgba(207,255,36,.16); color: var(--accent); font-size: 8px; font-style: normal; font-weight: 950; }
.report-body .report-metric-grid .road-links strong { margin: 0; color: var(--accent); font-size: 10px; line-height: 1.2; }
.report-body .report-metric-grid .road-links small { grid-column: 2 / -1; color: rgba(244,247,242,.62); font-size: 9px; line-height: 1.15; }
.report-body .report-metric-grid .main-roads-metric p { font-size: 10px; line-height: 1.35; }
.report-body .report-metric-grid .age-breakdown {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin: 2px 0 10px;
  max-width: 100%;
  font-size: 0.82rem;
  line-height: 1.15;
}
.report-body .report-metric-grid .age-breakdown span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin: 0;
  padding: 4px 6px;
  border: 1px solid rgba(207, 255, 36, 0.12);
  border-radius: 7px;
  background: rgba(207, 255, 36, 0.035);
  color: #f4f7f2;
}
.report-body .report-metric-grid .age-breakdown b {
  color: var(--accent);
  font-size: 0.76rem;
  white-space: nowrap;
}
.report-body .report-metric-grid .age-breakdown em {
  color: #f4f7f2;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}
.report-body .report-metric-grid .metric-icon { display: grid; place-items: center; width: 32px; height: 32px; margin: 0 0 10px; border: 1px solid rgba(207,255,36,.35); border-radius: 50%; background: rgba(207,255,36,.09); color: var(--accent); font-size: 16px; }
.report-body .report-premium-preview[hidden] { display: none; }
.report-body .report-premium-preview { border-color: rgba(207, 255, 36, 0.22); }
.report-body .report-unlock-strip { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0 0 16px; color: #b9c4bb; font-size: 12px; }
.report-body .report-unlock-strip { padding: 10px 14px; border: 1px solid rgba(107,199,255,.28); border-radius: 10px; background: rgba(5,12,17,.72); }
.report-body .report-unlock-strip span,
.report-body .report-unlock-strip strong { color: #f4f7f2; }
.report-body .report-unlock-strip b { border: 1px solid rgba(107,199,255,.45); border-radius: 999px; padding: 6px 10px; color: #8bd5ff; background: rgba(107,199,255,.06); font-weight: 700; }
.report-body .report-unlock-strip strong { margin-left: 8px; padding-left: 18px; border-left: 1px solid rgba(255,255,255,.28); }
.report-body .report-unlock-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.report-body .report-unlock-grid article { min-height: 150px; padding: 16px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 10px; background: rgba(5, 6, 7, 0.58); }
.report-body .report-unlock-grid .unlock-icon { display: inline-grid; place-items: center; width: 30px; height: 30px; margin-bottom: 12px; border: 1px solid rgba(207, 255, 36, 0.45); border-radius: 50%; color: var(--accent); font-size: 11px; font-weight: 800; }
.report-body .report-unlock-grid strong { display: block; margin-bottom: 8px; color: #f4f7f2; font-size: 15px; }
.report-body .report-unlock-grid p { margin: 0 0 14px; color: #b8c2ba; font-size: 13px; line-height: 1.4; }
.report-body .report-unlock-grid small { color: #dfff71; font-size: 11px; }
.report-body .report-demo-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(207, 255, 36, 0.24);
  border-radius: 10px;
  background: rgba(207, 255, 36, 0.06);
}
.report-body .report-demo-links div { flex: 1 1 280px; }
.report-body .report-demo-links strong { display: block; color: #f4f7f2; font-size: 15px; }
.report-body .report-demo-links span { display: block; margin-top: 4px; color: #b8c2ba; font-size: 13px; line-height: 1.4; }
.report-body .report-demo-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(207,255,36,.35);
  border-radius: 999px;
  color: #eaff8a;
  font-size: 12px;
  font-weight: 900;
}
@media (max-width: 900px) {
  .report-body .report-hero,
  .report-body .report-highlight-grid { grid-template-columns: 1fr; }
  .report-body .report-metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .report-body .report-unlock-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .report-body .report-shell { width: min(100% - 20px, 1120px); }
  .report-body .report-hero,
  .report-body .report-section,
  .report-body .report-conclusion { padding: 18px; }
  .report-body .report-metric-grid { grid-template-columns: 1fr; }
  .report-body .report-unlock-grid { grid-template-columns: 1fr; }
.report-body .report-metric-grid .gender-metric strong,
  .report-body .report-metric-grid .age-metric strong,
  .report-body .report-metric-grid .vehicle-metric strong,
  .report-body .report-metric-grid .pedestrian-metric strong { font-size: 1rem; }
}
@media print {
  body {
    background: #ffffff;
    color: #111111;
  }

  .report-header,
  .page-close,
  .report-conclusion .primary-button,
  .report-conclusion .secondary-button {
    display: none;
  }

  .report-shell {
    width: 100%;
    padding: 0;
  }

  .report-verdict,
  .report-section,
  .report-conclusion,
  .report-guide article,
  .report-metric-grid article {
    break-inside: avoid;
    border-color: #dddddd;
    background: #ffffff;
    color: #111111;
  }

  .commerce-category-list details > div,
  .sabueso-folder details > .folder-content {
    display: flex;
  }

  .commerce-category-list details:not([open]) > div {
    display: flex;
  }

  .commerce-category-list details > p {
    display: block;
  }

  .commerce-category-list .commerce-extra {
    display: inline-flex !important;
  }

  .direct-competition-list .competitor-extra {
    display: list-item !important;
  }

  .commerce-more-button,
  .competitor-toggle {
    display: none !important;
  }

  .commerce-category-list summary::before {
    display: none;
  }

  .commerce-category-list details,
  .commerce-category-list a,
  .commerce-category-list details > div span,
  .compact-business-list li {
    border-color: #dddddd;
    background: #ffffff;
    color: #111111;
  }

  .report-section:has(.report-map-placeholder),
  .property-v5-section:has(.property-v5-real-map),
  .property-v5-card:has(.property-v5-real-map),
  .report-map-placeholder,
  .report-map-placeholder.google-report-map,
  .google-report-map-canvas,
  .property-v5-map,
  .property-v5-map.property-v5-real-map {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .property-v5-section:has(.property-v5-real-map),
  .report-section:has(.report-map-placeholder) {
    break-before: auto;
    page-break-before: auto;
  }

  .report-map-placeholder.google-report-map,
  .report-body .report-zone-map {
    min-height: 360px;
    height: 360px;
  }

  .property-v5-map {
    height: 340px;
  }

  .property-v5-environment-map {
    height: 430px;
  }

  .property-v5-roads-map {
    height: 310px;
  }
}

/* Report composition matching the reference layout. */
.report-body .report-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 16px; color: #9daaa0; font-size: 12px; }
.report-body .report-meta span + span { position: relative; padding-left: 22px; }
.report-body .report-meta span + span::before { content: ""; position: absolute; left: 0; top: 2px; width: 1px; height: 14px; background: rgba(255,255,255,.25); }
.report-body .giro-context-card {
  align-self: stretch;
  padding: 18px;
  border: 1px solid rgba(207,255,36,.26);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(207,255,36,.1), rgba(18,24,15,.78));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 42px rgba(0,0,0,.2);
}
.report-body .giro-context-card[hidden] { display: none; }
.report-body .giro-context-card > span {
  display: block;
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.report-body .giro-context-card > strong {
  display: block;
  margin-bottom: 10px;
  color: #f7f8f3;
  font-size: 22px;
  line-height: 1.08;
}
.report-body .giro-context-card p {
  margin: 0;
  color: #d7dfd2;
  font-size: 12px;
  line-height: 1.42;
}
.report-body .giro-context-card p + p { margin-top: 8px; }
.report-body .giro-context-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}
.report-body .giro-context-stats div {
  padding: 10px;
  border: 1px solid rgba(207,255,36,.22);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
}
.report-body .giro-context-stats b,
.report-body .giro-context-stats span,
.report-body .giro-context-stats small {
  display: block;
}
.report-body .giro-context-stats b {
  color: #f7f8f3;
  font-size: 20px;
  line-height: 1;
}
.report-body .giro-context-stats span {
  margin-top: 5px;
  color: #d7dfd2;
  font-size: 11px;
  font-weight: 850;
}
.report-body .giro-context-stats small {
  margin-top: 3px;
  color: #aeb8a9;
  font-size: 10px;
  line-height: 1.25;
}
.report-body .giro-context-source {
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.report-body .giro-context-source p {
  color: #aeb8a9;
  font-size: 10px;
  line-height: 1.32;
}
.report-body .report-highlight { display: flex; gap: 14px; align-items: flex-start; }
.report-body .report-highlight > div { min-width: 0; }
.report-body .report-highlight .report-highlight-icon { display: grid; place-items: center; flex: 0 0 38px; width: 38px; height: 38px; margin: 0; border: 1px solid currentColor; border-radius: 50%; color: var(--accent); background: rgba(207,255,36,.1); font-size: 20px; font-weight: 800; }
.report-body .report-highlight.caution .report-highlight-icon { color: #ffbd4e; background: rgba(255,189,78,.12); }
.report-body .report-highlight.recommendation .report-highlight-icon { color: #79cfff; background: rgba(121,207,255,.12); }
.report-body .report-highlight > div > span:not(.report-highlight-icon) { display: block; margin: 2px 0 10px; }
.report-body .report-card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; color: #dfff71; font-size: 13px; font-weight: 800; }
.report-body .report-card-link span { display: inline; margin: 0; color: inherit; font-size: 18px; }
.report-body .report-verdict { position: relative; overflow: hidden; }
.report-body .report-verdict::after { content: ""; position: absolute; right: -28px; top: 18px; width: 150px; height: 150px; border: 1px solid rgba(207,255,36,.25); border-radius: 50%; box-shadow: 0 0 0 18px rgba(207,255,36,.04), 0 0 0 38px rgba(207,255,36,.04), 0 0 0 58px rgba(207,255,36,.04); }
.report-body .report-verdict > * { position: relative; z-index: 1; }
.report-body .sabueso-folder { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 170px; gap: 18px; align-items: center; }
.report-body .sabueso-note {
  padding: 18px 20px;
  border: 1px solid rgba(207,255,36,.24);
  border-radius: 14px;
  background: #f7f8f3;
  color: #11170f !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}
.report-body .sabueso-note p {
  margin: 0;
  color: #182015 !important;
  font-size: 15px;
  line-height: 1.55;
}
.report-body .sabueso-note span {
  color: #182015 !important;
}
.report-body .sabueso-note * {
  color: inherit;
}
.report-body .sabueso-note p + p {
  margin-top: 10px;
}
.report-body .sabueso-note strong {
  color: #090d08;
}
.report-body .sabueso-visual-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 230px);
  gap: 14px;
  align-items: stretch;
  margin-bottom: 12px;
}
.report-body .sabueso-main-read,
.report-body .sabueso-score-ring,
.report-body .sabueso-story-grid article,
.report-body .sabueso-source-line {
  border: 1px solid rgba(17, 23, 15, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .7);
}
.report-body .sabueso-main-read {
  padding: 16px;
}
.report-body .sabueso-main-read span,
.report-body .sabueso-story-grid span {
  display: block;
  margin-bottom: 7px;
  color: #4f5b4b !important;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.report-body .sabueso-main-read strong {
  display: block;
  max-width: 620px;
  color: #090d08 !important;
  font-size: 24px;
  line-height: 1.08;
}
.report-body .sabueso-main-read p,
.report-body .sabueso-story-grid p {
  margin-top: 8px;
  color: #344030 !important;
  font-size: 13px;
  line-height: 1.42;
}
.report-body .sabueso-score-ring {
  display: grid;
  place-items: center;
  align-content: center;
  justify-items: center;
  min-height: 142px;
  padding: 16px 18px;
  background: radial-gradient(circle at 50% 45%, rgba(207, 255, 36, .3), rgba(255, 255, 255, .76) 58%);
}
.report-body .sabueso-score-ring span {
  color: #090d08 !important;
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
}
.report-body .sabueso-zone-ring span {
  display: block;
  width: 100%;
  max-width: 170px;
  font-size: 24px;
  line-height: 1.08;
  text-align: center;
  overflow-wrap: normal;
  word-break: keep-all;
}
.report-body .sabueso-zone-good {
  background: radial-gradient(circle at 50% 45%, rgba(207, 255, 36, .34), rgba(255, 255, 255, .78) 60%);
}
.report-body .sabueso-zone-medium {
  background: radial-gradient(circle at 50% 45%, rgba(255, 224, 128, .36), rgba(255, 255, 255, .78) 60%);
}
.report-body .sabueso-zone-hard {
  background: radial-gradient(circle at 50% 45%, rgba(255, 151, 116, .32), rgba(255, 255, 255, .78) 60%);
}
.report-body .sabueso-score-ring small {
  margin-top: 6px;
  color: #4f5b4b !important;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
.report-body .sabueso-story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}
.report-body .sabueso-secondary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.report-body .sabueso-story-grid article {
  min-width: 0;
  padding: 13px;
}
.report-body .sabueso-story-grid strong {
  display: block;
  color: #090d08 !important;
  font-size: 18px;
  line-height: 1.12;
}
.report-body .sabueso-story-grid strong.sabueso-one-line {
  overflow: hidden;
  font-size: 15px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.report-body .sabueso-profile-notes {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.report-body .sabueso-profile-notes li {
  position: relative;
  margin: 0;
  padding-left: 14px;
  color: #263020 !important;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}
.report-body .sabueso-profile-notes li::before {
  position: absolute;
  top: .55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #9ee91a;
  content: "";
}
.report-body .sabueso-source-pop {
  margin-top: 9px;
  color: #4f5b4b !important;
  font-size: 11px;
  line-height: 1.35;
}
.report-body .sabueso-source-pop summary {
  width: fit-content;
  cursor: pointer;
  border: 1px solid rgba(17, 23, 15, .14);
  border-radius: 999px;
  padding: 5px 8px;
  color: #263020 !important;
  background: rgba(207, 255, 36, .18);
  font-weight: 900;
  list-style-position: inside;
}
.report-body .sabueso-source-pop p {
  margin-top: 7px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(17, 23, 15, .06);
  color: #344030 !important;
}
.report-body .sabueso-explain-copy p + p {
  margin-top: 10px;
}
.report-body .sabueso-signal-bars {
  display: grid;
  gap: 9px;
  margin: 0 0 14px;
  padding: 13px;
  border: 1px solid rgba(17, 23, 15, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .58);
}
.report-body .sabueso-zone-explanation {
  margin: 0 0 14px;
  padding: 13px 14px;
  border: 1px solid rgba(17, 23, 15, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .72);
}
.report-body .sabueso-zone-explanation strong {
  display: block;
  color: #101811 !important;
  font-size: 14px;
  font-weight: 950;
}
.report-body .sabueso-zone-explanation p {
  margin: 6px 0 0;
  color: #344030 !important;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 750;
}
.report-body .sabueso-signal-row {
  display: grid;
  grid-template-columns: minmax(120px, .85fr) minmax(130px, 1.5fr) minmax(105px, .75fr);
  gap: 10px;
  align-items: center;
  color: #1b2318;
  font-size: 12px;
  font-weight: 850;
}
.report-body .sabueso-signal-row span,
.report-body .sabueso-signal-row b {
  min-width: 0;
  color: #1b2318 !important;
}
.report-body .sabueso-signal-row b {
  color: #52604d !important;
  font-size: 11px;
  text-align: right;
}
.report-body .sabueso-signal-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 23, 15, .12);
}
.report-body .sabueso-signal-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #b7ff16, #17d4a7);
}
.report-body .sabueso-brief {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.report-body .sabueso-brief div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(17, 23, 15, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .62);
}
.report-body .sabueso-brief span {
  display: block;
  margin-bottom: 7px;
  color: #4f5b4b !important;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.report-body .sabueso-brief strong {
  display: block;
  color: #090d08 !important;
  font-size: 18px;
  line-height: 1.1;
}
.report-body .sabueso-brief p {
  margin-top: 7px;
  color: #344030 !important;
  font-size: 12px;
  line-height: 1.35;
}
@media (max-width: 900px) {
  .report-body .sabueso-brief {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .report-body .sabueso-brief {
    grid-template-columns: 1fr;
  }
}
.report-body .report-sabueso-visual { position: relative; min-height: 130px; opacity: .72; }
.report-body .report-sabueso-visual::before { content: ""; position: absolute; left: 28px; top: 26px; width: 58px; height: 58px; border: 2px solid rgba(207,255,36,.8); border-radius: 50%; transform: rotate(-25deg); box-shadow: 0 0 0 8px rgba(207,255,36,.05), 0 0 0 18px rgba(207,255,36,.04); }
.report-body .report-sabueso-visual::after { content: ""; position: absolute; left: 80px; top: 82px; width: 44px; height: 2px; background: rgba(207,255,36,.8); transform: rotate(48deg); transform-origin: left center; }
.report-body .report-sabueso-visual span { position: absolute; left: 0; right: 0; bottom: 5px; height: 1px; background: linear-gradient(90deg, transparent, rgba(207,255,36,.35), transparent); transform: skewY(-18deg); }
.report-body .report-inline-unlock { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 16px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 9px; color: #c5cec7; font-size: 13px; }
.report-body .report-inline-unlock[hidden],
.report-body .report-credit-notice[hidden],
.report-body [hidden] { display: none !important; }
.report-body .report-inline-unlock > span:first-child { color: #fff; font-size: 16px; }
.report-body .report-inline-unlock a { margin-left: auto; border: 1px solid rgba(207,255,36,.32); border-radius: 7px; padding: 9px 12px; color: #dfff71; font-size: 12px; font-weight: 800; text-decoration: none; }
.report-body .basic-upgrade-hero { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px; align-items: center; border-color: rgba(207, 255, 36, .24); background: linear-gradient(135deg, rgba(207, 255, 36, .12), rgba(13, 15, 16, .96) 58%); }
.report-body .basic-upgrade-hero span,
.report-body .basic-plan-preview article span { display: block; margin-bottom: 8px; color: var(--accent); font-size: 11px; font-weight: 950; text-transform: uppercase; }
.report-body .basic-upgrade-hero h2 { max-width: 760px; margin: 0; color: #f4f7f2; font-size: clamp(24px, 3vw, 36px); line-height: 1.05; }
.report-body .basic-upgrade-hero p { max-width: 760px; margin: 10px 0 0; color: #c9d3c9; font-size: 14px; line-height: 1.5; }
.report-body .basic-upgrade-grid article { display: grid; grid-template-rows: auto auto 1fr auto; align-items: start; min-height: 185px; }
.report-body .basic-upgrade-grid small { align-self: end; display: block; margin-top: 12px; }
.report-body .basic-upgrade-grid .basic-sabueso-preview { border-color: rgba(207, 255, 36, .34); background: linear-gradient(135deg, rgba(207, 255, 36, .1), rgba(5, 6, 7, .62)); }
.report-body .basic-upgrade-grid .basic-sabueso-preview .unlock-icon { color: #090d08; background: var(--accent); border-color: var(--accent); font-weight: 950; }
.report-body .basic-demo-spotlight { border-color: rgba(207, 255, 36, .38); background: linear-gradient(135deg, rgba(207, 255, 36, .11), rgba(5, 6, 7, .6)); }
.report-body .basic-demo-spotlight div > span { display: block; margin: 0 0 5px; color: var(--accent); font-size: 11px; font-weight: 950; text-transform: uppercase; }
.report-body .basic-demo-spotlight p { margin: 6px 0 0; color: #c9d3c9; font-size: 13px; line-height: 1.45; }
.report-body .basic-demo-spotlight a { min-width: 112px; min-height: 44px; background: rgba(207, 255, 36, .1); }
.report-body .basic-plan-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 12px; }
.report-body .basic-plan-preview article { display: grid; gap: 9px; align-content: start; min-height: 250px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 10px; padding: 16px; background: rgba(5, 6, 7, .58); }
.report-body .basic-plan-preview article.featured { border-color: rgba(255, 255, 255, .14); }
.report-body .basic-plan-preview article.popular { position: relative; border-color: rgba(207, 255, 36, .38); background: linear-gradient(135deg, rgba(207, 255, 36, .13), rgba(5, 6, 7, .65)); }
.report-body .basic-plan-preview article.popular::after { position: absolute; top: 14px; right: 14px; border: 1px solid rgba(207, 255, 36, .4); border-radius: 999px; padding: 5px 8px; color: #dfff71; background: rgba(207, 255, 36, .08); font-size: 10px; font-weight: 950; text-transform: uppercase; content: "Popular"; }
.report-body .basic-plan-preview h3 { margin: 0; color: #f4f7f2; font-size: 20px; }
.report-body .basic-plan-preview article > strong { color: #f4f7f2; font-size: 30px; line-height: 1; }
.report-body .basic-plan-preview p { margin: 0; color: #b8c2ba; font-size: 13px; line-height: 1.45; }
.report-body .basic-plan-preview a { align-self: end; justify-content: center; margin-top: auto; }
.report-body .basic-source-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.report-body .basic-source-grid article { border: 1px solid rgba(255, 255, 255, .1); border-radius: 10px; padding: 16px; background: rgba(5, 6, 7, .58); }
.report-body .basic-source-grid span { display: block; margin-bottom: 8px; color: var(--accent); font-size: 11px; font-weight: 950; text-transform: uppercase; }
.report-body .basic-source-grid strong { display: block; color: #f4f7f2; font-size: 18px; line-height: 1.15; }
.report-body .basic-source-grid p,
.report-body .basic-source-note { margin: 8px 0 0; color: #b8c2ba; font-size: 13px; line-height: 1.5; }
.report-body .basic-source-list { display: grid; gap: 10px; margin: 12px 0 0; padding: 0; list-style: none; }
.report-body .basic-source-list li { position: relative; margin: 0; padding-left: 16px; color: #c9d3c9; font-size: 13px; font-weight: 750; line-height: 1.45; }
.report-body .basic-source-list li::before { position: absolute; top: .62em; left: 0; width: 6px; height: 6px; border-radius: 999px; background: var(--accent); content: ""; }
.report-body .basic-source-list b { color: #f4f7f2; }
.report-body .basic-source-note { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, .1); }
.report-body .sabueso-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(207, 255, 36, .16);
  border-radius: 12px;
  background: #f7f7ee;
  color: #10160f;
}
.report-body .sabueso-panel p,
.report-body .sabueso-panel span,
.report-body .sabueso-panel strong,
.report-body .sabueso-panel h3,
.report-body .sabueso-panel em {
  color: #10160f !important;
}
.report-body .sabueso-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 10px;
}
.report-body .sabueso-main-card,
.report-body .sabueso-score-card,
.report-body .sabueso-insight-grid article {
  min-width: 0;
  border: 1px solid rgba(17, 23, 15, .12);
  border-radius: 9px;
  background: rgba(255, 255, 255, .66);
}
.report-body .sabueso-main-card {
  padding: 16px;
}
.report-body .sabueso-main-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.08;
}
.report-body .sabueso-main-card p {
  margin: 0;
  color: #344030 !important;
  font-size: 13px;
  line-height: 1.45;
}
.report-body .sabueso-score-card {
  display: grid;
  place-items: center;
  align-content: center;
  padding: 12px;
  text-align: center;
}
.report-body .sabueso-score-card strong {
  display: block;
  font-size: 36px;
  line-height: .95;
}
.report-body .sabueso-score-card span {
  max-width: 90px;
  font-size: 11px;
  font-weight: 950;
  line-height: 1.15;
  text-transform: uppercase;
}
.report-body .sabueso-insight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.report-body .sabueso-insight-grid article {
  padding: 13px;
}
.report-body .sabueso-insight-grid span {
  display: block;
  margin-bottom: 7px;
  color: #4f5b4b !important;
  font-size: 10px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}
.report-body .sabueso-insight-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.15;
}
.report-body .sabueso-insight-grid p {
  margin: 0;
  color: #344030 !important;
  font-size: 12px;
  line-height: 1.38;
}
.report-body .sabueso-bars {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}
.report-body .sabueso-bars div {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr) 150px;
  gap: 10px;
  align-items: center;
}
.report-body .sabueso-bars span,
.report-body .sabueso-bars em {
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}
.report-body .sabueso-bars em {
  color: #596456 !important;
  text-align: right;
}
.report-body .sabueso-bars i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b7ff16 var(--bar), rgba(17, 23, 15, .12) var(--bar));
}
.report-body .source-card {
  max-width: 640px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: 16px;
  background: rgba(5, 6, 7, .58);
}
.report-body .source-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.report-body .source-card h3 {
  margin: 0 0 12px;
  color: #f4f7f2;
  font-size: 18px;
}
.report-body .source-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.report-body .source-card li {
  position: relative;
  padding-left: 16px;
  color: #c9d3c9;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}
.report-body .source-card li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}
.report-body .source-card strong {
  color: #f4f7f2;
}
.report-body .source-disclaimer {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #b8c2ba !important;
  font-size: 13px;
  line-height: 1.5;
}
.report-body .report-source-note { margin-top: 18px; padding: 16px 18px; border: 1px solid rgba(207,255,36,.16); border-radius: 14px; background: rgba(13,15,16,.92); color: rgba(244,247,242,.76); font-size: 13px; line-height: 1.5; }
.report-body .report-source-note strong { display: block; margin-bottom: 6px; color: var(--accent); letter-spacing: 0; text-transform: uppercase; }
.report-body .report-source-note p { margin: 12px 0 0; }
.report-body .report-source-note ul { display: grid; gap: 8px; margin: 10px 0 0; padding: 0; list-style: none; }
.report-body .report-source-note li { position: relative; margin: 0; padding-left: 15px; color: rgba(244,247,242,.78); }
.report-body .report-source-note li::before { position: absolute; top: .65em; left: 0; width: 6px; height: 6px; border-radius: 999px; background: var(--accent); content: ""; }
.report-body .report-source-note b { color: #f4f7f2; }
.report-body.free-report .report-metric-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.report-body .report-conclusion { display: flex; justify-content: space-between; gap: 28px; align-items: flex-end; }
.report-body .report-conclusion > div:first-child { max-width: 680px; }
.report-body .report-conclusion-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.report-body .report-conclusion-actions [hidden] { display: none; }
.report-body .report-unlock-grid .unlock-icon { width: 32px; height: 32px; font-size: 16px; }
.report-body .report-unlock-grid .unlock-icon { display: inline-grid; place-items: center; width: 42px; height: 42px; color: #f4f7f2; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }
.report-body .report-unlock-grid .unlock-icon svg { display: block; width: 25px; height: 25px; }
.report-body .report-unlock-grid .basic-sabueso-preview { border-color: rgba(207, 255, 36, .34); background: linear-gradient(135deg, rgba(207, 255, 36, .1), rgba(5, 6, 7, .62)); }
.report-body .report-unlock-grid .basic-sabueso-preview .unlock-icon { color: #090d08; background: var(--accent); border-color: var(--accent); font-weight: 950; }
.report-body .report-conclusion { grid-template-columns: minmax(0, 1fr) auto 120px; gap: 22px; }
.report-body .report-conclusion > div:first-child { display: block; }
.report-body .report-target-visual { display: block; }
.report-body .report-target-visual { position: relative; min-height: 110px; opacity: .75; }
.report-body .report-target-visual::before { content: ""; position: absolute; right: 10px; top: 18px; width: 72px; height: 72px; border: 2px solid rgba(207,255,36,.72); border-radius: 50%; box-shadow: 0 0 0 11px rgba(207,255,36,.08), 0 0 0 22px rgba(207,255,36,.05); }
.report-body .report-target-visual::after { content: ""; position: absolute; right: 44px; top: 52px; width: 88px; height: 2px; background: rgba(207,255,36,.72); transform: rotate(-28deg); transform-origin: right center; }
.report-body .report-target-visual span { position: absolute; right: 13px; top: 53px; width: 66px; height: 14px; border-top: 2px solid rgba(207,255,36,.72); transform: skewX(-35deg); }
.report-body .report-highlight-icon.shield-icon { position: relative; font-size: 17px; font-weight: 950; }
.report-body .report-highlight-icon.shield-icon::before { content: ""; position: absolute; inset: 8px 10px 7px; border: 2px solid currentColor; border-radius: 8px 8px 10px 10px; transform: rotate(45deg); }
.report-body .report-highlight-icon.shield-icon { text-shadow: 0 0 1px currentColor; }
.report-body .report-highlight-icon.lock-icon { position: relative; font-size: 0; }
.report-body .report-highlight-icon.lock-icon::before { content: ""; position: absolute; top: 17px; width: 15px; height: 12px; border-radius: 3px; background: radial-gradient(circle at 50% 55%, #342000 0 2px, transparent 2.5px), currentColor; }
.report-body .report-highlight-icon.lock-icon::after { content: ""; position: absolute; top: 9px; width: 10px; height: 10px; border: 2px solid currentColor; border-bottom: 0; border-radius: 8px 8px 0 0; }
.report-body .report-highlight-icon.star-icon { font-size: 21px; }
.report-body .report-hero > div:first-child { min-width: 0; }
.report-body .report-hero h1 { max-width: 560px; margin-bottom: 0; font-size: clamp(42px, 5vw, 62px); line-height: .98; letter-spacing: -1.5px; }
.report-body .report-verdict { min-height: 260px; padding: 24px; }
.report-body .report-verdict span { font-size: clamp(58px, 6vw, 78px); }
.report-body .report-verdict strong { max-width: 260px; font-size: 22px; line-height: 1.05; }
.report-body .report-verdict p { max-width: 300px; font-size: 13px; }
.report-body .report-highlight-grid { margin-top: 10px; }
.report-body .report-highlight { min-height: 232px; padding: 24px 22px; }
.report-body .report-highlight > div { flex: 1; }
.report-body .report-highlight strong { font-size: 20px; line-height: 1.1; }
.report-body .report-highlight p { max-width: 270px; }
.report-body .report-shell { color: #f4f7f2; }
.report-body .report-shell p { color: #f4f7f2; }
.report-body .report-shell .section-heading h2,
.report-body .report-shell .section-heading p,
.report-body .report-conclusion h2 { color: var(--accent) !important; }
.report-body .report-metric-grid .metric-label { display: flex; align-items: center; gap: 9px; min-height: 34px; margin-bottom: 12px; }
.report-body .report-metric-grid .metric-label > span:not(.metric-icon) { display: block; margin: 0; color: #f4f7f2; font-size: 11px; line-height: 1.25; text-transform: none; }
.report-body .report-metric-grid .metric-icon { position: relative; flex: 0 0 32px; width: 32px; height: 32px; margin: 0; border-color: rgba(207,255,36,.65); background: rgba(207,255,36,.08); color: var(--accent); font-size: 0; }
.report-body .report-metric-grid .people-icon::before { content: ""; position: absolute; inset: 7px; background: radial-gradient(circle at 28% 28%, currentColor 0 3px, transparent 3.5px), radial-gradient(circle at 72% 28%, currentColor 0 3px, transparent 3.5px), linear-gradient(currentColor, currentColor) 2px 16px / 9px 7px no-repeat, linear-gradient(currentColor, currentColor) 13px 16px / 9px 7px no-repeat; }
.report-body .report-metric-grid .homes-icon::before { content: ""; position: absolute; left: 8px; bottom: 7px; width: 4px; height: 9px; background: currentColor; box-shadow: 7px -5px 0 currentColor, 14px -10px 0 currentColor; }
.report-body .report-metric-grid .socio-icon::before,
.report-body .report-metric-grid .chart-icon::before { content: ""; position: absolute; left: 8px; bottom: 7px; width: 4px; height: 7px; background: currentColor; box-shadow: 7px -4px 0 currentColor, 14px -11px 0 currentColor; }
.report-body .report-metric-grid .metric-icon svg { display: block; width: 22px; height: 22px; }
.report-body .report-metric-grid .metric-icon::before { display: none; }
.report-body .report-metric-grid .metric-icon:empty::after { content: ""; position: absolute; inset: 7px; }
.report-body .report-metric-grid .people-icon:empty::after { background: radial-gradient(circle at 28% 28%, currentColor 0 3px, transparent 3.5px), radial-gradient(circle at 72% 28%, currentColor 0 3px, transparent 3.5px), linear-gradient(currentColor, currentColor) 2px 16px / 9px 7px no-repeat, linear-gradient(currentColor, currentColor) 13px 16px / 9px 7px no-repeat; }
.report-body .report-metric-grid .homes-icon:empty::after { left: 8px; bottom: 7px; width: 4px; height: 9px; background: currentColor; box-shadow: 7px -5px 0 currentColor, 14px -10px 0 currentColor; }
.report-body .report-metric-grid .age-icon:empty::after { background: radial-gradient(circle at 50% 28%, currentColor 0 4px, transparent 4.5px), linear-gradient(currentColor, currentColor) 4px 15px / 14px 7px no-repeat; border-left: 2px solid currentColor; border-right: 2px solid currentColor; border-radius: 999px; }
.report-body .report-metric-grid .activity-icon:empty::after { left: 8px; bottom: 7px; width: 4px; height: 7px; background: currentColor; box-shadow: 7px -5px 0 currentColor, 14px -12px 0 currentColor; }
.report-body .report-metric-grid .socioeconomic-icon:empty::after { left: 7px; bottom: 7px; width: 18px; height: 15px; background: linear-gradient(currentColor, currentColor) 0 11px / 18px 4px no-repeat, linear-gradient(currentColor, currentColor) 6px 6px / 12px 4px no-repeat, linear-gradient(currentColor, currentColor) 12px 1px / 6px 4px no-repeat; }
.report-body .report-metric-grid .competition-icon:empty::after { border: 3px solid currentColor; border-radius: 999px; box-shadow: inset 0 0 0 4px rgba(207,255,36,.08); }
.report-body .report-metric-grid .commerce-icon:empty::after { border-top: 5px solid currentColor; border-bottom: 10px solid currentColor; transform: translateY(2px); }
.report-body .report-metric-grid .vehicle-icon:empty::after { background: radial-gradient(circle at 20% 80%, currentColor 0 2px, transparent 2.5px), radial-gradient(circle at 80% 80%, currentColor 0 2px, transparent 2.5px), linear-gradient(currentColor, currentColor) 0 8px / 18px 8px no-repeat; }
.report-body .report-metric-grid .pedestrian-icon:empty::after { background: radial-gradient(circle at 55% 10%, currentColor 0 3px, transparent 3.5px), linear-gradient(55deg, transparent 43%, currentColor 44% 58%, transparent 59%), linear-gradient(115deg, transparent 43%, currentColor 44% 58%, transparent 59%); }
@media (max-width: 900px) {
  .report-body .sabueso-folder { grid-template-columns: 1fr; }
  .report-body .report-sabueso-visual { display: none; }
  .report-body .sabueso-visual-summary,
  .report-body .sabueso-story-grid,
  .report-body .sabueso-secondary-grid,
  .report-body .sabueso-brief {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .report-body .sabueso-main-read {
    grid-column: 1 / -1;
  }
  .report-body .sabueso-score-ring {
    min-height: 118px;
  }
  .report-body .sabueso-zone-ring span {
    max-width: none;
    font-size: 22px;
  }
  .report-body .sabueso-story-grid article {
    min-height: 0;
    padding: 16px;
  }
  .report-body .sabueso-story-grid strong.sabueso-one-line {
    overflow: visible;
    text-overflow: initial;
    white-space: normal;
  }
  .report-body.free-report .report-metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .report-body .report-conclusion { display: block; }
  .report-body .report-conclusion-actions { justify-content: flex-start; margin-top: 18px; }
  .report-body .report-target-visual { display: none; }
  .report-body .basic-upgrade-hero,
  .report-body .basic-plan-grid,
  .report-body .basic-source-grid,
  .report-body .sabueso-summary-grid,
  .report-body .sabueso-insight-grid { grid-template-columns: 1fr; }
  .report-body .sabueso-bars div { grid-template-columns: 1fr; gap: 5px; }
  .report-body .sabueso-bars em { text-align: left; }
}
@media (max-width: 560px) {
  .report-body .report-shell {
    width: min(100% - 18px, 1120px);
  }
  .report-body .sabueso-visual-summary,
  .report-body .sabueso-story-grid,
  .report-body .sabueso-secondary-grid,
  .report-body .sabueso-brief {
    grid-template-columns: 1fr;
  }
  .report-body .sabueso-main-read,
  .report-body .sabueso-score-ring,
  .report-body .sabueso-story-grid article,
  .report-body .sabueso-source-line {
    border-radius: 12px;
  }
  .report-body .sabueso-score-ring {
    min-height: 104px;
    padding: 16px;
  }
  .report-body .sabueso-zone-ring span {
    font-size: 24px;
  }
  .report-body .sabueso-main-read,
  .report-body .sabueso-story-grid article,
  .report-body .sabueso-signal-bars {
    padding: 16px;
  }
  .report-body .sabueso-main-read strong {
    max-width: none;
    font-size: 21px;
    line-height: 1.14;
  }
  .report-body .sabueso-main-read p,
  .report-body .sabueso-story-grid p,
  .report-body .sabueso-profile-notes li,
  .report-body .sabueso-source-pop p {
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .report-body .sabueso-story-grid strong {
    font-size: 22px;
    line-height: 1.12;
  }
  .report-body .sabueso-story-grid strong.sabueso-one-line {
    font-size: 18px;
  }
  .report-body .sabueso-signal-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .report-body .sabueso-signal-row b {
    text-align: left;
  }
  .report-body.free-report .report-metric-grid { grid-template-columns: 1fr; }
  .report-body .report-inline-unlock a { width: 100%; margin-left: 0; text-align: center; }
}

/* Alinea las acciones finales como una sola franja de tres botones. */
.report-body .report-conclusion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 120px;
  gap: 22px;
  align-items: end;
}
.report-body .report-conclusion > div:first-child {
  grid-column: 1 / 3;
  max-width: 760px;
}
.report-body .report-conclusion-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(2, minmax(210px, 1fr));
  gap: 12px;
  width: 100%;
  justify-content: initial;
}
.report-body .report-conclusion-actions > a,
.report-body .report-conclusion-actions > button {
  display: inline-flex;
  min-height: 56px;
  margin: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .report-body .report-conclusion-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .report-body .report-conclusion-actions {
    grid-template-columns: 1fr;
  }
}

/* Barra de beneficios con la misma composicion de la referencia. */
.report-body .report-unlock-strip {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  margin: 0 0 16px;
  padding: 10px 14px;
  overflow: hidden;
  white-space: nowrap;
}
.report-body .report-unlock-strip > span,
.report-body .report-unlock-strip > strong {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  border: 0;
  color: #f4f7f2;
  font-size: 14px;
  font-weight: 700;
}
.report-body .report-unlock-strip > strong {
  margin-left: auto;
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,.35);
}
.report-body .report-unlock-strip > b {
  flex: 0 0 auto;
  padding: 8px 14px;
  border: 1px solid rgba(207,255,36,.45);
  border-radius: 999px;
  color: #e7ff75;
  background: rgba(207,255,36,.05);
  font-size: 13px;
  line-height: 1;
}
.report-body .report-unlock-strip > strong ~ b {
  border-color: rgba(107,199,255,.55);
  color: #8bd5ff;
  background: rgba(107,199,255,.05);
}
@media (max-width: 900px) {
  .report-body .report-unlock-strip { overflow-x: auto; }
}

/* Evita que la barra se corte dentro del ancho del reporte. */
@media (min-width: 901px) {
  .report-body .report-unlock-strip {
    display: grid;
    grid-template-columns: minmax(88px, 1.05fr) repeat(4, minmax(62px, .8fr)) 1px minmax(112px, 1.2fr) repeat(4, minmax(68px, .95fr));
    gap: 7px;
    overflow: visible;
    white-space: normal;
  }
  .report-body .report-unlock-strip > span,
  .report-body .report-unlock-strip > strong,
  .report-body .report-unlock-strip > b {
    min-width: 0;
    padding: 6px 5px;
    font-size: 10px;
    line-height: 1.1;
    text-align: center;
    overflow-wrap: anywhere;
  }
  .report-body .report-unlock-strip > span,
  .report-body .report-unlock-strip > strong {
    text-align: left;
  }
  .report-body .report-unlock-strip > strong {
    margin-left: 0;
    padding-left: 10px;
    border-left: 1px solid rgba(255,255,255,.35);
  }
}

/* Conclusion sin grafico, con las acciones ocupando todo el ancho. */
.report-body .report-conclusion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}
.report-body .report-conclusion > div:first-child {
  grid-column: 1;
  max-width: 820px;
}
.report-body .report-conclusion-actions {
  grid-column: 1;
  grid-template-columns: minmax(280px, 1.35fr) repeat(2, minmax(210px, 1fr));
}
.report-body .report-target-visual { display: none !important; }

/* Ajuste final: la barra premium debe caber completa dentro del reporte. */
@media (min-width: 901px) {
  .report-body .report-premium-preview {
    overflow: hidden;
  }

  .report-body .report-unlock-strip {
    display: grid;
    grid-template-columns:
      minmax(78px, .8fr)
      minmax(66px, .7fr)
      minmax(66px, .7fr)
      minmax(84px, .82fr)
      minmax(104px, .95fr)
      minmax(122px, 1fr)
      minmax(86px, .82fr)
      minmax(84px, .82fr)
      minmax(66px, .7fr)
      minmax(128px, 1.08fr);
    gap: 6px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-height: 54px;
    padding: 8px 10px;
    overflow: hidden;
    white-space: nowrap;
  }

  .report-body .report-unlock-strip > span,
  .report-body .report-unlock-strip > strong,
  .report-body .report-unlock-strip > b {
    min-width: 0;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    font-size: 9.5px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
  }

  .report-body .report-unlock-strip > span,
  .report-body .report-unlock-strip > strong {
    justify-content: flex-start;
    color: #f4f7f2;
    font-weight: 800;
  }

  .report-body .report-unlock-strip > strong {
    margin-left: 0;
    padding-left: 14px;
    border-left: 1px solid rgba(255,255,255,.35);
  }
}

@media (min-width: 901px) {
  .report-body .report-conclusion {
    min-height: 0;
    padding-bottom: 28px;
  }

  .report-body .report-conclusion > div:first-child {
    max-width: 100%;
  }

  .report-body .report-conclusion p {
    max-width: 900px;
    overflow-wrap: anywhere;
  }

  .report-body .report-conclusion-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 14px;
    width: 100%;
    max-width: 760px;
    margin-top: 4px;
  }

  .report-body .report-conclusion-actions > a,
  .report-body .report-conclusion-actions > button {
    width: 100%;
    min-height: 54px;
    justify-content: center;
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .report-body .report-conclusion p {
    overflow-wrap: anywhere;
  }

  .report-body .report-conclusion-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
}

/* Aviso para usuarios que hicieron gratis pero tienen creditos disponibles. */
.report-body .report-credit-notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 14px;
  align-items: center;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(207, 255, 36, 0.28);
  border-radius: 10px;
  background: rgba(207, 255, 36, 0.07);
  color: #dce5dc;
}

.report-body .report-credit-notice[hidden] {
  display: none;
}

.report-body .report-credit-notice strong {
  color: #f4f7f2;
  font-size: 14px;
}

.report-body .report-credit-notice span {
  grid-column: 1;
  color: #b9c4bb;
  font-size: 13px;
  line-height: 1.35;
}

.report-body .report-credit-notice a {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #101400;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

/* Mapa visual de pago: usa coordenadas guardadas, no vuelve a cargar Google Maps. */
.report-body .report-zone-map {
  isolation: isolate;
  min-height: 390px;
}

.report-body .report-zone-map .map-radius {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.report-body .report-zone-map .map-center-pin {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
}

.report-body .report-zone-map .map-point {
  transform: translate(-50%, -50%);
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #f4f7f2;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.report-body .report-zone-map .map-point:hover {
  z-index: 5;
  max-width: min(260px, 70%);
  border-color: rgba(207, 255, 36, 0.45);
}

.report-body .map-summary {
  position: absolute;
  left: 14px;
  top: 14px;
  display: grid !important;
  grid-template-columns: auto auto;
  gap: 3px 8px;
  align-items: baseline;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(5, 6, 7, 0.78);
  text-align: left;
}

.report-body .map-summary strong {
  color: var(--accent);
  font-size: 15px;
}

.report-body .map-summary span {
  color: #c5cec7;
  font-size: 11px;
  font-weight: 800;
}

.report-body .map-empty-state {
  display: grid !important;
  gap: 8px;
  max-width: 440px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(5, 6, 7, 0.72);
}

.report-body .map-empty-state strong {
  color: var(--accent);
}

.report-body .map-empty-state span {
  color: #c5cec7;
  line-height: 1.45;
}

@media (max-width: 700px) {
  .report-body .report-credit-notice {
    grid-template-columns: 1fr;
  }

  .report-body .report-credit-notice span,
  .report-body .report-credit-notice a {
    grid-column: 1;
    grid-row: auto;
  }

  .report-body .report-credit-notice a {
    justify-self: stretch;
    text-align: center;
  }

  .report-body .report-zone-map {
    min-height: 330px;
  }

  .report-body .report-zone-map .map-point {
    max-width: 86px;
    font-size: 9px;
  }

  .report-body .map-summary {
    grid-template-columns: auto auto;
    max-width: calc(100% - 28px);
  }
}
/* Ejemplo de analisis para propiedad comercial */
.property-report .property-hero { align-items: stretch; }
.property-brief-card { display: grid; gap: 14px; align-self: stretch; min-width: min(380px, 100%); padding: 22px; border: 1px solid rgba(207,255,36,.24); border-radius: 12px; background: rgba(207,255,36,.08); }
.property-brief-card > span,
.property-overview span,
.property-input-grid span,
.property-fit-grid span,
.property-map-section .section-heading span { color: var(--accent); font-size: 11px; font-weight: 950; text-transform: uppercase; }
.property-brief-card > strong { color: #f5f7f2; font-size: 24px; line-height: 1.08; }
.property-brief-card p,
.property-main-reading p,
.property-input-grid p,
.property-fit-grid p,
.property-commerce-grid p { margin: 0; color: #c4cec5; font-size: 13px; font-weight: 750; line-height: 1.5; }
.property-brief-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.property-brief-grid div { padding: 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; background: rgba(5,6,7,.48); }
.property-brief-grid b,
.property-brief-grid small { display: block; }
.property-brief-grid b { color: #f5f7f2; font-size: 18px; }
.property-brief-grid small { margin-top: 4px; color: #aeb9ae; font-size: 11px; font-weight: 850; }
.property-overview-grid,
.property-map-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); gap: 16px; }
.property-main-reading { display: grid; gap: 12px; padding: 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: #f7f6ec; }
.property-main-reading h3 { margin: 0; color: #11140c; font-size: 30px; line-height: 1.04; }
.property-main-reading p { color: #2f352b; }
.property-score-stack { display: grid; gap: 10px; }
.property-score-stack div { display: grid; gap: 5px; padding: 18px; border: 1px solid rgba(207,255,36,.2); border-radius: 12px; background: rgba(207,255,36,.08); }
.property-score-stack strong { color: #e9ff7c; font-size: 28px; line-height: 1; }
.property-score-stack span { color: #c9d4c9; }
.property-input-grid,
.property-fit-grid,
.property-commerce-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.property-input-grid article,
.property-fit-grid article,
.property-commerce-grid article { display: grid; align-content: start; gap: 10px; min-height: 190px; padding: 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: rgba(5,6,7,.58); }
.property-input-grid strong,
.property-fit-grid strong { color: #f5f7f2; font-size: 22px; line-height: 1.1; }
.property-zone-map { position: relative; min-height: 430px; overflow: hidden; border: 1px solid rgba(207,255,36,.18); border-radius: 12px; background: linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px), radial-gradient(circle at 50% 52%, rgba(207,255,36,.14), transparent 18%), #0a0c0d; background-size: 64px 64px, 64px 64px, auto, auto; }
.property-zone-map .map-radius { position: absolute; left: 50%; top: 50%; display: grid; place-items: start center; border: 1px solid rgba(207,255,36,.24); border-radius: 999px; color: rgba(234,255,138,.78); font-size: 11px; font-weight: 950; transform: translate(-50%, -50%); }
.property-zone-map .radius-one { width: 180px; height: 180px; padding-top: 12px; }
.property-zone-map .radius-two { width: 340px; height: 340px; padding-top: 18px; }
.property-pin,
.property-zone-map .map-point { position: absolute; z-index: 3; border-radius: 999px; font-size: 11px; font-weight: 950; white-space: nowrap; }
.property-pin { left: 50%; top: 50%; padding: 9px 12px; background: #cfff24; color: #101307; box-shadow: 0 0 0 8px rgba(207,255,36,.12); transform: translate(-50%, -50%); }
.property-zone-map .map-point { left: var(--x); top: var(--y); padding: 7px 10px; border: 1px solid rgba(255,255,255,.15); background: #18202a; color: #dce7ef; transform: translate(-50%, -50%); }
.property-zone-map .map-point.food { background: #27351a; color: #e8ff8f; }
.property-zone-map .map-point.service { background: #163027; color: #a4ffd9; }
.property-zone-map .map-point.school { background: #1f2740; color: #b7c9ff; }
.property-zone-map .map-point.health { background: #351d2b; color: #ffb9d7; }
.property-zone-map .map-point.bank { background: #31280f; color: #ffe9a6; }
.property-zone-map .map-road { position: absolute; left: -10%; width: 120%; height: 28px; border-radius: 999px; background: rgba(255,255,255,.08); }
.property-zone-map .road-one { top: 40%; transform: rotate(-8deg); }
.property-zone-map .road-two { top: 61%; transform: rotate(20deg); }
.property-map-summary { align-self: stretch; justify-content: center; }
.property-commerce-grid span { color: #e9ff7c; font-size: 34px; font-weight: 950; line-height: 1; }
.property-commerce-grid strong { color: #f5f7f2; font-size: 18px; }
.property-commerce-grid i { display: block; height: 9px; border-radius: 999px; background: linear-gradient(90deg, #cfff24 var(--bar), rgba(255,255,255,.1) var(--bar)); }
@media (max-width: 900px) {
  .property-overview-grid,
  .property-map-layout,
  .property-input-grid,
  .property-fit-grid,
  .property-commerce-grid { grid-template-columns: 1fr; }
  .property-brief-grid { grid-template-columns: 1fr; }
  .property-zone-map { min-height: 340px; }
}

/* Analisis inmobiliario para dueños e inmobiliarias */
.property-report-body { background: #07100d; }
.property-report-body { overflow-x: hidden; }
.property-v5-shell { width: min(1220px, calc(100% - 44px)); margin: 0 auto; padding: 18px 0 46px; color: #f7fbf8; }
.property-v5-nav { position: sticky; top: 0; z-index: 8; display: flex; min-height: 68px; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.09); background: rgba(7,16,13,.86); backdrop-filter: blur(14px); }
.property-v5-brand { display: inline-flex; align-items: center; gap: 12px; min-width: 190px; color: #f7fbf8; text-decoration: none; }
.property-v5-brand .brand-mark { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 10px; background: var(--accent); color: #111400; font-size: 16px; font-weight: 900; box-shadow: 0 0 28px rgba(207,255,36,.26); }
.property-v5-brand .brand-text { color: inherit; font-size: 16px; font-weight: 900; letter-spacing: 0; }
.property-v5-brand .brand-text strong { color: var(--accent); }
.property-v5-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.property-v5-links a { border-radius: 10px; padding: 8px 10px; color: #a9b7af; font-size: 13px; font-weight: 800; }
.property-v5-links a:hover { background: rgba(255,255,255,.05); color: #fff; }
.property-v5-hero { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; padding: 18px 0 22px; }
.property-v5-hero-main,
.property-v5-side,
.property-v5-card,
.property-v5-insights article { border: 1px solid rgba(255,255,255,.09); border-radius: 22px; background: linear-gradient(145deg,#0e1b16,#0a1511); box-shadow: 0 18px 50px rgba(0,0,0,.22); }
.property-v5-hero-main { position: relative; overflow: hidden; padding: 34px; }
.property-v5-hero-main::after { content: ""; position: absolute; right: -140px; top: -170px; width: 360px; height: 360px; border-radius: 999px; background: radial-gradient(circle,#cfff24 0%,rgba(207,255,36,.18) 30%,transparent 70%); opacity: .18; }
.property-v5-eyebrow,
.property-v5-head > span { color: #d8ee9e; font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.property-v5-hero h1 { position: relative; margin: 12px 0 14px; max-width: 780px; color: #f7fbf8; font-size: clamp(34px, 5vw, 46px); line-height: 1.02; letter-spacing: 0; }
.property-v5-hero p,
.property-v5-card p,
.property-v5-insights p { color: #c1cec7; font-size: 14px; font-weight: 750; line-height: 1.62; }
.property-v5-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.property-v5-pills span,
.property-v5-legend span { border: 1px solid rgba(255,255,255,.09); border-radius: 999px; background: rgba(255,255,255,.04); padding: 9px 11px; color: #d7e0da; font-size: 12px; font-weight: 800; }
.property-v5-side { display: flex; flex-direction: column; justify-content: space-between; padding: 24px; }
.property-v5-side > span { color: #a9b7af; font-size: 12px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.property-v5-side > strong { display: block; margin: 8px 0 18px; color: #f7fbf8; font-size: 38px; font-weight: 950; line-height: 1; }
.property-v5-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.property-v5-facts div { border: 1px solid rgba(255,255,255,.09); border-radius: 15px; background: rgba(255,255,255,.04); padding: 13px; }
.property-v5-facts b,
.property-v5-facts small { display: block; }
.property-v5-facts b { color: #f7fbf8; font-size: 17px; }
.property-v5-facts small { margin-top: 4px; color: #a9b7af; font-size: 12px; font-weight: 800; }
.property-v5-side p { margin-top: 14px; border-top: 1px solid rgba(255,255,255,.09); padding-top: 14px; color: #dbe5df; font-size: 13px; }
.property-v5-location-summary { display: grid; gap: 12px; margin-top: 14px; border-top: 1px solid rgba(255,255,255,.09); padding-top: 14px; }
.property-v5-location-summary > span,
.property-v5-location-summary small { color: #a9b7af; font-size: 10px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.property-v5-location-summary > b { color: #f7fbf8; font-size: 14px; line-height: 1.35; }
.property-v5-location-summary > div { display: grid; gap: 8px; }
.property-v5-location-summary p { display: grid; grid-template-columns: 76px 1fr; gap: 10px; align-items: start; margin: 0; border: 0; border-radius: 10px; background: rgba(255,255,255,.04); padding: 10px; }
.property-v5-location-summary p strong { color: #e8f1ea; font-size: 12px; line-height: 1.35; }
.property-v5-location-summary section { display: grid; gap: 8px; }
.property-v5-note-list { display: grid; gap: 6px; }
.property-v5-note-list span { display: block; color: #d6e0da; font-size: 11px; font-weight: 750; line-height: 1.35; }
.property-v5-section { padding: 22px 0; scroll-margin-top: 80px; }
.property-v5-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.property-v5-head > div { min-width: 0; }
.property-v5-head h2 { margin: 0; color: #f7fbf8; font-size: 28px; line-height: 1.08; letter-spacing: 0; }
.property-v5-head p { margin: 6px 0 0; max-width: 720px; color: #a9b7af; font-size: 14px; font-weight: 750; line-height: 1.55; }
.property-v5-head > span { border: 1px solid rgba(207,255,36,.15); border-radius: 999px; background: rgba(207,255,36,.05); padding: 8px 10px; white-space: nowrap; }
.property-v5-kpis { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.property-v5-kpis article { min-height: 128px; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; background: #0c1713; padding: 18px; }
.property-v5-kpis span { display: inline-flex; min-height: 32px; align-items: center; border-radius: 10px; background: rgba(207,255,36,.1); padding: 7px 9px; color: #cfff24; font-size: 10px; font-weight: 900; }
.property-v5-kpis span b { margin-left: 6px; border-radius: 999px; background: rgba(17,24,20,.1); padding: 2px 6px; color: inherit; font-size: 11px; font-weight: 950; }
.property-v5-kpis strong { display: block; margin-top: 18px; color: #f7fbf8; font-size: 29px; font-weight: 950; line-height: 1; }
.property-v5-kpis p { margin: 4px 0 0; color: #a9b7af; font-size: 12px; font-weight: 850; }
.property-v5-kpis small { display: block; margin-top: 10px; color: #d6e0da; font-size: 11px; font-weight: 750; }
.property-v5-grid-2,
.property-v5-insights { display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px; }
.property-v5-card,
.property-v5-light,
.property-v5-insights article { padding: 22px; }
.property-v5-card h3,
.property-v5-light h3,
.property-v5-insights h3 { margin: 0 0 8px; color: #f7fbf8; font-size: 19px; line-height: 1.15; }
.property-v5-light { border-radius: 22px; background: #f7faf8; color: #122018; }
.property-v5-light h3 { color: #122018; }
.property-v5-map { position: relative; height: 390px; overflow: hidden; margin-top: 16px; border-radius: 18px; background: linear-gradient(rgba(6,17,12,.12),rgba(6,17,12,.12)), repeating-linear-gradient(0deg,#dbe6df 0 2px,transparent 2px 46px), repeating-linear-gradient(90deg,#dbe6df 0 2px,transparent 2px 46px), #edf3ef; }
.property-v5-map .road { position: absolute; border-radius: 999px; background: #c5d3ca; }
.property-v5-map .r1 { left: -15%; top: 46%; width: 130%; height: 18px; transform: rotate(17deg); }
.property-v5-map .r2 { left: -4%; top: 37%; width: 110%; height: 14px; transform: rotate(-36deg); }
.property-v5-map .r3 { left: 70%; top: -15%; width: 14px; height: 130%; transform: rotate(4deg); }
.property-v5-map .center-pin { position: absolute; left: 49%; top: 48%; width: 34px; height: 34px; border: 5px solid #fff; border-radius: 999px; background: #08110d; box-shadow: 0 6px 18px rgba(0,0,0,.28); transform: translate(-50%, -50%); }
.property-v5-map .pin { position: absolute; width: 15px; height: 15px; border: 3px solid #fff; border-radius: 999px; background: #52655a; box-shadow: 0 3px 10px rgba(0,0,0,.15); }
.property-v5-map .p1{left:28%;top:29%}.property-v5-map .p2{left:66%;top:22%}.property-v5-map .p3{left:77%;top:61%}.property-v5-map .p4{left:25%;top:72%}.property-v5-map .p5{left:57%;top:14%}.property-v5-map .p6{left:40%;top:61%}
.property-v5-map b { position: absolute; left: 52%; top: 54%; border-radius: 8px; background: #08110d; padding: 6px 8px; color: #fff; font-size: 11px; }
.property-v5-map.property-v5-real-map {
  padding: 0;
  background: #eef3ef;
  box-shadow: inset 0 0 0 1px rgba(18, 32, 24, .1);
}
.property-v5-environment-map { height: 520px; }
.property-v5-commerce-card-map {
  height: 330px;
  margin: 14px 0;
  border: 1px solid #d8e2d8;
  border-radius: 18px;
}
.property-v5-map.property-v5-real-map .google-report-map-canvas {
  position: absolute;
  inset: 0;
  min-height: 0;
  height: 100%;
  border-radius: inherit;
}
.property-v5-map.property-v5-real-map .google-map-legend {
  display: flex;
  flex-wrap: wrap;
  left: 14px;
  right: auto;
  bottom: 14px;
  max-width: calc(100% - 28px);
  border-color: rgba(18, 32, 24, .12);
  gap: 6px;
  padding: 7px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  color: #122018;
  box-shadow: 0 10px 24px rgba(18, 31, 24, .14);
}
.property-v5-map.property-v5-real-map .google-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  border-color: #dbe5dc;
  background: #ffffff;
  color: #122018;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 5px 12px rgba(18, 31, 24, .08);
}
.property-v5-map.property-v5-real-map .google-map-legend .legend-dot {
  flex: 0 0 auto;
  margin-right: 0;
}
.property-v5-commerce-card-map .google-map-legend {
  max-height: 82px;
  overflow: auto;
}
.property-v5-commerce-card-map .google-map-legend span {
  min-height: 24px;
  padding: 6px 8px;
  font-size: 10px;
}
.property-v5-map.property-v5-real-map .map-empty-state {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 6px;
  padding: 24px;
  background: linear-gradient(180deg, #f7faf8, #edf3ef);
  text-align: center;
}
.property-v5-map.property-v5-real-map .map-empty-state strong { color: #122018; font-size: 15px; }
.property-v5-map.property-v5-real-map .map-empty-state span { max-width: 320px; color: #5d6b63; font-size: 12px; font-weight: 750; line-height: 1.45; }
.property-v5-map-bars {
  display: grid;
  gap: 13px;
  margin-top: 16px;
}
.property-v5-map-bar {
  display: grid;
  gap: 6px;
  border-bottom: 1px solid #dfe5df;
  padding-bottom: 12px;
}
.property-v5-map-bar:last-child { border-bottom: 0; padding-bottom: 0; }
.property-v5-map-bar div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.property-v5-map-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #26342c;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.25;
}
.property-v5-map-bar .property-v5-category-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--dot, #36a3ff);
  box-shadow: 0 0 0 1px rgba(18,31,24,.12);
}
.property-v5-map-bar span em { font-style: normal; }
.property-v5-map-bar b {
  color: #111814;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}
.property-v5-map-bar small {
  display: block;
  padding-left: 20px;
  color: #4b594f;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.32;
}
.property-v5-map-bar .property-v5-category-bar {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e3ebe4;
}
.property-v5-map-bar .property-v5-category-bar::before {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,#b9ed22,#69d86f);
}
.property-v5-commerce-total-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin: 14px 0 12px;
  border: 1px solid #d8e2d8;
  border-radius: 16px;
  background: #f8faf7;
  padding: 14px;
}
.property-v5-commerce-total-card .property-v5-donut {
  flex: 0 0 auto;
  width: 118px;
  height: 118px;
  margin: 0;
}
.property-v5-commerce-total-card .property-v5-donut div {
  width: 74px;
  height: 74px;
  background: #ffffff;
}
.property-v5-commerce-total-card .property-v5-donut b {
  color: #111814;
  font-size: 25px;
}
.property-v5-commerce-total-card .property-v5-donut small { color: #5f6d64; }
.property-v5-commerce-total-card > span {
  color: #26342c;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}
.property-v5-commerce-caption {
  margin: 0 0 14px;
  color: #26342c;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.42;
}
.property-v5-takeaway {
  margin-top: 12px;
  border: 1px solid #cfe68f;
  border-radius: 16px;
  background: #f0f8d8;
  padding: 14px 15px;
  color: #17231b;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
  box-shadow: inset 4px 0 0 #b9ed22;
}
.property-v5-takeaway b {
  color: #111814;
  font-weight: 1000;
}
.property-v5-map-argument {
  margin-top: 18px;
}
.property-v5-legend { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.property-v5-row { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid rgba(255,255,255,.09); padding: 12px 0; font-size: 13px; }
.property-v5-light .property-v5-row { border-bottom-color: #dfe8e2; }
.property-v5-row span { color: #a9b7af; }
.property-v5-row span em { font-style: normal; }
.property-v5-row span i { display: inline-block; width: 9px; height: 9px; margin-right: 8px; border-radius: 999px; background: var(--dot, #36a3ff); box-shadow: 0 0 0 3px rgba(18,31,24,.08); }
.property-v5-light .property-v5-row span { color: #5d6b63; }
.property-v5-row b { min-width: 0; color: inherit; font-size: 14px; text-align: right; overflow-wrap: anywhere; }
.property-v5-row-detailed { display: grid; grid-template-columns: minmax(0, 1fr) max-content; align-items: center; padding: 14px 0; }
.property-v5-row-detailed span { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 3px 0; align-items: center; min-width: 0; color: #26342c; }
.property-v5-row-detailed span small { grid-column: 2; color: #647268; font-size: 11px; font-weight: 800; line-height: 1.32; }
.property-v5-row-detailed b { min-width: 32px; font-size: 16px; white-space: nowrap; overflow-wrap: normal; }
.property-v5-callout { margin-top: 16px; border: 1px solid rgba(207,255,36,.14); border-radius: 14px; background: rgba(207,255,36,.07); padding: 14px 15px; color: #dfe8e2; font-size: 13px; font-weight: 750; line-height: 1.55; }
.property-v5-light .property-v5-callout { border-color: #d9ed9d; background: #eef8cf; color: #2b382f; }
.property-v5-bar { margin: 14px 0; }
.property-v5-bar div { display: flex; justify-content: space-between; margin-bottom: 7px; font-size: 12px; font-weight: 850; }
.property-v5-bar i { display: block; height: 9px; border-radius: 999px; background: linear-gradient(90deg,#9de72e var(--bar), #dfe8e2 var(--bar)); }
.property-v5-donut { display: grid; place-items: center; width: 158px; height: 158px; margin: 18px 0; border-radius: 999px; background: conic-gradient(#cfff24 0 34%,#7faa25 34% 59%,#4e6b57 59% 78%,#24362c 78% 100%); }
.property-v5-donut div { display: grid; place-items: center; width: 100px; height: 100px; border-radius: 999px; background: #0c1713; text-align: center; }
.property-v5-donut b { color: #f7fbf8; font-size: 28px; line-height: 1; }
.property-v5-donut small { color: #a9b7af; font-size: 10px; font-weight: 850; }
.property-v5-point { display: flex; gap: 12px; align-items: flex-start; border-bottom: 1px solid rgba(255,255,255,.09); padding: 13px 0; }
.property-v5-point-icon { display: grid; flex: 0 0 auto; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: rgba(207,255,36,.09); color: #cfff24; font-size: 13px; font-weight: 950; }
.property-v5-point b,
.property-v5-point span { display: block; }
.property-v5-point b { color: #f7fbf8; font-size: 13px; }
.property-v5-point span { margin-top: 3px; color: #a9b7af; font-size: 11px; font-weight: 800; }
.property-v5-movement { position: relative; height: 165px; overflow: hidden; margin-top: 18px; border-radius: 16px; background: linear-gradient(180deg,rgba(207,255,36,.08),transparent), repeating-linear-gradient(0deg,rgba(255,255,255,.05) 0 1px,transparent 1px 42px); }
.property-v5-movement svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.property-v5-axis { display: flex; justify-content: space-between; margin-top: 8px; color: #a9b7af; font-size: 10px; font-weight: 800; }
.property-v5-links-list { display: grid; gap: 8px; margin: 14px 0 0; padding: 0; list-style: none; }
.property-v5-links-list a,
.property-v5-links-list span { display: block; border: 1px solid rgba(255,255,255,.09); border-radius: 10px; padding: 10px; color: #dfe8e2; font-size: 12px; font-weight: 850; }
.property-v5-insights { grid-template-columns: 1fr 1fr; }
.property-v5-insights p { margin: 13px 0 0; border-top: 1px solid rgba(255,255,255,.09); padding-top: 13px; }
.property-v5-summary { margin: 24px 0 46px; border-radius: 28px; background: linear-gradient(135deg,#cfff24 0%,#9fe232 100%); padding: 30px; color: #0b140f; }
.property-v5-summary h2 { margin: 0 0 7px; color: #0b140f; font-size: 30px; line-height: 1.05; }
.property-v5-summary p { margin: 0; color: #32402f; font-size: 13px; font-weight: 800; }
.property-v5-summary > div { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-top: 20px; }
.property-v5-summary span { border: 1px solid rgba(10,18,14,.08); border-radius: 15px; background: rgba(10,18,14,.08); padding: 15px; }
.property-v5-summary b,
.property-v5-summary small { display: block; }
.property-v5-summary b { font-size: 24px; }
.property-v5-summary small { margin-top: 3px; color: #394738; font-size: 10px; font-weight: 850; }
.property-v5-summary > small { display: block; margin-top: 16px; color: #4d5a20; font-size: 11px; font-weight: 800; line-height: 1.55; }

.property-report-body { background: #f5f7f4; color: #142019; }
.property-report-body .site-header,
.property-report-body .report-header { background: rgba(255,255,255,.9); border-bottom-color: #dfe5df; color: #142019; }
.property-v5-shell { color: #142019; }
.property-v5-nav { border-bottom-color: #dfe5df; background: rgba(245,247,244,.92); }
.property-v5-brand { color: #142019; }
.property-v5-brand .brand-mark { background: var(--accent); box-shadow: 0 0 28px rgba(207,255,36,.22); }
.property-v5-links a { color: #66736a; }
.property-v5-links a:hover { background: #eef3ec; color: #142019; }
.property-v5-hero-main,
.property-v5-side,
.property-v5-card,
.property-v5-insights article { border-color: #dfe5df; background: #ffffff; box-shadow: 0 18px 45px rgba(19,32,25,.08); }
.property-v5-hero-main::after { background: radial-gradient(circle,#9cc51f 0%,rgba(156,197,31,.12) 34%,transparent 70%); opacity: .55; }
.property-v5-eyebrow,
.property-v5-head > span { color: #6e8f1f; }
.property-v5-hero h1,
.property-v5-card h3,
.property-v5-insights h3,
.property-v5-facts b,
.property-v5-location-summary > b,
.property-v5-point b,
.property-v5-kpis strong,
.property-v5-head h2 { color: #142019; }
.property-v5-hero p,
.property-v5-card p,
.property-v5-insights p,
.property-v5-head p { color: #5f6d64; }
.property-v5-pills span,
.property-v5-legend span { border-color: #dde6dc; background: #f6f8f5; color: #3d4b42; }
.property-v5-side > span,
.property-v5-location-summary > span,
.property-v5-location-summary small,
.property-v5-facts small,
.property-v5-kpis p,
.property-v5-kpis small,
.property-v5-row span,
.property-v5-point span,
.property-v5-note-list span,
.property-v5-axis { color: #6c7a70; }
.property-v5-side > strong { color: #142019; }
.property-v5-facts div,
.property-v5-location-summary p,
.property-v5-kpis article { border-color: #dfe5df; background: #f8faf7; }
.property-v5-location-summary { gap: 10px; }
.property-v5-location-summary > div { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.property-v5-location-summary p { grid-template-columns: auto 1fr; min-height: 46px; align-items: center; padding: 9px 10px; }
.property-v5-location-summary small { color: #111814; font-size: 10px; }
.property-v5-location-summary p strong { color: #111814; font-size: 12px; font-weight: 900; text-align: right; }
.property-v5-location-summary,
.property-v5-side p,
.property-v5-row,
.property-v5-point,
.property-v5-insights p { border-color: #dfe5df; }
.property-v5-kpis span { background: #eef6d9; color: #5e7f13; }
.property-v5-card .property-v5-row { border-bottom-color: #dfe5df; }
.property-v5-callout { border-color: #dcebb2; background: #f4f9e8; color: #334137; }
.property-v5-light { border: 1px solid #dfe5df; background: #ffffff; color: #142019; box-shadow: 0 18px 45px rgba(19,32,25,.08); }
.property-v5-light h3 { color: #142019; }
.property-v5-light .property-v5-row { border-bottom-color: #dfe5df; }
.property-v5-light .property-v5-row span { color: #6c7a70; }
.property-v5-donut div { background: #ffffff; }
.property-v5-donut b { color: #142019; }
.property-v5-donut small { color: #6c7a70; }
.property-v5-point-icon { background: #eef6d9; color: #5e7f13; }
.property-v5-links-list a,
.property-v5-links-list span { border-color: #dfe5df; background: #f8faf7; color: #334137; }
.property-v5-movement { background: linear-gradient(180deg,rgba(156,197,31,.08),transparent), repeating-linear-gradient(0deg,rgba(20,32,25,.06) 0 1px,transparent 1px 42px), #ffffff; }
.property-v5-summary { background: linear-gradient(135deg,#eef6d9 0%,#dcefb0 100%); color: #142019; box-shadow: 0 18px 45px rgba(19,32,25,.08); }
.property-report-body .property-v5-card,
.property-report-body .property-v5-light,
.property-report-body .property-v5-insights article,
.property-report-body .property-v5-kpis article,
.property-report-body .property-v5-side,
.property-report-body .property-v5-hero-main { box-shadow: 0 16px 34px rgba(18,31,24,.1); }
.property-report-body .property-v5-card p,
.property-report-body .property-v5-light p,
.property-report-body .property-v5-insights p,
.property-report-body .property-v5-head p,
.property-report-body .property-v5-hero p { color: #26342c; font-weight: 800; }
.property-report-body .property-v5-row b,
.property-report-body .property-v5-light .property-v5-row b,
.property-report-body .property-v5-card .property-v5-row b { color: #111814; font-weight: 950; }
.property-report-body .property-v5-row span,
.property-report-body .property-v5-light .property-v5-row span,
.property-report-body .property-v5-kpis p,
.property-report-body .property-v5-kpis small,
.property-report-body .property-v5-point span,
.property-report-body .property-v5-note-list span,
.property-report-body .property-v5-axis { color: #3f4d44; }
.property-report-body .property-v5-callout,
.property-report-body .property-v5-light .property-v5-callout { margin-top: 18px; border-color: #cfe68f; background: #f0f8d8; color: #17231b; box-shadow: inset 4px 0 0 #b9ed22; }
.property-v5-prospect-list { margin: 10px 0 8px; padding-left: 20px; }
.property-v5-prospect-list li { margin: 7px 0; padding-left: 3px; }
.property-v5-callout p { margin: 8px 0 0; }
.property-report-body .property-v5-links-list a,
.property-report-body .property-v5-links-list span,
.property-report-body .property-v5-location-summary p,
.property-report-body .property-v5-facts div { border-color: #d8e2d8; background: #ffffff; box-shadow: 0 8px 18px rgba(18,31,24,.05); }
.property-report-body .property-v5-location-summary p { border: 1px solid #b8c9bb; box-shadow: 0 10px 22px rgba(18,31,24,.08); }
.property-report-body .property-v5-location-summary { border-top-color: #c6d3c8; }
.property-report-body .property-v5-section { padding: 28px 0; }
.property-report-body .property-v5-head { margin-bottom: 18px; }
.property-report-body .property-v5-head > span { border-color: #d6eb9a; background: #f2fadf; color: #5f7f16; }
.property-report-body .property-v5-summary p,
.property-report-body .property-v5-summary small,
.property-report-body .property-v5-summary > small { color: #1e2d22; }
.property-v5-local-info { margin: -4px 0 20px; padding: 18px; }
.property-v5-local-head { display: flex; align-items: start; justify-content: space-between; gap: 14px; margin-bottom: 12px; }
.property-v5-local-head h3 { margin: 0; color: #111814; font-size: 18px; line-height: 1.15; }
.property-v5-local-head p { margin: 4px 0 0; color: #3f4d44; font-size: 12px; font-weight: 850; line-height: 1.35; }
.property-v5-local-head > span { border: 1px solid #d6eb9a; border-radius: 999px; background: #f2fadf; padding: 7px 9px; color: #5f7f16; font-size: 10px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.property-v5-local-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.property-v5-local-grid p { margin: 0; border: 1px solid #d8e2d8; border-radius: 12px; background: #f8faf7; padding: 10px 11px; box-shadow: 0 8px 18px rgba(18,31,24,.04); }
.property-v5-local-grid span { color: #111814; font-size: 11.5px; font-weight: 900; line-height: 1.3; }
.property-v5-detail-note { margin-top: 12px; border: 1px solid #d8e2d8; border-radius: 16px; background: #ffffff; padding: 15px; box-shadow: 0 10px 24px rgba(18,31,24,.06); }
.property-v5-detail-note b { display: block; margin-bottom: 10px; color: #111814; font-size: 13px; font-weight: 950; }
.property-v5-free-note { margin: 0; color: #26342c; font-size: 12.5px; font-weight: 850; line-height: 1.55; }
.property-v5-detail-note .property-v5-note-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.property-v5-detail-note .property-v5-note-list span { border: 1px solid #e0e7df; border-radius: 12px; background: #f8faf7; padding: 10px 11px; color: #26342c; font-size: 12px; font-weight: 850; line-height: 1.35; }
.property-v5-market-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
.property-v5-market-composition { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin: 10px 0 8px; }
.property-v5-market-composition .property-v5-donut { flex: 0 0 auto; width: 178px; height: 178px; margin: 4px 0; }
.property-v5-market-composition .property-v5-donut div { width: 112px; height: 112px; }
.property-v5-market-total { display: inline-grid; min-width: 150px; margin: 12px 0 8px; border: 1px solid #d8e2d8; border-radius: 16px; background: #f8faf7; padding: 14px 16px; }
.property-v5-market-total strong { color: #111814; font-size: 30px; font-weight: 950; line-height: 1; }
.property-v5-market-total span { margin-top: 4px; color: #5f6d64; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.property-v5-market-caption { display: grid; max-width: 260px; gap: 7px; border: 1px solid #d8e2d8; border-radius: 16px; background: #f8faf7; padding: 14px 16px; }
.property-v5-market-caption strong { color: #111814; font-size: 15px; font-weight: 950; }
.property-v5-market-caption span { color: #3f4d44; font-size: 12px; font-weight: 800; line-height: 1.45; }
.property-v5-commerce-total-panel .property-v5-market-composition {
  align-content: center;
  min-height: 230px;
}
.property-v5-market-bars { display: grid; gap: 11px; margin-top: 12px; }
.property-v5-market-bar { display: grid; gap: 7px; }
.property-v5-market-bar div { display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.property-v5-market-bar span { color: #3f4d44; font-size: 12px; font-weight: 900; line-height: 1.25; }
.property-v5-market-bar b { color: #111814; font-size: 13px; font-weight: 950; text-align: right; }
.property-v5-market-bar i { display: block; height: 10px; overflow: hidden; border-radius: 999px; background: #e3ebe4; }
.property-v5-market-bar i::before { content: ""; display: block; width: var(--bar); height: 100%; border-radius: inherit; background: linear-gradient(90deg,#b9ed22,#69d86f); }
.property-v5-zone-chart-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 16px 0 4px; }
.property-v5-mini-ring { display: grid; place-items: center; min-height: 150px; border: 1px solid #d8e2d8; border-radius: 18px; background: #f8faf7; }
.property-v5-mini-ring > div { display: grid; place-items: center; width: 132px; height: 132px; border-radius: 999px; background: conic-gradient(#b9ed22 0 var(--pct), #e1eadf var(--pct) 100%); }
.property-v5-mini-ring > div > b,
.property-v5-mini-ring > div > small { display: grid; place-items: center; width: 92px; min-height: 42px; background: #ffffff; text-align: center; }
.property-v5-mini-ring > div > b { align-self: end; border-radius: 999px 999px 0 0; padding: 12px 10px 2px; color: #111814; font-size: 13px; font-weight: 950; line-height: 1.08; }
.property-v5-mini-ring > div > small { align-self: start; border-radius: 0 0 999px 999px; padding: 1px 10px 12px; color: #5f6d64; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .03em; line-height: 1.12; }
.property-v5-gauge-card {
  display: grid;
  place-items: center;
  min-height: 150px;
  overflow: hidden;
  border: 1px solid #d8e2d8;
  border-radius: 18px;
  background: #f8faf7;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.65);
}
.property-v5-gauge {
  position: relative;
  width: 190px;
  height: 118px;
  margin-top: 10px;
}
.property-v5-gauge-segment {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 11px;
  height: 43px;
  border-radius: 999px;
  background: #dfe8e2;
  transform: translateX(-50%) rotate(var(--angle)) translateY(-72px);
  transform-origin: 50% 80px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
}
.property-v5-gauge-segment.is-active {
  background: linear-gradient(180deg,#b9ed22,#69d86f);
  box-shadow: 0 0 10px rgba(185,237,34,.16), inset 0 0 0 1px rgba(255,255,255,.5);
}
.property-v5-gauge-center {
  position: absolute;
  left: 50%;
  bottom: 8px;
  display: grid;
  width: 132px;
  min-height: 58px;
  place-items: center;
  text-align: center;
  transform: translateX(-50%);
}
.property-v5-gauge-center b {
  color: #111814;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.08;
}
.property-v5-gauge-center small {
  margin-top: 4px;
  color: #5f6d64;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1.1;
  text-transform: uppercase;
}
.property-v5-activity-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 16px;
  align-items: end;
  min-height: 150px;
  overflow: hidden;
  border: 1px solid #d8e2d8;
  border-radius: 18px;
  background: #f8faf7;
  padding: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.65);
}
.property-v5-activity-copy {
  display: grid;
  gap: 8px;
  align-self: center;
}
.property-v5-activity-copy span {
  color: #5f6d64;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .04em;
  line-height: 1.2;
  text-transform: uppercase;
}
.property-v5-activity-copy b {
  color: #111814;
  font-size: 34px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: .95;
}
.property-v5-activity-copy strong {
  color: #6f9f18;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.08;
}
.property-v5-activity-stack {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
}
.property-v5-activity-bar {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: #e3ebe4;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.65);
}
.property-v5-activity-bar.is-active {
  background: linear-gradient(90deg,#b9ed22,#69d86f);
  box-shadow: 0 0 10px rgba(185,237,34,.16), inset 0 0 0 1px rgba(255,255,255,.5);
}
.property-v5-economic-signal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 14px; align-items: stretch; }
.property-v5-spend-card { display: grid; align-content: space-between; gap: 14px; min-height: 238px; border: 1px solid #d4eaa0; border-radius: 18px; background: #f3fadf; padding: 14px; }
.property-v5-spend-card span { color: #5f7f16; font-size: 10px; font-weight: 950; text-transform: uppercase; letter-spacing: .04em; }
.property-v5-spend-card strong { display: block; margin-top: 5px; color: #111814; font-size: 22px; font-weight: 950; line-height: 1; }
.property-v5-spend-card p { margin: 7px 0 0; color: #3f4d44; font-size: 11px; font-weight: 850; line-height: 1.35; }
.property-v5-spend-meter {
  position: relative;
  height: 36px;
  overflow: visible;
  border-radius: 999px;
  background: #ffffff;
  padding: 5px;
  box-shadow: inset 0 0 0 1px rgba(213,224,213,.9), 0 10px 22px rgba(18,31,24,.06);
}
.property-v5-spend-meter::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,#ff9f8f 0%,#f8d857 50%,#67e66a 100%);
}
.property-v5-spend-meter i {
  position: absolute;
  top: 50%;
  left: var(--bar);
  display: block;
  width: 6px;
  height: 26px;
  border-radius: 999px;
  background: #111814;
  transform: translate(-3px,-50%);
  box-shadow: 0 0 0 3px rgba(255,255,255,.7);
}
.property-v5-signal-curve-card { display: grid; gap: 10px; min-height: 238px; border: 1px solid #d4eaa0; border-radius: 18px; background: #ffffff; padding: 14px; box-shadow: 0 12px 24px rgba(18,31,24,.06); }
.property-v5-signal-curve-head span { color: #5f7f16; font-size: 10px; font-weight: 950; text-transform: uppercase; letter-spacing: .04em; }
.property-v5-signal-curve-head p { margin: 5px 0 0; color: #3f4d44; font-size: 11px; font-weight: 850; line-height: 1.35; }
.property-v5-signal-curve { min-height: 150px; overflow: hidden; border-radius: 14px; background: linear-gradient(180deg,#ffffff 0%,#fbfdf8 100%); box-shadow: inset 0 0 0 1px rgba(216,226,216,.7); }
.property-v5-signal-curve svg { display: block; width: 100%; height: 164px; }
.property-v5-signal-value-label { display: flex; width: 100%; height: 22px; align-items: center; justify-content: flex-start; color: #111814; font-family: Inter, Arial, sans-serif; font-size: 12px; font-weight: 950; line-height: 1; letter-spacing: 0; white-space: nowrap; text-shadow: 0 1px 0 rgba(255,255,255,.9); }
.property-v5-signal-curve-legend { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px 10px; }
.property-v5-signal-curve-legend div { display: flex; min-width: 0; align-items: center; gap: 10px; }
.property-v5-signal-curve-legend span { display: inline-flex; min-width: 0; align-items: center; gap: 7px; color: #3f4d44; font-size: 11px; font-weight: 900; line-height: 1.25; }
.property-v5-signal-curve-legend span i { display: inline-block; width: 8px; height: 8px; flex: 0 0 auto; border-radius: 999px; background: var(--signal-color); box-shadow: 0 0 0 3px rgba(18,31,24,.06); }
.property-v5-signal-curve-legend p { margin: 0; color: #3f4d44; font-size: 11px; font-weight: 850; line-height: 1.35; }
.property-v5-commerce-split { display: grid; grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr); gap: 16px; align-items: start; }
.property-v5-commerce-split > .property-v5-card > h3 { min-height: 22px; }
.property-v5-commerce-split > .property-v5-card > p { min-height: 44px; margin-bottom: 12px; }
.property-v5-anchor-card { position: relative; margin: 0; border-color: #b8d94d; background: linear-gradient(160deg,#ffffff 0%,#f7fbec 100%); }
.property-v5-card-spotlight { display: grid; gap: 8px; margin-bottom: 14px; }
.property-v5-card-spotlight span { width: max-content; border: 1px solid #b8d94d; border-radius: 999px; background: #eff8d4; padding: 6px 9px; color: #5f7f16; font-size: 10px; font-weight: 950; text-transform: uppercase; letter-spacing: .04em; }
.property-v5-card-spotlight h3 { margin: 0; color: #111814; font-size: 23px; line-height: 1.08; }
.property-v5-card-spotlight p { min-height: 0; margin: 0; color: #334238; font-size: 13px; font-weight: 850; line-height: 1.48; }
.property-v5-card-spotlight-soft span { border-color: #d8e2d8; background: #f8faf7; color: #607066; }
.property-v5-card-spotlight-soft h3 { font-size: 21px; }
.property-v5-anchor-stat { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 12px; align-items: center; margin: 0 0 14px; border: 1px solid #d4eaa0; border-radius: 16px; background: #f3fadf; padding: 12px 14px; }
.property-v5-anchor-stat strong { color: #111814; font-size: 32px; font-weight: 950; line-height: 1; }
.property-v5-anchor-stat span { color: #3f4d44; font-size: 12px; font-weight: 900; line-height: 1.3; }
.property-v5-anchor-list { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 12px; }
.property-v5-anchor-list span { display: inline-grid; gap: 3px; }
.property-v5-anchor-list small { color: #5f7f16; font-size: 9px; font-weight: 950; text-transform: uppercase; letter-spacing: .05em; }
.property-v5-anchor-list a,
.property-v5-anchor-list span > span { display: inline-flex; min-width: 0; max-width: 100%; border: 1px solid #d8e2d8; border-radius: 14px; background: #f8faf7; padding: 10px 12px; color: #26342c; font-size: 12px; font-weight: 900; line-height: 1.25; text-decoration: none; overflow-wrap: anywhere; box-shadow: 0 6px 14px rgba(18,31,24,.05); }
.property-v5-anchor-list a:hover { border-color: #bde944; color: #111814; }
.property-v5-commerce-directory { display: grid; gap: 12px; }
.property-v5-commerce-split .commerce-groups { gap: 10px; }
.property-v5-commerce-split .commerce-groups details { border-color: #dfe5df; background: #f8faf7; }
.property-v5-commerce-split .commerce-groups summary { padding: 12px 13px; }
.property-v5-commerce-split .commerce-groups summary strong { display: inline-flex; align-items: center; gap: 8px; color: #111814; font-size: 14px; }
.property-v5-commerce-split .commerce-groups summary small { color: #607066; font-size: 11px; font-weight: 900; }
.property-v5-commerce-split .commerce-groups details > p { margin: -2px 13px 11px; color: #3f4d44; font-size: 12px; font-weight: 800; line-height: 1.45; }
.property-v5-commerce-split .commerce-groups details > div { gap: 8px; padding: 0 13px 13px; }
.property-v5-commerce-split .commerce-groups .commerce-place { display: inline-flex; min-width: 0; max-width: 100%; }
.property-v5-commerce-split .commerce-groups .commerce-extra { display: none; }
.property-v5-commerce-split .commerce-groups .commerce-expanded .commerce-extra { display: inline-flex; }
.property-v5-commerce-split .commerce-groups a,
.property-v5-commerce-split .commerce-groups .commerce-more-button { min-width: 0; max-width: 100%; border-color: #d8e2d8; background: #ffffff; color: #26342c; line-height: 1.25; white-space: normal; overflow-wrap: anywhere; box-shadow: 0 6px 14px rgba(18,31,24,.05); }
.property-v5-commerce-split .commerce-groups a:hover { border-color: #bde944; color: #111814; }
.property-v5-commerce-split .commerce-groups .commerce-more-button { cursor: pointer; color: #5f7f16; font-weight: 950; }
.property-v5-mobility-access { display: grid; grid-template-columns: minmax(340px, 1.08fr) minmax(300px, .92fr); gap: 16px; margin-bottom: 16px; align-items: start; }
.property-v5-roads-map { height: 360px; margin-top: 14px; }
.property-v5-road-table { display: grid; gap: 8px; margin-top: 14px; }
.property-v5-road-table-head,
.property-v5-road-table-row { display: grid; grid-template-columns: minmax(150px, 1.45fr) .75fr .65fr .65fr; gap: 8px; align-items: center; border: 1px solid #d8e2d8; border-radius: 14px; background: #f8faf7; padding: 10px 11px; }
.property-v5-road-table-head { background: #eef6d9; color: #5f7f16; font-size: 10px; font-weight: 950; letter-spacing: .04em; text-transform: uppercase; }
.property-v5-road-table-head span:nth-child(n+3) { font-size: 15px; letter-spacing: 0; }
.property-v5-road-table-row strong,
.property-v5-road-table-row a,
.property-v5-road-table-row span { min-width: 0; color: #17231b; font-size: 12px; line-height: 1.25; overflow-wrap: anywhere; }
.property-v5-road-table-row strong { font-weight: 950; }
.property-v5-road-table-row a { text-decoration: none; }
.property-v5-road-table-row a:hover { color: #5f7f16; }
.property-v5-road-table-row span { color: #3f4d44; font-weight: 850; }
.property-v5-road-estimate-note { margin: 10px 0 0; color: #3f4d44; font-size: 11px; font-weight: 800; line-height: 1.45; }
.property-v5-map-tooltip { display: grid; grid-template-columns: repeat(2, max-content); gap: 5px 8px; margin-top: 6px; color: #26342c; font-size: 11px; font-weight: 900; }
.property-v5-map-tooltip span { grid-column: 1 / -1; color: #111814; font-size: 12px; }
.property-v5-map-tooltip small { color: #5f6d64; font-size: 11px; font-weight: 900; }
.property-v5-mobility-cards { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 14px 0 0; }
.property-v5-mobility-cards article { margin: 0; border: 1px solid #d8e2d8; border-radius: 16px; background: #ffffff; padding: 14px 16px; box-shadow: 0 12px 24px rgba(18,31,24,.07); }
.property-v5-mobility-cards span { display: inline-flex; width: max-content; border-radius: 999px; background: #f2fadf; color: #587711; padding: 5px 9px; font-size: 10px; font-weight: 950; text-transform: uppercase; letter-spacing: .04em; }
.property-v5-mobility-cards strong { display: block; margin-top: 10px; color: #111814; font-size: 24px; line-height: 1.04; font-weight: 950; letter-spacing: 0; }
.property-v5-mobility-cards p { display: inline-flex; width: max-content; max-width: 100%; margin: 8px 0 0; border: 1px solid #7a9f18; border-radius: 999px; background: #d8f07f; padding: 6px 9px; color: #050805; font-size: 12.5px; line-height: 1.2; font-weight: 1000; overflow-wrap: anywhere; box-shadow: inset 0 0 0 1px rgba(255,255,255,.65), 0 4px 10px rgba(18,31,24,.08); text-shadow: none; }
.property-v5-mobility-cards small { display: block; margin-top: 9px; color: #3f4d44; font-size: 10.5px; line-height: 1.4; font-weight: 800; }
.property-v5-pedestrian-note strong { font-size: 24px; }
.property-report-body .property-v5-kpis article { min-height: 142px; }
.property-report-body .property-v5-kpis strong { font-size: 27px; line-height: 1.08; }
.property-report-body .property-v5-kpis small { line-height: 1.35; }
.property-report-body .property-v5-kpis .property-v5-road-note { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3px 8px; margin-top: 7px; }
.property-report-body .property-v5-kpis .property-v5-road-note span { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 3px; align-items: start; min-width: 0; color: #202a24; font-size: 7.4px; font-weight: 850; line-height: 1.12; }
.property-report-body .property-v5-kpis .property-v5-road-note b { color: #111814; font-size: 6.8px; font-weight: 950; line-height: 1.12; }
.property-report-body .property-v5-kpis .property-v5-road-note strong { min-width: 0; color: #202a24; font-size: 7.4px; font-weight: 850; line-height: 1.12; overflow-wrap: anywhere; }
.property-report-body .property-v5-kpis .property-v5-road-note em { color: #66746b; font-size: 6.6px; font-style: normal; font-weight: 950; line-height: 1.12; white-space: nowrap; }
.property-report-body .property-v5-road-kpi { padding-top: 15px; }
@media (max-width: 980px) {
  .property-v5-shell { width: min(100% - 36px, 1220px); }
  .property-v5-links { display: none; }
  .property-v5-hero,
  .property-v5-grid-2,
  .property-v5-market-grid,
  .property-v5-commerce-split,
  .property-v5-economic-signal-grid,
  .property-v5-mobility-access,
  .property-v5-insights { grid-template-columns: 1fr; }
  .property-v5-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .property-v5-summary > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .property-v5-local-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .property-v5-mobility-cards { grid-template-columns: 1fr; }
  .property-v5-detail-note .property-v5-note-list { grid-template-columns: 1fr; }
  .property-v5-hero h1 { font-size: clamp(34px, 7vw, 44px); }
  .property-v5-map { height: 360px; }
  .property-v5-environment-map { height: 460px; }
  .property-v5-market-caption { max-width: none; flex: 1 1 240px; }
}
@media (max-width: 620px) {
  .property-v5-shell { width: min(100% - 24px, 1220px); padding-top: 10px; }
  .property-v5-nav { min-height: 58px; gap: 10px; }
  .property-v5-brand { font-size: 15px; }
  .property-v5-section { padding: 20px 0; scroll-margin-top: 64px; }
  .property-v5-head { display: grid; align-items: start; gap: 9px; margin-bottom: 12px; }
  .property-v5-head h2 { font-size: 23px; line-height: 1.12; }
  .property-v5-head p { font-size: 13px; line-height: 1.42; }
  .property-v5-head > span { width: max-content; padding: 7px 9px; font-size: 10px; }
  .property-v5-hero-main,
  .property-v5-side,
  .property-v5-card,
  .property-v5-light,
  .property-v5-insights article { padding: 18px; }
  .property-v5-kpis,
  .property-v5-facts,
  .property-v5-summary > div { grid-template-columns: 1fr; }
  .property-v5-hero { gap: 12px; padding-top: 10px; }
  .property-v5-hero h1 { margin: 10px 0 12px; font-size: 32px; line-height: 1.03; }
  .property-v5-hero p,
  .property-v5-card p,
  .property-v5-insights p { font-size: 13px; line-height: 1.48; }
  .property-v5-pills span { border-radius: 14px; padding: 8px 10px; }
  .property-v5-side > strong { font-size: 30px; }
  .property-v5-facts div,
  .property-v5-kpis article { min-height: auto; }
  .property-v5-kpis strong { margin-top: 13px; font-size: 25px; overflow-wrap: anywhere; }
  .property-v5-kpis span { min-height: 0; line-height: 1.2; }
  .property-report-body .property-v5-kpis .property-v5-road-note { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .property-v5-map { height: 310px; border-radius: 16px; }
  .property-v5-environment-map { height: 340px; }
  .property-v5-roads-map { height: 300px; }
  .property-v5-map.property-v5-real-map .google-map-legend { left: 10px; right: 10px; bottom: 10px; max-width: none; justify-content: flex-start; border-radius: 12px; padding: 6px; }
  .property-v5-map.property-v5-real-map .google-map-legend span { min-height: 24px; padding: 5px 7px; font-size: 9.5px; }
  .property-v5-location-summary > div { grid-template-columns: 1fr; }
  .property-v5-location-summary p { grid-template-columns: 76px 1fr; gap: 8px; }
  .property-v5-location-summary p strong { text-align: left; }
  .property-v5-row { display: grid; grid-template-columns: 1fr; gap: 4px; padding: 10px 0; }
  .property-v5-row b { text-align: left; }
  .property-v5-row-detailed { grid-template-columns: minmax(0, 1fr) max-content; gap: 8px; }
  .property-v5-row-detailed b { text-align: right; }
  .property-v5-local-grid { grid-template-columns: 1fr; }
  .property-v5-local-head { display: grid; gap: 8px; }
  .property-v5-local-head > span { width: max-content; }
  .property-v5-zone-chart-grid { grid-template-columns: 1fr; }
  .property-v5-mini-ring { min-height: 134px; }
  .property-v5-mini-ring > div { width: 118px; height: 118px; }
  .property-v5-mini-ring > div > b,
  .property-v5-mini-ring > div > small { width: 84px; }
  .property-v5-gauge-card { min-height: 138px; }
  .property-v5-gauge {
    width: 176px;
    height: 110px;
  }
  .property-v5-gauge-segment {
    width: 10px;
    height: 39px;
    transform: translateX(-50%) rotate(var(--angle)) translateY(-66px);
    transform-origin: 50% 74px;
  }
  .property-v5-gauge-center { width: 122px; }
  .property-v5-gauge-center b { font-size: 14px; }
  .property-v5-activity-card {
    grid-template-columns: 1fr;
    min-height: 138px;
    gap: 12px;
  }
  .property-v5-activity-stack {
    width: 100%;
  }
  .property-v5-spend-card { gap: 10px; }
  .property-v5-signal-curve-legend { grid-template-columns: 1fr; }
  .property-v5-market-composition { align-items: stretch; }
  .property-v5-market-composition .property-v5-donut { width: 146px; height: 146px; }
  .property-v5-market-composition .property-v5-donut div { width: 96px; height: 96px; }
  .property-v5-market-caption { max-width: none; width: 100%; }
  .property-v5-commerce-total-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .property-v5-commerce-total-card .property-v5-donut {
    width: 104px;
    height: 104px;
  }
  .property-v5-commerce-total-card .property-v5-donut div {
    width: 68px;
    height: 68px;
  }
  .property-v5-map-bar div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .property-v5-map-bar b { text-align: left; }
  .property-v5-market-bar div { align-items: start; flex-direction: column; gap: 4px; }
  .property-v5-market-bar b { text-align: left; }
  .property-v5-anchor-list { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .property-v5-anchor-list span { width: 100%; }
  .property-v5-anchor-list a,
  .property-v5-anchor-list span > span { width: 100%; justify-content: flex-start; border-radius: 14px; padding: 10px 12px; }
  .property-v5-commerce-split > .property-v5-card > h3,
  .property-v5-commerce-split > .property-v5-card > p { min-height: 0; }
  .property-v5-commerce-split .commerce-groups summary { align-items: flex-start; gap: 6px; }
  .property-v5-commerce-split .commerce-groups summary strong,
  .property-v5-commerce-split .commerce-groups summary small { width: 100%; }
  .property-v5-commerce-split .commerce-groups details > div { display: grid; grid-template-columns: 1fr; }
  .property-v5-commerce-split .commerce-groups .commerce-place,
  .property-v5-commerce-split .commerce-groups a,
  .property-v5-commerce-split .commerce-groups .commerce-more-button { width: 100%; justify-content: flex-start; }
  .property-v5-mobility-cards article { padding: 16px; }
  .property-v5-road-table-head { display: none; }
  .property-v5-road-table-row { grid-template-columns: 1fr 1fr; gap: 7px 10px; }
  .property-v5-road-table-row strong { grid-column: 1 / -1; }
  .property-v5-road-table-row span:nth-child(2)::before { content: "Distancia: "; color: #6c7a70; font-weight: 800; }
  .property-v5-road-table-row span:nth-child(3)::before { content: "Caminando: "; color: #6c7a70; font-weight: 800; }
  .property-v5-road-table-row span:nth-child(4)::before { content: "Coche: "; color: #6c7a70; font-weight: 800; }
  .property-v5-mobility-cards strong,
  .property-v5-pedestrian-note strong { font-size: 22px; }
  .property-v5-summary { margin-bottom: 28px; border-radius: 22px; padding: 22px; }
  .property-v5-summary h2 { font-size: 24px; }
}
@media (max-width: 420px) {
  .property-v5-shell { width: min(100% - 18px, 1220px); }
  .property-v5-hero-main,
  .property-v5-side,
  .property-v5-card,
  .property-v5-light,
  .property-v5-insights article { border-radius: 18px; padding: 15px; }
  .property-v5-hero h1 { font-size: 29px; }
  .property-v5-map { height: 280px; }
  .property-v5-environment-map { height: 300px; }
  .property-v5-roads-map { height: 270px; }
  .property-v5-road-table-row { grid-template-columns: 1fr; }
  .property-v5-map.property-v5-real-map .google-map-legend span { font-size: 9px; }
  .property-v5-market-composition { justify-content: center; }
  .property-v5-market-caption { flex-basis: 100%; }
}

.aprende-body {
  overflow: auto;
}

.learn-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.learn-heading {
  max-width: 760px;
  padding: 28px 0 24px;
}

.learn-heading h1,
.learn-article h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
}

.learn-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.learn-card,
.learn-article,
.article-placeholder,
.article-cta {
  border: 1px solid var(--line);
  background: rgba(11, 13, 15, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.learn-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  border-radius: 18px;
  padding: 22px;
}

.learn-card h2,
.article-placeholder h2,
.article-cta h2 {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: 0;
}

.learn-card p,
.article-placeholder p,
.article-cta p {
  color: var(--muted-strong);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.learn-card a,
.article-nav a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  align-items: center;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.learn-card a:hover,
.article-nav a:hover {
  background: var(--accent-soft);
}

.article-shell {
  max-width: 900px;
}

.learn-article {
  margin-top: 24px;
  border-radius: 22px;
  padding: clamp(24px, 5vw, 46px);
}

.article-content {
  margin-top: 30px;
}

.article-content h2 {
  margin: 42px 0 14px;
  color: var(--text);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.04;
  letter-spacing: 0;
}

.article-content h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: 0;
}

.article-content p,
.article-content li,
.cta-note {
  color: var(--muted-strong);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}

.article-content p {
  margin: 0 0 16px;
}

.article-content ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 22px;
  padding-left: 22px;
}

.article-content li::marker {
  color: var(--accent);
}

.article-callout,
.faq-list section {
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 20px;
}

.article-callout p:first-child {
  color: var(--text);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list section {
  margin: 0;
}

.article-placeholder,
.article-cta {
  margin-top: 28px;
  border-radius: 18px;
  padding: 22px;
}

.article-cta {
  background: linear-gradient(135deg, rgba(207, 255, 36, 0.16), rgba(11, 13, 15, 0.9));
}

.article-cta .primary-button {
  width: fit-content;
  margin-top: 8px;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
}

.learn-footer {
  min-height: 58px;
}

@media (max-width: 760px) {
  .learn-shell {
    width: min(100% - 28px, 1120px);
    padding-top: 30px;
  }

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

  .learn-card {
    min-height: 190px;
  }

  .article-nav {
    flex-direction: column;
  }
}

.giro-preview-body {
  min-height: 100vh;
  overflow: auto;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px),
    #f8fafc;
  background-size: 42px 42px;
  color: #172033;
}

.giro-preview-header {
  position: static;
  border-bottom: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.94);
  color: #172033;
}

.giro-preview-header .brand-text,
.giro-preview-header .main-nav a {
  color: #172033;
  text-shadow: none;
}

.giro-preview-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.giro-preview-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 68px;
}

.giro-preview-hero,
.giro-preview-section {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
}

.giro-preview-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 34px;
  align-items: stretch;
  min-height: 438px;
  padding: 34px;
}

.giro-preview-hero-copy {
  display: grid;
  align-content: center;
}

.giro-preview-eyebrow,
.giro-preview-section-head > span,
.giro-preview-reading-grid article > span,
.giro-preview-pressure > span,
.giro-preview-score > span,
.giro-preview-location span {
  display: block;
  margin: 0 0 8px;
  color: #0f766e;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.giro-preview-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #d9f99d;
  border-radius: 999px;
  background: #f7fee7;
  color: #172033;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.giro-preview-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #a3e635;
}

.giro-preview-hero h1,
.giro-preview-section-head h2 {
  margin: 0;
  color: #0f172a;
  line-height: 1.05;
  letter-spacing: 0;
}

.giro-preview-hero h1 {
  max-width: 690px;
  font-size: 64px;
  font-weight: 950;
}

.giro-preview-hero-copy > p:not(.giro-preview-eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: #475569;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.55;
}

.giro-preview-location {
  width: fit-content;
  max-width: min(100%, 600px);
  margin-top: 20px;
  padding: 16px;
  border: 1px solid #bef264;
  border-radius: 8px;
  background: #f7fee7;
}

.giro-preview-location strong {
  display: block;
  color: #172033;
  font-size: 18px;
  line-height: 1.25;
}

.giro-preview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  color: #475569;
  font-size: 12px;
  font-weight: 750;
}

.giro-preview-meta span + span {
  padding-left: 16px;
  border-left: 1px solid #cbd5e1;
}

.giro-preview-score {
  display: grid;
  align-content: center;
  padding: 24px;
  border: 1px solid #d9f99d;
  border-radius: 8px;
  background: linear-gradient(160deg, #f7fee7, #ffffff 62%);
}

.giro-preview-score strong {
  display: block;
  color: #3f6212;
  font-size: 72px;
  font-weight: 950;
  line-height: 0.95;
}

.giro-preview-score p,
.giro-preview-section p {
  margin: 10px 0 0;
  color: #475569;
  font-weight: 700;
  line-height: 1.55;
}

.giro-preview-info-card {
  display: grid;
  align-content: start;
  padding: 20px;
  border: 1px solid #a3e635;
  border-radius: 8px;
  background: linear-gradient(160deg, #f7fee7, #ffffff 72%);
  box-shadow: 0 12px 30px rgba(63, 98, 18, 0.08);
}

.giro-preview-info-card > span {
  display: block;
  margin-bottom: 6px;
  color: #65a30d;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.giro-preview-info-card h2 {
  margin: 0;
  color: #0f172a;
  font-size: 23px;
  line-height: 1.1;
}

.giro-preview-info-card p {
  margin: 12px 0 0;
  color: #172033;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.giro-preview-info-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.giro-preview-info-stats div {
  min-width: 0;
  padding: 12px;
  border: 1px solid #d9f99d;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.giro-preview-info-stats strong,
.giro-preview-info-stats span,
.giro-preview-info-stats em,
.giro-preview-info-stats small,
.giro-preview-info-source {
  display: block;
}

.giro-preview-info-stats strong {
  color: #365314;
  font-size: 21px;
  font-weight: 950;
  line-height: 1;
}

.giro-preview-info-stats span {
  margin-top: 5px;
  color: #172033;
  font-size: 11px;
  font-weight: 950;
}

.giro-preview-info-stats em {
  margin-bottom: 8px;
  color: #0f766e;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.giro-preview-info-stats small,
.giro-preview-info-source {
  margin-top: 4px;
  color: #64748b;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.25;
}

.giro-preview-info-source {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #d9f99d;
}

.giro-preview-section {
  margin-top: 18px;
  padding: 24px;
}

.giro-preview-section-head {
  margin-bottom: 18px;
}

.giro-preview-section-head h2 {
  max-width: 760px;
  font-size: 28px;
}

.giro-preview-reading-grid,
.giro-preview-metrics,
.giro-preview-environment,
.giro-preview-actions {
  display: grid;
  gap: 12px;
}

.giro-preview-reading-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.giro-preview-reading-grid article,
.giro-preview-metrics article,
.giro-preview-environment article,
.giro-preview-actions article,
.giro-preview-pressure,
.giro-preview-chart-card,
.giro-preview-bars-card,
.giro-preview-map-note {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
}

.giro-preview-reading-grid article,
.giro-preview-metrics article,
.giro-preview-environment article,
.giro-preview-actions article {
  padding: 18px;
}

.giro-preview-reading-grid h3 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.18;
}

.giro-preview-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.giro-preview-metrics span,
.giro-preview-environment strong,
.giro-preview-actions strong {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.giro-preview-metrics strong {
  display: block;
  margin-top: 8px;
  color: #0f172a;
  font-size: 34px;
  font-weight: 950;
}

.giro-preview-dashboard-grid,
.giro-preview-split,
.giro-preview-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 14px;
}

.giro-preview-chart-card,
.giro-preview-bars-card {
  padding: 20px;
}

.giro-preview-chart-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.giro-preview-chart-card h3,
.giro-preview-bars-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 22px;
}

.giro-preview-donut {
  display: grid;
  width: 176px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 0 55%, transparent 56%),
    conic-gradient(#84cc16 calc(var(--score) * 1%), #e2e8f0 0);
}

.giro-preview-donut div {
  display: grid;
  place-items: center;
}

.giro-preview-donut strong {
  color: #365314;
  font-size: 34px;
  font-weight: 950;
}

.giro-preview-donut span {
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.giro-preview-bars {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.giro-preview-bars div {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(160px, 1.4fr) 70px;
  gap: 10px;
  align-items: center;
}

.giro-preview-bars span,
.giro-preview-bars strong {
  color: #475569;
  font-size: 12px;
  font-weight: 900;
}

.giro-preview-bars b {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.giro-preview-bars b::before {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #14b8a6, #84cc16);
}

.giro-preview-competitors {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: competitor;
}

.giro-preview-competitors li {
  counter-increment: competitor;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
}

.giro-preview-competitors li::before {
  content: counter(competitor);
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #f0fdfa;
  color: #0f766e;
  font-size: 12px;
  font-weight: 950;
}

.giro-preview-competitors strong,
.giro-preview-competitors span {
  display: block;
}

.giro-preview-competitors strong {
  color: #0f172a;
  font-size: 14px;
}

.giro-preview-competitors span {
  margin-top: 2px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.giro-preview-pressure {
  display: grid;
  align-content: center;
  padding: 22px;
  background: #fffbeb;
  border-color: #fde68a;
}

.giro-preview-pressure strong {
  color: #92400e;
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
}

.giro-preview-environment {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.giro-preview-environment span {
  display: block;
  color: #0f766e;
  font-size: 30px;
  font-weight: 950;
}

.giro-preview-environment i {
  display: block;
  height: 8px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.giro-preview-environment i::before {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: #14b8a6;
}

.giro-preview-map-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.giro-preview-map {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background:
    linear-gradient(26deg, transparent 47%, rgba(20, 184, 166, 0.18) 48% 51%, transparent 52%),
    linear-gradient(100deg, transparent 42%, rgba(132, 204, 22, 0.16) 43% 46%, transparent 47%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 23, 42, 0.06) 1px, transparent 1px),
    #f8fafc;
  background-size: auto, auto, 36px 36px, 36px 36px, auto;
}

.giro-map-ring,
.giro-map-center,
.giro-map-point {
  position: absolute;
  display: grid;
  place-items: center;
  font-weight: 950;
}

.giro-map-ring {
  inset: 50%;
  border: 1px solid rgba(20, 184, 166, 0.38);
  border-radius: 50%;
  color: #0f766e;
  font-size: 11px;
  transform: translate(-50%, -50%);
}

.giro-map-ring-one {
  width: 190px;
  height: 190px;
}

.giro-map-ring-two {
  width: 320px;
  height: 320px;
  border-color: rgba(132, 204, 22, 0.34);
  color: #4d7c0f;
}

.giro-map-center {
  left: 50%;
  top: 50%;
  width: 92px;
  height: 34px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-size: 11px;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.giro-map-point {
  left: var(--x);
  top: var(--y);
  min-width: 72px;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 10px;
  transform: translate(-50%, -50%);
}

.giro-map-point.competitor {
  background: #fee2e2;
  color: #991b1b;
}

.giro-map-point.demand {
  background: #dcfce7;
  color: #166534;
}

.giro-map-point.commerce,
.giro-map-point.school {
  background: #e0f2fe;
  color: #075985;
}

.giro-preview-map-note {
  padding: 20px;
}

.giro-preview-map-note strong {
  color: #0f172a;
  font-size: 22px;
}

.giro-preview-map-note div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.giro-preview-map-note span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: #475569;
  font-size: 11px;
  font-weight: 900;
}

.giro-preview-map-note i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.giro-preview-map-note i.competitor { background: #ef4444; }
.giro-preview-map-note i.demand { background: #22c55e; }
.giro-preview-map-note i.commerce { background: #0ea5e9; }

.giro-preview-actions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.giro-preview-actions b {
  display: grid;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 50%;
  background: #111827;
  color: #ffffff;
  font-size: 12px;
}

.giro-preview-data-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 14px;
}

.giro-preview-narrative-card,
.giro-preview-radial-panel,
.giro-preview-signal-board article,
.giro-preview-context-grid article {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
}

.giro-preview-narrative-card {
  padding: 22px;
}

.giro-preview-narrative-card > span,
.giro-preview-signal-head span,
.giro-preview-context-grid span {
  display: block;
  color: #0f766e;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.giro-preview-narrative-card h3 {
  max-width: 580px;
  margin: 8px 0 0;
  color: #0f172a;
  font-size: 30px;
  line-height: 1.05;
}

.giro-preview-mini-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.giro-preview-mini-summary div {
  padding: 12px;
  border: 1px solid #d9f99d;
  border-radius: 8px;
  background: #f7fee7;
}

.giro-preview-mini-summary strong,
.giro-preview-mini-summary span {
  display: block;
}

.giro-preview-mini-summary strong {
  color: #365314;
  font-size: 19px;
  font-weight: 950;
}

.giro-preview-mini-summary span {
  margin-top: 3px;
  color: #475569;
  font-size: 11px;
  font-weight: 850;
}

.giro-preview-radial-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
  padding: 18px;
}

.giro-preview-radial {
  display: grid;
  width: 100%;
  max-width: 132px;
  aspect-ratio: 1;
  place-self: center;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 0 55%, transparent 56%),
    conic-gradient(#84cc16 calc(var(--score) * 1%), #e2e8f0 0);
}

.giro-preview-radial.warning {
  background:
    radial-gradient(circle, #ffffff 0 55%, transparent 56%),
    conic-gradient(#f59e0b calc(var(--score) * 1%), #e2e8f0 0);
}

.giro-preview-radial strong,
.giro-preview-radial span {
  display: block;
  grid-area: 1 / 1;
  text-align: center;
}

.giro-preview-radial strong {
  margin-top: -10px;
  color: #0f172a;
  font-size: 24px;
  font-weight: 950;
}

.giro-preview-radial span {
  align-self: end;
  margin-bottom: 30px;
  color: #64748b;
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
}

.giro-preview-signal-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.giro-preview-signal-board article {
  padding: 16px;
}

.giro-preview-signal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.giro-preview-signal-head strong {
  color: #0f172a;
  font-size: 14px;
  font-weight: 950;
  text-align: right;
}

.giro-preview-line-chart {
  display: grid;
  gap: 12px;
}

.giro-preview-line-chart div {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(120px, 1.1fr) minmax(70px, auto);
  gap: 10px;
  align-items: center;
}

.giro-preview-line-chart span,
.giro-preview-line-chart strong {
  color: #475569;
  font-size: 11px;
  font-weight: 900;
}

.giro-preview-line-chart strong {
  color: #0f172a;
  text-align: right;
}

.giro-preview-line-chart b {
  display: block;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.giro-preview-line-chart b::before {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f766e, #84cc16);
}

.giro-preview-context-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.giro-preview-context-grid article {
  padding: 16px;
}

.giro-preview-context-grid span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #111827;
  color: #ffffff;
}

.giro-preview-context-grid strong {
  display: block;
  margin-top: 12px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 950;
}

.giro-preview-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.giro-preview-overview-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
}

.giro-preview-people-card {
  grid-column: 1 / -1;
}

.giro-preview-commerce-detail-card {
  grid-column: 1 / -1;
}

.giro-preview-card-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.giro-preview-card-title span {
  color: #0f766e;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.giro-preview-card-title strong {
  max-width: 250px;
  color: #0f172a;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.05;
  text-align: right;
}

.giro-preview-overview-card p {
  max-width: 720px;
  margin: 0;
  color: #475569;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
}

.giro-preview-apex-chart {
  min-height: 240px;
  overflow: hidden;
}

.giro-preview-apex-chart-small {
  min-height: 190px;
}

.giro-preview-apex-pie {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 230px;
  margin: -4px auto -2px;
  justify-items: center;
  place-items: center;
}

.giro-preview-apex-pie .apexcharts-canvas {
  margin: 0 auto;
}

.giro-preview-apex-pie .apexcharts-pie-series path {
  opacity: 1;
  transition: opacity .18s ease, filter .18s ease;
}

.giro-preview-apex-pie .apexcharts-pie-series path.is-muted {
  opacity: .24;
}

.giro-preview-apex-pie .apexcharts-pie-series path.is-active {
  opacity: 1;
  filter: drop-shadow(0 8px 12px rgba(15, 23, 42, .24));
}

.giro-preview-active-percent {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 42px;
  height: 30px;
  padding: 0 9px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .92);
  border-radius: 999px;
  background: rgba(15, 23, 42, .82);
  box-shadow: 0 8px 20px rgba(15, 23, 42, .22);
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left .18s ease, top .18s ease;
}

.giro-preview-apex-chart .apexcharts-title-text {
  letter-spacing: 0;
}

.giro-preview-commerce-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 12px;
  align-items: stretch;
}

.giro-preview-competition-panel {
  display: grid;
  gap: 14px;
}

.giro-preview-competition-main {
  min-height: auto;
}

.giro-preview-competition-maps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.giro-preview-real-map-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
}

.giro-preview-mini-map {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
}

.giro-preview-mini-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.giro-preview-mini-map-head span,
.giro-preview-mini-map-head strong {
  display: block;
}

.giro-preview-mini-map-head span {
  color: #0f766e;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.giro-preview-mini-map-head strong {
  color: #0f172a;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
  text-align: left;
}

.giro-preview-mini-map-head > span {
  padding: 5px 8px;
  border: 1px solid #d9f99d;
  border-radius: 999px;
  background: #f7fee7;
  color: #365314;
  font-size: 10px;
  font-weight: 950;
  text-align: right;
  text-transform: none;
  white-space: nowrap;
}

.giro-preview-real-competition-map {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
}

.giro-preview-body .map-empty-state {
  display: grid;
  height: 100%;
  min-height: inherit;
  place-items: center;
  padding: 18px;
  text-align: center;
}

.giro-preview-body .map-empty-state strong,
.giro-preview-body .map-empty-state span {
  display: block;
}

.giro-preview-body .map-empty-state strong {
  color: #0f172a;
  font-size: 15px;
  font-weight: 950;
}

.giro-preview-body .map-empty-state span {
  max-width: 320px;
  margin-top: 6px;
  color: #475569;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

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

.giro-preview-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 10px;
  font-weight: 900;
}

.giro-preview-map-legend i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.giro-preview-map-legend i.center { background: #bef264; box-shadow: 0 0 0 2px #0f172a; }
.giro-preview-map-legend i.competitor { background: #ef4444; }
.giro-preview-map-legend i.radius-one { border: 2px solid #84cc16; background: transparent; }
.giro-preview-map-legend i.radius-three { border: 2px solid #0f766e; background: transparent; }
.giro-preview-map-legend i.food { background: #f97316; }
.giro-preview-map-legend i.daily { background: #0057ff; }
.giro-preview-map-legend i.health { background: #22c55e; }
.giro-preview-map-legend i.school { background: #8b5cf6; }
.giro-preview-map-legend i.bank { background: #111827; }
.giro-preview-map-legend i.sport { background: #a855f7; }
.giro-preview-map-legend i.specialized { background: #00796b; }
.giro-preview-map-legend i.mobility { background: #f59e0b; }
.giro-preview-map-legend i.commerce-radius { border: 2px solid #14b8a6; background: transparent; }

.giro-preview-commerce-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 14px;
  align-items: stretch;
}

.giro-preview-commerce-map-card {
  align-content: start;
  min-height: 100%;
}

.giro-preview-commerce-chart-panel {
  display: grid;
  gap: 11px;
  min-width: 0;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.giro-preview-commerce-chart-panel .giro-preview-card-title {
  align-items: center;
}

.giro-preview-commerce-chart-panel .giro-preview-card-title strong {
  max-width: none;
  font-size: 14px;
  text-align: center;
}

.giro-preview-commerce-pie {
  position: relative;
  width: min(225px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  filter: drop-shadow(0 18px 24px rgba(15, 23, 42, .16));
}

.giro-preview-commerce-pie svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.giro-preview-commerce-pie path {
  cursor: pointer;
  stroke: #ffffff;
  stroke-linejoin: round;
  stroke-width: 2.8;
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity .18s ease, filter .18s ease, transform .18s ease;
}

.giro-preview-commerce-pie path.is-muted {
  opacity: .26;
}

.giro-preview-commerce-pie path.is-active {
  opacity: 1;
  filter: drop-shadow(0 8px 10px rgba(15, 23, 42, .22));
  transform: scale(1.035);
}

.giro-preview-commerce-pie > span {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 42px;
  height: 30px;
  padding: 0 9px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .92);
  border-radius: 999px;
  background: rgba(15, 23, 42, .82);
  box-shadow: 0 8px 20px rgba(15, 23, 42, .22);
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left .18s ease, top .18s ease;
}

.giro-preview-commerce-pie-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
}

.giro-preview-commerce-pie-list button {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  padding: 6px 7px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #334155;
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.15;
  text-align: left;
}

.giro-preview-commerce-pie-list button.is-active {
  border-color: color-mix(in srgb, var(--dot) 34%, transparent);
  background: color-mix(in srgb, var(--dot) 10%, #ffffff);
  color: #0f172a;
}

.giro-preview-commerce-pie-list button:hover,
.giro-preview-commerce-pie-list button:focus-visible {
  border-color: color-mix(in srgb, var(--dot) 42%, transparent);
  background: color-mix(in srgb, var(--dot) 8%, #ffffff);
  outline: none;
}

.giro-preview-commerce-pie-list b {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dot);
}

.giro-preview-commerce-pie-list strong {
  color: #0f172a;
  font-size: 11px;
  font-weight: 950;
}

.giro-preview-commerce-chart-panel p {
  color: #334155;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
}

.giro-preview-real-commerce-map {
  height: clamp(420px, 39vw, 520px);
  min-height: 420px;
}

.giro-preview-commerce-map-legend span {
  padding: 5px 7px;
}

.giro-preview-commerce-groups {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  max-height: 1180px;
  min-height: 0;
  overflow: auto;
  padding-right: 5px;
  scrollbar-width: thin;
  scrollbar-color: #a3e635 #f1f5f9;
}

.giro-preview-commerce-groups::-webkit-scrollbar {
  width: 8px;
}

.giro-preview-commerce-groups::-webkit-scrollbar-track {
  border-radius: 999px;
  background: #f1f5f9;
}

.giro-preview-commerce-groups::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #a3e635;
}

.giro-preview-commerce-groups details {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.giro-preview-commerce-groups summary {
  display: grid;
  grid-template-columns: 26px auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  cursor: pointer;
  list-style: none;
}

.giro-preview-commerce-groups summary::-webkit-details-marker {
  display: none;
}

.giro-preview-commerce-groups summary i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  background: #ffffff;
}

.giro-preview-commerce-groups summary i::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #65a30d;
  border-bottom: 2px solid #65a30d;
  transform: rotate(-45deg);
  transition: transform .18s ease;
}

.giro-preview-commerce-groups details[open] summary i::before {
  transform: rotate(45deg) translate(-1px, -1px);
}

.giro-preview-commerce-groups span {
  display: grid;
  min-width: 34px;
  height: 24px;
  padding: 0 8px;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--dot) 16%, #ffffff);
  color: var(--dot);
  font-size: 11px;
  font-weight: 950;
}

.giro-preview-commerce-groups strong {
  min-width: 0;
  overflow: hidden;
  color: #0f172a;
  font-size: 13px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.giro-preview-commerce-groups small {
  color: #475569;
  font-size: 11px;
  font-weight: 950;
  text-align: right;
  white-space: nowrap;
}

.giro-preview-commerce-groups p {
  margin: -2px 12px 10px;
  color: #334155;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
}

.giro-preview-commerce-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 12px 12px;
}

.giro-preview-commerce-tags a,
.giro-preview-commerce-tags button {
  max-width: 100%;
  padding: 7px 9px;
  border: 1px solid #d8e2d8;
  border-radius: 999px;
  background: #ffffff;
  color: #334155;
  font: inherit;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.giro-preview-commerce-tags button {
  color: #4d7c0f;
  cursor: pointer;
}

.giro-preview-commerce-tags a:hover,
.giro-preview-commerce-tags a:focus-visible,
.giro-preview-commerce-tags button:hover,
.giro-preview-commerce-tags button:focus-visible {
  border-color: #bef264;
  background: #f7fee7;
  color: #0f172a;
  outline: none;
}

.giro-preview-commerce-tags [data-commerce-extra] {
  display: flex;
  flex: 1 0 100%;
  flex-wrap: wrap;
  gap: 7px;
  max-height: 118px;
  overflow: auto;
  padding: 8px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  scrollbar-width: thin;
  scrollbar-color: #a3e635 #f1f5f9;
}

.giro-preview-commerce-tags [data-commerce-extra][hidden] {
  display: none;
}

.giro-preview-commerce-tags [data-commerce-extra]::-webkit-scrollbar {
  width: 8px;
}

.giro-preview-commerce-tags [data-commerce-extra]::-webkit-scrollbar-track {
  border-radius: 999px;
  background: #f1f5f9;
}

.giro-preview-commerce-tags [data-commerce-extra]::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #a3e635;
}

.giro-preview-google-map {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
}

.giro-preview-google-map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.giro-preview-mini-map p {
  color: #475569;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.giro-preview-chart-box {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.giro-preview-chart-box > span {
  color: #0f766e;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.giro-preview-chart-box p {
  color: #334155;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.giro-preview-commerce-focus {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid #d9f99d;
  border-radius: 8px;
  background: #f7fee7;
}

.giro-preview-commerce-focus span {
  color: #365314;
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
}

.giro-preview-commerce-focus strong {
  color: #0f172a;
  font-size: 15px;
  font-weight: 950;
}

.giro-preview-commerce-focus small {
  color: #475569;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.35;
}

.giro-preview-commerce-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 10px;
}

.giro-preview-commerce-list span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  padding: 5px 6px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #334155;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.2;
}

.giro-preview-commerce-list span.is-active {
  border-color: color-mix(in srgb, var(--dot) 34%, transparent);
  background: color-mix(in srgb, var(--dot) 10%, #ffffff);
  color: #0f172a;
}

.giro-preview-commerce-list b {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dot);
}

.giro-preview-commerce-list strong {
  color: #0f172a;
  font-size: 11px;
  font-weight: 950;
}

.giro-preview-competition-bars {
  display: grid;
  gap: 16px;
  padding: 10px 0;
}

.giro-preview-competition-bars div {
  display: grid;
  gap: 8px;
}

.giro-preview-competition-bars strong {
  color: #0f172a;
  font-size: 13px;
  font-weight: 950;
}

.giro-preview-competition-bars b {
  display: block;
  width: 100%;
  height: 30px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.giro-preview-competition-bars b span {
  display: flex;
  width: max(112px, var(--bar));
  height: 100%;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  background: linear-gradient(90deg, #84cc16, #65a30d);
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.giro-preview-competition-bars i {
  display: block;
  height: 1px;
  background: #0f172a;
  opacity: 0.16;
}

.giro-preview-compact-bars,
.giro-preview-age-strip {
  display: grid;
  gap: 12px;
}

.giro-preview-compact-bars div,
.giro-preview-age-strip div {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(120px, 1fr) minmax(70px, auto);
  gap: 12px;
  align-items: center;
}

.giro-preview-compact-bars span,
.giro-preview-compact-bars strong,
.giro-preview-age-strip span,
.giro-preview-age-strip strong {
  color: #475569;
  font-size: 12px;
  font-weight: 900;
}

.giro-preview-compact-bars strong,
.giro-preview-age-strip strong {
  color: #0f172a;
  text-align: right;
}

.giro-preview-compact-bars b,
.giro-preview-age-strip b {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.giro-preview-compact-bars b::before,
.giro-preview-age-strip b::before {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f766e, #84cc16);
}

.giro-preview-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.giro-preview-pill-row span {
  padding: 8px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 11px;
  font-weight: 900;
}

.giro-preview-half-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.giro-preview-meter-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.giro-preview-meter-card .giro-preview-radial {
  width: 112px;
}

.giro-preview-meter-card .giro-preview-radial strong {
  font-size: 20px;
}

.giro-preview-road-list {
  padding: 14px;
  border: 1px solid #d9f99d;
  border-radius: 8px;
  background: #f7fee7;
}

.giro-preview-road-list > span {
  display: block;
  margin-bottom: 10px;
  color: #365314;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.giro-preview-road-list ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.giro-preview-road-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #334155;
  font-size: 12px;
  font-weight: 900;
}

.giro-preview-road-list small {
  color: #0f766e;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.giro-preview-direct-card {
  align-content: start;
}

.giro-preview-direct-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
  padding: 12px;
  border: 1px solid #d9f99d;
  border-radius: 8px;
  background: #f7fee7;
}

.giro-preview-direct-summary div {
  min-width: 0;
}

.giro-preview-direct-summary strong,
.giro-preview-direct-summary span,
.giro-preview-direct-summary small {
  display: block;
}

.giro-preview-direct-summary strong {
  color: #365314;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.giro-preview-direct-summary span,
.giro-preview-direct-summary small {
  color: #475569;
  font-size: 11px;
  font-weight: 900;
}

.giro-preview-direct-summary small {
  align-self: center;
  justify-self: end;
  padding: 6px 9px;
  border: 1px solid #d9f99d;
  border-radius: 999px;
  background: #ffffff;
  color: #365314;
  white-space: nowrap;
}

.giro-preview-direct-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.giro-preview-direct-list a {
  display: grid;
  grid-template-columns: 28px auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 46px;
  padding: 8px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.giro-preview-direct-list a:hover,
.giro-preview-direct-list a:focus-visible {
  border-color: #bef264;
  background: #fbfff0;
  box-shadow: 0 12px 22px rgba(15, 23, 42, .08);
  transform: translateY(-1px);
  outline: none;
}

.giro-preview-direct-list span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #ecfccb;
  color: #365314;
  font-size: 11px;
  font-weight: 950;
}

.giro-preview-direct-list em {
  padding: 4px 8px;
  border: 1px solid #a3e635;
  border-radius: 999px;
  background: #f7fee7;
  color: #365314;
  font-size: 9px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.giro-preview-direct-list strong {
  min-width: 0;
  overflow: hidden;
  color: #0f172a;
  font-size: 12px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.giro-preview-direct-list small {
  color: #0f766e;
  font-size: 11px;
  font-weight: 950;
  white-space: nowrap;
}

.giro-preview-more-link {
  display: grid;
  width: 100%;
  min-height: 42px;
  place-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
  color: #0f172a;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.giro-preview-more-link:hover,
.giro-preview-more-link:focus-visible {
  border-color: #bef264;
  background: #f7fee7;
  outline: none;
}

.giro-preview-direct-extra {
  max-height: 245px;
  overflow: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: #a3e635 #f1f5f9;
}

.giro-preview-direct-extra[hidden] {
  display: none;
}

.giro-preview-direct-extra::-webkit-scrollbar {
  width: 8px;
}

.giro-preview-direct-extra::-webkit-scrollbar-track {
  border-radius: 999px;
  background: #f1f5f9;
}

.giro-preview-direct-extra::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #a3e635;
}

.giro-preview-people-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.giro-preview-people-grid div {
  min-height: 104px;
  padding: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.giro-preview-people-grid strong,
.giro-preview-people-grid span {
  display: block;
}

.giro-preview-people-grid strong {
  color: #0f172a;
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.giro-preview-people-grid span {
  margin-top: 8px;
  color: #475569;
  font-size: 12px;
  font-weight: 900;
}

.giro-preview-housing-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.giro-preview-housing-panel article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 188px;
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .06);
  overflow: hidden;
}

.giro-preview-housing-metric > * {
  position: relative;
  z-index: 1;
}

.giro-preview-housing-metric.is-people {
  gap: 8px;
  min-height: 176px;
  padding: 20px;
  background: #ffffff;
}

.giro-preview-housing-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.giro-preview-housing-card-head small {
  margin: 0;
  color: #0f172a;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.2;
}

.giro-preview-housing-metric.is-people > strong {
  margin-top: 6px;
  font-size: 38px;
  letter-spacing: 0;
}

.giro-preview-housing-metric.is-people > em {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.giro-preview-housing-metric.is-people > i {
  height: 7px;
  margin-top: 2px;
}

.giro-preview-housing-metric.is-gender {
  background: #ffffff;
}

.giro-preview-housing-metric.is-ages {
  background: #ffffff;
}

.giro-preview-housing-metric.is-homes {
  background: #ffffff;
}

.giro-preview-housing-panel small,
.giro-preview-housing-panel em {
  color: #475569;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.giro-preview-housing-panel small {
  color: #0f172a;
  font-size: 13px;
  font-weight: 950;
}

.giro-preview-housing-panel > article > strong {
  color: #0f172a;
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.giro-preview-housing-panel > article > strong b:first-child {
  color: #8b5cf6;
}

.giro-preview-housing-panel > article > strong b:last-child {
  color: #2563eb;
}

.giro-preview-housing-panel > article > i {
  display: block;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.giro-preview-housing-panel > article > i::before {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8b5cf6, #2563eb);
}

.giro-preview-panel-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #eef4ff;
  color: #2f5dab;
}

.giro-preview-panel-icon .ti {
  display: block;
  width: 24px;
  height: 24px;
  color: currentColor;
  font-size: 24px;
  line-height: 1;
}

.giro-preview-panel-icon.people {
  background: #eef4ff;
  color: #2f5dab;
}

.giro-preview-panel-icon.gender { background: #f4f0ff; color: #7a5af8; }
.giro-preview-panel-icon.ages { background: #eef8f5; color: #2e7d6e; }
.giro-preview-panel-icon.homes { background: #eef4ff; color: #3568b8; }

.giro-preview-gender-split {
  display: grid;
  grid-template-columns: 52fr 48fr;
  gap: 3px;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #f8fafc;
}

.giro-preview-gender-split span:first-child {
  border-radius: 999px 0 0 999px;
  background: #8b5cf6;
}

.giro-preview-gender-split span:last-child {
  border-radius: 0 999px 999px 0;
  background: #2563eb;
}

.giro-preview-age-panel div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 54px;
  gap: 10px;
  align-items: center;
}

.giro-preview-age-panel div span,
.giro-preview-age-panel div strong {
  color: #334155;
  font-size: 11px;
  font-weight: 850;
}

.giro-preview-age-panel div strong {
  text-align: right;
}

.giro-preview-age-panel div i {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.giro-preview-age-panel div i::before {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: #93c5fd;
}

.giro-preview-age-panel p {
  margin-top: 6px;
  color: #64748b;
  font-size: 10px;
  font-weight: 750;
}

.giro-preview-home-density {
  display: grid;
  grid-template-columns: repeat(9, minmax(18px, 1fr));
  gap: 7px 8px;
  width: 100%;
  max-width: none;
  margin-top: 6px;
}

.giro-preview-home-density .ti {
  display: block;
  width: 18px;
  height: 18px;
  color: #cbd5e1;
  font-size: 18px;
  justify-self: center;
  line-height: 1;
}

.giro-preview-home-density .is-filled {
  color: #60a5fa;
}

@media (max-width: 920px) {
  .giro-preview-hero,
  .giro-preview-dashboard-grid,
  .giro-preview-split,
  .giro-preview-map-layout,
  .giro-preview-chart-card,
  .giro-preview-data-layout,
  .giro-preview-overview-grid,
  .giro-preview-half-grid,
  .giro-preview-commerce-layout,
  .giro-preview-commerce-detail-layout,
  .giro-preview-competition-maps {
    grid-template-columns: 1fr;
  }

  .giro-preview-people-card,
  .giro-preview-commerce-detail-card {
    grid-column: auto;
  }

  .giro-preview-reading-grid,
  .giro-preview-metrics,
  .giro-preview-environment,
  .giro-preview-actions,
  .giro-preview-signal-board,
  .giro-preview-context-grid,
  .giro-preview-people-grid,
  .giro-preview-housing-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .giro-preview-shell {
    width: min(100% - 20px, 1180px);
    padding: 20px 0 46px;
  }

  .giro-preview-hero,
  .giro-preview-section {
    padding: 18px;
  }

  .giro-preview-hero h1 {
    font-size: 34px;
  }

  .giro-preview-section-head h2 {
    font-size: 23px;
  }

  .giro-preview-reading-grid,
  .giro-preview-metrics,
  .giro-preview-environment,
  .giro-preview-actions,
  .giro-preview-bars div,
  .giro-preview-radial-panel,
  .giro-preview-signal-board,
  .giro-preview-context-grid,
  .giro-preview-line-chart div,
  .giro-preview-mini-summary,
  .giro-preview-compact-bars div,
  .giro-preview-age-strip div,
  .giro-preview-people-grid,
  .giro-preview-housing-panel,
  .giro-preview-meter-card,
  .giro-preview-commerce-detail-layout,
  .giro-preview-competition-maps {
    grid-template-columns: 1fr;
  }

  .giro-preview-card-title {
    display: grid;
  }

  .giro-preview-card-title strong {
    max-width: none;
    text-align: left;
  }

  .giro-preview-apex-pie {
    min-height: 230px;
  }

  .giro-preview-commerce-list {
    grid-template-columns: 1fr;
  }

  .giro-preview-score strong {
    font-size: 56px;
  }

  .giro-preview-map {
    min-height: 330px;
  }

  .giro-preview-direct-summary,
  .giro-preview-direct-list a {
    grid-template-columns: 1fr;
  }

  .giro-preview-direct-summary small,
  .giro-preview-direct-list small {
    justify-self: start;
  }

  .giro-preview-direct-list strong {
    white-space: normal;
  }

  .giro-preview-real-commerce-map {
    min-height: 340px;
  }

  .giro-preview-commerce-groups {
    max-height: 430px;
  }

  .giro-preview-commerce-groups summary {
    grid-template-columns: 26px auto minmax(0, 1fr);
  }

  .giro-preview-commerce-groups small {
    grid-column: 3 / -1;
    text-align: left;
  }

  .giro-preview-commerce-pie-list {
    grid-template-columns: 1fr;
  }
}
