/* Captain launch pad — big tiles, zero prose walls */

.kl-head {
  margin-bottom: 16px;
}
.kl-title {
  margin: 0;
  font-family: Orbitron, Cinzel, serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold, #ffd700);
  text-transform: uppercase;
}
.kl-sub {
  margin: 6px 0 0;
  font-size: 11px;
  color: var(--muted, rgba(255, 255, 255, 0.38));
}

.kl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.kl-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 108px;
  padding: 14px 10px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--kl-accent, #ffd700) 35%, transparent);
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--kl-accent, #ffd700) 12%, #0d0d1f),
    #06060f 70%
  );
  text-decoration: none;
  color: var(--text, #e8e8f0);
  transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
  cursor: pointer;
}
.kl-tile:hover {
  transform: translateY(-2px);
  border-color: var(--kl-accent, #ffd700);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--kl-accent, #ffd700) 25%, transparent);
}
.kl-tile:active {
  transform: translateY(0);
}
.kl-icon {
  font-size: 28px;
  line-height: 1;
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--kl-accent, #ffd700) 40%, transparent));
}
.kl-label {
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
.kl-tag {
  font-size: 9px;
  color: var(--muted, rgba(255, 255, 255, 0.38));
  text-align: center;
  line-height: 1.2;
  max-width: 100%;
}

/* Dashboard full-bleed launch tab */
.kd-launch-view {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px 32px;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 215, 0, 0.06), transparent), var(--cosmic, #06060e);
}
.kd-launch-view .kl-grid {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  max-width: 1200px;
}
.kd-launch-view .kl-tile {
  min-height: 120px;
}

/* Nemeton war room — launcher replaces stats wall */
#panel-overview .kl-grid {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
