/* Shared hero navbar + 15 named hero patterns */

/* ========== Shared .hero-nav ========== */
.hero-nav {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.85rem 1.25rem;
}

.hero-nav__brand {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-nav__check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.hero-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  padding: 0.55rem;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface-raised);
  cursor: pointer;
}

.hero-nav__burger span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: var(--ink);
  transition: transform var(--motion), opacity var(--motion);
}

.hero-nav__check:checked + .hero-nav__burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hero-nav__check:checked + .hero-nav__burger span:nth-child(2) {
  opacity: 0;
}

.hero-nav__check:checked + .hero-nav__burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-nav__panel {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
}

.hero-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-nav__links a {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink-muted);
}

.hero-nav__links a:hover {
  color: var(--accent-deep);
}

.hero-nav--on-dark .hero-nav__brand,
.hero-nav--on-dark .hero-nav__links a {
  color: #fff;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.35);
}

.hero-nav--on-dark .hero-nav__links a {
  color: rgb(255 255 255 / 0.88);
}

.hero-nav--on-dark .hero-nav__burger {
  background: rgb(255 255 255 / 0.15);
  border-color: rgb(255 255 255 / 0.4);
}

.hero-nav--on-dark .hero-nav__burger span {
  background: #fff;
}

.hero-nav--glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur));
  border-bottom: 1px solid rgb(255 255 255 / 0.35);
}

@media (max-width: 48rem) {
  .hero-nav__burger {
    display: flex;
  }

  .hero-nav__panel {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
  }

  .hero-nav--on-dark .hero-nav__panel {
    background: var(--surface-raised);
    border-radius: 10px;
    border-top: 0;
    padding: 0.75rem;
  }

  .hero-nav--on-dark .hero-nav__panel .hero-nav__links a {
    color: var(--ink);
    text-shadow: none;
  }

  .hero-nav__links {
    flex-direction: column;
    gap: 0;
  }

  .hero-nav__links a {
    display: block;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--border);
  }

  .hero-nav:has(.hero-nav__check:checked) .hero-nav__panel {
    display: flex;
  }

  .hero-nav:has(.hero-nav__check:checked) .hero-nav__panel .hero-btn {
    width: 100%;
  }
}

.hero-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.hero-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hero-lede {
  margin: 0 0 1.25rem;
  max-width: 32rem;
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* ========== 1. Full-Bleed Photo ========== */
.hero-fullbleed-photo {
  isolation: isolate;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 26rem;
  color: #fff;
  background:
    url("assets/unsplash/photo-1551632811-561732d1e306.webp") center / cover;
}

.hero-fullbleed-photo__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(26 35 50 / 0.35) 0%, rgb(26 35 50 / 0.78) 100%);
  pointer-events: none;
}

.hero-fullbleed-photo .hero-nav,
.hero-fullbleed-photo__content {
  position: relative;
  z-index: 1;
}

.hero-fullbleed-photo__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem 2.5rem;
  max-width: 36rem;
}

.hero-fullbleed-photo .hero-title,
.hero-fullbleed-photo .hero-lede {
  color: #fff;
  text-shadow: 0 2px 12px rgb(0 0 0 / 0.45);
}

.hero-fullbleed-photo .hero-lede {
  color: rgb(255 255 255 / 0.9);
}

.hero-fullbleed-photo .hero-eyebrow {
  color: #b8e8e2;
}

/* ========== 2. Split Media ========== */
.hero-split-media {
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 24rem;
  background: var(--surface-raised);
}

.hero-split-media .hero-nav {
  border-bottom: 1px solid var(--border);
}

.hero-split-media__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  min-height: 0;
}

.hero-split-media__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.hero-split-media__media {
  min-height: 14rem;
  max-height: 22rem;
  background: var(--border);
}

.hero-split-media__media img {
  width: 100%;
  height: 100%;
  max-height: 22rem;
  object-fit: cover;
  display: block;
}

@media (max-width: 48rem) {
  .hero-split-media__body {
    grid-template-columns: 1fr;
  }

  .hero-split-media__media {
    aspect-ratio: 16 / 10;
    min-height: 0;
    max-height: 14rem;
  }
}

/* ========== 3. Solid Type ========== */
.hero-solid-type {
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 22rem;
  background: linear-gradient(
    165deg,
    var(--hero-field, #c8efe8) 0%,
    var(--hero-field-2, #eef4f8) 50%,
    var(--hero-field-3, #ffe8d6) 100%
  );
}

.hero-solid-type .hero-nav {
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
}

.hero-solid-type__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 1.5rem 3rem;
  max-width: 38rem;
}

/* ========== 4. Clip Diagonal ========== */
.hero-clip-diagonal {
  isolation: isolate;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 26rem;
  background: var(--surface-raised);
  overflow: hidden;
}

.hero-clip-diagonal .hero-nav {
  position: relative;
  z-index: 2;
  background: var(--surface-raised);
  border-bottom: 1px solid var(--border);
}

.hero-clip-diagonal__media {
  position: absolute;
  inset: 3.5rem 0 0;
  clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
  background:
    url("assets/unsplash/photo-1487958449943-2429e8be8624.webp") center / cover;
}

.hero-clip-diagonal__content {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  margin: 4rem 1.5rem 2.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 12px;
  background: rgb(255 255 255 / 0.96);
  box-shadow: var(--hero-shadow);
}

@media (max-width: 40rem) {
  .hero-clip-diagonal__media {
    clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-clip-diagonal__content {
    margin: 2.5rem 1rem 1.5rem;
    max-width: none;
  }
}

/* ========== 5. Overlay Glass ========== */
.hero-overlay-glass {
  isolation: isolate;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 26rem;
  background:
    url("assets/unsplash/photo-1566073771259-6a8506099945.webp") center / cover;
}

.hero-overlay-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(26 35 50 / 0.35);
  pointer-events: none;
}

.hero-overlay-glass .hero-nav,
.hero-overlay-glass__panel {
  position: relative;
  z-index: 1;
}

.hero-overlay-glass__panel {
  width: min(100% - 2rem, 28rem);
  margin: auto 1.25rem 2rem;
  padding: 1.5rem 1.35rem;
  border: 1px solid rgb(255 255 255 / 0.4);
  border-radius: 14px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur));
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.2);
}

.hero-overlay-glass__panel .hero-lede {
  color: var(--ink-muted);
}

/* ========== 6. Center Minimal ========== */
.hero-center-minimal {
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 24rem;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--ink) 5%, transparent) 1px, transparent 1px),
    linear-gradient(color-mix(in srgb, var(--ink) 5%, transparent) 1px, transparent 1px),
    var(--hero-field, #fafbfc);
  background-size: 24px 24px, 24px 24px, auto;
}

.hero-center-minimal .hero-nav {
  border-bottom: 1px solid var(--border);
  background: var(--surface-raised);
}

.hero-center-minimal__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
}

.hero-center-minimal__content .hero-lede {
  margin-inline: auto;
}

.hero-center-minimal__content .hero-actions {
  justify-content: center;
}

/* ========== 7. Carousel Slides ========== */
.hero-carousel-slides {
  isolation: isolate;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 26rem;
  color: #fff;
  overflow: hidden;
}

.hero-carousel-slides .hero-nav {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 3;
}

.hero-carousel-slides__viewport {
  position: relative;
  flex: 1;
  min-height: 26rem;
}

.hero-carousel-slides__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 5.5rem 1.5rem 4.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  background-size: cover;
  background-position: center;
}

.hero-carousel-slides__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(26 35 50 / 0.25), rgb(26 35 50 / 0.75));
  pointer-events: none;
}

.hero-carousel-slides__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-carousel-slides__slide > * {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.hero-carousel-slides__slide .hero-title,
.hero-carousel-slides__slide .hero-lede {
  color: #fff;
  text-shadow: 0 2px 10px rgb(0 0 0 / 0.4);
}

.hero-carousel-slides__slide .hero-lede {
  color: rgb(255 255 255 / 0.9);
}

.hero-carousel-slides__slide .hero-eyebrow {
  color: #b8e8e2;
}

.hero-carousel-slides__controls {
  position: absolute;
  z-index: 4;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-carousel-slides__dots {
  display: flex;
  gap: 0.4rem;
}

.hero-carousel-slides__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.45);
  cursor: pointer;
}

.hero-carousel-slides__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.hero-carousel-slides__arrows {
  display: flex;
  gap: 0.4rem;
}

.hero-carousel-slides__arrows button {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgb(255 255 255 / 0.45);
  border-radius: 8px;
  background: rgb(26 35 50 / 0.35);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.hero-carousel-slides__arrows button[data-carousel-pause] {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.hero-carousel-slides__arrows button[data-carousel-pause][aria-pressed="true"] {
  background: rgb(26 35 50 / 0.55);
}

/* ========== 8. Video Poster ========== */
.hero-video-poster {
  isolation: isolate;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 26rem;
  color: #fff;
  background:
    url("assets/unsplash/photo-1519681393784-d120267933ba.webp") center / cover;
}

.hero-video-poster__scrim {
  position: absolute;
  inset: 0;
  background: rgb(26 35 50 / 0.45);
  pointer-events: none;
}

.hero-video-poster .hero-nav,
.hero-video-poster__content {
  position: relative;
  z-index: 1;
}

.hero-video-poster__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 3rem;
  text-align: center;
}

.hero-video-poster__play {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.25rem;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.92);
  color: var(--ink);
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.3);
}

.hero-video-poster .hero-title {
  color: #fff;
  text-shadow: 0 2px 14px rgb(0 0 0 / 0.5);
}

.hero-video-poster .hero-lede {
  margin-inline: auto;
  color: rgb(255 255 255 / 0.9);
  text-shadow: 0 1px 8px rgb(0 0 0 / 0.4);
}

/* ========== 9. Offset Photo ========== */
.hero-offset-photo {
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 26rem;
  background: var(--hero-field, #f4f6f8);
}

.hero-offset-photo .hero-nav {
  background: var(--surface-raised);
  border-bottom: 1px solid var(--border);
}

.hero-offset-photo__body {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.5rem;
  padding: 2rem 1.5rem 2.5rem;
  align-items: center;
}

.hero-offset-photo__copy {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--surface-raised);
  box-shadow: var(--hero-shadow);
  transform: translate(0.75rem, 0);
}

.hero-offset-photo__media {
  min-height: 14rem;
  max-height: 20rem;
  border-radius: 12px;
  overflow: hidden;
  margin-left: -2rem;
  box-shadow: var(--hero-shadow);
}

.hero-offset-photo__media img {
  width: 100%;
  height: 100%;
  max-height: 20rem;
  object-fit: cover;
  display: block;
}

@media (max-width: 48rem) {
  .hero-offset-photo__body {
    grid-template-columns: 1fr;
  }

  .hero-offset-photo__copy {
    transform: none;
    order: 2;
  }

  .hero-offset-photo__media {
    margin-left: 0;
    aspect-ratio: 16 / 10;
    min-height: 0;
    max-height: 14rem;
    order: 1;
  }
}

/* ========== 10. Product Shot ========== */
.hero-product-shot {
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 26rem;
  background: linear-gradient(180deg, var(--hero-field, #f7faf9) 0%, var(--hero-field-2, #e8eef3) 100%);
  overflow: hidden;
}

.hero-product-shot .hero-nav {
  border-bottom: 1px solid var(--border);
}

.hero-product-shot__body {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  align-items: end;
  padding: 1.5rem 1.5rem 0;
  flex: 1;
}

.hero-product-shot__copy {
  padding-bottom: 2.5rem;
}

.hero-product-shot__shot {
  justify-self: center;
  width: min(100%, 22rem);
  aspect-ratio: 10 / 12;
  padding: 0.75rem;
  border-radius: 18px 18px 0 0;
  background: var(--motif-ink);
  box-shadow: 0 -4px 30px rgb(26 35 50 / 0.2);
  overflow: hidden;
}

.hero-product-shot__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  display: block;
}

@media (max-width: 48rem) {
  .hero-product-shot__body {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .hero-product-shot__copy {
    padding-bottom: 0.5rem;
  }

  .hero-product-shot__shot {
    width: min(100%, 18rem);
  }
}

/* ========== 11. Mesh Gradient ========== */
.hero-mesh-gradient {
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 24rem;
  background:
    radial-gradient(ellipse 50% 45% at 15% 20%, color-mix(in srgb, var(--accent) 70%, transparent), transparent 60%),
    radial-gradient(ellipse 45% 40% at 85% 25%, color-mix(in srgb, var(--accent-hot) 55%, transparent), transparent 55%),
    radial-gradient(ellipse 55% 50% at 50% 90%, color-mix(in srgb, var(--accent-warm) 55%, transparent), transparent 60%),
    var(--hero-field, #e8f2f0);
}

.hero-mesh-gradient .hero-nav {
  background: rgb(255 255 255 / 0.35);
  border-bottom: 1px solid rgb(255 255 255 / 0.4);
}

.hero-mesh-gradient__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 1.5rem 3rem;
  max-width: 36rem;
}

/* ========== 12. Stats Strip ========== */
.hero-stats-strip {
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 24rem;
  background: var(--hero-field, var(--surface-raised));
}

.hero-stats-strip .hero-nav {
  border-bottom: 1px solid var(--border);
}

.hero-stats-strip__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1.5rem 2.5rem;
}

.hero-stats-strip__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.hero-stats-strip__stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent-deep);
}

.hero-stats-strip__stat span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 40rem) {
  .hero-stats-strip__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== 13. Form Lead ========== */
.hero-form-lead {
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 24rem;
  background: var(--hero-field, #f3f7f6);
}

.hero-form-lead .hero-nav {
  background: var(--surface-raised);
  border-bottom: 1px solid var(--border);
}

.hero-form-lead__body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 1.5rem 2.5rem;
  flex: 1;
}

.hero-form-lead__card {
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-raised);
  box-shadow: var(--hero-shadow);
}

.hero-form-lead__card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.hero-form-lead__card p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.hero-form-lead__card label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-muted);
}

.hero-form-lead__card input {
  width: 100%;
  margin-bottom: 0.85rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  font: inherit;
}

.hero-form-lead__card .hero-btn {
  width: 100%;
}

@media (max-width: 48rem) {
  .hero-form-lead__body {
    grid-template-columns: 1fr;
  }
}

/* ========== 14. Map Location ========== */
.hero-map-location {
  isolation: isolate;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 24rem;
  color: var(--ink);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--accent) 12%, transparent) 1px, transparent 1px),
    linear-gradient(color-mix(in srgb, var(--accent) 12%, transparent) 1px, transparent 1px),
    linear-gradient(135deg, var(--accent-soft) 0%, var(--hero-field, #dce6ea) 45%, color-mix(in srgb, var(--accent) 25%, #dce6ea) 100%);
  background-size: 22px 22px, 22px 22px, auto;
}

.hero-map-location .hero-nav {
  background: rgb(255 255 255 / 0.75);
  border-bottom: 1px solid rgb(255 255 255 / 0.5);
}

.hero-map-location__pin {
  position: absolute;
  left: 62%;
  top: 48%;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50% 50% 50% 0;
  background: var(--accent-hot);
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 2px 8px rgb(232 93 76 / 0.45);
}

.hero-map-location__pin::after {
  content: "";
  position: absolute;
  inset: 0.25rem;
  border-radius: 50%;
  background: #fff;
}

.hero-map-location__card {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 22rem);
  margin: auto 1.25rem 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-raised);
  box-shadow: var(--hero-shadow);
}

.hero-map-location__card .hero-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.hero-map-location__chip {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ========== 15. Illustration Scene ========== */
.hero-illustration-scene {
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 24rem;
  background: var(--hero-field, #f7f9fb);
}

.hero-illustration-scene .hero-nav {
  background: var(--surface-raised);
  border-bottom: 1px solid var(--border);
}

.hero-illustration-scene__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 1.5rem 2.5rem;
  flex: 1;
}

.hero-illustration-scene__art {
  position: relative;
  aspect-ratio: 1;
  max-width: 20rem;
  margin-inline: auto;
  width: 100%;
}

.hero-illustration-scene__art img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-illustration-scene__blob {
  position: absolute;
  z-index: 0;
  border-radius: 40% 60% 55% 45%;
}

.hero-illustration-scene__blob--a {
  inset: 4% 12% 22% 4%;
  background: var(--accent);
  opacity: 0.85;
}

.hero-illustration-scene__blob--b {
  inset: 22% 4% 8% 28%;
  background: var(--accent-hot);
  opacity: 0.75;
  border-radius: 55% 45% 40% 60%;
}

.hero-illustration-scene__orb,
.hero-illustration-scene__ring {
  display: none;
}

@media (max-width: 48rem) {
  .hero-illustration-scene__body {
    grid-template-columns: 1fr;
  }

  .hero-illustration-scene__art {
    order: -1;
    max-width: 14rem;
  }
}
