.glass {
  background: rgba(24, 16, 19, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.poncho-accent {
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    #94413d 10px,
    #94413d 12px
  );
  opacity: 0.1;
}

.poncho-border {
  border-image: repeating-linear-gradient(45deg, #94413d, #181013 20px) 1;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 160px;
  height: 160px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(148, 65, 61, 0.2) 0%, rgba(148, 65, 61, 0) 70%);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: 1;
  mix-blend-mode: screen;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  position: relative;
  z-index: 20;
  opacity: 1 !important;
  transform: none !important;
}

.hero-cta-primary {
  background: #94413d;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.hero-cta-primary:hover {
  background: #7a3431;
  color: #ffffff;
}

.hero-cta-secondary {
  background: #ffffff;
  color: #181013;
  border: 1px solid #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.hero-cta-secondary:hover {
  background: #94413d;
  color: #ffffff;
  border-color: #94413d;
}

.floating-scroll {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 30;
}

.floating-scroll button {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: #94413d;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  animation: float-bob 2.6s ease-in-out infinite;
}

.floating-scroll button:hover {
  background: #7a3431;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
}

.floating-scroll .floating-scroll-top {
  width: auto;
  padding: 0 14px;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.animated-bg {
  position: relative;
  overflow-x: hidden;
}

.animated-bg::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: 0;
  opacity: 0.35;
  background: linear-gradient(120deg, rgba(148, 65, 61, 0.35), rgba(24, 16, 19, 0.1), rgba(148, 65, 61, 0.25));
  background-size: 200% 200%;
  animation: gradient-drift 18s ease-in-out infinite;
  pointer-events: none;
  transform: translateZ(0);
}

@keyframes gradient-drift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.partners-collapsed .partner-hidden {
  display: none;
}

@media (min-width: 768px) {
  .partners-collapsed .partner-hidden {
    display: flex;
  }
}

@media (max-width: 767px) {
  .cursor-glow {
    display: none;
  }

  .floating-scroll .floating-scroll-top {
    display: none !important;
  }
}
