:root {
  --bg-dark: #05020a;
  --bg-card: rgba(20, 10, 35, 0.4);
  --primary-purple: #9d00ff;
  --accent-pink: #ff00ff;
  --text-white: #f8f9fa;
  --text-gray: #a9a2b5;
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-bg-light: rgba(255, 255, 255, 0.95);
  --glass-bg-dark: rgba(20, 10, 30, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.top-banner {
  background: linear-gradient(90deg, #b300ff 0%, #ff00ff 100%);
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  width: 100%;
  position: relative;
  z-index: 100;
  letter-spacing: 0.5px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Utilities */
.text-gradient {
  background: linear-gradient(
    90deg,
    var(--accent-pink) 0%,
    var(--primary-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
.text-purple {
  color: var(--primary-purple);
  font-weight: 700;
}
.text-white {
  color: #fff;
}
.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-gray);
  margin-bottom: 12px;
  display: block;
  font-weight: 600;
}

/* Background Glows */
.glow-bg {
  position: absolute;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(
    circle,
    rgba(157, 0, 255, 0.15) 0%,
    rgba(5, 2, 10, 0) 70%
  );
  z-index: -1;
  filter: blur(100px);
  border-radius: 50%;
}
.top-glow {
  top: -20%;
  left: -10%;
}
.bottom-glow {
  bottom: 10%;
  right: -20%;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(90deg, #b300ff 0%, #ff00ff 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(179, 0, 255, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 0, 255, 0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--primary-purple);
  box-shadow: inset 0 0 0 0 var(--primary-purple);
}
.btn-secondary:hover {
  box-shadow: inset 0 0 20px 0 var(--primary-purple);
  background: rgba(157, 0, 255, 0.1);
}

.scarcity-text {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-top: 15px;
  line-height: 1.4;
}
.scarcity-text strong {
  color: var(--accent-pink);
}

/* Glassmorphism Classes */
.glass {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 10% 80px;
  min-height: 100vh;
  gap: 50px;
  position: relative;
}
.hero-content {
  max-width: 600px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  word-break: break-word;
}
.subtitle {
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--text-gray);
}
.description {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 40px;
}
.hero-image {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 20px;
  overflow: hidden;
  z-index: 0;
}
.bg-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) brightness(0.7);
  mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}
.mentor-aura {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,0,255,0.7) 0%, rgba(157,0,255,0.3) 50%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(50px);
  animation: pulse-aura 3s infinite alternate ease-in-out;
}
@keyframes pulse-aura {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 1; }
}

.mentor-img {
  width: 100%;
  max-width: 500px;
  object-fit: contain;
  mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 75%,
    transparent 100%
  );
  filter: drop-shadow(0 0 30px rgba(157, 0, 255, 0.6)) contrast(1.1) saturate(1.15) brightness(1.05);
  border-radius: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.mentor-img:hover {
  transform: translateY(-10px) scale(1.02);
  filter: drop-shadow(0 0 50px rgba(255, 0, 255, 0.8)) contrast(1.15) saturate(1.25) brightness(1.1);
}

/* Social Proof */
.social-proof {
  padding: 60px 10%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(20, 10, 35, 0.5),
    transparent
  );
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
  opacity: 0.5;
}
.logo {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stats-box {
  background: var(--bg-card);
  padding: 30px 40px;
  border-radius: 20px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-gray);
}
.stats-text h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 400;
}

/* Project Showcase */
.project-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 10%;
  gap: 60px;
}
.project-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.project-text span {
  color: var(--primary-purple);
}
.glass-panel {
  background: var(--bg-card);
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.dashboard-img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Tech & Strategy Sections */
.technologies-section,
.strategy-section {
  padding: 30px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.white-card {
  background-color: var(--glass-bg-light);
  color: #111;
  padding: 50px;
  border-radius: 24px;
  max-width: 800px;
  width: 100%;
  margin-bottom: 40px;
  box-shadow: 0 20px 50px rgba(157, 0, 255, 0.15);
}
.dark-glass {
  background-color: var(--glass-bg-dark);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.white-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
  line-height: 1.2;
}
.badge-dark {
  background: var(--primary-purple);
  color: white;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: inline-block;
}

/* Fixed Badges Wrapper */
.badges-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}
.badge {
  background: rgba(30, 10, 50, 0.6);
  border: 1px solid rgba(157, 0, 255, 0.3);
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 0.95rem;
  color: var(--text-white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: default;
  animation: float 6s ease-in-out infinite;
}
.badge:nth-child(even) {
  animation-delay: 1s;
}
.badge:nth-child(3n) {
  animation-delay: 2s;
}
.badge:hover {
  transform: scale(1.05) translateY(-5px);
  border-color: var(--accent-pink);
  background: rgba(40, 10, 70, 0.8);
  box-shadow: 0 10px 20px rgba(255, 0, 255, 0.2);
}
.badge-accent {
  border-color: rgba(255, 0, 255, 0.4);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Monster Split Section */
.monster-section {
  padding: 10px 10%;
}
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10px;
}
.split-image {
  position: relative;
  border-radius: 20px;
}
.split-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  filter: brightness(0.9) contrast(1.1);
}
.split-image .frame {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-purple);
  border-radius: 20px;
  z-index: -1;
}
.split-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
  line-height: 1.2;
}
.split-text p {
  color: var(--text-gray);
  margin-bottom: 16px;
}
.split-text strong {
  color: var(--text-white);
}

/* Animations Trigger Classes */
.fade-up,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up {
  transform: translateY(40px);
}
.fade-in-left {
  transform: translateX(-40px);
}
.fade-in-right {
  transform: translateX(40px);
}

.fade-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Footer */
.site-footer {
  padding: 40px 10%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 50px;
  text-align: center;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.footer-content p {
  color: var(--text-gray);
  font-size: 0.9rem;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--accent-pink);
}

/* Mobile Responsiveness - Media Queries */
@media (max-width: 992px) {
  .hero,
  .project-showcase,
  .content-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-top: 10px;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-image {
    max-width: 400px;
    margin: 0 auto;
  }
  .hero h1 {
    font-size: 2.5rem;
  }

  .stats-box {
    flex-direction: column;
    gap: 20px;
  }

  .split-image .frame {
    top: -10px;
    left: -10px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 80px 5% 40px;
  }
  .social-proof,
  .project-showcase,
  .technologies-section,
  .strategy-section,
  .monster-section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .white-card {
    padding: 30px 20px;
    border-radius: 16px;
  }
  .badge {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    display: block;
  }
  .hero-cta {
    width: 100%;
  }

  .logos {
    gap: 20px;
  }
  .logo {
    font-size: 1rem;
  }
}
