.fourm-hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  background: #050505;
  color: #fff;
  overflow: hidden;
}
.fourm-hero-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.fourm-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 70% at 18% 42%, rgba(213, 72, 132, 0.22), transparent 58%),
    radial-gradient(ellipse 55% 50% at 88% 18%, rgba(80, 20, 48, 0.45), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.08) 40%, rgba(0, 0, 0, 0.55) 100%);
  animation: fourm-hero-veil 14s ease-in-out infinite alternate;
}
.fourm-hero-dust {
  position: absolute;
  inset: -20%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1.5px 1.5px at 28% 68%, rgba(213, 72, 132, 0.7), transparent),
    radial-gradient(1px 1px at 61% 18%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 74% 76%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(2px 2px at 88% 38%, rgba(213, 72, 132, 0.55), transparent),
    radial-gradient(1px 1px at 41% 88%, rgba(255, 255, 255, 0.35), transparent);
  animation: fourm-hero-dust 22s linear infinite;
}
.fourm-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.75fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0 72px;
}
.fourm-hero-title {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: clamp(42px, 7.4vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.fourm-hero-title,
.fourm-hero-aside h2,
.fourm-hero-aside p {
  transition: opacity 0.32s ease;
}
.fourm-hero.is-copy-swap .fourm-hero-title,
.fourm-hero.is-copy-swap .fourm-hero-aside h2,
.fourm-hero.is-copy-swap .fourm-hero-aside p {
  opacity: 0;
}
.fourm-hero-title span {
  display: block;
}
.fourm-hero-title span:nth-child(2),
.fourm-hero-title span:nth-child(3) {
  text-align: right;
}
.fourm-hero-mark {
  display: inline-block;
  width: 0.42em;
  height: 0.58em;
  margin: 0 0.02em;
  vertical-align: -0.02em;
  background: #d54884;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  animation: fourm-hero-mark 1.8s ease-in-out infinite;
}
.fourm-hero-aside {
  max-width: 22em;
  padding-top: 8px;
}
.fourm-hero-rule {
  display: block;
  width: 42px;
  height: 4px;
  background: #d54884;
  margin: 0 0 22px;
}
.fourm-hero-aside h2 {
  font-family: Poppins, sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 16px;
}
.fourm-hero-aside p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 28px;
}
.fourm-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #d54884;
  text-decoration: none;
}
.fourm-hero-cta span {
  font-size: 1.15em;
  line-height: 1;
  transition: transform 0.2s ease;
}
.fourm-hero-cta:hover,
.fourm-hero-cta:focus {
  color: #f06a9e;
  text-decoration: none;
}
.fourm-hero-cta:hover span,
.fourm-hero-cta:focus span {
  transform: translateX(4px);
}
.fourm-hero-pause {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.fourm-hero-pause-bars,
.fourm-hero-pause-bars:before,
.fourm-hero-pause-bars:after {
  display: block;
}
.fourm-hero-pause-bars {
  position: relative;
  width: 14px;
  height: 16px;
  margin: 0 auto;
}
.fourm-hero-pause-bars:before,
.fourm-hero-pause-bars:after {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  height: 16px;
  background: #fff;
}
.fourm-hero-pause-bars:before {
  left: 0;
}
.fourm-hero-pause-bars:after {
  right: 0;
}
.fourm-hero.is-paused .fourm-hero-pause-bars {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid #fff;
  margin: 0 auto;
}
.fourm-hero.is-paused .fourm-hero-pause-bars:before,
.fourm-hero.is-paused .fourm-hero-pause-bars:after {
  display: none;
}
.fourm-hero.is-paused .fourm-hero-veil,
.fourm-hero.is-paused .fourm-hero-dust,
.fourm-hero.is-paused .fourm-hero-mark {
  animation-play-state: paused;
}

@keyframes fourm-hero-veil {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(2%, -1%, 0); }
}
@keyframes fourm-hero-dust {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-4%, 6%, 0); }
}
@keyframes fourm-hero-mark {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(4px); opacity: 0.82; }
}

@media (max-width: 991px) {
  .fourm-hero-dust {
    opacity: 0.4;
    background-image:
      radial-gradient(2.5px 2.5px at 12% 22%, rgba(255, 255, 255, 0.7), transparent),
      radial-gradient(3.5px 3.5px at 28% 68%, rgba(213, 72, 132, 0.85), transparent),
      radial-gradient(2.5px 2.5px at 61% 18%, rgba(255, 255, 255, 0.55), transparent),
      radial-gradient(3px 3px at 74% 76%, rgba(255, 255, 255, 0.65), transparent),
      radial-gradient(4px 4px at 88% 38%, rgba(213, 72, 132, 0.75), transparent),
      radial-gradient(2.5px 2.5px at 41% 88%, rgba(255, 255, 255, 0.5), transparent);
    animation-duration: 7s;
  }
  .fourm-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 110px 0 88px;
    align-content: center;
  }
  .fourm-hero-title span:nth-child(2),
  .fourm-hero-title span:nth-child(3) {
    text-align: left;
  }
  .fourm-hero-aside {
    max-width: 32em;
  }
  .fourm-hero-pause {
    left: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fourm-hero-veil,
  .fourm-hero-dust,
  .fourm-hero-mark {
    animation: none;
  }
  .fourm-hero-title,
  .fourm-hero-aside h2,
  .fourm-hero-aside p {
    transition: none;
  }
}
