:root{
  --prev-hero-bg-1: #0B1219;
  --prev-hero-bg-2: #0E161F;
  --prev-hero-bg-3: #0B1219;
  --prev-hero-cyan: #00EEFF;
  --prev-hero-white: #FFFFFF;
  --prev-hero-desc: #EEEEEE;
  --prev-hero-btn-dark: #1E293B;
  --prev-hero-btn-dark-border: #334155;
  --prev-hero-shadow: rgba(13, 242, 242, 0.10);
  --prev-hero-glass-border: rgba(255, 255, 255, 0.30);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.prev-hero-section{
  position: relative;
  width: 100%;
  min-height: 800px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(90deg, #091525, #0E161F, #0B1219);
}

.prev-hero-section__inner{
  position: relative;
  z-index: 3;
  width: min(1440px, calc(100% - 48px));
  min-height: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   GRID
   ========================================================= */
.prev-hero-section__grid{
  position: relative;
  min-height: 800px;
  display: grid;
  grid-template-columns: 700px 740px;
  justify-content: space-between;
  align-items: center;
}

.prev-hero-section__content{
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 24px;
}

.prev-hero-section__aside{
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 740px;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 0;
}


/* =========================================================
   MEDIA AREA
   ========================================================= */
.prev-hero-section__media-wrap{
  position: absolute;
  top: 0;
  left: -420px;
  width: 1400px;
  max-width: 1400px;
  height: 870px;
  z-index: 1;
  pointer-events: none;
}

.prev-hero-section__media-bg{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.prev-hero-section__media{
  position: absolute;
  top: 0;
  left: 0;
  width: 1400px;
  max-width: 1400px;
  height: 870px;
  display: block;
  object-fit: cover;
}

.prev-hero-section__media--video,
.prev-hero-section__media--image{
  width: 1400px;
  max-width: 1400px;
  height: 870px;
  object-fit: cover;
  object-position: right center;
}

/* =========================================================
   VIDEO BLEND OVERLAY
   ========================================================= */
.prev-hero-section__gradient{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.prev-hero-section__gradient--radial{
  z-index: 2;
  background: radial-gradient(
    circle at 72% 38%,
    rgba(9, 21, 37, 0) 0%,
    rgba(9, 21, 37, 1) 100%
  );
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.prev-hero-section__subtitle{
  margin: 0 0 16px;
  font-family: "Wix Madefor Display", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--prev-hero-cyan);
  opacity: 0;
  transform: translateY(24px);
  animation: prevHeroFadeUp 0.8s ease forwards;
  animation-delay: 0.10s;
}

.prev-hero-section__title{
  margin: 0;
  max-width: 700px;
  font-family: "Wix Madefor Display", sans-serif;
  font-size: 64px;
  line-height: 74px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--prev-hero-white);
  opacity: 0;
  transform: translateY(28px);
  animation: prevHeroFadeUp 0.9s ease forwards;
  animation-delay: 0.22s;
}

.prev-hero-section__description{
  margin-top: 24px;
  max-width: 620px;
  font-family: "Wix Madefor Display", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--prev-hero-desc);
  opacity: 0;
  transform: translateY(24px);
  animation: prevHeroFadeUp 0.9s ease forwards;
  animation-delay: 0.34s;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.prev-hero-section__buttons{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(24px);
  animation: prevHeroFadeUp 0.9s ease forwards;
  animation-delay: 0.46s;
}

.prev-hero-section__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.prev-hero-section__button:hover{
  transform: translateY(-2px);
}

.prev-hero-section__button-icon{
  width: 18px;
  height: 18px;
  min-width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.prev-hero-section__button-icon img{
  width: 18px;
  height: 18px;
  display: block;
}

.prev-hero-section__button-text{
  font-family: "Wix Madefor Display", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  white-space: nowrap;
}

.prev-hero-section__button--primary{
  background: #00EEFF;
  box-shadow: 0 0 30px 0 rgba(13, 242, 242, 0.10);
}

.prev-hero-section__button--primary .prev-hero-section__button-text{
  color: #000000;
}

.prev-hero-section__button--secondary{
  background: #1E293B;
  border: 1px solid #334155;
}

.prev-hero-section__button--secondary .prev-hero-section__button-text{
  color: #FFFFFF;
}

/* =========================================================
   INFO BOX
   ========================================================= */
.prev-hero-section__info-box{
  position: relative;
  z-index: 6;
  width: 100%;
  max-width: 700px;
  min-height: 184px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 42px;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  background: rgba(0, 0, 0, 0.20);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  opacity: 0;
  transform: translateY(36px);
  animation: prevHeroFadeUp 1s ease forwards;
  animation-delay: 0.60s;
}

.prev-hero-section__info-icon{
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.prev-hero-section__info-icon img{
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
}

.prev-hero-section__info-text{
  flex: 1;
  font-family: "Wix Madefor Display", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #FFFFFF;
}

/* =========================================================
   ANIMATION
   ========================================================= */
@keyframes prevHeroFadeUp{
  from{
    opacity: 0;
    transform: translateY(24px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce){
  .prev-hero-section__subtitle,
  .prev-hero-section__title,
  .prev-hero-section__description,
  .prev-hero-section__buttons,
  .prev-hero-section__info-box{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .prev-hero-section__button{
    transition: none !important;
  }
}

/* =========================================================
   1200 - 1439
   ========================================================= */
@media (min-width: 1200px) and (max-width: 1439px){
  .prev-hero-section__inner{
    width: min(100%, calc(100% - 48px));
  }

  .prev-hero-section__grid{
    grid-template-columns: minmax(0, 1fr) minmax(520px, 640px);
    column-gap: 40px;
  }

  .prev-hero-section__content{
    max-width: 100%;
  }

  .prev-hero-section__title{
    font-size: 56px;
    max-width: 100%;
    line-height:66px;
  }

  .prev-hero-section__description{
    max-width: 560px;
  }

.prev-hero-section__aside{
  max-width: 640px;
  min-height: 800px;
  padding-bottom: 0;
}

  .prev-hero-section__media-wrap{
    left: -420px;
    width: 1120px;
    max-width: 1120px;
    height: 800px;
  }

  .prev-hero-section__media{
    width: 1120px;
    max-width: 1120px;
    height: 800px;
  }

  .prev-hero-section__media--video,
  .prev-hero-section__media--image{
    width: 1120px;
    max-width: 1120px;
    height: 800px;
  }

  .prev-hero-section__info-box{
    max-width: 100%;
  }
}

/* =========================================================
   TABLET
   ========================================================= */
@media (min-width: 768px) and (max-width: 1199px){

  .prev-hero-section{
    position: relative;
    min-height: auto;
    overflow: hidden;
  }

  .prev-hero-section__inner{
    position: relative;
    z-index: 3;
    width: min(100%, calc(100% - 58px));
    min-height: auto;
  }

  .prev-hero-section__grid{
    position: relative;
    min-height: auto;
    grid-template-columns: 1fr;
    row-gap: 36px;
    padding-top: 110px;
    padding-bottom: 72px;
  }

  .prev-hero-section__content{
    position: relative;
    z-index: 5;
    max-width: 100%;
    padding-top: 0;
  }

  .prev-hero-section__title{
    font-size: 52px;
    max-width: 100%;
  }

  .prev-hero-section__description{
    max-width: 100%;
  }

  /* IMPORTANT FIX */
  .prev-hero-section__aside{
    position: static;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    display: block;
    padding-bottom: 0;
    transform: none;
    pointer-events: auto;
    z-index: auto;
  }

  /* FULL BACKGROUND VIDEO */
  .prev-hero-section__media-wrap{
    position: absolute;
    inset: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
  }

  .prev-hero-section__media-bg{
    width: 100%;
    height: 100%;
  }

  .prev-hero-section__media{
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
  }

  .prev-hero-section__media--video,
  .prev-hero-section__media--image{
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .prev-hero-section__gradient--radial{
    background:
      radial-gradient(
        circle at 50% 50%,
        rgba(9, 21, 37, 0.00) 0%,
        rgba(9, 21, 37, 0.12) 24%,
        rgba(9, 21, 37, 0.38) 56%,
        rgba(9, 21, 37, 0.74) 100%
      );
  }

  .prev-hero-section__info-box{
    position: relative;
    z-index: 6;
    max-width: 100%;
    padding: 32px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */
@media (min-width: 480px) and (max-width: 767px){
  .prev-hero-section{
    min-height: auto;
    overflow: hidden;
    position: relative;
  }

  .prev-hero-section__inner{
    width: min(100%, calc(100% - 38px));
    min-height: auto;
    position: relative;
    z-index: 3;
  }

  .prev-hero-section__grid{
    position: relative;
    min-height: auto;
    grid-template-columns: 1fr;
    row-gap: 22px;
    padding-top: 70px;
    padding-bottom: 70px;
    gap: 26px;
  }

  .prev-hero-section__content{
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-top: 0;
  }

  .prev-hero-section__subtitle{
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 22px;
  }

  .prev-hero-section__title{
    max-width: 100%;
    min-width: 0;
    font-size: 40px;
    line-height: 1.05;
    word-break: break-word;
  }

  .prev-hero-section__description{
    margin-top: 20px;
    max-width: 100%;
    min-width: 0;
    font-size: 15px;
    line-height: 24px;
  }

  .prev-hero-section__buttons{
    margin-top: 24px;
    gap: 14px;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .prev-hero-section__button{
    width: 100%;
    max-width: 100%;
  }

  .prev-hero-section__button-text{
    white-space: normal;
    text-align: center;
  }

  /* IMPORTANT FIX */
  .prev-hero-section__aside{
    position: static;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    display: block;
    padding-bottom: 0;
    transform: none;
    pointer-events: auto;
    z-index: auto;
  }

  /* background media only */
  .prev-hero-section__media-wrap{
    position: absolute;
    inset: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
  }

  .prev-hero-section__media-bg{
    width: 100%;
    height: 100%;
  }

  .prev-hero-section__media{
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
  }

  .prev-hero-section__media--video,
  .prev-hero-section__media--image{
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .prev-hero-section__gradient--radial{
    background:
      radial-gradient(
        circle at 58% 38%,
        rgba(9, 21, 37, 0.12) 0%,
        rgba(9, 21, 37, 0.24) 22%,
        rgba(9, 21, 37, 0.48) 50%,
        rgba(9, 21, 37, 0.82) 78%,
        rgba(9, 21, 37, 0.96) 100%
      );
  }

  /* now this will sit BELOW the buttons */
  .prev-hero-section__info-box{
    position: relative;
    z-index: 6;
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    margin-top: 0;
    padding: 20px;
    gap: 14px;
    border-radius: 16px;
    align-items: flex-start;
  }

  .prev-hero-section__info-icon{
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .prev-hero-section__info-icon img{
    width: 48px;
    height: 48px;
  }

  .prev-hero-section__info-text{
    font-size: 14px;
    line-height: 22px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */
@media (max-width: 479px){
  .prev-hero-section{
    min-height: auto;
    overflow: hidden;
    position: relative;
  }

  .prev-hero-section__inner{
    width: min(100%, calc(100% - 38px));
    min-height: auto;
    position: relative;
    z-index: 3;
  }

  .prev-hero-section__grid{
    position: relative;
    min-height: auto;
    grid-template-columns: 1fr;
    row-gap: 20px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .prev-hero-section__content{
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-top: 0;
    gap: 22px;
  }

  .prev-hero-section__subtitle{
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 22px;
  }

  .prev-hero-section__title{
    max-width: 100%;
    min-width: 0;
    font-size: 34px;
    line-height: 44px;
    word-break: break-word;
  }

  .prev-hero-section__description{
    margin-top: 18px;
    max-width: 100%;
    min-width: 0;
    font-size: 14px;
    line-height: 24px;
  }

  .prev-hero-section__buttons{
    margin-top: 22px;
    gap: 12px;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .prev-hero-section__button{
    width: 100%;
    max-width: 100%;
  }

  .prev-hero-section__button-text{
    white-space: normal;
    text-align: center;
  }

  /* IMPORTANT FIX */
  .prev-hero-section__aside{
    position: static;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    display: block;
    padding-bottom: 0;
    transform: none;
    pointer-events: auto;
    z-index: auto;
  }

  /* background media only */
  .prev-hero-section__media-wrap{
    position: absolute;
    inset: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
  }

  .prev-hero-section__media-bg{
    width: 100%;
    height: 100%;
  }

  .prev-hero-section__media{
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
  }

  .prev-hero-section__media--video,
  .prev-hero-section__media--image{
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .prev-hero-section__gradient--radial{
    background:
      radial-gradient(
        circle at 58% 38%,
        rgba(9, 21, 37, 0.16) 0%,
        rgba(9, 21, 37, 0.28) 22%,
        rgba(9, 21, 37, 0.52) 50%,
        rgba(9, 21, 37, 0.86) 78%,
        rgba(9, 21, 37, 0.98) 100%
      );
  }

  /* now this will sit BELOW the buttons */
  .prev-hero-section__info-box{
    position: relative;
    z-index: 6;
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    margin-top: 0;
    padding: 18px;
    gap: 12px;
    border-radius: 16px;
    align-items: flex-start;
  }

  .prev-hero-section__info-icon{
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .prev-hero-section__info-icon img{
    width: 44px;
    height: 44px;
  }

  .prev-hero-section__info-text{
    font-size: 13px;
    line-height: 21px;
  }
}