/* =========================================
   ZEN CHATZ — LAUNCHING SOON
   Brand Colors from Logo:
   - Primary Green   : #3DCA72
   - Accent Teal     : #00BCD4
   - BG              : #FFFFFF (white)
   ========================================= */

/* ---- CSS Variables ---- */
:root {
  --green:       #3DCA72;
  --green-dark:  #25A55B;
  --green-light: #E8F9F0;
  --teal:        #00BCD4;
  --teal-light:  #E0F7FA;
  --black:       #111111;
  --bg:          #FFFFFF;
  --bg-2:        #F7FBFF;
  --surface:     #FFFFFF;
  --surface-2:   #F4FBF7;
  --border:      rgba(61, 202, 114, 0.25);
  --border-t:    rgba(0, 188, 212, 0.22);
  --text:        #1A1A2E;
  --text-body:   #374151;
  --muted:       #6B7280;
  --white:       #ffffff;
  --shadow:      0 4px 24px rgba(61, 202, 114, 0.12);
  --shadow-lg:   0 12px 48px rgba(61, 202, 114, 0.18);
  --font:        'Inter', sans-serif;
  --r-card:      18px;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}

/* ============================================
   BACKGROUND SYSTEM (light, soft & clean)
   ============================================ */
.bg-wrapper {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%,   rgba(61,202,114,0.08)  0%, transparent 65%),
    radial-gradient(ellipse 60% 45% at 100% 100%, rgba(0,188,212,0.07)  0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%,  rgba(61,202,114,0.04)  0%, transparent 70%),
    #FFFFFF;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: float-orb 9s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(61,202,114,0.14), transparent 70%);
  top: -180px; left: -120px;
  animation-delay: 0s;
}
.orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0,188,212,0.11), transparent 70%);
  bottom: -120px; right: -100px;
  animation-delay: -3s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(61,202,114,0.07), transparent 70%);
  top: 50%; left: 55%;
  animation-delay: -6s;
}
@keyframes float-orb {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-28px) scale(1.04); }
}

/* ============================================
   MAIN LAYOUT
   ============================================ */
.main-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 24px 48px;
  width: 100%;
  max-width: 880px;
}

/* ============================================
   LOGO
   ============================================ */
.logo-wrap {
  margin-bottom: 40px;
  animation: fade-down 0.8s cubic-bezier(0.22,1,0.36,1) both;
}
.logo-img {
  height: 150px;
  width: auto;
  /* Keep original logo colors on white background */
  filter: drop-shadow(0 4px 20px rgba(61,202,114,0.25));
  transition: filter 0.3s, transform 0.3s;
}
.logo-img:hover {
  filter: drop-shadow(0 8px 32px rgba(61,202,114,0.40));
  transform: translateY(-3px);
}

/* ============================================
   BADGE
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  border: 1.5px solid rgba(61, 202, 114, 0.35);
  border-radius: 100px;
  padding: 6px 20px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 24px;
  animation: fade-down 0.8s 0.15s cubic-bezier(0.22,1,0.36,1) both;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61,202,114,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(61,202,114,0); }
}

/* ============================================
   HERO TEXT
   ============================================ */
.hero-text {
  animation: fade-up 0.9s 0.2s cubic-bezier(0.22,1,0.36,1) both;
  margin-bottom: 56px;
}
.headline {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--black);
  margin-bottom: 22px;
}
.gradient-text {
  background: linear-gradient(90deg, var(--green) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.80;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
}
.description strong {
  color: var(--green-dark);
  font-weight: 700;
}

/* ============================================
   COMING SOON TAG
   ============================================ */
.coming-soon-section {
  margin-bottom: 52px;
  animation: fade-up 0.9s 0.35s cubic-bezier(0.22,1,0.36,1) both;
}
.coming-soon-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 100px;
  padding: 16px 44px;
  box-shadow: 0 8px 40px rgba(61,202,114,0.18), 0 2px 12px rgba(0,188,212,0.10);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.coming-soon-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(61,202,114,0.07) 0%, rgba(0,188,212,0.05) 100%);
}
.coming-soon-tag:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(61,202,114,0.25), 0 4px 20px rgba(0,188,212,0.15);
}
.cs-icon {
  font-size: 1.8rem;
  animation: bounce-rocket 2s ease-in-out infinite;
}
@keyframes bounce-rocket {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.cs-text {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, var(--green-dark) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

/* ============================================
   NOTIFY FORM
   ============================================ */
.notify-section {
  width: 100%;
  max-width: 540px;
  margin-bottom: 52px;
  animation: fade-up 0.9s 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
.notify-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 14px;
}
.notify-form {
  display: flex;
  gap: 10px;
  width: 100%;
}
.input-group {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 16px;
  width: 17px; height: 17px;
  color: var(--muted);
  pointer-events: none;
}
.notify-form input[type="email"] {
  width: 100%;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  padding: 14px 16px 14px 46px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.notify-form input[type="email"]::placeholder { color: #9CA3AF; }
.notify-form input[type="email"]:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61,202,114,0.15);
}
.btn-notify {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(61,202,114,0.35);
}
.btn-notify:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(61,202,114,0.45);
}
.btn-notify:active { transform: translateY(0); }
.btn-arrow { width: 18px; height: 18px; transition: transform 0.25s; }
.btn-notify:hover .btn-arrow { transform: translateX(4px); }
.success-msg {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 20px;
  background: var(--green-light);
  border: 1.5px solid rgba(61,202,114,0.35);
  border-radius: 12px;
  font-size: 0.92rem;
  color: var(--green-dark);
  font-weight: 600;
}
.success-msg.show { display: flex; }
.check-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--green); }

/* ============================================
   FEATURE PILLS
   ============================================ */
.features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 52px;
  animation: fade-up 0.9s 0.65s cubic-bezier(0.22,1,0.36,1) both;
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-body);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: border-color 0.25s, color 0.25s, transform 0.25s, background 0.25s, box-shadow 0.25s;
  cursor: default;
}
.feature-pill:hover {
  border-color: var(--green);
  color: var(--green-dark);
  background: var(--green-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(61,202,114,0.15);
}
.pill-icon { font-size: 1rem; }

/* ============================================
   SOCIAL LINKS
   ============================================ */
.social-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 44px;
  animation: fade-up 0.9s 0.75s cubic-bezier(0.22,1,0.36,1) both;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  color: #9CA3AF;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.25s;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  background: var(--green-light);
  border-color: var(--green);
  color: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(61,202,114,0.18);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  animation: fade-up 0.9s 0.85s cubic-bezier(0.22,1,0.36,1) both;
  padding-top: 8px;
  border-top: 1px solid #F3F4F6;
  width: 100%;
}
.footer p {
  font-size: 0.78rem;
  color: #9CA3AF;
  letter-spacing: 0.3px;
  padding-top: 16px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-down {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
  .main-container { padding: 48px 16px 36px; }
  .logo-img { height: 68px; }
  .headline { letter-spacing: -1px; }
  .time-inner { padding: 16px 18px; min-width: 70px; }
  .notify-form { flex-direction: column; }
  .btn-notify { justify-content: center; }
  .time-sep { font-size: 2rem; margin-bottom: 16px; }
  .countdown { gap: 6px; }
}
@media (max-width: 420px) {
  .time-inner { padding: 12px 10px; min-width: 58px; }
  .time-num { font-size: 1.7rem; }
}
