/* ==========================================================================
   PERFORMANCE — Discipline & Loyalty
   Tema oscuro de alto rendimiento · Parallax acelerado por hardware
   ========================================================================== */

:root {
  --bg: #0d0d0d;
  --bg-soft: #131313;
  --surface: #161616;
  --surface-2: #1f1f1f;
  --border: #2a2a2a;
  --accent: #39ff14;
  --accent-dim: rgba(57, 255, 20, 0.12);
  --text: #f5f5f5;
  --text-muted: #a3a3a3;
  --whatsapp: #25d366;
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
  --nav-height: 72px;
  --radius: 14px;
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.35, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

ul[role='list'] {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  font-weight: 700;
}

.accent {
  color: var(--accent);
}

/* ---------- Accesibilidad ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: #0d0d0d;
  font-weight: 700;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- Layout común ---------- */
.section-inner {
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(4rem, 9vw, 7rem) 1.5rem;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ==========================================================================
   Navegación
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.nav {
  max-width: 1120px;
  margin-inline: auto;
  height: var(--nav-height);
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__logo {
  display: block;
  color: var(--text);
}

.logo {
  display: block;
  height: 46px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding-block: 0.35rem;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--accent);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

.nav__link--cta {
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  padding: 0.45rem 1.4rem;
  color: var(--accent);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--accent);
  color: #0d0d0d;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
}

.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Parallax — capas transformadas por JS con translate3d (GPU)
   ========================================================================== */
.parallax {
  position: relative;
  overflow: hidden;
}

/* Fundido suave hacia el fondo en los bordes de cada sección parallax:
   une visualmente los bloques aunque la capa de fondo se desplace */
.parallax::before,
.parallax::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 110px;
  z-index: 1;
  pointer-events: none;
}

.parallax::before {
  top: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 100%);
}

.parallax::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
}

.parallax__layer {
  position: absolute;
  inset: -25% 0;
  z-index: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  pointer-events: none;
  background-repeat: repeat;
}

/* Capas fotográficas: imagen real + overlay oscuro para legibilidad */
.parallax__layer--photo {
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__bg {
  background-image:
    linear-gradient(180deg, rgba(13, 13, 13, 0.72) 0%, rgba(13, 13, 13, 0.55) 45%, rgba(13, 13, 13, 0.92) 100%),
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(57, 255, 20, 0.10), transparent 65%),
    url('../img/hero-entrenador.webp');
}

/* Red de portería en SVG embebido */
.hero__field-lines {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='78'%3E%3Cpath d='M45 0L90 26v52M45 0L0 26v52M45 0v52L90 78M45 52L0 78' fill='none' stroke='%2339ff14' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.9;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 4rem;
}

.hero__kicker {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.5rem);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.hero__value {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.hero__value strong {
  color: var(--text);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--text-muted);
  border-radius: 999px;
  z-index: 2;
}

.hero__scroll-hint span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--accent);
  animation: scroll-hint 1.8s ease-in-out infinite;
}

@keyframes scroll-hint {
  0% { transform: translate3d(0, 0, 0); opacity: 1; }
  70% { transform: translate3d(0, 14px, 0); opacity: 0; }
  100% { transform: translate3d(0, 0, 0); opacity: 0; }
}

/* ==========================================================================
   Botones
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition), color var(--transition);
}

.btn--primary {
  background: var(--accent);
  color: #0d0d0d;
}

.btn--primary:hover {
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 10px 30px rgba(57, 255, 20, 0.35);
}

.btn--ghost {
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translate3d(0, -3px, 0);
}

/* ==========================================================================
   Misión
   ========================================================================== */
.mission {
  background: var(--bg-soft);
  text-align: center;
}

.mission__bg {
  background-image:
    linear-gradient(180deg, rgba(13, 13, 13, 0.88) 0%, rgba(13, 13, 13, 0.78) 50%, rgba(13, 13, 13, 0.92) 100%),
    url('../img/mision-grupo.webp');
}

.mission__quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  font-weight: 500;
  line-height: 1.5;
  max-width: 820px;
  margin: 0 auto 2rem;
  color: var(--text);
}

.mission__detail {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2rem;
}

.mission__detail strong {
  color: var(--text);
}

.mission__components {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.mission__components li {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  padding: 0.55rem 1.4rem;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-dim);
}

/* ==========================================================================
   Pilares
   ========================================================================== */
.pillars {
  background: var(--bg);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  transition: transform var(--transition), border-color var(--transition),
    box-shadow var(--transition);
}

.pillar:hover {
  transform: translate3d(0, -8px, 0);
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--accent);
}

.pillar__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.pillar h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.pillar p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pillar em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

/* ==========================================================================
   Planes
   ========================================================================== */
.plans {
  background: var(--bg-soft);
}

.plans__bg {
  background-image:
    linear-gradient(180deg, rgba(13, 13, 13, 0.90) 0%, rgba(13, 13, 13, 0.84) 50%, rgba(13, 13, 13, 0.93) 100%),
    url('../img/planes-formativo.webp');
}

.plans__intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), border-color var(--transition),
    box-shadow var(--transition);
}

.plan:hover {
  transform: translate3d(0, -8px, 0);
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.plan--featured {
  background: linear-gradient(160deg, #182016 0%, var(--surface) 60%);
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.12);
}

.plan--wide {
  grid-column: 1 / -1;
}

.plan__media {
  margin: -2rem -1.5rem 1.5rem;
  height: 190px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
}

.plan__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.05) 40%, rgba(22, 22, 22, 0.95) 100%);
}

.plan__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.35, 1);
}

.plan:hover .plan__media img {
  transform: scale(1.06);
}

.plan__media--wide {
  height: 230px;
}

.plan__media--wide img {
  object-position: center 55%;
}

.plan__badge {
  position: absolute;
  z-index: 2;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0d0d0d;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  padding: 0.3rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.plan__name {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.plan__tag {
  display: inline-block;
  vertical-align: middle;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  margin-left: 0.5rem;
}

.plan__sessions {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.plan__price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.plan__currency {
  font-size: 1.2rem;
  color: var(--accent);
}

.plan__cop {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.plan__features {
  flex: 1;
  margin-bottom: 1.75rem;
  display: grid;
  gap: 0.6rem;
}

.plan__features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.4rem;
  position: relative;
}

.plan__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--accent);
  clip-path: polygon(0 40%, 40% 40%, 40% 0, 60% 0, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0 60%);
}

.btn--plan {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  border-color: var(--border);
}

.btn--plan:not(.btn--primary):hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translate3d(0, -2px, 0);
}

/* ==========================================================================
   Contacto
   ========================================================================== */
.contact {
  background: var(--bg);
}

.contact__bg {
  background-image:
    linear-gradient(180deg, rgba(13, 13, 13, 0.93) 0%, rgba(13, 13, 13, 0.86) 50%, rgba(13, 13, 13, 0.95) 100%),
    url('../img/contacto-equipo.webp');
}

.contact__intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 3rem;
}

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 760px;
  margin-inline: auto;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.9rem 1.1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #5c5c5c;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-field input:user-invalid,
.form-field textarea:user-invalid {
  border-color: #ff4d4d;
}

.btn--submit {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 260px;
  position: relative;
  overflow: hidden;
}

.btn--submit__icon {
  transition: transform var(--transition);
}

.btn--submit:hover .btn--submit__icon {
  transform: translate3d(4px, -3px, 0);
}

.btn--submit.sent {
  background: var(--whatsapp);
  pointer-events: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
}

.site-footer__grid {
  padding-block: 3rem 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 2rem;
  align-items: start;
}

.logo--footer {
  height: 42px;
  color: var(--text);
}

.site-footer__tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.site-footer__legal a {
  color: var(--text-muted);
  font-size: 0.88rem;
  width: fit-content;
  transition: color var(--transition);
}

.site-footer__legal a:hover {
  color: var(--accent);
}

.site-footer__social {
  display: flex;
  gap: 1rem;
}

.site-footer__social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition),
    transform var(--transition);
}

.site-footer__social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translate3d(0, -3px, 0);
}

.site-footer__copy {
  text-align: center;
  color: #6b6b6b;
  font-size: 0.8rem;
  padding: 1.25rem 1.5rem 2rem;
  border-top: 1px solid #1a1a1a;
}

/* ==========================================================================
   Balón flotante que rueda con el scroll
   ========================================================================== */
.scroll-ball {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0; /* JS la controla: nítido sobre el hero, sutil al rodar */
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.5));
  will-change: transform, opacity;
}

.scroll-ball svg {
  display: block;
}

/* ==========================================================================
   Botón flotante de WhatsApp
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 90;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  animation: whatsapp-pulse 2.4s ease-out infinite;
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08) translate3d(0, -2px, 0);
  animation-play-state: paused;
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.8, 0.35, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .plans__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    left: 0;
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem 2.5rem;
    border-bottom: 1px solid var(--border);
    transform: translate3d(0, -12px, 0);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition),
      visibility var(--transition);
  }

  .nav__menu.open {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
  }

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

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

  .site-footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  /* Parallax desactivado en móvil: capas estáticas para scroll fluido */
  .parallax__layer {
    inset: 0;
    will-change: auto;
    transform: none !important;
  }

  .scroll-ball {
    display: none;
  }
}

@media (max-width: 560px) {
  .plans__grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 54px;
    height: 54px;
  }
}

/* ---------- Movimiento reducido: sin parallax ni animaciones ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .parallax__layer {
    inset: 0;
    will-change: auto;
    transform: none !important;
  }

  .scroll-ball {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
