/* ========================================
   Wizzo Launch Countdown Page Styles
   ======================================== */

/* CSS Variables */
:root {
  --color-primary-pink: #ff2e63;
  --color-deep-navy: #070059;
  --color-bg-start: #000000;
  --color-bg-mid: #460022;
  --color-bg-end: #2a0090;
  --color-gold: #ffd700;
  --color-white: #ffffff;
  --color-white-muted: rgba(255, 255, 255, 0.7);
  --color-glass-bg: rgba(255, 255, 255, 0.1);
  --color-glass-border: rgba(255, 255, 255, 0.1);

  --font-family: "Outfit", sans-serif;

  --max-width: 900px;
  --padding-mobile: 24px;
  --padding-desktop: 48px;
}

/* Skip Link - Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: #000;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  text-decoration: none;
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-white);
  background: linear-gradient(
    135deg,
    var(--color-bg-start) 0%,
    var(--color-bg-mid) 50%,
    var(--color-bg-end) 100%
  );
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Noise Texture Overlay - Modern 2026 Effect */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* Animated Gradient Blobs - Background Depth */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    var(--color-primary-pink) 0%,
    transparent 70%
  );
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  animation-delay: -7s;
  opacity: 0.25;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #6366f1 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
  opacity: 0.2;
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(-30px, -20px) scale(1.02);
  }
}

/* Particles Container */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: sparkle linear infinite;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0) translateY(100vh);
  }
  10% {
    opacity: 1;
    transform: scale(1) translateY(80vh);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(0.5) translateY(-10vh);
  }
}

/* Floating Emojis */
.floating-emoji {
  position: fixed;
  font-size: 2rem;
  z-index: 2;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.floating-emoji-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.floating-emoji-2 {
  top: 15%;
  left: 8%;
  animation-delay: 2s;
}

.floating-emoji-3 {
  bottom: 20%;
  right: 5%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Header */
.header {
  position: relative;
  z-index: 10;
  padding: var(--padding-mobile);
  text-align: center;
}

.logo-container {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.logo-container:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.logo {
  height: 40px;
  width: auto;
  display: block;
}

/* Inline Logo (emoji-style) */
.logo-inline {
  height: 1.4em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

/* Social Proof Badge */
.social-proof-glow {
  position: relative;
  z-index: 10;
  display: inline-block;
  margin: 60px auto 40px;
  padding: 10px 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.15) 0%,
    rgba(255, 46, 99, 0.15) 100%
  );
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
  text-align: center;
  width: fit-content;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3), 0 0 40px rgba(255, 215, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Main Content */
.main {
  position: relative;
  z-index: 10;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-mobile) var(--padding-mobile);
  text-align: center;
}

/* Hero Section */
.hero {
  margin-bottom: 40px;
}

.headline {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.text-gold {
  color: var(--color-gold);
  background: linear-gradient(
    90deg,
    var(--color-gold) 0%,
    #fff8dc 25%,
    var(--color-gold) 50%,
    #fff8dc 75%,
    var(--color-gold) 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

.subheadline {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 400;
  color: var(--color-white-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Countdown Section */
.countdown-section {
  margin-bottom: 32px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.countdown-box {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 24px;
  padding: 24px 28px;
  min-width: 85px;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
  }
}

.countdown-number {
  display: block;
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 800;
  color: var(--color-gold);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  line-height: 1;
}

.countdown-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-white-muted);
  margin-top: 8px;
}

/* Launch Badge */
.launch-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.15) 0%,
    rgba(255, 46, 99, 0.1) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 48px;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 4px 30px rgba(255, 215, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
}

/* CTA Section */
.cta-section {
  margin-bottom: 64px;
}

.cta-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.cta-subtext {
  font-size: 1rem;
  color: var(--color-white-muted);
  margin-bottom: 24px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--color-primary-pink) 0%,
    #ff6b8a 100%
  );
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 20px 48px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(255, 46, 99, 0.4), 0 0 0 0 rgba(255, 46, 99, 0.4);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 46, 99, 0.5),
    0 0 0 4px rgba(255, 46, 99, 0.2);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

.cta-button:active {
  transform: translateY(-2px) scale(1);
}

.cta-icon {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin-right: 10px;
}

.social-proof {
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--color-white-muted);
}

/* Feature Cards - Glassmorphism 2026 */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.features-heading {
  grid-column: 1 / -1;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 8px;
}

.feature-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 46, 99, 0.1) 0%,
    rgba(255, 215, 0, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.feature-description {
  font-size: 0.95rem;
  color: var(--color-white-muted);
  position: relative;
  z-index: 1;
}

/* Footer */
.footer {
  position: relative;
  z-index: 10;
  padding: var(--padding-mobile);
  border-top: 1px solid var(--color-glass-border);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  height: 130px;
  width: auto;
  display: block;
  margin: 0 auto 16px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-made-with {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--color-white);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-links a:focus {
  opacity: 1;
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
  border-radius: 4px;
}

.social-icon {
  width: 24px;
  height: 24px;
}

.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 20px;
}

.footer-legal a {
  color: var(--color-white-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--color-white);
}

.footer-legal a:focus {
  color: var(--color-white);
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--color-white-muted);
}

/* Animations */
.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

.delay-5 {
  animation-delay: 1s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (min-width: 480px) {
  .countdown-box {
    padding: 24px 32px;
    min-width: 100px;
  }
}

@media (min-width: 768px) {
  .header {
    padding: var(--padding-desktop);
  }

  .main {
    padding: 0 var(--padding-desktop) var(--padding-desktop);
  }

  .countdown {
    gap: 20px;
  }

  .countdown-box {
    padding: 28px 36px;
    min-width: 120px;
  }

  .footer {
    padding: var(--padding-desktop);
  }

  .floating-emoji {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .particle,
  .floating-emoji,
  .blob {
    display: none;
  }

  .animate-fade-in {
    opacity: 1;
    transform: none;
  }

  .text-gold {
    background: none;
    -webkit-text-fill-color: var(--color-gold);
  }

  .cta-button::before,
  .feature-card::before {
    display: none;
  }
}
