/* ---------- LAUNCH COUNTDOWN DIALOG ---------- */
.launch-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}

.launch-overlay[hidden] {
  display: none;
}

.launch-dialog {
  position: relative;
  background: var(--bg);
  border-radius: 24px;
  padding: 40px 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.launch-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(28, 27, 27, 0.06);
  color: var(--text);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.launch-close:hover {
  background: rgba(28, 27, 27, 0.12);
}

.launch-dialog .logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.launch-dialog .logo img {
  height: 40px;
  width: auto;
}

.launch-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 28px;
}

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

.launch-text-download {
  margin-top: 24px;
}

.launch-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.launch-countdown .unit {
  background: #fff;
  border-radius: 16px;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--border);
}

.launch-countdown .value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.launch-countdown .label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b6b6b;
  font-weight: 600;
}

@media (max-width: 480px) {
  .launch-dialog {
    padding: 32px 20px;
  }
  .launch-text {
    font-size: 18px;
    line-height: 26px;
  }
  .launch-countdown .value {
    font-size: 22px;
  }
}
