/* Activities hero, Digiboost-style layout, site cream background */
.act-hero {
  --act-bg: var(--gotezu-bg, #f7f4ef);
  --act-ink: #1c2539;
  --act-muted: #5d666f;
  --act-soft: #8a93a0;
  --act-accent: #fa8b17;
  --act-accent-soft: rgba(250, 139, 23, 0.14);
  --act-line: rgba(28, 37, 57, 0.18);
  --act-card: #e8e4dc;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(250, 139, 23, 0.1), transparent 55%), radial-gradient(ellipse 50% 40% at 95% 15%, rgba(28, 37, 57, 0.05), transparent 50%), var(--act-bg);
  color: var(--act-ink);
  padding: 28px 0 0;
}

.act-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      -18deg, transparent 0, transparent 46px, rgba(250, 139, 23, 0.06) 46px, rgba(250, 139, 23, 0.06) 47px
    );
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 75%);
  opacity: 0.85;
}

.act-hero::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 55%;
  left: -10%;
  top: 8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 42%, rgba(250, 139, 23, 0.08) 43%, transparent 44%), radial-gradient(ellipse at center, transparent 58%, rgba(28, 37, 57, 0.05) 59%, transparent 60%);
  transform: rotate(-8deg);
}

.act-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 24px 0;
}

.act-hero__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto minmax(0, 0.95fr);
  gap: 28px 36px;
  align-items: end;
  margin-bottom: 42px;
}

.act-hero__title-wrap {
  position: relative;
}

.act-hero__title {
  margin: 0;
  font-family: "Red Hat Display", sans-serif;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--act-ink);
}

.act-hero__title em {
  font-style: normal;
  color: var(--act-accent);
}

.act-hero__divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, var(--act-line), transparent);
  min-height: 120px;
}

.act-hero__aside {
  padding-bottom: 6px;
}

.act-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 18px;
  margin-bottom: 28px;
}

.act-hero__stat strong {
  display: block;
  font-family: "Red Hat Display", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--act-ink);
}

.act-hero__stat span {
  display: block;
  margin-top: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--act-soft);
  line-height: 1.35;
}

.act-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.act-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: "Red Hat Display", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.act-hero__btn--primary {
  background: var(--act-accent);
  color: #fff;
  border: 1.5px solid var(--act-accent);
  box-shadow: 0 10px 28px rgba(250, 139, 23, 0.28);
}

.act-hero__btn--primary:hover {
  background: #e07a0f;
  border-color: #e07a0f;
  color: #fff;
  transform: translateY(-2px);
}

.act-hero__btn--ghost {
  background: transparent;
  color: var(--act-ink);
  border: 1.5px solid rgba(28, 37, 57, 0.28);
}

.act-hero__btn--ghost:hover {
  border-color: var(--act-ink);
  color: var(--act-ink);
  background: rgba(28, 37, 57, 0.04);
  transform: translateY(-2px);
}

.act-hero__media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0c111a;
  box-shadow: 0 24px 60px rgba(28, 37, 57, 0.14);
  isolation: isolate;
}

.act-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.page-activities .act-hero + .logo-wall {
  margin-top: 20px;
}

.act-hero__reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: act-hero-in 0.7s ease forwards;
}

.act-hero__reveal--2 { animation-delay: 0.12s; }
.act-hero__reveal--3 { animation-delay: 0.24s; }

@keyframes act-hero-in {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
  .act-hero__top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .act-hero__divider {
    display: none;
  }

  .act-hero__media {
    aspect-ratio: 16 / 9;
    border-radius: 24px;
  }
}

@media (max-width: 575px) {
  .act-hero__inner {
    padding: 12px 16px 0;
  }

  .act-hero__stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
