/* ===== SOORASO — Coming Soon ===== */
:root {
  --bg: #060608;
  --gold: #c9a84c;
  --gold-light: #e4c76b;
  --gold-dark: #a08030;
  --text: #f0f0f0;
  --text-muted: #777;
  --text-dim: #444;
  --border: #1a1a1a;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; }

/* ===== Watermark ===== */
.watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(20rem, 50vw, 45rem);
  color: var(--gold);
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  animation: watermarkPulse 8s ease-in-out infinite;
}
@keyframes watermarkPulse {
  0%, 100% { opacity: 0.03; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.05; transform: translate(-50%, -50%) scale(1.02); }
}

/* ===== Particles ===== */
.particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

/* ===== Main Layout ===== */
.coming-soon {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.content-wrapper {
  max-width: 620px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* ===== Logo ===== */
.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeInDown 1s ease forwards;
}
.logo-icon {
  font-size: 3rem;
  color: var(--gold);
  filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.3));
  animation: iconGlow 4s ease-in-out infinite;
}
@keyframes iconGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.2)); }
  50% { filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.5)); }
}
.logo-text {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 900;
  letter-spacing: 12px;
  background: linear-gradient(135deg, var(--text) 0%, var(--gold-light) 50%, var(--text) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ===== Tagline ===== */
.tagline-section {
  animation: fadeInUp 1s 0.3s ease forwards;
  opacity: 0;
}
.tagline-gurmukhi {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.6;
}
.tagline-english {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 8px;
}
.tagline-source {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== Coming Section ===== */
.coming-section {
  animation: fadeInUp 1s 0.6s ease forwards;
  opacity: 0;
}
.coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(201, 168, 76, 0); }
}

.coming-headline {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.coming-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

/* ===== Countdown ===== */
.countdown {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeInUp 1s 0.9s ease forwards;
  opacity: 0;
}
.countdown-item { text-align: center; }
.countdown-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  min-width: 60px;
}
.countdown-label {
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 4px;
}
.countdown-sep {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
  margin-top: -16px;
}

/* ===== Signup ===== */
.signup-section {
  width: 100%;
  animation: fadeInUp 1s 1.2s ease forwards;
  opacity: 0;
}
.signup-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.signup-form {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto 12px;
}
.signup-form input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.signup-form input:focus { border-color: var(--gold); background: rgba(201, 168, 76, 0.04); }
.signup-form input::placeholder { color: var(--text-dim); }
.signup-form button {
  padding: 16px 28px;
  background: var(--gold);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.signup-form button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}
.signup-note { font-size: 0.7rem; color: var(--text-dim); }

/* ===== Success State ===== */
.signup-success {
  padding: 20px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  max-width: 440px;
  margin: 0 auto;
}
.signup-success p {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.9rem;
}

/* ===== Socials ===== */
.socials {
  display: flex;
  gap: 16px;
  animation: fadeInUp 1s 1.5s ease forwards;
  opacity: 0;
}
.social-link {
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  transition: var(--transition);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.15);
}

/* ===== Footer ===== */
.footer-line {
  animation: fadeInUp 1s 1.7s ease forwards;
  opacity: 0;
}
.footer-line p {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 1px;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 100;
  transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.35);
}
.toast.active { bottom: 40px; }
.toast-icon { font-size: 1.1rem; }

/* ===== Animations ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 500px) {
  .content-wrapper { gap: 32px; }
  .signup-form { flex-direction: column; }
  .countdown { gap: 10px; }
  .countdown-sep { font-size: 1.5rem; }
  .logo-text { letter-spacing: 8px; }
}
