/* ═══════════════════════════════════════════════════════════════
   home.css — index.html only
   Global brand styles live in styles.css. This file contains
   only homepage-specific layout: photo strip and neon quote.
   ═══════════════════════════════════════════════════════════════ */

/* ── VIP First-visit Popup ─────────────────────────────────────── */
.vip-popup {
  display:         flex;
  position:        fixed;
  inset:           0;
  z-index:         2000;
  align-items:     center;
  justify-content: center;
  padding:         1.5rem;
  opacity:         0;
  visibility:      hidden;
  pointer-events:  none;
  transition:      opacity 0.4s ease, visibility 0.4s ease;
}
.vip-popup--visible {
  opacity:        1;
  visibility:     visible;
  pointer-events: auto;
}

.vip-popup__backdrop {
  position:        absolute;
  inset:           0;
  background:      rgba(3, 4, 11, 0.85);
  backdrop-filter: blur(6px);
}

.vip-popup__card {
  position:      relative;
  z-index:       1;
  background:    linear-gradient(160deg, #0b0e22 0%, #07090f 100%);
  border:        1px solid var(--blue-border);
  border-radius: 16px;
  padding:       2.5rem 2.25rem;
  max-width:     440px;
  width:         100%;
  text-align:    center;
  box-shadow:    0 0 60px rgba(13, 108, 255, 0.12), 0 30px 80px rgba(0, 0, 0, 0.6);
  transform:     translateY(24px) scale(0.97);
  opacity:       0;
  transition:    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s ease;
}
.vip-popup--visible .vip-popup__card {
  transform: translateY(0) scale(1);
  opacity:   1;
}

.vip-popup__close {
  position:    absolute;
  top:         0.9rem;
  right:       1rem;
  background:  none;
  border:      none;
  color:       var(--color-muted);
  font-size:   1.4rem;
  line-height: 1;
  cursor:      pointer;
  padding:     0.2rem 0.4rem;
  transition:  color 0.2s;
}
.vip-popup__close:hover { color: #fff; }

.vip-popup__badge {
  display:        inline-block;
  font-size:      0.68rem;
  font-weight:    700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:          var(--blue-lt);
  border:         1px solid var(--blue-border);
  background:     rgba(13, 108, 255, 0.08);
  padding:        0.28rem 0.9rem;
  border-radius:  100px;
  margin-bottom:  1.1rem;
}

.vip-popup__title {
  font-family:   var(--font-heading);
  font-size:     clamp(1.6rem, 4vw, 2.1rem);
  font-weight:   700;
  color:         var(--color-text);
  line-height:   1.2;
  margin-bottom: 0.65rem;
}

.vip-popup__sub {
  font-size:     0.9rem;
  color:         var(--color-muted);
  line-height:   1.65;
  margin-bottom: 1.5rem;
}

.vip-popup__form {
  display:        flex;
  flex-direction: column;
  gap:            0.75rem;
  margin-bottom:  0.75rem;
}

.vip-popup__form input[type="email"] {
  width:         100%;
  background:    rgba(13, 108, 255, 0.07);
  border:        1px solid var(--blue-border);
  border-radius: var(--radius);
  color:         var(--color-text);
  font-family:   var(--font-body);
  font-size:     0.95rem;
  padding:       0.8rem 1rem;
  outline:       none;
  text-align:    center;
  transition:    border-color 0.2s, box-shadow 0.2s;
}
.vip-popup__form input[type="email"]::placeholder { color: var(--color-muted); }
.vip-popup__form input[type="email"]:focus {
  border-color: var(--blue-lt);
  box-shadow:   0 0 0 3px rgba(13, 108, 255, 0.15);
}

.vip-popup__note {
  font-size:  0.82rem;
  min-height: 1.1em;
  color:      var(--color-muted);
}

.vip-popup__skip {
  background:     none;
  border:         none;
  color:          var(--color-muted);
  font-size:      0.8rem;
  font-family:    var(--font-body);
  cursor:         pointer;
  padding:        0.25rem 0.5rem;
  transition:     color 0.2s;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.vip-popup__skip:hover { color: var(--color-text); }

/* ── Neon quote feature ────────────────────────────────────────── */
.neon-quote {
  background: linear-gradient(135deg, #05070e 0%, #080c1c 50%, #05070e 100%);
  padding:    4.5rem 0;
  text-align: center;
  position:   relative;
  overflow:   hidden;
}
.neon-quote::before {
  content:    '';
  position:   absolute;
  top:        0; left: 0; right: 0;
  height:     1px;
  background: linear-gradient(90deg, transparent, rgba(13, 108, 255, 0.35), transparent);
}
.neon-quote::after {
  content:    '';
  position:   absolute;
  bottom:     0; left: 0; right: 0;
  height:     1px;
  background: linear-gradient(90deg, transparent, rgba(13, 108, 255, 0.25), transparent);
}
.neon-quote__text {
  font-family:    var(--font-heading);
  font-size:      clamp(1.6rem, 4vw, 2.8rem);
  font-weight:    600;
  font-style:     italic;
  color:          #fff;
  max-width:      860px;
  margin:         0 auto;
  padding:        0 2rem;
  line-height:    1.3;
  text-shadow:
    0 0 20px rgba(13, 108, 255, 0.35),
    0 0 50px rgba(13, 108, 255, 0.12);
  letter-spacing: 0.01em;
}
.neon-quote__attr {
  margin-top:     1.25rem;
  font-size:      0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:          rgba(255, 255, 255, 0.6);
}
