/* Home Page Styles - Black Theme */

/* Hero Section */
.home-hero {
  min-height: calc(100vh - 64px);
}

.bg-gradient-radial {
  background: radial-gradient(
    circle at 50% 30%,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 50%
  );
}

/* Logo Band Animation */
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-band-section .animate-scroll {
  animation: scroll-logos 40s linear infinite;
}

.logo-band-section .animate-scroll:hover {
  animation-play-state: paused;
}

/* Use Case Cards */
.use-case-card {
  position: relative;
  transition: all 0.3s ease;
}

/* Method Tab Styles */
.method-tab {
  position: relative;
}

.method-tab.active {
  color: white;
  border-bottom: 2px solid white;
}

.method-tab:not(.active) {
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid transparent;
}

.method-tab:not(.active):hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Methods Content Animation */
.method-content-item {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.method-content-item.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.method-content-item:not(.active) {
  opacity: 0;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Stat Cards Animation */
.stat-card {
  transform: translateY(30px);
  opacity: 0;
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.stat-card.animate-in {
  transform: translateY(0);
  opacity: 1;
}

/* Platform Cards */
.platform-card {
  transition: all 0.3s ease;
}

/* Security Tab Styles */
.security-tab span {
  transition: color 0.2s ease;
}

.security-tab.active span {
  color: white;
}

.security-tab:not(.active) span {
  color: rgba(255, 255, 255, 0.7);
}

.security-tab:not(.active):hover span {
  color: white;
}
/* 
.security-tab .default-security-tab-underline {
  display: none;
}

.security-tab.active .default-security-tab-underline {
  display: block;
} */

/* Security Content */
.security-content-item {
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.security-content-item.hidden {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.security-content-item:not(.hidden) {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* Customer Stories Scroll */
.stories-scroll-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.stories-scroll-container::-webkit-scrollbar {
  display: none;
}

.story-card-wrapper {
  flex-shrink: 0;
  width: 340px;
  scroll-snap-align: start;
}

@media (min-width: 640px) {
  .story-card-wrapper {
    width: 380px;
  }
}

.story-card-inner {
  position: relative;
  background: #0f0f0f;
  border: 1px solid #1a1a1a;
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.story-card-wrapper:hover .story-card-inner {
  border-color: #2a2a2a;
}

/* Hide scrollbar */
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Line Clamp Utility */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Scroll Animation */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Animation Delays */
.scroll-animate:nth-child(1) {
  transition-delay: 0ms;
}
.scroll-animate:nth-child(2) {
  transition-delay: 100ms;
}
.scroll-animate:nth-child(3) {
  transition-delay: 200ms;
}
.scroll-animate:nth-child(4) {
  transition-delay: 300ms;
}
.scroll-animate:nth-child(5) {
  transition-delay: 400ms;
}
.scroll-animate:nth-child(6) {
  transition-delay: 500ms;
}
.scroll-animate:nth-child(7) {
  transition-delay: 600ms;
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
  .methods-content {
    position: relative;
  }

  .method-content-item:not(.active) {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .home-hero {
    min-height: auto;
  }
}
