/* Geo Sentry — stealth black + cyber-cyan */

:root {
  --black-stealth: #050608;
  --black-panel: #0b0e12;
  --black-elevated: #11161c;
  --cyan: #00e5ff;
  --cyan-dim: #00b8d4;
  --cyan-glow: rgba(0, 229, 255, 0.35);
  --cyan-muted: rgba(0, 229, 255, 0.12);
  --text-primary: #e8eef4;
  --text-secondary: #8b9aab;
  --text-muted: #5c6b7a;
  --border: rgba(0, 229, 255, 0.14);
  --border-focus: rgba(0, 229, 255, 0.55);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--black-stealth);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--cyan-muted), transparent),
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--text-primary);
}

/* Layout */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--black-panel);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-muted);
}

.logo span {
  color: var(--cyan);
}

.nav-cta {
  font-size: 0.8125rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
  color: var(--cyan);
  border-color: var(--border-focus);
  box-shadow: 0 0 16px var(--cyan-muted);
}

main,
.site-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.75rem 4rem;
}

.section-wide {
  max-width: 1100px;
  margin: 0 auto;
}

.section-lead {
  text-align: center;
  color: var(--text-secondary);
  margin: -0.5rem 0 2rem;
}

/* Hero */

.hero {
  text-align: center;
  padding: 3rem 0 2.5rem;
}

.hero--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: left;
  padding: 2rem 0 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero--split {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .hero-form .audit-panel {
    position: sticky;
    top: 1.5rem;
  }
}

.hero-points {
  margin: 1.25rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-points li {
  margin-bottom: 0.35rem;
}

.hero-copy .hero-lead {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.hero-copy .hero-badge {
  margin-bottom: 1rem;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
  padding: 0.35rem 0.85rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--black-panel);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--cyan);
}

.hero-lead {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* Audit form — central hero focus */

.audit-panel {
  position: relative;
  padding: 2rem;
  background: var(--black-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 60px var(--cyan-muted);
}

.audit-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--cyan-muted), transparent 40%, transparent 60%, var(--cyan-muted));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.audit-panel-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 1.25rem;
  text-align: left;
}

.audit-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 540px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

.field {
  text-align: left;
}

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.field input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--black-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.95rem 1.1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.field input:hover {
  border-color: rgba(0, 229, 255, 0.25);
}

.field input:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px var(--cyan-muted), 0 0 24px var(--cyan-glow);
}

.btn-primary {
  margin-top: 0.5rem;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--black-stealth);
  background: var(--cyan);
  border: none;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: #33ecff;
  box-shadow: 0 0 32px var(--cyan-glow);
}

.btn-primary:active {
  transform: scale(0.99);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--text-primary);
  outline-offset: 3px;
}

.audit-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

.recon-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.recon-status--scanning {
  color: var(--cyan);
  background: var(--cyan-muted);
}

.recon-status--success {
  color: #7dffb2;
  border-color: rgba(125, 255, 178, 0.3);
  background: rgba(125, 255, 178, 0.08);
}

.recon-status--error {
  color: #ff8a8a;
  border-color: rgba(255, 138, 138, 0.35);
  background: rgba(255, 138, 138, 0.08);
}

.recon-results {
  margin-top: 1.25rem;
  padding: 1.25rem;
  text-align: left;
  background: var(--black-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.recon-results-title {
  font-size: 1rem;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.recon-results-meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 0.35rem;
}

.recon-results-rank {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.recon-gaps {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.recon-link {
  margin-top: 1rem;
  font-size: 0.8125rem;
}

.recon-link a {
  color: var(--cyan);
}

.recon-results h4 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 1rem 0 0.5rem;
}

.recon-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.recon-list li + li {
  margin-top: 0.35rem;
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

/* Premium subscriber grid dashboard */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.results-display-box {
  margin-top: 1.25rem;
}

.premium-dashboard-wrapper {
  margin-top: 25px;
  animation: fadeIn 0.5s ease;
}

.dashboard-header {
  border-bottom: 1px solid var(--cyan);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.dashboard-header-badge {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-family: var(--font-mono);
}

.dashboard-header h3 {
  margin: 5px 0 0;
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 600;
}

.dashboard-body {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.dashboard-main-column {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dashboard-header--secure h3 {
  color: #7dffb2;
  text-shadow: 0 0 20px rgba(125, 255, 178, 0.25);
}

.dashboard-header--secure {
  border-bottom-color: rgba(125, 255, 178, 0.45);
}

.radar-map-wrap,
.radar-map-canvas {
  width: 100%;
  height: 340px;
  position: relative;
  border: 1px solid #1e293b;
  border-radius: 4px;
  overflow: hidden;
}

/* Container adjustment to ensure the grid sits cleanly over the map */
.radar-map-canvas {
  overflow: hidden;
}

#radar-map-canvas {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: #1a2332;
  z-index: 1;
}

#radar-map-canvas .leaflet-control-attribution {
  font-size: 9px;
  background: rgba(255, 255, 255, 0.92);
  color: #334155;
}

/* Grid recon sweep — shown instead of placeholder rank numbers */
.radar-map-wrap--scanning #radar-map-canvas {
  filter: saturate(0.85) brightness(0.92);
}

.map-scan-overlay {
  position: absolute;
  inset: 0;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  pointer-events: none;
  background: rgba(5, 8, 16, 0.42);
  text-align: center;
}

.map-scan-overlay[hidden] {
  display: none !important;
}

.map-scan-sweep {
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(0, 240, 255, 0.14) 40deg,
    transparent 80deg
  );
  animation: map-scan-rotate 2.8s linear infinite;
  opacity: 0.65;
}

.map-scan-overlay__text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00f0ff;
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.45);
}

.map-scan-overlay__sub {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.6875rem;
  color: #94a3b8;
}

@keyframes map-scan-rotate {
  to {
    transform: rotate(360deg);
  }
}

.grid-rank-marker--scanning .rank-badge-backdrop {
  background: rgba(8, 12, 22, 0.9);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.2);
}

.grid-rank-marker--scanning .scan-badge {
  background-color: rgba(0, 240, 255, 0.12);
  border: 2px solid rgba(0, 240, 255, 0.55);
  color: #67e8f9;
  font-size: 16px;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
  animation: scan-badge-pulse 1.2s ease-in-out infinite;
  animation-delay: var(--scan-delay, 0s);
}

.scan-pulse-ring {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(0, 240, 255, 0.45);
  animation: scan-ring-pulse 1.8s ease-out infinite;
  animation-delay: var(--scan-delay, 0s);
  z-index: 0;
}

.scan-pulse-ring--delayed {
  animation-delay: calc(var(--scan-delay, 0s) + 0.35s);
  border-color: rgba(103, 232, 249, 0.25);
}

@keyframes scan-ring-pulse {
  0% {
    transform: scale(0.55);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes scan-badge-pulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

/* Soft edge vignette — keeps map bright, frames the ops view */
.map-vignette-tint {
  position: absolute;
  inset: 0;
  z-index: 450;
  pointer-events: none;
  border-radius: 4px;
  box-shadow: inset 0 0 40px rgba(5, 8, 16, 0.35);
  background: linear-gradient(
    180deg,
    rgba(5, 8, 16, 0.08) 0%,
    transparent 18%,
    transparent 82%,
    rgba(5, 8, 16, 0.12) 100%
  );
}

/* Leaflet divIcon wrappers (no default white box) */
.grid-rank-marker-leaflet,
.hq-marker-leaflet {
  background: transparent !important;
  border: none !important;
}

/* Leaflet tactical sector popups */
.tactical-popup .leaflet-popup-content-wrapper {
  background: #0b0f19;
  border: 1px solid #00f0ff;
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.65), 0 0 16px rgba(0, 240, 255, 0.15);
  padding: 0;
}

.tactical-popup .leaflet-popup-content {
  margin: 0;
  min-width: 200px;
}

.tactical-popup .leaflet-popup-tip {
  background: #0b0f19;
  border: 1px solid #00f0ff;
  box-shadow: none;
}

.tactical-popup .leaflet-popup-close-button {
  color: #00f0ff;
  font-size: 18px;
  padding: 6px 8px 0 0;
}

.tactical-tooltip {
  background: #0b0f19;
  color: #fff;
  padding: 10px 12px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  line-height: 1.45;
  max-width: 220px;
}

.tactical-tooltip__alert {
  display: block;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
}

.tactical-tooltip__alert--vulnerable {
  color: #ef4444;
}

.tactical-tooltip__alert--contested {
  color: #f59e0b;
}

.tactical-tooltip__alert--secure {
  color: #00f0ff;
}

.tactical-tooltip__alert--scan {
  color: #94a3b8;
}

.tactical-tooltip__body {
  margin-top: 6px;
  border-top: 1px dashed rgba(0, 240, 255, 0.2);
  padding-top: 6px;
}

.tactical-tooltip__body--secure {
  border-top-color: rgba(0, 240, 255, 0.25);
}

.tactical-tooltip__body--contested {
  border-top-color: rgba(245, 158, 11, 0.35);
}

.tactical-tooltip__body--vulnerable {
  border-top-color: rgba(239, 68, 68, 0.35);
}

.tactical-tooltip__body--scan {
  border-top-color: rgba(148, 163, 184, 0.35);
}

.tactical-tooltip__meta {
  color: #67e8f9;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.tactical-tooltip p {
  margin: 0 0 4px;
}

.tactical-tooltip p:last-child {
  margin-bottom: 0;
}

.tactical-tooltip strong {
  color: #00f0ff;
}

/* Geo-locked rank marker on map */
.grid-rank-marker {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
}

/* Dark tint disc — masks street labels behind the number */
.rank-badge-backdrop {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(8, 12, 22, 0.82);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.rank-badge {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

/* Tier 1: ranks 1–3 — cyber cyan */
.grid-rank-marker.rank-top .rank-badge {
  background-color: rgba(0, 240, 255, 0.25);
  border: 2px solid #00f0ff;
  color: #00f0ff;
  text-shadow: 0 0 10px #00f0ff;
}

/* Tier 2: ranks 4–10 — tactical amber */
.grid-rank-marker.rank-mid .rank-badge {
  background-color: rgba(245, 158, 11, 0.25);
  border: 2px solid #f59e0b;
  color: #f59e0b;
  text-shadow: 0 0 10px #f59e0b;
}

/* Tier 3: rank 11+ — plasma red */
.grid-rank-marker.rank-low .rank-badge {
  background-color: rgba(239, 68, 68, 0.25);
  border: 2px solid #ef4444;
  color: #ef4444;
  text-shadow: 0 0 10px #ef4444;
}

/* Target business HQ pulse at grid center */
.cyber-hq-pulse {
  width: 14px;
  height: 14px;
  background: var(--cyan);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan-glow), 0 0 28px var(--cyan-muted);
  animation: hq-pulse 2s ease-in-out infinite;
}

@keyframes hq-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

#radar-map-canvas .leaflet-tooltip {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(8, 12, 22, 0.9);
  border: 1px solid var(--border);
  color: var(--cyan);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.grid-rank-marker--hq .cyber-hq-ring {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  opacity: 0.55;
  animation: hq-pulse 2s ease-in-out infinite;
  z-index: 0;
}

/* Competitor Matrix */
.competitor-matrix {
  width: 100%;
}

.competitor-matrix-title,
.premium-intel-title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.matrix-container {
  margin-top: 1.875rem;
  animation: matrix-slide-up 0.4s ease;
}

@keyframes matrix-slide-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.matrix-stale-banner {
  font-size: 0.8125rem;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius);
  padding: 0.65rem 0.85rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.matrix-stale-banner code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-primary);
}

.competitor-matrix-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--black-elevated);
}

.competitor-matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

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

.competitor-matrix-table thead th,
.premium-intel-table thead th {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.06);
}

.premium-intel-table thead tr {
  border-bottom: 2px solid var(--cyan);
}

.premium-intel-table thead th.col-target,
.premium-intel-table thead th.col-competitor {
  color: var(--text-primary);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.premium-intel-table tbody th {
  font-weight: 700;
  color: #94a3b8;
}

.premium-intel-table .cell-velocity-target {
  color: #67e8f9;
}

.premium-intel-row--ops {
  background: rgba(0, 229, 255, 0.03);
}

.premium-intel-row--ops th {
  color: var(--cyan) !important;
}

.premium-intel-row--ops .cell-ops-target {
  color: var(--text-muted);
  font-style: italic;
}

.premium-intel-row--ops td.cell-competitor:not(.cell-warn) {
  color: var(--text-primary);
  font-weight: 600;
}

.competitor-matrix-table tbody th {
  color: var(--text-muted);
  font-weight: 500;
  max-width: 140px;
}

.competitor-matrix-table .col-target {
  color: var(--text-primary);
  font-weight: 600;
  background: rgba(0, 229, 255, 0.03);
}

.competitor-matrix-table td {
  color: var(--text-secondary);
}

.competitor-matrix-table tr:last-child th,
.competitor-matrix-table tr:last-child td {
  border-bottom: none;
}

.competitor-matrix-table td.cell-warn {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.25);
  font-weight: 600;
}

.competitor-matrix--loading .competitor-matrix-table td.cell-competitor,
.competitor-matrix--loading .competitor-matrix-table th.col-competitor {
  color: var(--text-muted);
}

.competitor-matrix-table td.cell-skeleton {
  position: relative;
  color: transparent !important;
  min-height: 2.5rem;
}

.competitor-matrix-table td.cell-skeleton::after {
  content: 'Gathering Intelligence...';
  position: absolute;
  inset: 0.65rem 1rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  animation: skeleton-pulse 1.4s ease-in-out infinite;
}

.competitor-matrix-table td.cell-skeleton.cell-skeleton--shimmer {
  background: linear-gradient(
    90deg,
    rgba(0, 229, 255, 0.04) 0%,
    rgba(0, 229, 255, 0.12) 50%,
    rgba(0, 229, 255, 0.04) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s ease-in-out infinite;
}

.competitor-matrix--ready .competitor-matrix-table tbody {
  animation: matrix-fade-in 0.45s ease;
}

@keyframes skeleton-pulse {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@keyframes matrix-fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.metrics-panel {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metrics-alert {
  background: rgba(0, 240, 255, 0.02);
  border: 1px solid #1e293b;
  padding: 15px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.metrics-alert strong {
  color: #ef4444;
}

.download-dossier-btn {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  margin-top: 15px;
  font-family: var(--font-mono);
  transition: background var(--transition);
  width: 100%;
}

.download-dossier-btn:hover {
  background: rgba(0, 240, 255, 0.1);
}

/* Features strip */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 640px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature {
  text-align: center;
  padding: 0.5rem;
}

.feature-icon {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.feature h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.feature p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Footer */

.site-footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.75rem 3rem;
  text-align: center;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.site-footer .status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

/* ==========================================================================
   🚨 GOSEN PREMIUM HEADS-UP DISPLAY (HUD) ENHANCEMENTS
   ========================================================================== */

/* Cybernetic Map Console Housing */
#radar-map-canvas {
  border: 1px solid rgba(0, 240, 255, 0.25) !important;
  box-shadow:
    0 0 20px rgba(0, 240, 255, 0.05),
    inset 0 0 15px rgba(0, 0, 0, 0.6);
  border-radius: 6px;
  position: relative;
}

/* Tactical tech cross-hairs on map corners */
#radar-map-canvas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-top: 2px solid #00f0ff;
  border-left: 2px solid #00f0ff;
  z-index: 1001;
  pointer-events: none;
}

#radar-map-canvas::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #00f0ff;
  border-right: 2px solid #00f0ff;
  z-index: 1001;
  pointer-events: none;
}

/* Matrix section housing */
.matrix-container {
  margin-top: 35px;
}

.premium-intel-heading {
  color: #00f0ff;
  font-family: 'Courier New', Courier, monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.premium-intel-heading__icon {
  flex-shrink: 0;
}

.premium-intel-heading__text {
  line-height: 1.3;
}

/* Glassmorphic Sci-Fi Matrix Table Grid */
.premium-intel-table {
  width: 100%;
  border-collapse: collapse;
  font-family: system-ui, -apple-system, sans-serif;
  background: rgba(11, 15, 25, 0.65) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(30, 41, 59, 0.8) !important;
  border-radius: 6px;
  overflow: hidden;
}

/* Premium Header Shimmer */
.premium-intel-table thead tr {
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.04) 0%, rgba(11, 15, 25, 0) 100%) !important;
  border-bottom: 2px solid rgba(0, 240, 255, 0.3) !important;
}

/* Smooth Kinetic Row Interactions */
.premium-intel-table tbody tr {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-intel-table tbody tr:hover {
  background: rgba(0, 240, 255, 0.03) !important;
  box-shadow: inset 4px 0 0 #00f0ff;
}

/* Tactical Threat Warning Module Refresh */
.tactical-threat-module {
  background: rgba(245, 158, 11, 0.03) !important;
  border: 1px dashed rgba(245, 158, 11, 0.4) !important;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.02);
  animation: tacticalPulse 3s infinite ease-in-out;
}

/* Premium Dossier Download Trigger Button */
.download-dossier-btn {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(0, 240, 255, 0) 100%) !important;
  border: 1px solid #00f0ff !important;
  color: #00f0ff !important;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.1);
  font-weight: bold !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase;
  transition: all 0.3s ease !important;
}

.download-dossier-btn:hover {
  background: #00f0ff !important;
  color: #0b0f19 !important;
  text-shadow: none !important;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4) !important;
  transform: translateY(-1px);
}

/* Animation Primitives */
@keyframes tacticalPulse {
  0%,
  100% {
    border-color: rgba(245, 158, 11, 0.3);
  }
  50% {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.05);
  }
}

/* Command Center progress */
.command-center-progress {
  margin: 1.25rem 0 0;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 8px;
  background: rgba(11, 15, 25, 0.75);
}

.command-center-progress__title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00f0ff;
  margin: 0 0 0.75rem;
}

.command-center-progress__bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.command-center-progress__fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #00f0ff, #22d3ee);
  transition: width 0.4s ease;
}

.command-center-progress__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

.command-center-progress__step {
  padding: 0.25rem 0;
  color: rgba(255, 255, 255, 0.45);
}

.command-center-progress__step.is-done {
  color: rgba(255, 255, 255, 0.85);
}

.command-center-progress__step.is-active {
  color: #00f0ff;
}

/* Health score */
.health-score-panel {
  padding: 1rem;
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 8px;
  background: rgba(0, 240, 255, 0.04);
  margin-bottom: 1rem;
}

.health-score-panel__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.25rem;
  color: rgba(255, 255, 255, 0.65);
}

.health-score-panel__value {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: #00f0ff;
  line-height: 1;
}

.health-score-panel__value span {
  font-size: 1.25rem;
  opacity: 0.7;
}

.health-score-panel__tier,
.health-score-panel__vuln {
  font-size: 0.8125rem;
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.7);
}

/* Pricing + Shield */
.site-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.site-nav a {
  color: inherit;
  text-decoration: none;
  font-size: 0.875rem;
}

.pricing-compare {
  max-width: 960px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
  color: var(--cyan);
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.75;
}

.pricing-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 0.35rem;
}

.shield-modal-price {
  font-weight: 600;
  color: var(--cyan);
  margin: 0 0 0.5rem;
}

.report-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: 8px;
  background: rgba(0, 240, 255, 0.06);
}

.report-banner p {
  margin: 0;
  font-size: 0.95rem;
}

.report-banner .btn-primary {
  white-space: nowrap;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.pricing-card {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(11, 15, 25, 0.6);
}

.pricing-card--shield {
  border-color: rgba(0, 240, 255, 0.4);
}

.pricing-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.btn-shield,
.btn-shield-inline {
  margin-top: 0.75rem;
  padding: 0.6rem 1rem;
  border: 1px solid #00f0ff;
  background: rgba(0, 240, 255, 0.1);
  color: #00f0ff;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.download-dossier-btn--locked {
  opacity: 0.75;
}

.shield-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
}

.shield-modal[hidden] {
  display: none !important;
}

.shield-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.shield-modal__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 92vw);
  padding: 1.5rem;
  border-radius: 10px;
  background: #0b0f19;
  border: 1px solid rgba(0, 240, 255, 0.35);
}

.shield-modal__panel input {
  width: 100%;
  margin: 0.5rem 0 1rem;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
}

.shield-modal__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.audit-chain-hint {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  opacity: 0.75;
}

.field--wide {
  flex: 1 1 100%;
}

.location-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.location-modal[hidden] {
  display: none !important;
}

.location-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.location-modal__panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 240, 255, 0.35);
  background: #0a1628;
}

.location-modal__lead {
  margin: 0.5rem 0 1rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

.location-candidate-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.location-candidate-list button {
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.location-candidate-title {
  font-weight: 600;
}

.location-candidate-address {
  color: #00f0ff;
  font-size: 0.9rem;
}

.location-candidate-meta {
  font-size: 0.8rem;
  opacity: 0.75;
}

.location-candidate-warn {
  font-size: 0.75rem;
  color: #f59e0b;
}

.location-modal__tip {
  font-size: 0.8rem;
  opacity: 0.7;
  margin: 0 0 1rem;
}

.location-picker-map {
  height: 300px;
  width: 100%;
  margin: 0 0 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 240, 255, 0.25);
  background: #0d1520;
}

.location-map-hint {
  font-size: 0.8rem;
  color: #f59e0b;
  margin: 0 0 0.75rem;
}

.location-candidate-list button.is-selected {
  border-color: rgba(0, 240, 255, 0.75);
  background: rgba(0, 240, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(0, 240, 255, 0.35);
}

.location-picker-marker {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #00f0ff;
  color: #0a1628;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.location-picker-marker.is-selected {
  background: #22c55e;
  transform: scale(1.1);
}

.location-candidate-list button:hover,
.location-candidate-list button:focus {
  border-color: rgba(0, 240, 255, 0.55);
  background: rgba(0, 240, 255, 0.08);
}

.location-modal__actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: inherit;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  cursor: pointer;
}

.mission-orders-panel {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.mission-order-fix {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.alert-settings-panel {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px dashed rgba(0, 240, 255, 0.35);
  border-radius: 8px;
  font-size: 0.875rem;
}

.alert-settings-panel label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0.35rem 0;
}

.field-optional {
  font-weight: 400;
  opacity: 0.6;
  font-size: 0.8em;
}

.dev-test-account-hint {
  margin-top: 0.75rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.8125rem;
  border: 1px dashed rgba(0, 240, 255, 0.35);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.75);
}

.dev-test-fill-btn {
  border: none;
  background: rgba(0, 240, 255, 0.12);
  color: #00f0ff;
  font: inherit;
  cursor: pointer;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

/* Command Center subscriber hub */
.command-center-page .cc-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem;
}

.legal-page .legal-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.75rem 3rem;
  line-height: 1.65;
}

.legal-page h1 {
  margin-bottom: 0.25rem;
}

.legal-updated {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  margin-top: 2rem;
  font-size: 1.15rem;
}

.legal-page ul {
  padding-left: 1.25rem;
}

.cc-gate {
  max-width: 480px;
  margin: 3rem auto;
  text-align: center;
}

.cc-gate-lead {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.cc-gate-security {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.cc-gate-security a {
  color: var(--cyan);
}

.cc-gate-foot {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.cc-footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.cc-gate-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.cc-topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.cc-topbar-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #00f0ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.25rem;
}

.cc-topbar h1 {
  margin: 0;
  font-size: 1.5rem;
}

.cc-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.cc-tier-badge {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}

.cc-tier-badge--shield {
  color: #00f0ff;
}

.cc-location-select {
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.3);
  color: inherit;
}

.cc-grid-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.cc-sidebar {
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cc-status-card,
.cc-history-card,
.cc-settings-card,
.cc-map-panel,
.cc-rivals-panel,
.cc-actions-panel {
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(11, 15, 25, 0.75);
}

.cc-primary {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cc-actions-panel {
  grid-column: 1 / -1;
}

.cc-health-card .cc-health-hero {
  font-size: 2.75rem;
  margin: 0.25rem 0 0.75rem;
}

.cc-health-card .cc-health-hero span {
  font-size: 1.25rem;
  opacity: 0.7;
}

.cc-map-canvas {
  height: 420px;
  border-radius: 8px;
}

.cc-panel-sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 1rem;
}

.cc-stat-big {
  font-size: 2.25rem;
  font-weight: 700;
  color: #00f0ff;
  margin: 0.5rem 0;
}

.cc-stat-big span {
  font-size: 1rem;
  opacity: 0.7;
}

.cc-stat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}

.cc-stat-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cc-rivals-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.cc-rival-card {
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 240, 255, 0.03);
}

.cc-rival-card h3 {
  margin: 0.25rem 0 0.5rem;
  font-size: 0.95rem;
}

.cc-rival-rank {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #00f0ff;
}

.cc-rival-card dl {
  margin: 0;
  font-size: 0.75rem;
}

.cc-rival-card dt {
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.35rem;
}

.cc-rival-card dd {
  margin: 0.1rem 0 0;
}

.cc-action-list {
  margin: 0;
  padding-left: 1.25rem;
}

.cc-action-item {
  margin-bottom: 1rem;
  padding: 0.85rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.cc-action-title {
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.cc-impact-critical {
  border-left: 3px solid #ef4444;
}

.cc-impact-high {
  border-left: 3px solid #f59e0b;
}

.cc-history-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8125rem;
}

.cc-history-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
}

.cc-check {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0.4rem 0;
  font-size: 0.875rem;
}

.cc-empty,
.cc-locked {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.cc-locked a {
  color: #00f0ff;
}

@media (max-width: 900px) {
  .cc-grid-layout {
    grid-template-columns: 1fr;
  }
  .cc-sidebar {
    grid-row: auto;
  }
  .cc-actions-panel {
    grid-column: 1;
  }
}
