/* Smoother Animation Curve */
.ease-cubic-bezier {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reveal on Scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Infinite Marquee */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Futuristic Gradient Mesh */
.mesh-gradient {
  background-color: #000000;
  background-image:
    radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%),
    radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 1) 0, transparent 50%),
    radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 1) 0, transparent 50%);
  background-size: 200% 200%;
  animation: meshFlow 15s ease infinite;
}

@keyframes meshFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Floating Animation */
.float-slow {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Glass Panel Utility */
.glass-panel {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* --- RESTORED VARIABLES --- */
:root {
  --color-primary: #2563eb;
  --color-secondary: #0f172a;
  --color-accent: #3b82f6;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --bg-body: #f8fafc;
  --radius-lg: 1rem;
  --radius-full: 9999px;
  --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.3);
  --gradient-brand: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* --- RESTORED UTILITIES --- */
.font-heading {
  font-family: var(--font-heading);
}

.text-muted {
  color: var(--text-muted);
}

/* --- RESTORED BUTTONS --- */
/* PREMIUM BUTTON - Ensure Text is Readable */
.btn-premium {
  background: var(--gradient-brand);
  color: white !important;
  /* Force white text */
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-premium:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
  color: white;
}

/* --- RESTORED SHADOWS --- */
.shadow-glow {
  box-shadow: var(--shadow-glow);
}