.home-smart-attack {
  background:
    radial-gradient(1100px 520px at 82% 18%, rgba(245, 230, 8, 0.24) 0%, rgba(245, 230, 8, 0) 72%),
    radial-gradient(980px 520px at 16% 82%, rgba(223, 32, 41, 0.2) 0%, rgba(223, 32, 41, 0) 70%),
    linear-gradient(136deg, #9430a9 0%, #6c2e8f 48%, #df2029 100%);
  color: #f6f5f5;
}

.home-smart-attack__grid {
  width: min(1280px, 94%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.9fr);
}

.home-smart-attack__main {
  padding: 84px 4vw 90px;
  border-right: 1px solid rgba(246, 245, 245, 0.16);
}

.home-smart-attack__intro {
  margin: 0;
  max-width: 78ch;
  line-height: 1.72;
  color: rgba(246, 245, 245, 0.9);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-smart-attack__video-card {
  margin-top: 30px;
  min-height: 250px;
  border-radius: 14px;
  border: 1px solid rgba(246, 245, 245, 0.2);
  background:
    radial-gradient(70% 120% at 15% 15%, rgba(245, 230, 8, 0.26) 0%, rgba(245, 230, 8, 0) 72%),
    radial-gradient(80% 120% at 85% 80%, rgba(148, 48, 169, 0.34) 0%, rgba(148, 48, 169, 0) 72%),
    linear-gradient(130deg, rgba(9, 155, 210, 0.35) 0%, rgba(9, 155, 210, 0.08) 46%, rgba(20, 158, 167, 0.22) 100%);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-smart-attack__video-card p {
  margin: 0;
  font-size: clamp(1.1rem, 2.3vw, 1.45rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-smart-attack__footer {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-smart-attack__footer p {
  margin: 0;
  font-weight: 700;
}

.home-smart-attack__cta {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(246, 245, 245, 0.38);
  color: #f6f5f5;
  text-decoration: none;
  font-weight: 700;
}

.home-smart-attack__cta:hover,
.home-smart-attack__cta:focus-visible {
  border-color: rgba(70, 199, 255, 0.86);
  background: rgba(70, 199, 255, 0.14);
}

.home-smart-attack__side {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 84px 3.2vw;
}

.home-smart-attack__kicker {
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #46c7ff;
  font-weight: 700;
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-smart-attack__title {
  margin: 16px 0 0;
  font-size: clamp(1.8rem, 3.1vw, 2.7rem);
  line-height: 0.92;
  text-transform: uppercase;
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-smart-attack__subtitle {
  margin: 22px 0 0;
  line-height: 1.65;
  color: rgba(246, 245, 245, 0.9);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-smart-attack.has-reveal .home-smart-attack__kicker,
.home-smart-attack.has-reveal .home-smart-attack__title,
.home-smart-attack.has-reveal .home-smart-attack__subtitle,
.home-smart-attack.has-reveal .home-smart-attack__intro,
.home-smart-attack.has-reveal .home-smart-attack__video-card,
.home-smart-attack.has-reveal .home-smart-attack__footer {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(4px);
}

.home-smart-attack.has-reveal.is-visible .home-smart-attack__kicker,
.home-smart-attack.has-reveal.is-visible .home-smart-attack__title,
.home-smart-attack.has-reveal.is-visible .home-smart-attack__subtitle,
.home-smart-attack.has-reveal.is-visible .home-smart-attack__intro,
.home-smart-attack.has-reveal.is-visible .home-smart-attack__video-card,
.home-smart-attack.has-reveal.is-visible .home-smart-attack__footer {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.home-smart-attack.has-reveal .home-smart-attack__kicker { transition-delay: 0.08s; }
.home-smart-attack.has-reveal .home-smart-attack__title { transition-delay: 0.16s; }
.home-smart-attack.has-reveal .home-smart-attack__subtitle { transition-delay: 0.24s; }
.home-smart-attack.has-reveal .home-smart-attack__intro { transition-delay: 0.2s; }
.home-smart-attack.has-reveal .home-smart-attack__video-card { transition-delay: 0.3s; }
.home-smart-attack.has-reveal .home-smart-attack__footer { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .home-smart-attack__kicker,
  .home-smart-attack__title,
  .home-smart-attack__subtitle,
  .home-smart-attack__intro,
  .home-smart-attack__video-card,
  .home-smart-attack__footer {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 1024px) {
  .home-smart-attack__grid {
    grid-template-columns: 1fr;
  }

  .home-smart-attack__side {
    order: -1;
    position: static;
    padding: 68px 8vw 22px;
  }

  .home-smart-attack__main {
    padding: 0 8vw 72px;
    border-right: 0;
  }
}
