
/* ── Landing Page ──────────────────────────────────── */

.lp-page {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(155, 89, 182, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 20% 90%, rgba(255, 215, 0, 0.06) 0%, transparent 35%),
    linear-gradient(180deg, #0a0810 0%, #0d0a16 40%, #080610 100%);
}

/* Floating card background */

.lp-cards-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.lp-float-card {
  position: absolute;
  opacity: 0;
  animation: lpCardIn 1.2s ease-out forwards, lpCardDrift 8s ease-in-out infinite alternate;
}

.lp-float-card .card {
  cursor: default;
}

.lp-art-symbol {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

.lp-float-pos-1 { top: 8%;  left: -4%;  transform: scale(0.7)  rotate(-18deg); animation-delay: 0s;   }
.lp-float-pos-2 { top: 55%; left: -2%;  transform: scale(0.65) rotate(12deg);  animation-delay: 1.5s; }
.lp-float-pos-3 { top: 80%; left: 8%;   transform: scale(0.55) rotate(-8deg);  animation-delay: 3s;   }
.lp-float-pos-4 { top: 15%; left: 12%;  transform: scale(0.6)  rotate(6deg);   animation-delay: 0.8s; }
.lp-float-pos-5 { top: 5%;  right: -4%; transform: scale(0.7)  rotate(15deg);  animation-delay: 0.5s; }
.lp-float-pos-6 { top: 50%; right: -2%; transform: scale(0.65) rotate(-10deg); animation-delay: 2s;   }
.lp-float-pos-7 { top: 78%; right: 8%;  transform: scale(0.55) rotate(20deg);  animation-delay: 2.5s; }
.lp-float-pos-8 { top: 20%; right: 12%; transform: scale(0.6)  rotate(-5deg);  animation-delay: 1s;   }

@keyframes lpCardIn {
  0%   { opacity: 0; filter: blur(8px) drop-shadow(0 4px 8px rgba(0,0,0,0.6)); }
  100% { opacity: 0.35; filter: blur(0px) drop-shadow(0 4px 8px rgba(0,0,0,0.6)); }
}

@keyframes lpCardDrift {
  0%   { translate: 0 0; }
  100% { translate: 0 -18px; }
}

/* Particles */

.lp-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.lp-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: lpFloat 12s ease-in-out infinite;
}

.lp-particle--1 { width: 4px; height: 4px; background: var(--accent-gold);    top: 20%; left: 15%; animation-delay: 0s;  animation-duration: 10s; }
.lp-particle--2 { width: 3px; height: 3px; background: var(--accent-primary); top: 60%; left: 80%; animation-delay: 2s;  animation-duration: 14s; }
.lp-particle--3 { width: 5px; height: 5px; background: rgba(155, 89, 182, 0.8); top: 40%; left: 50%; animation-delay: 4s; animation-duration: 11s; }
.lp-particle--4 { width: 3px; height: 3px; background: var(--accent-gold);    top: 75%; left: 25%; animation-delay: 1s;  animation-duration: 13s; }
.lp-particle--5 { width: 4px; height: 4px; background: var(--accent-primary); top: 30%; left: 70%; animation-delay: 3s;  animation-duration: 9s; }
.lp-particle--6 { width: 2px; height: 2px; background: var(--accent-gold);    top: 85%; left: 60%; animation-delay: 5s;  animation-duration: 15s; }

@keyframes lpFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  20%      { opacity: 0.7; }
  50%      { opacity: 0.4; transform: translateY(-60px) scale(1.2); }
  80%      { opacity: 0.6; }
}

@keyframes lpPulse {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

/* Hero content */

.lp-hero {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  text-align: center;
  padding: 48px 32px 40px;
}

.lp-hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, rgba(255, 172, 66, 0.08) 40%, transparent 70%);
  pointer-events: none;
}

.lp-badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 100px;
  background: rgba(255, 215, 0, 0.06);
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.lp-title {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.lp-title-main {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #ffffff 0%, #ffd700 40%, #ff6b35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 12px rgba(255, 107, 53, 0.3));
}

.lp-title-sub {
  display: block;
  margin-top: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.lp-description {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto 40px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(20, 16, 31, 0.72), rgba(10, 8, 16, 0.5));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(0, 0, 0, 0.18);
  font-size: clamp(1.04rem, 1.2vw, 1.16rem);
  line-height: 1.82;
  letter-spacing: 0.012em;
  text-wrap: balance;
}

.lp-description-strong {
  color: var(--accent-primary);
  font-weight: 700;
  text-shadow:
    0 0 18px rgba(255, 107, 53, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.04);
}

.lp-description-soft {
  color: rgba(244, 237, 229, 0.88);
}

.lp-highlight {
  color: var(--accent-primary);
  font-weight: 600;
}

.lp-cta-area {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}

.lp-feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 28px;
}

.lp-feature {
  padding: 14px 16px;
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: 16px;
  background: rgba(12, 10, 20, 0.55);
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.45;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lp-coming-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(18, 18, 31, 0.6) 100%);
  color: var(--accent-gold);
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  animation: lpPulse 3s ease-in-out infinite;
  box-shadow: 0 4px 30px rgba(255, 215, 0, 0.08), 0 0 60px rgba(255, 215, 0, 0.04);
}

.lp-signin-btn {
  cursor: pointer;
}

.lp-signin-btn:disabled {
  cursor: wait;
  opacity: 0.78;
}

.lp-coming-text {
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.lp-auth-warning {
  max-width: 520px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-radius: 14px;
  background: rgba(231, 76, 60, 0.08);
}

.lp-auth-warning h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
}

.lp-auth-warning p {
  margin-top: 10px;
  color: var(--text-secondary);
}

.lp-footer-note {
  position: relative;
  z-index: 1;
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lp-agent-note {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 22px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 215, 0, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(22, 18, 30, 0.88), rgba(10, 10, 18, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 38px rgba(0, 0, 0, 0.2);
}

.lp-agent-note-kicker {
  margin-bottom: 8px;
  color: #9effb7;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lp-agent-note-copy {
  color: rgba(244, 237, 229, 0.88);
  font-size: 1rem;
  line-height: 1.6;
}

.lp-agent-note-link {
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  font-family: 'Cinzel', serif;
  font-weight: 700;
}

/* ── End Landing Page ─────────────────────────────── */


.auth-page {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(255, 145, 77, 0.18), transparent 35%),
    radial-gradient(circle at bottom left, rgba(255, 215, 0, 0.1), transparent 30%),
    linear-gradient(180deg, #0a0810 0%, #120d12 45%, #080610 100%);
}

.auth-card {
  position: relative;
  width: min(100%, 560px);
  padding: 40px 32px;
  border: 1px solid rgba(255, 183, 77, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18, 18, 31, 0.96), rgba(13, 10, 19, 0.96));
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.auth-card-compact {
  width: min(100%, 460px);
  text-align: center;
}

.auth-card-glow {
  position: absolute;
  inset: auto -10% 65%;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 172, 66, 0.35), transparent 65%);
  pointer-events: none;
}

.auth-eyebrow {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.auth-title {
  position: relative;
  z-index: 1;
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
}

.auth-copy,
.auth-status,
.auth-warning p {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.auth-cta,
.auth-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  text-decoration: none;
}

.auth-cta:disabled {
  cursor: wait;
  opacity: 0.75;
}

.auth-warning {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-radius: 14px;
  background: rgba(231, 76, 60, 0.08);
}

.auth-warning h2 {
  font-size: 1.1rem;
}

@media (max-width: 680px) {
  .lp-page {
    padding: 16px;
  }

  .lp-hero {
    padding: 32px 20px;
  }

  .lp-float-card {
    display: none;
  }

  .lp-description {
    padding: 16px 18px;
    font-size: 0.98rem;
  }
}
