.explorer-page {
  min-height: 100vh;
  padding: 7.5rem 0 4rem;
  background:
    radial-gradient(circle at 14% 12%, rgba(49, 205, 231, 0.14) 0, transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(185, 105, 220, 0.12) 0, transparent 24%),
    linear-gradient(180deg, #0e141c 0%, #0b1016 100%);
}

.explorer-hero {
  position: relative;
}

.explorer-hero::before {
  content: '';
  position: absolute;
  inset: -5rem 0 auto;
  height: 16rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
}

.explorer-hero-shell {
  display: grid;
  gap: 2.75rem;
}

.explorer-title {
  margin: 0 0 1rem;
  font-size: clamp(2.7rem, 4.5vw, 4.75rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--foreground);
  white-space: nowrap;
}

.explorer-subtitle {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.95rem);
  line-height: 1.3;
  font-weight: 600;
  background: linear-gradient(90deg, var(--accent-start) 0%, #7aa5e6 45%, var(--accent-end) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.explorer-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.explorer-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.explorer-hero-visual img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.32));
}

.explorer-hero-copy {
  max-width: 47rem;
}

.explorer-hero-copy p {
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  line-height: 1.75;
}

.explorer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(18, 24, 31, 0.98), rgba(18, 24, 31, 0.98)) padding-box,
    linear-gradient(90deg, var(--accent-start) 0%, var(--accent-end) 100%) border-box;
  border: 2px solid transparent;
  color: var(--foreground);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.explorer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.explorer-carousel-section {
  padding-top: 5rem;
}

.explorer-carousel .production-carousel-card-inner h4 {
  max-width: 16ch;
}

.explorer-carousel .production-carousel-card-inner p {
  max-width: 24ch;
}

.explorer-detail-section {
  padding: 4.5rem 0 1rem;
}

.explorer-detail-shell {
  display: grid;
}

.explorer-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 4rem;
  align-items: center;
}

.explorer-detail-card {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  padding: 3rem 3.25rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(24, 30, 36, 0.4) 0%, rgba(10, 14, 19, 0.88) 100%),
    radial-gradient(circle at 18% 0%, rgba(29, 187, 209, 0.08), transparent 34%);
  background-size: cover;
  background-position: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 40px rgba(0, 0, 0, 0.26);
}

.explorer-detail-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 0;
}

.explorer-detail-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.55rem;
}

.explorer-detail-list li {
  position: relative;
  padding-left: 2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.55;
}

.explorer-detail-list li::before {
  content: '\2022';
  position: absolute;
  left: 0.15rem;
  top: 0.1rem;
  color: #2ec7dc;
  font-size: 1.6rem;
  line-height: 1;
}

.explorer-detail-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.explorer-detail-visual img {
  display: block;
  width: min(100%, 620px);
  height: auto;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.34));
}

@media (max-width: 992px) {
  .explorer-page {
    padding-top: 7rem;
  }

  .explorer-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .explorer-hero-visual {
    justify-content: flex-start;
  }

  .explorer-hero-visual img {
    width: min(100%, 360px);
  }

  .explorer-hero-copy {
    max-width: none;
  }

  .explorer-carousel-section {
    padding-top: 4rem;
  }

  .explorer-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .explorer-detail-card {
    min-height: 0;
    padding: 2.25rem;
  }

  .explorer-detail-visual {
    justify-content: flex-start;
  }

  .explorer-detail-visual img {
    width: min(100%, 540px);
  }
}

@media (max-width: 767px) {
  .explorer-page {
    padding: 6.5rem 0 3rem;
  }

  .explorer-title {
    white-space: normal;
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .explorer-subtitle {
    font-size: 1.05rem;
  }

  .explorer-hero-copy p {
    font-size: 1rem;
  }

  .explorer-cta {
    width: 100%;
    max-width: 165px;
  }

  .explorer-hero-visual img {
    width: min(100%, 320px);
  }

  .explorer-carousel-section {
    padding-top: 3rem;
  }

  .explorer-carousel .production-carousel-card-inner h4 {
    max-width: 18ch;
  }

  .explorer-carousel .production-carousel-card-inner p {
    max-width: none;
  }

  .explorer-detail-section {
    padding-top: 3rem;
  }

  .explorer-detail-card {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .explorer-detail-list {
    gap: 1.15rem;
  }

  .explorer-detail-list li {
    font-size: 1rem;
  }

  .explorer-detail-visual img {
    width: min(100%, 100%);
  }
}
