/* ==========================================================================


/* --------------------------------------------------
   1. COLOR VARIABLES & UTILITIES
   -------------------------------------------------- */
:root {
  --bg-dark-base: #060913;
  --bg-dark-blue: #0b1528;
  --bg-navy-mid: #0f233d;
  
  /* Primary Accent: Light Green / Mint & Neon Cyan */
  --accent-green-primary: #00ff87;
  --accent-green-light: #6ee7b7;
  --accent-emerald: #10b981;
  --accent-cyan: #00e5ff;

  /* Text colors */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  /* Glassmorphism Surface */
  --glass-bg: rgba(15, 23, 42, 0.55);
  --glass-bg-hover: rgba(20, 32, 58, 0.75);
  --glass-border: rgba(16, 185, 129, 0.22);
  --glass-border-glow: rgba(0, 255, 135, 0.5);
  --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  
  /* Fonts */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Base resets & smooth scrolling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: var(--font-body);
  background-color: var(--bg-dark-base);
  color: var(--text-main);
  position: relative;
}

/* --------------------------------------------------
   2. GRADIENT BACKGROUND & ANIMATED LIGHTING
   -------------------------------------------------- */
.hero-wrapper {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: radial-gradient(circle at 50% 30%, #0d2847 0%, #071224 45%, #050811 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  z-index: 1;
}

/* Ambient Radial Lights (Pulsing Lights) */
.ambient-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  animation: pulseLight 8s ease-in-out infinite alternate;
}

.ambient-light-1 {
  top: -10%;
  left: 20%;
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, rgba(11, 21, 40, 0) 70%);
  animation-duration: 9s;
}

.ambient-light-2 {
  bottom: -15%;
  right: 15%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 135, 0.2) 0%, rgba(0, 229, 255, 0) 70%);
  animation-duration: 12s;
  animation-delay: -3s;
}

.ambient-light-3 {
  top: 40%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(circle, rgba(15, 35, 61, 0.7) 0%, rgba(5, 8, 17, 0) 70%);
}

@keyframes pulseLight {
  0% {
    transform: scale(0.9) translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.15) translateY(-20px);
    opacity: 0.75;
  }
  100% {
    transform: scale(1) translateY(10px);
    opacity: 0.55;
  }
}

/* Floating Light Spheres / Shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 255, 135, 0.15), rgba(0, 229, 255, 0.05));
  border: 1px solid rgba(0, 255, 135, 0.25);
  backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 1;
  animation: floatAnim 14s ease-in-out infinite alternate;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 18%;
  left: 12%;
  animation-duration: 16s;
}

.shape-2 {
  width: 140px;
  height: 140px;
  bottom: 22%;
  left: 8%;
  animation-duration: 20s;
  animation-delay: -5s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 25%;
  right: 10%;
  animation-duration: 18s;
  animation-delay: -2s;
}

.shape-4 {
  width: 60px;
  height: 60px;
  bottom: 18%;
  right: 18%;
  animation-duration: 12s;
  animation-delay: -8s;
}

@keyframes floatAnim {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-35px) rotate(180deg) scale(1.08);
  }
  100% {
    transform: translateY(20px) rotate(360deg) scale(0.95);
  }
}

/* Canvas Particle Container */
#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Main Content Overlay Layer */
.content-layer {
  position: relative;
  z-index: 10;
  width: 100%;
}

/* --------------------------------------------------
   3. HEADER & LOGO BRANDING
   -------------------------------------------------- */
.brand-logo-wrapper {
  margin-bottom: 2rem;
  display: inline-block;
  position: relative;
}

.brand-badge {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(11, 21, 40, 0.8) 100%);
  border: 1.5px solid var(--glass-border-glow);
  box-shadow: 0 0 25px rgba(0, 255, 135, 0.3), inset 0 0 15px rgba(0, 255, 135, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--accent-green-primary);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-badge:hover {
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 0 35px rgba(0, 255, 135, 0.5), inset 0 0 20px rgba(0, 255, 135, 0.3);
}

.brand-name {
  font-family: var(--font-heading);
  letter-spacing: 6px;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent-green-light);
  margin-top: 10px;
  font-weight: 600;
}

/* --------------------------------------------------
   4. TYPOGRAPHY & HEADINGS
   -------------------------------------------------- */
.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: 0px;
  margin-bottom: 1.25rem;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.title-gradient {
  background: linear-gradient(135deg, #ffffff 10%, #a7f3d0 50%, var(--accent-green-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-subtitle
 {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 100%;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
    font-weight: 100;
    letter-spacing: 2px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-green-light);
  font-size: 0.825rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green-primary);
  animation: blink 1.8s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}


/* --------------------------------------------------
   9. RESPONSIVE BREAKPOINTS
   -------------------------------------------------- */
@media (max-width: 768px) {
  .countdown-container {
    gap: 0.75rem;
  }
  
  .countdown-box {
    min-width: 75px;
    padding: 0.85rem 0.6rem;
    border-radius: 14px;
  }

  .countdown-lbl {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  .subscribe-form {
    flex-direction: column;
    border-radius: 20px;
    padding: 10px;
    gap: 8px;
  }

  .subscribe-btn {
    width: 100%;
    justify-content: center;
    border-radius: 14px;
  }

  .subscribe-input {
    text-align: center;
  }

  .ambient-light-1, .ambient-light-2 {
    width: 80vw;
    height: 80vw;
  }
}
