/* ============================================
   PANJA — Coming Soon Page Styles
   ============================================ */

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

:root {
  --bg: #0a0a0b;
  --surface: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --text-primary: #f5f0e8;
  --text-secondary: rgba(245,240,232,0.55);
  --text-muted: rgba(245,240,232,0.3);
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dim: rgba(201,168,76,0.15);
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ---- Animated Background ---- */

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
  animation: floatOrb 18s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(180,120,60,0.12) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation-delay: -6s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,230,180,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -12s;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0px) scale(1); }
  33% { transform: translateY(-30px) scale(1.05); }
  66% { transform: translateY(20px) scale(0.97); }
}

/* ---- Particle canvas ---- */

#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ---- Container ---- */

.container {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 120px;
  gap: 0;
}

/* ---- Logo ---- */

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 84px;
  gap: 20px;
  animation: fadeUp 1s cubic-bezier(.16,1,.3,1) both;
  animation-delay: 0.1s;
}

.logo-icon-wrap {
  width: clamp(200px, 30vw, 320px);
  height: clamp(200px, 30vw, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, var(--gold-dim) 0%, transparent 100%);
  border: 1.5px solid rgba(201,168,76,0.35);
  border-radius: 50%;
  padding: clamp(30px, 6vw, 60px);
  backdrop-filter: blur(15px);
  box-shadow: 
    0 0 60px rgba(0, 0, 0, 0.6), 
    0 0 30px var(--gold-dim),
    inset 0 0 20px rgba(201,168,76,0.1);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.8s ease;
}

.logo-icon-wrap:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 40px rgba(201,168,76,0.3);
}

.logo-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(0.85);
}

.logo-text {
  height: clamp(80px, 12vw, 130px);
  width: auto;
  object-fit: contain;
  filter: invert(1) sepia(0.3) saturate(1.2) brightness(0.9);
  opacity: 0.92;
}

/* ---- Hero Text ---- */

.hero-text {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeUp 1s cubic-bezier(.16,1,.3,1) both;
  animation-delay: 0.25s;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.9;
}

.headline {
  font-family: var(--font-serif);
  font-size: clamp(56px, 10vw, 110px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 28px;
}

.headline .italic {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.sub-tagline {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}

/* ---- Countdown ---- */

.countdown-section {
  margin-bottom: 52px;
  animation: fadeUp 1s cubic-bezier(.16,1,.3,1) both;
  animation-delay: 0.4s;
}

.countdown-grid {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 28px;
  min-width: 88px;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.countdown-block:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.06);
  transform: translateY(-3px);
}

.count-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.count-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.countdown-sep {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--text-muted);
  padding-bottom: 22px;
  user-select: none;
}

/* ---- Notify Form ---- */

.notify-section {
  text-align: center;
  margin-bottom: 48px;
  animation: fadeUp 1s cubic-bezier(.16,1,.3,1) both;
  animation-delay: 0.55s;
}

.notify-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.input-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, box-shadow 0.3s;
  max-width: 420px;
  margin: 0 auto;
}

.input-wrap:focus-within {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

#email-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 22px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

#email-input::placeholder {
  color: var(--text-muted);
}

#notify-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #c9a84c, #e8c96a);
  border: none;
  border-radius: 50px;
  margin: 4px;
  padding: 10px 22px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #0a0a0b;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}

#notify-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
}

#notify-btn:active {
  transform: scale(0.98);
}

.btn-icon {
  font-size: 15px;
  transition: transform 0.2s;
}

#notify-btn:hover .btn-icon {
  transform: translateX(3px);
}

.success-msg {
  display: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--gold-light);
  margin-top: 14px;
  letter-spacing: 0.02em;
  animation: fadeUp 0.6s ease both;
}

.success-msg.visible {
  display: block;
}

/* ---- Social Footer ---- */

.social-footer {
  text-align: center;
  animation: fadeUp 1s cubic-bezier(.16,1,.3,1) both;
  animation-delay: 0.7s;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.social-link:hover {
  color: var(--gold-light);
}

.social-divider {
  color: var(--text-muted);
  font-size: 16px;
}

.copyright {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- Marquee ---- */

.marquee-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-top: 1px solid var(--border);
  background: rgba(10,10,11,0.8);
  backdrop-filter: blur(12px);
  overflow: hidden;
  padding: 10px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.marquee-track .dot {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Animations ---- */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Responsive ---- */

@media (max-width: 600px) {
  .headline {
    font-size: clamp(48px, 14vw, 80px);
  }

  .countdown-block {
    padding: 14px 16px;
    min-width: 68px;
  }

  .count-num {
    font-size: 36px;
  }

  .countdown-sep {
    font-size: 28px;
  }

  .input-wrap {
    flex-direction: column;
    border-radius: 16px;
    max-width: 320px;
  }

  #email-input {
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    text-align: center;
  }

  #notify-btn {
    border-radius: 12px;
    margin: 4px;
    justify-content: center;
    padding: 12px 22px;
  }

  .logo-text {
    height: 30px;
  }
}
