.hero-visual {
  position: relative;
  padding: 0.5rem;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background: rgb(2 9 23 / 96%);
  box-shadow: var(--shadow-lg);
}

.hero-visual__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.hero-visual .floating-card {
  position: static;
  right: auto;
  bottom: auto;
  max-width: none;
  margin-top: 0.5rem;
}

.home-seo-section .home-seo-card h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.55rem);
}

.home-seo-section .home-seo-card p {
  max-width: 68rem;
}

.home-seo-section .home-seo-card a:not(.text-link),
.home-faq a {
  color: var(--color-primary-light);
  font-weight: 750;
}

.home-seo-section .home-seo-card a:not(.text-link):hover,
.home-faq a:hover {
  color: var(--color-primary-pale);
}

.home-faq .content-card {
  max-width: 68rem;
}

.home-content-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: stretch;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.home-content-row--image-left .home-image-slot,
.home-content-row--image-left > .editorial-media {
  order: -1;
}

.home-content-row .home-seo-card {
  height: 100%;
}

.home-image-slot {
  display: grid;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgb(8 30 65 / 92%), rgb(2 9 23 / 96%));
  box-shadow: var(--shadow-sm);
}

.home-image-slot__art {
  position: relative;
  display: grid;
  min-height: clamp(18rem, 28vw, 25rem);
  place-content: center;
  justify-items: center;
  gap: 0.55rem;
  padding: var(--space-xl);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 22% 22%, rgb(147 197 253 / 30%) 0 0.08rem, transparent 0.12rem),
    radial-gradient(circle at 78% 34%, rgb(219 234 254 / 42%) 0 0.07rem, transparent 0.11rem),
    radial-gradient(circle at 65% 78%, rgb(96 165 250 / 30%) 0 0.06rem, transparent 0.1rem),
    radial-gradient(circle at 50% 42%, rgb(37 99 235 / 32%), transparent 45%),
    linear-gradient(145deg, rgb(3 16 39 / 98%), rgb(9 41 85 / 94%) 52%, rgb(1 5 16 / 98%));
}

.home-image-slot__art::before,
.home-image-slot__art::after {
  position: absolute;
  z-index: -1;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgb(147 197 253 / 25%);
  border-radius: 50%;
  content: "";
}

.home-image-slot__art::after {
  width: 42%;
  border-color: rgb(219 234 254 / 40%);
  box-shadow: 0 0 2.5rem rgb(59 130 246 / 28%);
}

.home-image-slot__mark {
  display: grid;
  width: 3.5rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  background: rgb(59 130 246 / 14%);
  color: var(--color-primary-pale);
  font-size: 1.45rem;
  box-shadow: var(--glow-primary);
}

.home-image-slot__label {
  color: var(--color-primary-pale);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-image-slot__hint {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  text-align: center;
}

.home-image-slot > img,
.home-image-slot__image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 0.5rem;
  object-fit: contain;
}

@media (width <= 44rem) {
  .home-content-row {
    grid-template-columns: 1fr;
  }

  .home-content-row--image-left .home-image-slot,
  .home-content-row--image-left > .editorial-media {
    order: 0;
  }

  .home-image-slot__art,
  .home-image-slot > img,
  .home-image-slot__image {
    min-height: 0;
  }

  .home-seo-section .home-seo-card h2 {
    font-size: 1.55rem;
  }
}
