/* Geo Sentry — tactical HUD report layer */

.premium-dashboard-wrapper--hud .premium-dashboard-inner {
  gap: 1rem;
}

.premium-dashboard-wrapper--hud .report-hero {
  border-color: rgba(0, 240, 255, 0.22);
  background: linear-gradient(160deg, rgba(6, 14, 24, 0.98) 0%, rgba(4, 8, 14, 0.99) 55%, rgba(8, 20, 18, 0.4) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 240, 255, 0.08) inset,
    0 20px 50px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.premium-dashboard-wrapper--hud .report-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 240, 255, 0.03) 2px,
    rgba(0, 240, 255, 0.03) 3px
  );
  pointer-events: none;
}

.premium-dashboard-wrapper--hud .report-hero__badge {
  letter-spacing: 0.2em;
}

/* Command strip — at-a-glance HUD */
.hud-command-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 720px) {
  .hud-command-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hud-stat {
  position: relative;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(4, 10, 18, 0.85);
  border: 1px solid rgba(0, 240, 255, 0.2);
  min-height: 4.5rem;
}

.hud-stat::before,
.hud-stat::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: rgba(0, 240, 255, 0.45);
  border-style: solid;
  pointer-events: none;
}

.hud-stat::before {
  top: 4px;
  left: 4px;
  border-width: 2px 0 0 2px;
}

.hud-stat::after {
  bottom: 4px;
  right: 4px;
  border-width: 0 2px 2px 0;
}

.hud-stat__label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 240, 255, 0.75);
}

.hud-stat__value {
  margin: 0.25rem 0 0;
  font-size: 1.35rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  color: var(--text-primary);
}

.hud-stat__sub {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

.hud-stat--health .hud-stat__value {
  color: #7dffb2;
}

.hud-stat--threat[data-threat='medium'] .hud-stat__value {
  color: #fbbf24;
}

.hud-stat--threat[data-threat='high'] .hud-stat__value,
.hud-stat--threat[data-threat='critical'] .hud-stat__value {
  color: #f87171;
}

.hud-stat--sectors .hud-stat__value {
  color: #7dffb2;
}

.hud-stat--sectors[data-mixed='true'] .hud-stat__value {
  color: #fbbf24;
}

/* HUD report cards */
.premium-dashboard-wrapper--hud .report-card {
  border-color: rgba(0, 240, 255, 0.15);
  background: rgba(6, 12, 20, 0.92);
}

.premium-dashboard-wrapper--hud .report-card__title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 240, 255, 0.9);
}

.premium-dashboard-wrapper--hud .report-card__hint {
  font-size: 0.75rem;
}

/* Weekly playbook */
.hud-playbook-panel {
  border-color: rgba(0, 240, 255, 0.25);
}

.hud-playbook-panel__title {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 240, 255, 0.95);
}

.hud-playbook-panel__kicker {
  margin: 0.35rem 0 0.85rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hud-playbook-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hud-playbook-card {
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
}

.hud-playbook-card--priority-this-week {
  border-color: rgba(0, 240, 255, 0.45);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.08);
}

.hud-playbook-card--priority-defend {
  border-color: rgba(125, 255, 178, 0.35);
}

.hud-playbook-card--priority-watch {
  border-color: rgba(251, 191, 36, 0.35);
}

.hud-playbook-card--pass {
  border-color: rgba(125, 255, 178, 0.25);
}

.hud-playbook-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}

.hud-playbook-card__tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: rgba(0, 240, 255, 0.12);
  color: var(--cyan);
}

.hud-playbook-card__tag--impact {
  background: rgba(248, 113, 113, 0.15);
  color: #fca5a5;
}

.hud-playbook-card__tag--helps {
  background: rgba(125, 255, 178, 0.12);
  color: #7dffb2;
}

.hud-playbook-card__title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
}

.hud-playbook-card__why {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hud-playbook-card__action {
  margin: 0.45rem 0 0;
  padding: 0.45rem 0.55rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  color: #e2e8f0;
  background: rgba(0, 240, 255, 0.06);
  border-left: 3px solid var(--cyan);
  border-radius: 0 4px 4px 0;
}

.hud-playbook-card__hinder {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  color: #fbbf24;
}

.hud-playbook-panel__cadence {
  margin: 1rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.hud-playbook-panel__cadence strong {
  color: var(--cyan);
  font-weight: 600;
}

/* Map tooltips — HUD variant */
.tactical-tooltip--hud .tactical-tooltip__alert {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.tactical-tooltip__playbook-ref {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  color: rgba(0, 240, 255, 0.85);
}

/* Sector feed — scan line aesthetic */
.premium-dashboard-wrapper--hud .sector-results-feed__item {
  border-left: 2px solid rgba(0, 240, 255, 0.35);
}
