﻿.issi-hero {
  /*min-height: 100vh;*/
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  padding: 0 4%;
  overflow: hidden;
  position: relative;
}

  .issi-hero::after {
    content: '';
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: min(55vw, 820px);
    height: min(55vw, 820px);
    background: radial-gradient(circle, rgba(240,91,114,.07) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
  }

.issi-copy {
  max-width: 490px;
  z-index: 2;
}

  .issi-copy h1 {
    color: rgb(255,255,255);
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 4vw, 4.3rem);
    line-height: 1.08;
    font-weight: 500;
    /* initial state */
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0s, transform 0s;
  }

  .issi-copy p {
    margin: 0 0 28px;
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    color: #e8ecf6;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0s, transform 0s;
  }

.issi-btn {
  display: inline-block;
  padding: 14px 30px;
  border: 1px solid #F05B72;
  border-radius: 4px;
  color: #F05B72;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
  opacity: 0;
  transform: translateY(12px) scale(.97);
  transition: background .25s ease, color .25s ease;
}

  .issi-btn span {
    margin-left: 20px;
    font-size: 14px;
  }

  .issi-btn:hover {
    background: #F05B72;
    color: #fff;
  }

.hero-animated .issi-copy h1 {
  animation: copyFadeUp .75s cubic-bezier(.22,1,.36,1) .08s forwards;
}

.hero-animated .issi-copy p {
  animation: copyFadeUp .75s cubic-bezier(.22,1,.36,1) .26s forwards;
}

.hero-animated .issi-btn {
  animation: btnIn .65s cubic-bezier(.34,1.56,.64,1) .44s forwards;
}

@keyframes copyFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes btnIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.issi-visual {
  width: min(50vw, 560px);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

  .issi-visual svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
  }

#years-final,
#tagline-final {
  opacity: 0;
}

  #years-final.show {
    animation: fadeUp .52s cubic-bezier(.22,1,.36,1) forwards;
  }

  #tagline-final.show {
    animation: fadeUp .6s cubic-bezier(.22,1,.36,1) forwards;
  }

.mask-stroke {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#mask-pinkblue {
  stroke-width: 40;
}

#mask-yellow {
  stroke-width: 40;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(7px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section-inner{
    justify-content: center;
}

@media (max-width: 991px) {
  .issi-hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 96px 6%;
  }

  .issi-visual {
    width: 100%;
    max-width: 620px;
    order: -1;
  }
}

@media (max-width: 769px) {
  .hero-section .hero-section-inner {
    padding-top: 0 !important;
  }
}

