/* =====================================================================
   BENLAR — Hoja de estilos
   Enfoque mobile-first. Breakpoints: tablet ≥768px · desktop ≥1024px
   ===================================================================== */

/* ---------- 1. Variables / tokens de diseño ---------- */
:root {
  /* Paleta extraída del diseño */
  --navy-900: #080A28;
  --navy-800: #0E1251;
  --navy-700: #14155C;
  --indigo:   #1B1A5E;
  --purple:   #2A2550;
  --black:    #050507;

  --gold:        #E3A82B;
  --gold-light:  #F0C24B;
  --cream:       #F9E8C9;

  --text:        #FFFFFF;
  --text-muted:  #AcB0D4;
  --text-dim:    #8B8FB8;

  --card-bg:      rgba(255, 255, 255, 0.045);
  --card-bg-soft: rgba(255, 255, 255, 0.07);
  --border:       rgba(255, 255, 255, 0.10);
  --border-soft:  rgba(255, 255, 255, 0.18);

  /* Tipografía */
  --font: "Nunito Sans", system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1180px;
  --pad-inline: 1.25rem;
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 70px;
}

/* ---------- 2. Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  /* El desplazamiento suave con easing lo controla main.js (easeInOutCubic).
     'auto' evita que el navegador anime en paralelo. Sin JS, el salto es instantáneo. */
  scroll-behavior: auto;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--navy-800);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; line-height: 1.2; font-weight: 700; }
p { margin: 0; }

/* ---------- 3. Utilidades ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}

.text-gold { color: var(--gold); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--gold);
  color: var(--navy-900);
  padding: .6rem 1rem;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Encabezado de sección (título + bajada) */
.section-head { max-width: 920px; margin-bottom: 2.5rem; }
.section-head__title {
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-head__subtitle {
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  font-weight: 600;
  margin-bottom: .9rem;
}
.section-head__text { color: var(--text-muted); font-size: 1.02rem; }

/* Botón dorado */
.btn--gold {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold);
  color: var(--navy-900);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); }

/* Botón secundario con contorno (mismo tamaño que el dorado) */
.btn--outline {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: transparent;
  color: var(--text);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  border: 1px solid var(--gold);
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.btn--outline:hover { background: rgba(227,168,43,0.12); border-color: var(--gold-light); transform: translateY(-2px); }
.btn--outline i { font-size: 1.25rem; color: var(--gold); }

/* Variante de mayor tamaño */
.btn--lg { font-size: 1.08rem; padding: 1.05rem 2.2rem; }
.btn--lg i { font-size: 1.4rem; }

/* Contenedor de los CTA del hero */
.hero__cta {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__cta .btn--gold,
.hero__cta .btn--outline { text-decoration: none; }

/* ---------- 4. Cabecera + navegación ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 13, 48, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}
.site-header__logo img { width: 120px; height: auto; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 9px;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
/* Estado abierto: las barras forman una X */
.nav-toggle.is-active .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-active .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menú: panel desplegable en mobile */
.site-nav { 
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(11, 13, 48, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.site-nav.is-open { max-height: 420px; }
.site-nav__list {
  display: flex;
  flex-direction: column;
  padding: .5rem var(--pad-inline) 1rem;
}
.site-nav__link {
  display: block;
  padding: .8rem .4rem;
  color: var(--text-muted);
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid transparent;   /* reserva el espacio del borde activo */
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}
.site-nav__link:hover { color: var(--text); }
.site-nav__link.is-active {
  color: var(--text);
  border-color: var(--border-soft);
  text-align: center;
}

/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  --skew: 50px;                 /* alto del corte diagonal (ángulo constante) */
  background-image:
    linear-gradient(180deg, rgba(10,12,46,0.80) 0%, rgba(12,13,60,0.70) 60%, rgba(17,22,90,0.85) 100%),
    url("../assets/img/hero.jpg");
  background-size: cover;
  background-position: center;
  /* Borde inferior en diagonal (sube hacia la derecha), como en el diseño */
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--skew)), 0 100%);
}
.hero__inner {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.hero__title {
  font-size: clamp(2.4rem, 11vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.3rem;
  max-width: 14ch;
}
.hero__text {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 48ch;
  margin-bottom: 2.2rem;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}
.stat {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: .85rem 1.2rem;
}
.stat__value {
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat__label { font-size: .9rem; color: var(--text-muted); line-height: 1.15; }

/* ---------- 6. Módulos (carrusel) ---------- */
.modules { padding-block: 4rem; }

.carousel {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.carousel__arrow {
  display: none; /* en mobile se navega con deslizamiento + dots */
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.carousel__arrow:hover { background: var(--card-bg-soft); border-color: var(--gold); }
.carousel__arrow:disabled { opacity: .3; cursor: not-allowed; }
.carousel__arrow:disabled:hover { background: var(--card-bg); border-color: var(--border-soft); }
.carousel__arrow i { font-size: 1.5rem; }

.carousel__viewport {
  flex: 1 1 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel__viewport::-webkit-scrollbar { display: none; }

.carousel__track { display: flex; }
.carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  padding: .25rem;
}

.module-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  overflow: hidden;
  min-height: 100%;
}
.module-card__number {
  position: absolute;
  top: -.5rem;
  right: 1rem;
  font-size: 7rem;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  pointer-events: none;
}
.module-card__title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}
.module-card__lead {
  color: var(--text-muted);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed var(--border-soft);
}
.module-card__points { display: grid; gap: .55rem; margin-bottom: 1.4rem; }
.module-card__points li { color: var(--text-muted); font-size: .96rem; }
.module-card__points strong { color: var(--text); font-weight: 600; }

.module-card__tags { display: flex; flex-wrap: wrap; gap: .6rem; }
.tag {
  font-size: .85rem;
  padding: .4rem 1rem;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(0,0,0,0.2);
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.8rem;
}
.carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: var(--border-soft);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.carousel__dot.is-active { background: var(--gold); transform: scale(1.25); }

/* ---------- 7. Experiencia / línea de tiempo ---------- */
.experience {
  padding-block: 4rem;
  --skew: 50px;                 /* mismo ángulo que el hero, para coherencia */
  background-image:
    linear-gradient(180deg, rgba(13,15,58,0.72), rgba(18,12,46,0.74)),
    url("../assets/img/experience.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Banda inclinada: borde superior e inferior en diagonal (paralelos, suben a la derecha) */
  clip-path: polygon(0 var(--skew), 100% 0, 100% calc(100% - var(--skew)), 0 100%);
}

.timeline { position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 7px;
  width: 2px;
  background: linear-gradient(var(--gold), rgba(227,168,43,0.15));
}
.timeline__item {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 2.5rem;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 3px solid var(--gold);
}
.timeline__marker {
  margin-bottom: .6rem;
  display: inline-flex;
  align-items: baseline;
  gap: .6rem;
  padding: .7rem 1.1rem;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
}
.timeline__year { font-size: 1.5rem; font-weight: 800; color: var(--text); }
.timeline__tag { font-size: .95rem; color: var(--gold); font-weight: 600; }
.timeline__heading { font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: .4rem; }
.timeline__content p { color: var(--text-muted); margin-bottom: .6rem; }

/* ---------- 8. Visión 2026 ---------- */
.vision { position: relative; overflow: hidden; padding-block: 4rem; }
.vision > .container { position: relative; z-index: 1; }
.modules { position: relative; overflow: hidden; }
.modules > .container { position: relative; z-index: 1; }

/* Campo de estrellas: pequeñas luces que palpitan, muy sutil (toque espacial) */
.stars-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
/* Solo en Visión, las estrellas se desvanecen hacia abajo (hacia Contacto) */
.vision__stars {
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 92%);
  mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 92%);
}
.vision__star {
  position: absolute;
  border-radius: 50%;
  background: var(--star-color, #fff);
  box-shadow: 0 0 var(--glow, 2px) var(--star-color, #fff);
  opacity: var(--star-op, .5);
  will-change: opacity, transform;
  animation: vision-twinkle var(--star-dur, 3s) ease-in-out var(--star-delay, 0s) infinite;
}
@keyframes vision-twinkle {
  0%, 100% { opacity: 0.08; transform: scale(0.5); }
  50%      { opacity: 1;    transform: scale(1.35); }
}
@media (prefers-reduced-motion: reduce) {
  /* Aun con movimiento reducido, mantenemos un pulso muy lento y leve (decorativo,
     de amplitud mínima) en lugar de desactivarlo por completo. */
  .vision__star {
    animation-name: vision-twinkle-soft;
    animation-duration: 6s;
  }
}
@keyframes vision-twinkle-soft {
  0%, 100% { opacity: 0.45; transform: scale(0.85); }
  50%      { opacity: 0.9;  transform: scale(1.05); }
}
.vision__grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.feature-card {
  position: relative;
  height: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  padding-right: 4.2rem;       /* deja sitio al icono de la esquina */
  overflow: hidden;            /* el icono queda contenido dentro de la card */
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.feature-card:hover {
  border-color: var(--gold);
  background: var(--card-bg-soft);
  transform: translateY(-4px);
}
.feature-card__title { font-size: 1.2rem; font-weight: 700; margin-bottom: .7rem; }
.feature-card__icon {
  position: absolute;
  top: 1rem;           /* dentro de la card, pegado a la esquina */
  right: 1rem;
  font-size: 3.4rem;   /* grande */
  color: #ffffff;
  opacity: 0.1;        /* translúcido y sutil */
  line-height: 1;
  pointer-events: none;
}
.feature-card p { color: var(--text-muted); font-size: .98rem; }

/* ---------- 9. Contacto ---------- */
.contact {
  position: relative;
  padding-block: 4rem;
  /* Empalma con el navy de Visión arriba (detrás del título) y degrada a negro,
     mezclando sutilmente la imagen del escritorio en la zona baja.
     El degradado va en 'scroll' para alinear su tope con el borde de la sección
     (con 'fixed' se posicionaría respecto a la ventana y dejaría un corte);
     la imagen va en 'fixed' para ser continua con el footer. */
  background-image:
    linear-gradient(180deg,
      #0E1251 0%,
      #0C103F 14%,
      rgba(11,10,38,0.98) 30%,
      rgba(8,7,24,0.95) 58%,
      rgb(6,6,10) 100%),
    url("../assets/img/footer.jpg");
  background-size: cover, cover;
  background-position: center, center;
  background-attachment: scroll, fixed;
}
.contact > .container { position: relative; z-index: 1; }
/* Línea punteada dorada que enmarca arriba el bloque de contenido + formulario */
.contact__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  border-top: 1px dashed rgba(227, 168, 43, 0.6);
  padding-top: 2.75rem;
}
.contact__logo { width: 150px; margin-bottom: 1.4rem; }
.contact__about { color: var(--text-muted); margin-bottom: 1.6rem; max-width: 46ch; }
.contact__details { font-style: normal; display: grid; gap: 1rem; }
.contact__line {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--text-muted);
}
.contact__icon { color: var(--gold); flex: 0 0 auto; font-size: 1.25rem; line-height: 1.3; }
.contact__line a:hover { color: var(--text); }

.contact__form { display: grid; gap: 1rem; }
.field__label {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.field__input {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--card-bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: .9rem 1rem;
  transition: border-color .2s ease, background .2s ease;
}
.field__input::placeholder { color: var(--text-dim); }
.field__input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.10);
}
textarea.field__input { resize: vertical; min-height: 120px; }

/* Ícono dentro del input (a la izquierda, antes del placeholder) */
.field--icon { position: relative; }
.field__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.15rem;
  color: var(--text-dim);
  pointer-events: none;
}
.field__input--icon { padding-left: 2.9rem; }
/* En el textarea (multilínea) el ícono se alinea con la primera línea, no al centro */
.field__icon--top { top: 1.5rem; }
.contact__form .btn--gold { justify-self: end; }

/* ---------- 10. Pie de página ---------- */
.site-footer {
  position: relative;
  padding-block: 2.5rem;
  border-top: 1px dashed rgba(227, 168, 43, 0.6);
  /* Sin imagen: continúa el negro del final de Contacto y degrada a negro puro,
     de modo que la unión entre las dos últimas secciones no se note */
  background: linear-gradient(180deg, rgb(6,6,10) 0%, var(--black) 100%);
}
.site-footer__top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.site-footer__logo img { width: 110px; }
.site-footer__list { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; }
.site-footer__list a { color: var(--text-muted); font-weight: 600; font-size: .95rem; }
.site-footer__list a:hover { color: var(--text); }
.site-footer__list a.is-active { color: var(--text); }
.site-footer__copy { color: var(--text-dim); font-size: .9rem; }

/* =====================================================================
   TABLET ≥ 768px
   ===================================================================== */
@media (min-width: 768px) {
  :root { --pad-inline: 2rem; }

  .modules, .experience, .vision, .contact { padding-block: 5.5rem; }

  .hero__inner { padding-block: 5rem 5.5rem; }

  /* Stats en fila con más aire */
  .stat { padding: 1rem 1.5rem; }
  .stat__value { font-size: 2.3rem; }

  /* Flechas del carrusel visibles */
  .carousel__arrow { display: inline-flex; align-items: center; justify-content: center; }
  .module-card { padding: 2.5rem 2.5rem; }
  .module-card__number { font-size: 9rem; right: 2rem; }
  .module-card__points { padding-right: 6rem; }

  /* Visión: 2 columnas */
  .vision__grid { grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }

  /* Contacto: info + formulario lado a lado */
  .contact__layout { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

  /* Footer en fila */
  .site-footer__top { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* =====================================================================
   DESKTOP ≥ 1024px
   ===================================================================== */
@media (min-width: 1024px) {
  /* Navegación horizontal; se oculta la hamburguesa */
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    max-height: none;
    overflow: visible;
    background: transparent;
    border: none;
    backdrop-filter: none;
  }
  .site-nav__list { flex-direction: row; gap: 1.5rem; padding: 0; }
  /* Mismo padding en todos los estados: el activo no ensancha ni desplaza */
  .site-nav__link { padding: .5rem 1.1rem; }

  /* Hero más alto y con más presencia */
  .hero__inner { padding-block: 7rem 8rem; min-height: 80vh; display: flex; flex-direction: column; justify-content: center; }
  .hero__title { font-size: clamp(3.5rem, 5vw, 4.5rem); }

  /* Visión: 3 columnas */
  .vision__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

  /* Línea de tiempo alternada con eje central
     (el ol tiene 40px de padding por defecto: la línea al 50% queda 20px a la
     izquierda del centro de los círculos, así que la corro +20px para cruzarlos) */
  .timeline::before { left: calc(50% + 20px); transform: translateX(-50%); }
  .timeline__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 72px;
    align-items: start;          /* la fecha y el contenido se alinean arriba */
    width: 100%;
    padding-left: 0;
    margin-bottom: 3rem;
  }
  /* Círculo: a la altura del centro de la fecha, centrado en el eje y por encima de la línea */
  .timeline__item::before {
    left: 50%;
    top: 1.95rem;
    transform: translate(-50%, -50%);
    margin-top: 0;
    z-index: 2;
  }
  /* Línea horizontal que une la fecha con el círculo (sobre el eje vertical) */
  .timeline__item::after {
    content: "";
    position: absolute;
    top: 1.95rem;
    width: 36px;               /* mitad del column-gap: va del eje al borde de la columna */
    height: 2px;
    background: var(--gold);
    transform: translateY(-50%);
    z-index: 1;
  }
  .timeline__item--right::after { right: 50%; }  /* conecta el eje con la fecha (izquierda) */
  .timeline__item--left::after  { left: 50%;  }  /* conecta el eje con la fecha (derecha) */
  /* contenido a la derecha → marcador a la izquierda */
  .timeline__item--right .timeline__marker  { grid-column: 1; justify-self: end;   }
  .timeline__item--right .timeline__content { grid-column: 2; text-align: left;    }
  /* contenido a la izquierda → marcador a la derecha */
  .timeline__item--left  .timeline__content { grid-column: 1; text-align: right;   }
  .timeline__item--left  .timeline__marker  { grid-column: 2; justify-self: start; }
  .timeline__heading { font-size: 1.2rem; }

  /* Carrusel: aire entre flechas y tarjeta */
  .carousel { gap: 1.5rem; }
}

/* ---------- Animación de entrada (respeta reduce-motion) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero__title, .hero__text, .hero__stats, .hero__cta {
    animation: rise .7s ease both;
  }
  .hero__text  { animation-delay: .1s; }
  .hero__stats { animation-delay: .2s; }
  .hero__cta   { animation-delay: .3s; }
  @keyframes rise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}
