/* ═══════════════════════════════════════════
   GATE OVERLAY
   ═══════════════════════════════════════════ */
#gate {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6, 6, 11, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
#gate.hidden {
  opacity: 0;
  pointer-events: none;
}

.gate-card {
  width: 100%; max-width: 400px; margin: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px; padding: 52px 44px;
  text-align: center;
  position: relative;
}

.gate-logo {
  font-family: 'Clash Display', sans-serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.gate-subtitle {
  font-size: 12px; font-weight: 600; letter-spacing: 4px;
  color: rgba(255,255,255,0.2); text-transform: uppercase;
  margin-bottom: 40px;
}
.gate-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.01em; margin-bottom: 10px;
}
.gate-desc {
  font-size: 13px; color: rgba(255,255,255,0.5);
  line-height: 1.7; margin-bottom: 32px;
}

.gate-form { display: flex; flex-direction: column; gap: 12px; }
.gate-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 16px 24px;
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px; font-weight: 600;
  letter-spacing: 8px;
  text-align: center;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.gate-input::placeholder {
  letter-spacing: 4px; font-size: 13px;
  color: rgba(255,255,255,0.15);
}
.gate-input:focus {
  border-color: rgba(167,139,250,0.4);
  background: rgba(167,139,250,0.06);
}
.gate-btn {
  padding: 16px;
  border-radius: 100px; border: none;
  background: linear-gradient(135deg, #a78bfa 0%, #67e8f9 50%, #f9a8d4 100%);
  color: #000;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700; font-size: 15px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s,
              opacity 0.3s;
}
.gate-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(167,139,250,0.25);
}
.gate-btn:disabled { opacity: 0.5; }

.gate-error {
  font-size: 13px; color: #f87171;
  min-height: 20px; margin-top: 4px;
}

/* ═══════════════════════════════════════════
   LAUNCH HERO BADGE
   ═══════════════════════════════════════════ */
.hero-badge--launch {
  background: rgba(251,191,36,0.08);
  border-color: rgba(251,191,36,0.2);
  color: #fbbf24;
}
.hero-badge--launch .dot {
  background: #fbbf24;
}

/* ═══════════════════════════════════════════
   OFFER COUNTDOWN
   ═══════════════════════════════════════════ */
.offer-countdown {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 28px;
  padding: 12px 24px; border-radius: 16px;
  background: rgba(251,191,36,0.06);
  border: 1px solid rgba(251,191,36,0.15);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.offer-countdown-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(251,191,36,0.6); margin-right: 8px;
}
.offer-countdown .cd-num {
  color: #fbbf24;
  min-width: 28px; text-align: center;
  font-size: 20px;
}
.offer-countdown .cd-sep {
  color: rgba(251,191,36,0.4);
  animation: countdownBlink 1s ease-in-out infinite;
}
@keyframes countdownBlink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.1; }
}

/* ═══════════════════════════════════════════
   LAUNCH PRICING OVERRIDES
   ═══════════════════════════════════════════ */
.price-regular-crossed {
  font-family: 'Clash Display', sans-serif;
  font-size: 18px; font-weight: 600;
  color: rgba(255,255,255,0.2);
  text-decoration: line-through;
  margin-bottom: 4px;
  display: block;
}
.price-launch-badge {
  display: inline-block;
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.2);
  color: #fbbf24;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 8px;
}
