/* ==========================================================================
   Wazzaf Ultra Modern - Luminous Void Theme
   Glassmorphism 2.0, Neon Accents, Deep Dark Mode
   ========================================================================== */

:root {
  /* Core Colors */
  --void-bg: #030305;
  --void-surface: #0a0a0f;
  --void-surface-2: #121218;

  /* Neon Accents */
  --neon-blue: #2de2e6;
  --neon-purple: #9700cc;
  --neon-pink: #ff3864;
  --neon-yellow: #f9c80e;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(20px);
  --glass-highlight: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Manrope', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
}

body {
  background-color: var(--void-bg);
  color: #ffffff;
  font-family: var(--font-body);
  overflow-x: hidden;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

/* === UTILITIES === */
.text-gradient {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-top: 1px solid var(--glass-highlight);
  border-radius: 24px;
}

.glow-effect {
  position: relative;
}

.glow-effect::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(45, 226, 230, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* === HERO SECTION === */
.ultra-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.ultra-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 20%, rgba(151, 0, 204, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(45, 226, 230, 0.15) 0%, transparent 50%);
}

.ultra-hero-content {
  text-align: center;
  max-width: 1000px;
  z-index: 1;
}

.ultra-hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(45, 226, 230, 0.1);
  border: 1px solid rgba(45, 226, 230, 0.3);
  border-radius: 100px;
  color: var(--neon-blue);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(45, 226, 230, 0.2);
}

.ultra-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.ultra-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

.ultra-cta-group {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-ultra {
  padding: 16px 32px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.btn-ultra-primary {
  background: white;
  color: black;
  border: 1px solid white;
}

.btn-ultra-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.btn-ultra-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-ultra-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* === BENTO GRID === */
.ultra-section {
  padding: var(--space-xl) var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.bento-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bento-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

.bento-icon {
  font-size: 3rem;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.1);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.bento-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.bento-desc {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-size: 1.1rem;
}

/* === STATS === */
.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--void-surface);
  border-radius: 32px;
  margin: var(--space-xl) 0;
  border: 1px solid var(--glass-border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--neon-blue);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(45, 226, 230, 0.3);
}

.stat-label {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* === TESTIMONIALS === */
.testimonial-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--neon-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* === FOOTER === */
.ultra-footer {
  border-top: 1px solid var(--glass-border);
  padding: var(--space-lg) var(--space-md);
  margin-top: var(--space-xl);
  background: var(--void-surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: white;
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--neon-blue);
}

/* === ANIMATIONS === */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

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

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@media (max-width: 768px) {
  .ultra-hero-title {
    font-size: 3rem;
  }


  .bento-grid {
    grid-template-columns: 1fr;
  }
}

/* === AUTH PAGES === */
.neo-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--void-bg);
  position: relative;
  overflow: hidden;
}

.neo-auth-page::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(151, 0, 204, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.neo-auth-container {
  width: 100%;
  max-width: 450px;
  padding: var(--space-md);
  position: relative;
  z-index: 1;
}

.neo-auth-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.neo-auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.neo-auth-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 0 20px rgba(151, 0, 204, 0.4);
}

.neo-auth-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.neo-auth-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

.neo-form-group {
  margin-bottom: 20px;
}

.neo-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.neo-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.neo-input:focus {
  outline: none;
  border-color: var(--neon-blue);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(45, 226, 230, 0.1);
}

.neo-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.neo-btn-primary {
  background: white;
  color: black;
}

.neo-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.neo-auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.neo-auth-footer a {
  color: var(--neon-blue);
  text-decoration: none;
  font-weight: 600;
}

.neo-auth-footer a:hover {
  text-decoration: underline;
}