/* Primary Components and Section Styles */

.card-stack-item {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}

.button-custom {
  background-color: #2563EB;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all .25s ease;
  background: #2563EB;
  border-radius: 9999px;
  border: none;
  padding: 10px 24px;
  min-height: 44px;
}

.inner {
  z-index: 2;
  gap: 6px;
  position: relative;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  font-weight: 600;
}

.inner svg.icon {
  width: 16px;
  height: 16px;
  transition: transform .3s ease;
  stroke: #fff;
  fill: none;
}

.button-custom:hover .inner svg.icon {
  transform: translateX(2px);
}

.points_wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.points_wrapper .point {
  bottom: -10px;
  position: absolute;
  animation: fp infinite ease-in-out;
  pointer-events: none;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 9999px;
}

.points_wrapper .point:nth-child(1) { left: 10%; opacity: 1; animation-duration: 2.35s; animation-delay: .2s; }
.points_wrapper .point:nth-child(2) { left: 30%; opacity: .7; animation-duration: 2.5s; animation-delay: .5s; }
.points_wrapper .point:nth-child(3) { left: 25%; opacity: .8; animation-duration: 2.2s; animation-delay: .1s; }
.points_wrapper .point:nth-child(4) { left: 44%; opacity: .6; animation-duration: 2.05s; }
.points_wrapper .point:nth-child(5) { left: 50%; opacity: 1; animation-duration: 1.9s; }
.points_wrapper .point:nth-child(6) { left: 75%; opacity: .5; animation-duration: 1.5s; animation-delay: 1.5s; }
.points_wrapper .point:nth-child(7) { left: 88%; opacity: .9; animation-duration: 2.2s; animation-delay: .2s; }

.card-h:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 163, 255, .3);
}

[style*="--bg"]::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: var(--br, inherit);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  background: var(--bg);
  pointer-events: none;
}

.glass-btn {
  position: relative;
  display: inline-flex;
  cursor: pointer;
  overflow: hidden;
  transition: all .3s;
  border-radius: 9999px;
  box-shadow: 0 0 40px rgba(26, 42, 64, 0.4), 0 8px 40px rgba(37, 99, 235, 0.15);
}

.glass-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px 10px rgba(37, 99, 235, 0.45);
}

.glass-btn .spin-border {
  position: absolute;
  inset: -100%;
  width: 300%;
  height: 300%;
  animation: spin 3s linear infinite;
  background: conic-gradient(from 0deg, transparent 0deg, transparent 80deg, rgba(0, 163, 255, .8) 180deg, transparent 280deg, transparent 360deg);
}

.glass-btn .inner-bg {
  position: absolute;
  inset: 1px;
  border-radius: 9999px;
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 10, .9);
}
