.home-page .product-stage {
  position: relative;
  display: block;
  isolation: isolate;
  min-height: min(88svh, 980px);
  scroll-margin-top: var(--header-h);
  overflow: hidden;
  color: var(--stage-text);
  background: var(--stage-background);
}

.home-page .product-stage--tone-ink {
  --stage-background: #092137;
  --stage-text: #f6fbff;
  --stage-copy: #d0e2eb;
}

.home-page .product-stage--tone-mist {
  --stage-background: #14354a;
  --stage-text: #f6fbff;
  --stage-copy: #d0e2eb;
}

.home-page .product-stage--tone-paper {
  --stage-background: #1a3e55;
  --stage-text: #f6fbff;
  --stage-copy: #d0e2eb;
}

.home-page .product-stage--tone-deep {
  --stage-background: #102d43;
  --stage-text: #f6fbff;
  --stage-copy: #d0e2eb;
}

.home-page .product-stage--tone-night {
  --stage-background: #071d2e;
  --stage-text: #f6fbff;
  --stage-copy: #d0e2eb;
}

.home-page .product-stage .stage-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: auto;
  min-height: min(88svh, 980px);
  margin: 0;
  padding: clamp(72px, 9vw, 130px) max(32px, calc((100vw - 1240px) / 2));
  align-items: center;
}

.home-page .stage-copy {
  max-width: 540px;
}

.home-page .stage-copy .product-index {
  margin: 0;
  color: #8edcff;
  font: 700 12px/1.4 Arial, sans-serif;
  letter-spacing: .12em;
}

.home-page .stage-copy h2 {
  max-width: 560px;
  margin: 18px 0;
  font-size: 72px;
  line-height: .99;
}

.home-page .stage-copy > p:not(.product-index) {
  max-width: 480px;
  margin: 0 0 28px;
  color: var(--stage-copy);
  font-size: 17px;
  line-height: 1.7;
}

.home-page .stage-copy .link-arrow {
  color: var(--stage-text);
}

.home-page .product-stage .media-layer {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--stage-background);
}

.home-page .product-stage .media-layer::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  content: "";
  background:
    linear-gradient(90deg, #06131fdf 0%, #06131f9e 42%, #06131f45 73%, #06131f29 100%),
    linear-gradient(0deg, #06131f70 0%, transparent 48%, #06131f59 100%);
}

.home-page .product-stage .media-layer img,
.home-page .product-stage .media-layer video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.home-page .product-stage .media-layer .product-media-fallback {
  z-index: 2;
  margin: 0;
  color: var(--stage-copy);
  background: var(--stage-background);
  text-align: center;
}

@media (max-width: 600px) {
  .home-page .product-stage,
  .home-page .product-stage .stage-content {
    min-height: 78svh;
  }

  .home-page .product-stage .stage-content {
    padding: 86px 18px 72px;
  }

  .home-page .stage-copy h2 {
    font-size: 48px;
  }

  .home-page .stage-copy > p:not(.product-index) {
    font-size: 16px;
  }
}
