/* CSI 14 — Décimo cuarto Congreso de Seguridad de la Información */

:root {
  --black: #050505;
  --black-soft: #0c0c0c;
  --black-mid: #121212;
  --gold: #e6a817;
  --gold-light: #f5c14a;
  --gold-dark: #c4890e;
  --text: #f6f3ea;
  --text-muted: rgba(246, 243, 234, 0.72);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(230, 168, 23, 0.18);
  --card-bg: rgba(255, 255, 255, 0.03);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --radius-lg: 24px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Space Grotesk", var(--font);
  --nav-height: 76px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.header__logo {
  flex: 0 1 auto;
  min-width: 0;
}

.header__logo img {
  height: 48px;
  width: auto;
  max-width: min(240px, 54vw);
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow-x: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(230, 168, 23, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 90%, rgba(196, 137, 14, 0.08), transparent 50%),
    var(--black);
}

.hero__circuit {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(230, 168, 23, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 168, 23, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 40%, black, transparent);
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(230, 168, 23, 0.16), transparent 68%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  padding: calc(var(--nav-height) + 1.5rem) 1.25rem 4.5rem;
  max-width: min(920px, 100%);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

.hero__logo {
  max-width: min(640px, 88vw);
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 12px 40px rgba(230, 168, 23, 0.22));
}

.hero__invite {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2rem;
}

.hero__meta i {
  color: var(--gold);
  margin-right: 0.4rem;
}

.hero .countdown {
  display: flex;
  justify-content: center;
  gap: clamp(0.6rem, 2.4vw, 1.25rem);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: clamp(68px, 16vw, 104px);
  padding: 1.1rem 0.9rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}

.countdown__value {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.hero.is-live .countdown {
  display: none;
}

.hero__live {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2rem;
}

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

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--black);
  box-shadow: 0 8px 32px rgba(230, 168, 23, 0.3);
}

.btn--primary:hover {
  box-shadow: 0 12px 40px rgba(230, 168, 23, 0.45);
}

.btn--outline {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}

.btn--outline:hover {
  background: rgba(230, 168, 23, 0.1);
  border-color: rgba(230, 168, 23, 0.4);
}

/* Sections */

.section {
  padding: 6rem 0;
  position: relative;
}

.section--dark {
  background: var(--black-soft);
}

.section--alt {
  background: var(--black-mid);
}

.section--light {
  background: #f4f1e8;
  color: #1a1a1a;
}

.section__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 12rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(230, 168, 23, 0.05);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.section--light .section__watermark {
  -webkit-text-stroke-color: rgba(26, 26, 26, 0.06);
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section--light .section__label {
  color: var(--gold-dark);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section__divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  margin: 1.25rem auto 0;
}

.section__lead {
  max-width: 38rem;
  margin: 1.25rem auto 0;
  color: var(--text-muted);
}

.section--light .section__lead {
  color: #4a463c;
}

/* About */

.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.about__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.45rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

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

.about__dates {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 1.25rem;
}

.about__date-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.about__date-row i {
  color: var(--gold);
  margin-top: 0.25rem;
}

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

.about__map {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9375rem;
}

.about__map:hover {
  color: var(--gold-light);
}

.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 168, 23, 0.4);
  box-shadow: 0 16px 48px rgba(230, 168, 23, 0.08);
}

.feature-card__number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin: 0.75rem 0 0.85rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Coming soon */

.soon-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: rgba(230, 168, 23, 0.1);
  color: var(--gold);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.soon-grid--workshops {
  grid-template-columns: 1fr 1fr;
}

.soon-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.soon-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 168, 23, 0.35);
}

.soon-card__avatar,
.soon-card__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.15rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    -45deg,
    rgba(230, 168, 23, 0.08),
    rgba(230, 168, 23, 0.08) 8px,
    transparent 8px,
    transparent 16px
  );
  border: 1px dashed rgba(230, 168, 23, 0.35);
  color: rgba(230, 168, 23, 0.55);
  font-size: 1.75rem;
}

.soon-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0.75rem 0 0.25rem;
}

.soon-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.soon-card--wide {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-align: left;
  padding: 1.5rem;
}

.soon-card--wide .soon-card__icon {
  margin: 0;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
}

/* Schedule */

.schedule-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.schedule-day {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.schedule-day__header {
  padding: 1.5rem 1.5rem 1.15rem;
  border-bottom: 1px solid var(--glass-border);
}

.schedule-day__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.schedule-day__header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0.35rem 0 0.2rem;
}

.schedule-day__header p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.schedule-slots li {
  display: grid;
  grid-template-columns: 8.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.schedule-slots li:last-child {
  border-bottom: 0;
}

.schedule-slots__time {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
}

.schedule-slots__title {
  color: var(--text-muted);
}

/* Sponsors */

.section.sponsors {
  text-align: center;
  padding: 2.5rem 0 3rem;
}

.sponsors .section__header {
  margin-bottom: 1.25rem;
}

.sponsors .section__divider {
  margin-top: 0.5rem;
}

.sponsors__title {
  color: #2d2d2d;
}

.sponsors__tier {
  margin-bottom: 0.85rem;
}

.sponsors__tier:last-child {
  margin-bottom: 0;
}

.sponsors__tier-name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #181818;
  margin: 0 0 0.35rem;
}

.sponsors__tier-note {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 0.35rem;
}

.sponsors__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.sponsors__logo {
  flex: 0 0 calc(100% / 6);
  width: calc(100% / 6);
  max-width: calc(100% / 6);
  min-width: 0;
  padding: 0;
  background: transparent;
  transition: transform var(--transition);
}

.sponsors__logo:hover {
  transform: translateY(-4px);
}

.sponsors__logo img {
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
}

/* Footer */

.footer {
  background: var(--black);
  border-top: 1px solid var(--glass-border);
  padding: 2.5rem 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footer__logo img {
  height: 44px;
  width: auto;
}

.footer__copy {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer__org {
  display: block;
  color: var(--gold);
  margin-top: 0.2rem;
}

.footer__motto {
  display: block;
  margin-top: 0.25rem;
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.8125rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition), color var(--transition);
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), box-shadow var(--transition);
  z-index: 90;
  box-shadow: 0 4px 20px rgba(230, 168, 23, 0.35);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 8px 28px rgba(230, 168, 23, 0.5);
}

/* Animations */

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.js .fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* Responsive */

@media (max-width: 960px) {
  .about {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .header__logo img {
    height: 36px;
    max-width: min(168px, 58vw);
  }

  .hero__content {
    padding: calc(var(--nav-height) + 1rem) 1rem 2.25rem;
  }

  .hero__logo {
    max-width: min(460px, 86vw);
    margin-bottom: 0.85rem;
  }

  .hero__invite {
    max-width: 34ch;
    margin-inline: auto;
    margin-bottom: 0.75rem;
  }

  .hero__meta {
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.15rem;
  }

  .hero .countdown {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.45rem;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    margin-bottom: 1.15rem;
  }

  .countdown__item {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.75rem 0.3rem;
  }

  .countdown__value {
    font-size: clamp(1.35rem, 8vw, 1.85rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 280px);
    margin-inline: auto;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(20px);
    padding: 1rem 0 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    display: block;
    padding: 0.95rem 2rem;
    font-size: 1rem;
  }

  .nav__link::after {
    display: none;
  }

  .section {
    padding: 4rem 0;
  }

  .hero__scroll {
    display: none;
  }

  .soon-grid,
  .soon-grid--workshops,
  .schedule-preview,
  .about__cards {
    grid-template-columns: 1fr;
  }

  .soon-card--wide {
    flex-direction: column;
    text-align: center;
  }

  .schedule-slots li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    justify-items: start;
  }

  .sponsors__logo {
    flex-basis: 50%;
    width: 50%;
    max-width: 50%;
  }
}

@media (max-width: 480px) {
  .hero__logo {
    max-width: min(400px, 90vw);
  }

  .hero__invite {
    font-size: 0.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .fade-up,
  .js .fade-up {
    opacity: 1;
    transform: none;
  }
}
