/* ===== HERO SECTION - REDESIGNED TOP ===== */
.hero-top {
  position: relative;
  width: 100%;
  min-height: 110vh;
  background: linear-gradient(180deg, #050810 0%, #0a0f1e 50%, #0f1428 100%);
  overflow: visible;
  display: block;
  padding: 200px 0 100px 0;
}

/* Background Effects */
.hero-top-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}

.hero-gradient-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
  animation: mesh-move 20s ease-in-out infinite;
}

@keyframes mesh-move {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(20px, 20px); }
}

/* Floating Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float-orb 15s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.6) 0%, transparent 70%);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.5) 0%, transparent 70%);
  top: 60%;
  right: 10%;
  animation-delay: 5s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
  bottom: 20%;
  left: 15%;
  animation-delay: 10s;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Grid Pattern */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100px 100px;
  opacity: 0.3;
}

/* Light Beams */
.hero-light-beam {
  position: absolute;
  width: 2px;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.4) 50%, transparent 100%);
  animation: beam-move 8s ease-in-out infinite;
}

.beam-1 {
  top: 0;
  left: 30%;
  animation-delay: 0s;
}

.beam-2 {
  top: 0;
  right: 35%;
  animation-delay: 4s;
}

@keyframes beam-move {
  0%, 100% { transform: translateY(0) scaleY(1); opacity: 0; }
  50% { transform: translateY(calc(100vh - 200px)) scaleY(1.5); opacity: 1; }
}

/* Particles Canvas */
.hero-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Container */
.hero-top-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  width: 100%;
}

/* Main Content */
.hero-top-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Badge */
.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 50px;
  color: #a78bfa;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  width: fit-content;
  overflow: hidden;
}

.hero-badge-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
  animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

/* Main Title */
.hero-main-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.03em;
  pointer-events: none;
  user-select: none;
}

.hero-main-title * {
  pointer-events: none !important;
  user-select: none !important;
}

.title-line {
  display: block;
  margin-bottom: 10px;
}

.title-word {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  pointer-events: none;
  user-select: none;
}

.title-word::before,
.title-word::after {
  display: none !important;
}

.title-word.highlight {
  background: linear-gradient(135deg, #7c3aed 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  pointer-events: none;
  user-select: none;
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
}

/* CTA Buttons */
.hero-cta-group {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.hero-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  border-radius: 50px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.5);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(124, 58, 237, 0.7);
}

.btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.btn-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: btn-particle 3s ease-in-out infinite;
}

.btn-particles span:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.btn-particles span:nth-child(2) { top: 60%; right: 30%; animation-delay: 0.5s; }
.btn-particles span:nth-child(3) { bottom: 30%; left: 40%; animation-delay: 1s; }
.btn-particles span:nth-child(4) { top: 40%; right: 20%; animation-delay: 1.5s; }

@keyframes btn-particle {
  0%, 100% { transform: translate(0, 0) scale(0); opacity: 0; }
  50% { transform: translate(10px, -10px) scale(1); opacity: 1; }
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Stats Bar */
.hero-stats-bar {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  margin-top: 15px;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 212, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
  font-size: 1.1rem;
}

.stat-data {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
}

/* Trust Badges */
.hero-trust-badges {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50px;
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 600;
}

.trust-badge i {
  font-size: 0.9rem;
}

/* Visual Element */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
}

.visual-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Central Sphere */
.hero-sphere {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
}

.sphere-inner {
  position: relative;
  width: 100%;
  height: 100%;
  animation: sphere-rotate 20s linear infinite;
}

@keyframes sphere-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.sphere-ring {
  position: absolute;
  inset: 0;
  border: 2px solid;
  border-radius: 50%;
  opacity: 0.3;
}

.ring-1 {
  border-color: #7c3aed;
  animation: ring-pulse 3s ease-in-out infinite;
}

.ring-2 {
  border-color: #00d4ff;
  animation: ring-pulse 3s ease-in-out infinite;
  animation-delay: 1s;
  transform: scale(0.8);
}

.ring-3 {
  border-color: #10b981;
  animation: ring-pulse 3s ease-in-out infinite;
  animation-delay: 2s;
  transform: scale(0.6);
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.6; }
}

.sphere-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: rgba(124, 58, 237, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.6);
}

.sphere-logo {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

/* Floating Cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  animation: card-float 4s ease-in-out infinite;
}

.card-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.card-2 {
  top: 15%;
  right: 5%;
  animation-delay: 1.3s;
}

.card-3 {
  bottom: 15%;
  right: 10%;
  animation-delay: 2.6s;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #7c3aed, #00d4ff);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
}

.card-content {
  display: flex;
  flex-direction: column;
}

.card-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.card-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
}

/* Connection Lines */
.connection-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.connection-line {
  stroke: rgba(0, 212, 255, 0.3);
  stroke-width: 2;
  stroke-dasharray: 5, 5;
  animation: line-flow 2s linear infinite;
}

@keyframes line-flow {
  to { stroke-dashoffset: -10; }
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheel-scroll 2s ease-in-out infinite;
}

@keyframes wheel-scroll {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 20px; opacity: 0.3; }
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-top-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .hero-top {
    padding: 150px 0 60px 0;
    min-height: 100vh;
  }

  .hero-top-container {
    padding: 0 20px;
  }

  .hero-stats-bar {
    flex-wrap: wrap;
    gap: 15px;
  }

  .stat-divider {
    display: none;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-trust-badges {
    flex-wrap: wrap;
  }

  .hero-visual {
    height: 400px;
  }

  .hero-sphere {
    width: 250px;
    height: 250px;
  }

  .floating-card {
    padding: 12px 15px;
  }

  .card-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

