
.LandingPage {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.LandingPage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.88),
    rgba(7, 10, 27, 0.92)
  );
  pointer-events: none;
}

.LandingPage-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  z-index: 1;
}

.LandingPage h1 {
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.LandingPage p {
  margin: 1.5rem auto 0;
  max-width: 640px;
  font-size: 1.15rem;
  color: #cbd5e1;
}

.scroll-hint {
  margin: 2.5rem auto 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.3rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #dbeafe;
  font-size: 0.95rem;
}

.carousel-section {
  padding: 4rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.carousel-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}

.carousel-track::-webkit-scrollbar {
  height: 10px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.45);
  border-radius: 999px;
}

.carousel-item {
  scroll-snap-align: center;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 30px;
  padding: 2rem;
  min-height: 320px;
  display: flex;
  align-items: stretch;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.carousel-item:hover {
  transform: translateY(-8px);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 24px 80px rgba(56, 189, 248, 0.12);
}

.carousel-item a {
  color: inherit;
  text-decoration: none;
  display: flex;
  gap: 1rem;
  align-items: stretch;
  height: 100%;
  width: 100%;
}

.item-header {
  display: block;
}

.carousel-item h3 {
  margin: 0;
  font-size: 1.55rem;
}

.item-tagline {
  margin: 0.35rem 0 0;
  color: #94a3b8;
  font-size: 0.98rem;
}

.item-content {
  flex: 1 1 auto;
}

.item-image-placeholder {
  flex: 0 0 33%;
  min-width: 300px;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(148, 163, 184, 0.06),
    rgba(148, 163, 184, 0.02)
  );
  border: 1px dashed rgba(148, 163, 184, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-weight: 600;
}

.item-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.carousel-item p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.75;
}

.carousel-control {
  border: none;
  background: rgba(15, 23, 42, 0.9);
  color: #e2e8f0;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  font-size: 1.75rem;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.carousel-control:hover {
  transform: scale(1.04);
  background: rgba(56, 189, 248, 0.16);
}

/* Tablet */
@media (max-width: 840px) {
  .carousel-wrapper {
    grid-template-columns: 1fr;
  }

  .carousel-control {
    justify-self: center;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .LandingPage {
    padding: 1.5rem;
  }

  .LandingPage h1 {
    font-size: 2.5rem;
    line-height: 1;
  }

  .LandingPage p {
    font-size: 1rem;
  }

  .scroll-hint {
    font-size: 0.85rem;
    padding: 0.7rem 1.1rem;
  }

  .carousel-section {
    padding: 3rem 1rem 4rem;
  }

  .section-heading {
    margin-bottom: 1.5rem;
  }

  .section-heading h2 {
    font-size: 1.75rem;
  }

  .carousel-track {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .carousel-item {
    padding: 1.25rem;
    min-height: auto;
  }

  .carousel-item a {
    flex-direction: column;
  }

  .item-image-placeholder {
    width: 100%;
    min-width: 0;
    aspect-ratio: 16 / 9;
    height: auto;
    margin-bottom: 1rem;
    flex: none;
  }

  .carousel-item h3 {
    font-size: 1.3rem;
  }

  .item-tagline {
    font-size: 0.9rem;
  }

  .carousel-item p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .carousel-control {
    display: none;
  }
}

