@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --bg-dark: #080a0e;
  --card-bg: rgba(16, 22, 31, 0.65);
  --card-border: rgba(255, 255, 255, 0.1);
  --card-border-glow: rgba(45, 158, 137, 0.35);
  --teal-primary: #2d9e89;
  --teal-glow: rgba(45, 158, 137, 0.5);
  --gold-accent: #d4af37;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-subtle: #6b7280;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background Canvas */
#ambient-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Main Container */
.coming-soon-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1.5rem;
  text-align: center;
}


@keyframes pulse-glow {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

/* Glassmorphism Card */
.hero-card {
  position: relative;
  max-width: 680px;
  width: 100%;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 3.5rem 3rem;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  animation: card-appear 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-card:hover {
  border-color: var(--card-border-glow);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(45, 158, 137, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

@keyframes card-appear {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Logo Container */
.logo-wrapper {
  display: inline-block;
}

.brand-logo {
  max-width: 220px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.03);
}

/* Status Badge */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(45, 158, 137, 0.12);
  border: 1px solid rgba(45, 158, 137, 0.3);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5eead4;
  box-shadow: 0 0 15px rgba(45, 158, 137, 0.1);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #2d9e89;
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background-color: rgba(45, 158, 137, 0.6);
  animation: pulse-ring 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Main Heading */
.main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 50%, #9ca3af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-text {
  font-style: italic;
  background: linear-gradient(135deg, #2d9e89 0%, #5eead4 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2.2rem auto;
}

/* Decorative Divider */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-primary), transparent);
  margin: 0 auto;
}

/* Footer Copyright */
.footer-note {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-subtle);
  letter-spacing: 0.05em;
}

.footer-note span {
  color: var(--teal-primary);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .hero-card {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
  }
  .brand-logo {
    max-width: 180px;
  }
  .status-pill{
    font-size: 10px;
  }
  .main-title{
    font-size: 24px;
  }
 .subtitle{
  font-size: 14px;
 }
}

.flexB{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 8px;
  margin-bottom: 16px;
}