body.home .hero--home {
  --hero-shift: 0px;
  --hero-fade: 1;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  min-height: clamp(560px, 86vh, 780px);
  display: grid;
  align-content: end;
  padding-block: clamp(108px, 12vh, 152px) clamp(56px, 8vh, 94px);
  padding-inline: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  isolation: isolate;
  background:
    radial-gradient(
      48vmax 34vmax at 16% 8%,
      color-mix(in oklab, var(--accent) 22%, transparent),
      transparent 72%
    ),
    radial-gradient(
      54vmax 36vmax at 86% 12%,
      color-mix(in oklab, var(--accent2) 24%, transparent),
      transparent 74%
    ),
    linear-gradient(180deg, rgba(10, 10, 10, 0.92) 0%, rgba(7, 9, 14, 0.98) 100%);
}

body.home .top + .wrap {
  margin-top: 0;
  padding-top: 0;
}

body.home .top + .wrap > .hero--home {
  margin-top: 0;
}

body.home .hero--home::before,
body.home .hero--home::after {
  content: none;
}

body.home .top {
  border-bottom: 0;
  box-shadow: none;
}

body.home .hero--home > :not(.hero-glsl) {
  position: relative;
  z-index: 1;
}

body.home .hero--home .hero-glsl {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body.home .hero--home .hero-glsl__canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.92;
}

body.home .hero--home .kicker {
  color: rgba(184, 209, 255, 0.92);
  text-shadow: 0 2px 18px rgba(3, 7, 18, 0.6);
}

body.home .hero--home .title--hero {
  color: rgba(247, 250, 255, 0.98);
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: 0 10px 34px rgba(3, 7, 18, 0.7);
}

body.home .hero--home .lead--hero {
  color: rgba(226, 233, 245, 0.92);
  text-shadow: 0 6px 24px rgba(3, 7, 18, 0.64);
}

@media (max-width: 760px) {
  body.home .hero--home {
    min-height: clamp(500px, 78svh, 640px);
    padding-top: clamp(94px, 12vh, 122px);
    padding-bottom: clamp(40px, 7vh, 62px);
  }
}
