/* ── Launcher Screen Styles ── */
.launcher-container {
  padding: 24px 16px;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.launcher-header {
  text-align: center;
  padding: 0 0 20px;
}

.launcher-header-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 16px;
  background: var(--acc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-accent);
}

.launcher-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--wh);
  letter-spacing: -0.5px;
}

.launcher-subtitle {
  font-size: 13px;
  color: var(--dim);
  margin-top: 4px;
}

.launcher-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.launcher-card {
  position: relative;
  background: var(--sf);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 20px 16px;
  cursor: pointer;
  transition: box-shadow var(--anim-base) ease,
              transform var(--anim-base) ease,
              border-color var(--anim-base) var(--ease-out);
  box-shadow: var(--elev-1);
  overflow: hidden;
  opacity: 0;
  animation: hubCardIn var(--anim-slow) var(--ease-out) forwards;
}

.launcher-card:nth-child(1) { animation-delay: 60ms; }
.launcher-card:nth-child(2) { animation-delay: 120ms; }
.launcher-card:nth-child(3) { animation-delay: 180ms; }
.launcher-card:nth-child(4) { animation-delay: 240ms; }
.launcher-card:nth-child(5) { animation-delay: 300ms; }
.launcher-card:nth-child(6) { animation-delay: 360ms; }
.launcher-card:nth-child(7) { animation-delay: 420ms; }

.launcher-card:active {
  transform: scale(0.97);
}

.launcher-card:hover {
  border-color: var(--bdr2);
  box-shadow: var(--elev-2);
}

.launcher-card--active {
  border-width: 2px;
  padding: 19px 15px;
}

.launcher-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--text-on-accent);
}

.launcher-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--wh);
  line-height: 1.3;
}

.launcher-card-tagline {
  font-size: 10px;
  color: var(--dim);
  margin-top: 2px;
}

.launcher-card-progress {
  margin-top: 10px;
}

.launcher-card-bar-track {
  height: 4px;
  background: var(--track-bg);
  border-radius: 2px;
  overflow: hidden;
}

.launcher-card-bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.6s var(--ease-out);
}

.launcher-card-pct {
  font-size: 10px;
  font-weight: 700;
  margin-top: 4px;
  text-align: right;
}

.launcher-card-active {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--grn);
}

.launcher-active-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grn);
  display: inline-block;
  animation: hubPulse 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 320px) {
  .launcher-grid {
    grid-template-columns: 1fr;
  }
}
