/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: blur(4px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--background) 0%, rgba(20, 20, 20, 0.8) 50%, var(--background) 100%);
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 1rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .hero-container {
    padding: 5rem 2rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title-line {
  display: block;
  line-height: 1.2;
}

.hero-title-no-wrap {
  white-space: nowrap;
}

.hero-title-no-wrap span {
  white-space: normal;
  margin-right: 0.25em;
}

.hero-title-gradient-1 {
  background: linear-gradient(to right, oklch(0.62 0.25 240), oklch(0.65 0.19 290));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-title-gradient-2 {
  background: linear-gradient(to right, oklch(0.65 0.19 290), oklch(0.70 0.18 200));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-title-gradient-3 {
  background: linear-gradient(to right, oklch(0.70 0.18 200), oklch(0.7 0.18 180));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-title-white {
  color: var(--foreground);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

.hero-button {
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  background: linear-gradient(to right, oklch(0.62 0.25 240), oklch(0.65 0.19 290));
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 157, 255, 0.3), 0 0 40px rgba(0, 157, 255, 0.1);
  transition: all 0.3s ease;
}

.hero-button:hover {
  box-shadow: 0 0 30px rgba(0, 157, 255, 0.5), 0 0 60px rgba(0, 157, 255, 0.2);
  transform: translateY(-2px);
}

.hero-purchase-card-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .hero-purchase-card-desktop {
    display: block;
  }
}

.hero-purchase-card-mobile {
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .hero-purchase-card-mobile {
    display: none;
  }
}

