.home_hero {
  position: relative;
  display: block;
  width: 100%;
  height: calc(min(780px, 100svh) + 80px);
  min-height: 760px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #aa2b21 0%, #dc5a50 100%);
}

.home_hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 80px 0 0 270px;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 300px);
  pointer-events: none;
}

.home_hero_wordmark {
  position: absolute;
  z-index: 0;
  top: 110px;
  left: 0;
  display: block;
  width: 100%;
  height: 500px;
  max-width: none;
  overflow: hidden;
  pointer-events: none;
}

.home_hero_wordmark_track {
  display: flex;
  width: max-content;
  animation: home-hero-marquee 120s linear infinite;
  will-change: transform;
}

.home_hero_wordmark_track span {
  flex: 0 0 auto;
  padding-right: 0.18em;
  color: rgba(255, 255, 255, 0.045);
  font-family: "Roboto Flex", Arial, sans-serif;
  font-size: 420px;
  font-weight: 500;
  font-variation-settings: "GRAD" -55, "XOPQ" 80, "XTRA" 421, "YOPQ" 79, "YTAS" 750, "YTDE" -203, "YTFI" 738, "YTLC" 514, "YTUC" 712, "wdth" 30, "opsz" 80;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes home-hero-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.home_hero .home_hero_content {
  position: absolute;
  z-index: 3;
  top: calc(50% + 40px);
  left: max(60px, calc((100% - 1320px) / 2));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 610px;
  max-width: calc(100% - 120px);
  margin: 0;
  padding: 0;
  transform: translateY(-50%);
}

.home_hero .home_hero_content .h1 {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-family: "Roboto Flex", Arial, sans-serif;
  font-size: 112px;
  font-weight: 500;
  font-variation-settings: "GRAD" -55, "XOPQ" 80, "XTRA" 421, "YOPQ" 79, "YTAS" 750, "YTDE" -203, "YTFI" 738, "YTLC" 514, "YTUC" 712, "wdth" 30, "opsz" 60;
  line-height: 0.85;
}

.home_hero .home_hero_content .p1 {
  width: 100%;
  max-width: none;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 550;
  line-height: 1.4;
}

.home_hero .home_hero_content .h1 + .p1 {
  margin-top: 20px;
}

.home_hero .home_hero_content .button {
  margin-top: 40px;
  min-width: 191px;
  min-height: 61px;
  padding: 18px 40px;
  border-radius: 14px;
  background: var(--button-white);
  color: #0a0907;
  font-size: 18px;
  font-weight: 550;
  line-height: 1.4;
  box-shadow: inset 0 0 32px rgba(255, 255, 255, 0.35);
}

.home_hero .home_hero_content .button:hover,
.home_hero .home_hero_content .button:focus-visible {
  background: var(--button-white-hover);
  color: #0a0907;
}

.home_hero_visual {
  position: absolute;
  z-index: 2;
  top: 80px;
  right: 0;
  width: 57.4306%;
  height: calc(100% - 80px);
  overflow: hidden;
  pointer-events: none;
}

.home_hero_visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: right bottom;
}

@media (max-width: 1100px) {
  .home_hero .home_hero_content {
    left: 40px;
    width: 480px;
    max-width: calc(58% - 60px);
  }

  .home_hero .home_hero_content .h1 {
    font-size: 82px;
  }
}

@media (max-width: 900px) {
  .home_hero {
    height: 900px;
    min-height: 900px;
  }

  .home_hero::after {
    inset: 80px 0 0;
    background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 220px);
  }

  .home_hero_wordmark {
    top: 130px;
    left: 0;
    width: 100%;
    height: 330px;
  }

  .home_hero_wordmark_track {
    animation-duration: 95s;
  }

  .home_hero_wordmark_track span {
    color: rgba(255, 255, 255, 0.04);
    font-size: 250px;
  }

  .home_hero .home_hero_content {
    top: 180px;
    left: 50%;
    align-items: center;
    gap: 0;
    width: calc(100% - 40px);
    max-width: 560px;
    text-align: center;
    transform: translateX(-50%);
  }

  .home_hero .home_hero_content .h1 {
    max-width: 520px;
    font-size: clamp(60px, 13vw, 78px);
    text-align: center;
  }

  .home_hero .home_hero_content .p1 {
    max-width: 520px;
    font-size: 16px;
    text-align: center;
  }

  .home_hero .home_hero_content .button {
    align-self: center;
    margin-top: 30px;
    font-size: 16px;
    line-height: 22px;
  }

  .home_hero_visual {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 56%;
  }

  .home_hero_visual img {
    object-position: center bottom;
  }
}

@media (max-width: 620px) {
  .home_hero {
    height: 900px;
    min-height: 900px;
  }

  .home_hero::after {
    inset: 80px 0 0;
    background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 160px);
  }

  .home_hero .home_hero_content {
    top: 160px;
  }

  .home_hero_wordmark {
    top: 130px;
    height: 260px;
  }

  .home_hero_wordmark_track span {
    font-size: 190px;
  }

  .home_hero .home_hero_content .h1 {
    font-size: clamp(52px, 15vw, 66px);
  }

  .home_hero .home_hero_content .button {
    min-width: 0;
  }

  .home_hero_visual {
    right: auto;
    left: 0;
    width: 100%;
    height: 53%;
    transform: none;
  }
}
