/* =========================
   HERO PRINCIPAL
========================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 132px 0 70px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, .96) 0%,
      rgba(0, 0, 0, .82) 34%,
      rgba(0, 0, 0, .40) 66%,
      rgba(0, 0, 0, .20) 100%
    ),
    url("../img/hero.png") center right / cover no-repeat;
  z-index: -3;
  animation: cinematicZoom 14s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 76% 48%,
      rgba(225, 6, 0, .08),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, .06),
      rgba(0, 0, 0, .24)
    );
  z-index: -2;
}

@keyframes cinematicZoom {
  from {
    transform: scale(1.03) translateX(0);
  }

  to {
    transform: scale(1.08) translateX(-14px);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 36px;
  align-items: center;
}

.hero h1 {
  max-width: 640px;
  color: #ffffff;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: .012em;
  text-transform: uppercase;
  text-shadow:
    0 4px 24px rgba(0, 0, 0, .55),
    0 0 2px rgba(255, 255, 255, .22);
}

.hero h1 span {
  display: inline-block;
  margin-top: 8px;
  color: #ff2a2a;
  text-shadow:
    0 0 28px rgba(225, 6, 0, .48),
    0 4px 20px rgba(0, 0, 0, .55);
}

.hero p {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .92);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .48);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 600px;
  margin-top: 44px;
}

.stat {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(0, 0, 0, .34);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}

.stat strong {
  color: #ff2a2a;
  font-family: Anton, sans-serif;
  font-size: 34px;
  font-weight: 400;
  text-shadow: 0 0 24px rgba(225, 6, 0, .38);
}

.stat span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-logo-card {
  justify-self: end;
  width: min(420px, 100%);
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .09),
      rgba(255, 255, 255, .03)
    );
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .45);
  backdrop-filter: blur(14px);
  transform: perspective(900px) rotateY(-8deg);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 130px 0 80px;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, .88) 0%,
        rgba(0, 0, 0, .74) 48%,
        rgba(0, 0, 0, .50) 100%
      ),
      url("../img/hero.png") center / cover no-repeat;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 11vw, 62px);
    line-height: 1.08;
  }

  .hero p {
    max-width: 100%;
    font-size: 16px;
    color: rgba(255, 255, 255, .94);
  }

  .hero-logo-card {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}