/* ==========================================================================
   MorphixIQ - Highly Animated & Decorative "Coming Soon" Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700;800;900&family=Space+Grotesk:wght@500;700;900&display=swap');

:root {
  --bg-dark: #040711;
  --bg-card: rgba(15, 23, 42, 0.75);
  --blue-cyan: #00a8ff;
  --purple-indigo: #6c5ce7;
  --emerald-green: #00b894;
  --pink-neon: #e84393;
  --text-light: #ffffff;
  --text-muted: #94a3b8;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}

/* Background Animated Gradient Mesh & Glowing Ambient Orbs */
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  pointer-events: none;
  animation: orbFloat 14s ease-in-out infinite alternate;
}

.orb-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--blue-cyan) 0%, transparent 70%);
  top: -150px;
  left: -100px;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--purple-indigo) 0%, transparent 70%);
  bottom: -200px;
  right: -150px;
  animation-delay: -5s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--pink-neon) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -8s;
  opacity: 0.3;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, 40px) scale(1.15);
  }
  100% {
    transform: translate(-40px, 80px) scale(0.9);
  }
}

/* Futuristic Grid Overlay */
.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 168, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

/* Animated Floating Particles Canvas Effect */
.particles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Main Container Card */
.coming-soon-wrapper {
  position: relative;
  z-index: 10;
  max-width: 900px;
  width: 90%;
  padding: 4.5rem 3.5rem;
  background: rgba(15, 23, 42, 0.65);
  border: 1.5px solid rgba(0, 168, 255, 0.35);
  border-radius: 32px;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.8),
    inset 0 1px 2px rgba(255, 255, 255, 0.15),
    0 0 40px rgba(0, 168, 255, 0.15);
  backdrop-filter: blur(25px);
  text-align: center;
  animation: cardEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardEntrance {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Floating Brand Logo Badge */
.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(9, 13, 22, 0.85);
  border: 1.5px solid rgba(0, 168, 255, 0.5);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  margin-bottom: 2.5rem;
  box-shadow: 0 0 25px rgba(0, 168, 255, 0.3);
  animation: pulseBadge 3s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%, 100% {
    box-shadow: 0 0 25px rgba(0, 168, 255, 0.3);
    border-color: rgba(0, 168, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(108, 92, 231, 0.6);
    border-color: rgba(108, 92, 231, 0.8);
  }
}

.brand-icon {
  font-size: 1.5rem;
  color: var(--blue-cyan);
  animation: rotateIcon 10s linear infinite;
}

@keyframes rotateIcon {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ffffff 0%, var(--blue-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: lowercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Glowing Status Chip */
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 184, 148, 0.15);
  border: 1px solid var(--emerald-green);
  color: #55efc4;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #55efc4;
  border-radius: 50%;
  box-shadow: 0 0 10px #55efc4;
  animation: blinkDot 1.5s ease-in-out infinite;
}

@keyframes blinkDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}

/* Animated Shimmer Headlines */
.main-heading {
  font-family: var(--font-heading);
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.gradient-text {
  background: linear-gradient(135deg, #00a8ff 0%, #6c5ce7 50%, #e84393 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 5s linear infinite;
}

@keyframes shineText {
  to {
    background-position: 200% center;
  }
}

.sub-heading {
  font-size: 1.35rem;
  color: #f1f5f9;
  font-weight: 500;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Decorative Counter Grid */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.time-box {
  background: rgba(9, 13, 22, 0.85);
  border: 1.5px solid rgba(0, 168, 255, 0.3);
  padding: 1.25rem 1.75rem;
  border-radius: 18px;
  min-width: 100px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.time-box:hover {
  border-color: var(--blue-cyan);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 168, 255, 0.3);
}

.time-val {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
}

.time-lbl {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-top: 4px;
}

/* Progress Line Bar */
.progress-bar-wrap {
  max-width: 580px;
  margin: 0 auto 3.5rem;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  color: #cbd5e1;
  margin-bottom: 0.75rem;
}

.progress-track {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  width: 88%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-cyan), var(--purple-indigo), var(--pink-neon));
  border-radius: 50px;
  position: relative;
  animation: progressGlow 2s ease-in-out infinite alternate;
}

@keyframes progressGlow {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.35); box-shadow: 0 0 15px var(--blue-cyan); }
}

/* Interactive Notify Subscription Form */
.notify-form {
  display: flex;
  max-width: 540px;
  margin: 0 auto;
  gap: 12px;
}

.notify-input {
  flex: 1;
  padding: 1.15rem 1.5rem;
  background: rgba(9, 13, 22, 0.95);
  border: 1.5px solid rgba(0, 168, 255, 0.4);
  border-radius: 50px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
}

.notify-input::placeholder {
  color: #94a3b8;
}

.notify-input:focus {
  border-color: var(--blue-cyan);
  box-shadow: 0 0 25px rgba(0, 168, 255, 0.45);
}

.notify-btn {
  padding: 1.15rem 2rem;
  background: linear-gradient(135deg, var(--blue-cyan), var(--purple-indigo));
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(0, 168, 255, 0.35);
  white-space: nowrap;
}

.notify-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 168, 255, 0.55);
}

/* Footer Tagline */
.coming-soon-footer {
  margin-top: 3.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .coming-soon-wrapper {
    padding: 3rem 1.75rem;
  }
  .main-heading {
    font-size: 2.8rem;
  }
  .sub-heading {
    font-size: 1.1rem;
  }
  .countdown-container {
    gap: 0.75rem;
  }
  .time-box {
    padding: 1rem;
    min-width: 75px;
  }
  .time-val {
    font-size: 1.8rem;
  }
  .notify-form {
    flex-direction: column;
  }
  .notify-btn {
    width: 100%;
    justify-content: center;
  }
}
