/* =============================
   VyaparSetu135 – Coming Soon
   style.css
   ============================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --navy:       #0f1340;
  --navy-light: #1a1f5e;
  --gold:       #f59e0b;
  --gold-light: #fbbf24;
  --accent:     #6366f1;
  --accent-2:   #8b5cf6;
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --muted:      rgba(255,255,255,0.6);
  --border:     rgba(255,255,255,0.12);
  --glass:      rgba(255,255,255,0.07);
  --glass-hover:rgba(255,255,255,0.12);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --shadow-gold:0 0 40px rgba(245,158,11,0.25);
  --shadow-card:0 8px 32px rgba(0,0,0,0.4);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---------- Animated Background ---------- */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(99,102,241,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(245,158,11,0.12) 0%, transparent 60%),
    linear-gradient(160deg, #0f1340 0%, #12174a 50%, #0d1035 100%);
}

.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-20px) rotate(720deg); opacity: 0; }
}

/* ---------- Main Wrapper ---------- */
.page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

/* ---------- Logo / Brand ---------- */
.brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
  animation: slide-down 0.8s ease both;
}
.brand-logo-img {
  max-height: 70px;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
  border-radius: 10px;
}

/* ---------- Hero Content ---------- */
.hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: slide-down 0.9s 0.1s ease both;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.5; }
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: slide-up 0.9s 0.2s ease both;
}
.hero h1 .line-plain { display: block; color: var(--white); }
.hero h1 .line-gold {
  display: block;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 40%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 48px;
  animation: slide-up 0.9s 0.3s ease both;
}

/* ---------- Countdown Timer ---------- */
.countdown-wrap {
  margin-bottom: 56px;
  animation: slide-up 0.9s 0.4s ease both;
}
.countdown-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 3vw, 24px);
  flex-wrap: wrap;
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 80px;
}
.cd-glass {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  backdrop-filter: blur(12px);
  transition: background var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  min-width: 80px;
}
.cd-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.cd-block:hover .cd-glass { background: var(--glass-hover); border-color: rgba(245,158,11,0.3); }
.cd-block:hover .cd-glass::before { opacity: 1; }
.cd-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
  text-align: center;
  transition: transform 0.3s ease;
}
.cd-unit {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cd-sep {
  align-self: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.6;
  padding-bottom: 22px;
  animation: blink-sep 1s infinite;
}
@keyframes blink-sep { 0%, 100% { opacity: 0.6; } 50% { opacity: 0.1; } }
.cd-number.flip { animation: flip-num 0.3s ease; }
@keyframes flip-num {
  0%   { transform: rotateX(0deg); }
  50%  { transform: rotateX(-90deg); }
  100% { transform: rotateX(0deg); }
}



/* ---------- Features Row ---------- */
.features {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: slide-up 0.9s 0.55s ease both;
}
.feat-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--muted);
  backdrop-filter: blur(8px);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.feat-chip:hover { background: var(--glass-hover); color: var(--white); border-color: rgba(245,158,11,0.3); }
.feat-chip span { font-size: 1rem; }
/* ---------- Footer ---------- */
.footer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  animation: slide-up 0.9s 0.7s ease both;
  text-align: center;
}
.footer a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer a:hover { color: var(--gold-light); }

/* ---------- Progress Bar (decorative) ---------- */
.progress-wrap {
  max-width: 400px;
  margin: 0 auto 48px;
  animation: slide-up 0.9s 0.45s ease both;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.progress-bar-bg {
  height: 6px;
  background: var(--glass);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--accent-2) 100%);
  border-radius: 999px;
  width: 0%;
  transition: width 2s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.progress-bar-fill::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 30px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4));
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer { 0% { opacity: 0; } 50% { opacity: 1; } 100% { opacity: 0; } }

/* ---------- Animations ---------- */
@keyframes slide-down {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  .page-wrapper { padding: 32px 16px; }
  .brand { margin-bottom: 36px; }
  .cd-glass { padding: 14px 16px; min-width: 64px; }
  .features { gap: 10px; }
}
