/* Base styling borrowed from the provided draft (trimmed & de-scripted). */
* {
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.shader-hero {
  position: relative;
}

.shader-canvas {
  pointer-events: none;
}

.shader-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.shader-overlay {
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.7));
}


.gradient-overlay {
  background: linear-gradient(110deg, rgba(99, 102, 241, 0.95) 0%, rgba(139, 92, 246, 0.95) 100%);
}

.gradient-overlay-v3 {
  background: radial-gradient(circle at 20% 20%, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.7));
}

.glass-effect {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.profile-image {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes float {

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

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

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

.strength-card {
  transition: all 0.3s ease;
}

.strength-card:hover {
  transform: translateY(-8px);
}