#section-1.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  display: block;
  overflow: hidden;
  color: var(--text);
  text-align: left;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  opacity: 1;
  transform: translateZ(0);
  transform-origin: 50% 50%;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  max-width: clamp(560px, 50vw, 880px);
  padding: clamp(96px, 8vw, 140px) clamp(40px, 6vw, 120px) clamp(72px, 6vw, 110px) clamp(40px, 6vw, 140px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.hero-titles {
  width: 100%;
  display: grid;
  justify-items: start;
}

.hero-section .hero-title {
  margin: 0;
  width: 100%;
  color: #F1F5F9;
  font-size: clamp(40px, 4.8vw, 96px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0;
  text-align: left;
  text-shadow:
    0 2px 16px rgba(10, 14, 30, .35),
    0 0 1px rgba(0, 0, 0, .2);
}

.hero-line {
  display: block;
  overflow: hidden;
  line-height: 1.15;
  white-space: nowrap;
  text-align: left;
}

.hero-line > *,
.hero-line-inner,
.hero-accent {
  display: inline-block;
}

.hero-line-inner {
  transform: translateY(110%);
  transition: transform .9s cubic-bezier(.22,.68,.06,1);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-title.is-active .hero-line-inner {
  transform: translateY(0);
}

.hero-title.is-active .hero-line:nth-child(1) .hero-line-inner {
  transition-delay: .15s;
}

.hero-title.is-active .hero-line:nth-child(2) .hero-line-inner {
  transition-delay: .35s;
}

.hero-title.is-settled .hero-line-inner {
  transition: none;
  transform: translateY(0) !important;
}

.hero-accent {
  display: inline-block;
  padding: 0 .05em;
  color: #FFFFFF !important;
  font-size: 1.05em;
  font-weight: 700;
  letter-spacing: .04em;
  text-shadow:
    0 0 4px #FFFFFF,
    0 0 10px #FFB8DE,
    0 0 20px #FF6BB0,
    0 0 36px #FF3D9C,
    0 0 56px rgba(255,61,156,.6),
    0 0 80px rgba(255,61,156,.35);
  transform: translateZ(0);
  will-change: text-shadow;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-section .hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(12px, 1vw, 20px);
  margin-top: clamp(36px, 3.5vw, 64px);
  text-align: left;
}

.hero-section .tec-cta {
  min-width: clamp(118px, 7.2vw, 160px);
  height: clamp(48px, 3.4vw, 64px);
  padding: 0 clamp(24px, 2vw, 40px);
  border: none;
  border-radius: clamp(10px, .9vw, 16px);
  background: rgba(255,255,255,.58);
  color: var(--text);
  box-shadow: 0 14px 34px rgba(10,20,40,.08), inset 0 1px 0 rgba(255,255,255,.72);
  font-size: clamp(15px, 1vw, 20px);
  font-weight: 500;
}

.hero-section .tec-cta .cta-mask {
  border-radius: inherit;
  background: #FFFFFF;
  transform: translateX(-102%) translateZ(0);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-section .tec-cta:active .cta-mask {
  transform: translateX(0);
}

@media (hover: hover) {
  .hero-section .tec-cta:hover .cta-text,
  .hero-section .tec-cta:active .cta-text {
    color: var(--text);
  }
}

.hero-section .tec-cta:active .cta-text {
  color: var(--text);
}

@media (max-width: 1023px) {
  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
  }

  .hero-content {
    max-width: clamp(560px, 62vw, 760px);
    padding-left: clamp(28px, 5vw, 72px);
    padding-right: clamp(28px, 5vw, 72px);
  }

  .hero-section .hero-title {
    font-size: clamp(38px, 7vw, 72px);
  }

  .hero-section .tec-cta {
    min-width: clamp(116px, 15vw, 150px);
    height: clamp(44px, 4.4vw, 56px);
    padding: 0 clamp(20px, 2.6vw, 30px);
  }
}

@media (min-width: 600px) and (max-width: 1023px) and (orientation: portrait) {
  .hero-video {
    object-fit: cover;
    object-position: 50% 50%;
    transform: scale(1.36) translateZ(0);
    transform-origin: 50% 50%;
  }
}

@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
    padding: clamp(88px, 24vw, 128px) clamp(20px, 5vw, 28px) clamp(54px, 16vw, 86px);
    align-items: flex-start;
    text-align: left;
  }

  .hero-section .hero-title {
    color: #F1F5F9;
    font-size: clamp(36px, 10.4vw, 50px);
  }

  .hero-section .hero-actions {
    display: grid;
    width: 100%;
    justify-content: stretch;
    align-items: stretch;
    gap: clamp(10px, 3vw, 14px);
    margin-top: clamp(30px, 8vw, 42px);
  }

  .hero-section .tec-cta {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    min-width: 0;
    padding: 0 clamp(14px, 4vw, 22px);
  }
}

@media (max-width: 599px) {
  .hero-video {
    transform: translateZ(0);
  }
}

@media (max-width: 359px) {
  .hero-section .hero-title {
    font-size: clamp(32px, 10vw, 38px);
  }

  .hero-section .tec-cta {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-line-inner,
  .hero-section .tec-cta,
  .hero-section .tec-cta .cta-mask,
  .hero-section .tec-cta .cta-text {
    transition: none !important;
  }

  .hero-line-inner {
    transform: translateY(0);
  }
}
