.lp-hero{
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-image: url("../images/hero.jpeg");
  background-size: cover;
  background-position: center;
}

.lp-hero::before{
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: min(1180px, 82vw);
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    to left,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.38) 58%,
    rgba(0,0,0,.14) 82%,
    rgba(0,0,0,0) 100%
  );
}

html[dir="ltr"] .lp-hero::before{
  background: linear-gradient(
    to right,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.38) 58%,
    rgba(0,0,0,.14) 82%,
    rgba(0,0,0,0) 100%
  );
}

.lp-hero__graphics{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  color: var(--lp-accent);
}

.lp-lines{
  position: absolute;
  width: min(760px, calc(92vw - (var(--lp-lines-edge-pad) * 2)));
  height: auto;
  opacity: .95;
}

.lp-lines--topStart{
  top: calc(var(--lp-header-h) + 26px);
  inset-inline-start: var(--lp-lines-edge-pad);
}

.lp-lines--bottomEnd{
  bottom: 26px;
  inset-inline-end: var(--lp-lines-edge-pad);
}

.lp-lines .lp-line{
  stroke: currentColor;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  will-change: stroke-dashoffset, opacity;
}

.lp-lines .lp-line--w10{ stroke-width: 6; }
.lp-lines .lp-line--w4 { stroke-width: 4; }
.lp-lines .lp-line--w1 { stroke-width: 1; }

.lp-hero__content{
  position: relative;
  z-index: 2;

  max-width: var(--lp-container);
  margin-inline: auto;
  padding-inline: var(--lp-page-pad);
  padding-top: calc(var(--lp-header-h) + 48px);
  padding-bottom: 80px;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;

  align-items: flex-start;
  text-align: start;
}

.lp-hero__contentRow{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 42px);
}

.lp-hero__text{
  flex: 1 1 auto;
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-hero__logo{
  flex: 0 1 min(360px, 40vw);
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.lp-hero__logo img{
  width: 100%;
  max-width: 360px;
  height: auto;
  max-height: 180px;
  display: block;
  object-fit: contain;
}

.lp-hero__title{
  margin: 0;
  font-size: clamp(36px, 4.8vw, 70px);
  line-height: 1.08;
  font-weight: 700;

  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.lp-hero__titleLine{ display: block; }
.lp-hero__titleLine + .lp-hero__titleLine{ margin-top: 8px; }

.lp-hero__accentWord{
  position: relative;
  display: inline-block;
  isolation: isolate;
  padding-inline: .10em;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.lp-hero__accentWord::before{
  content: "";
  position: absolute;
  inset-inline: -0.06em;
  height: .34em;
  bottom: .06em;
  background: var(--lp-accent);
  border-radius: 10px;
  z-index: -1;
}

.lp-hero__subtitle{
  margin: 0;
  font-size: var(--lp-subtitle-size);
  line-height: 1.85;
  max-width: min(96ch, 980px);
  font-weight: 700;

  color: rgba(255,255,255,.92) !important;
  -webkit-text-fill-color: rgba(255,255,255,.92) !important;
}

@media (max-width: 900px){
  .lp-hero::before{
    width: 100%;
    background: linear-gradient(
      to left,
      rgba(0,0,0,.52) 0%,
      rgba(0,0,0,.36) 70%,
      rgba(0,0,0,.12) 88%,
      rgba(0,0,0,0) 100%
    );
  }

  html[dir="ltr"] .lp-hero::before{
    background: linear-gradient(
      to right,
      rgba(0,0,0,.52) 0%,
      rgba(0,0,0,.36) 70%,
      rgba(0,0,0,.12) 88%,
      rgba(0,0,0,0) 100%
    );
  }

  .lp-lines{
    width: min(640px, calc(96vw - (var(--lp-lines-edge-pad) * 2)));
    opacity: .9;
  }

  .lp-lines--topStart{
    top: calc(var(--lp-header-h) + 18px);
  }

  .lp-hero__subtitle{
    max-width: 70ch;
  }

  .lp-hero__logo{
    flex-basis: min(320px, 42vw);
  }

  .lp-hero__logo img{
    max-width: 320px;
    max-height: 170px;
  }
}

@media (max-width: 650px){
  .lp-hero__contentRow{
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-hero__logo{
    flex-basis: min(300px, 70vw);
  }

  .lp-hero__logo img{
    max-width: 300px;
    max-height: 160px;
  }
}