:root {
  --blue: #0f70b7;
  --blue-deep: #0a5f9e;
  --cyan: #2daae2;
  --indigo: #2c2e83;
  --ink: #11243a;
  --muted: #5f7185;
  --line: #d9e7f1;
  --soft: #f4f9fc;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(15, 72, 120, .13);
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: 1180px;
  --header-height: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--indigo);
  color: #fff;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section { position: relative; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-light { color: #bfeaff; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; }
h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 500;
  letter-spacing: -.035em;
}

.topline {
  background: linear-gradient(90deg, var(--indigo), #22256f);
  color: rgba(255,255,255,.88);
  font-size: .79rem;
  letter-spacing: .02em;
}
.topline-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.topline-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
}

.site-header {
  position: relative;
  z-index: 60;
}
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(15,112,183,.12);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}
.nav-shell.is-scrolled { box-shadow: 0 10px 30px rgba(12,58,98,.09); }
.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  width: 270px;
  flex: 0 0 auto;
}
.brand img { width: 100%; height: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  position: relative;
  color: #30485d;
  font-size: .93rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: right .22s ease;
}
.nav a:hover, .nav a.active { color: var(--blue); }
.nav a:hover::after, .nav a.active::after { right: 0; }
.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff !important;
  box-shadow: 0 9px 24px rgba(15,112,183,.22);
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  border-radius: 13px;
  background: var(--soft);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 10px;
  background: var(--indigo);
  transition: transform .25s ease, opacity .2s ease;
}
.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); }

.hero {
  min-height: calc(100vh - 126px);
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 83% 25%, rgba(45,170,226,.16), transparent 26%),
    radial-gradient(circle at 8% 90%, rgba(44,46,131,.10), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f9fcfe 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .55;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15,112,183,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,112,183,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
}
.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 68px;
  padding-block: 86px 110px;
}
.hero-copy { max-width: 650px; }
.hero h1 {
  margin: 0 0 22px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -.06em;
}
.hero h1 span { color: var(--indigo); }
.hero-lead {
  max-width: 560px;
  margin-bottom: 32px;
  color: #40566b;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 38px;
}
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn svg { width: 21px; height: 21px; fill: currentColor; }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(15,112,183,.22);
}
.btn-primary:hover { box-shadow: 0 18px 36px rgba(15,112,183,.3); }
.btn-ghost {
  border: 1px solid #cbdde9;
  background: rgba(255,255,255,.78);
  color: var(--indigo);
}
.btn-ghost:hover { background: #fff; box-shadow: 0 12px 25px rgba(31,65,96,.09); }
.hero-meta {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding-top: 8px;
}
.meta-item { max-width: 230px; }
.meta-item strong {
  display: block;
  color: var(--indigo);
  font-size: 1.05rem;
  font-weight: 800;
}
.meta-item span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .9rem;
}
.meta-divider { width: 1px; background: var(--line); }

.hero-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}
.logo-card {
  position: relative;
  z-index: 3;
  width: min(100%, 540px);
  overflow: hidden;
  padding: 48px 36px 30px;
  border: 1px solid rgba(15,112,183,.16);
  border-radius: 34px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}
.logo-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 10px 16px rgba(15,112,183,.08));
}
.logo-card p {
  position: relative;
  z-index: 2;
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
  text-align: right;
}
.logo-accent {
  position: absolute;
  z-index: 1;
  width: 190px;
  height: 72px;
  opacity: .12;
  transform: rotate(-24deg) skewX(-18deg);
  border-radius: 8px;
}
.accent-one { right: -55px; top: 24px; background: var(--cyan); }
.accent-two { left: -75px; bottom: 18px; background: var(--indigo); }
.orbit {
  position: absolute;
  border: 1px solid rgba(15,112,183,.12);
  border-radius: 50%;
}
.orbit-a { width: 470px; height: 470px; }
.orbit-b { width: 340px; height: 340px; border-color: rgba(45,170,226,.18); }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #74879a;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.areas { padding: 110px 0; background: #fff; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 390px);
  align-items: end;
  gap: 50px;
  margin-bottom: 48px;
}
.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 1.06rem;
}
.section-heading.compact { grid-template-columns: 1fr; }
.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.practice-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f9fcfe);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.practice-card:hover {
  transform: translateY(-7px);
  border-color: rgba(45,170,226,.42);
  box-shadow: 0 22px 46px rgba(18,85,137,.12);
}
.practice-number {
  margin-bottom: 58px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
}
.practice-card h3 {
  margin-bottom: 14px;
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}
.practice-card p { margin-bottom: 0; color: var(--muted); }
.card-line {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 22px;
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: #dbeaf3;
}
.card-line::after {
  content: "";
  display: block;
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, var(--indigo), var(--cyan));
  transition: width .25s ease;
}
.practice-card:hover .card-line::after { width: 100%; }

.services {
  overflow: hidden;
  background: linear-gradient(120deg, var(--blue-deep) 0%, var(--blue) 48%, #1782c6 100%);
  color: #fff;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 30px 30px;
}
.services-grid {
  position: relative;
  z-index: 2;
  min-height: 430px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 60px;
  padding-block: 82px;
}
.services-panel { max-width: 700px; }
.services h2 { max-width: 660px; color: #fff; }
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.service-pills span {
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  backdrop-filter: blur(5px);
}
.service-mark {
  min-height: 270px;
  display: grid;
  place-items: center;
}
.mark-stack {
  width: 260px;
  transform: rotate(-8deg);
}
.mark-stack span {
  display: block;
  width: 100%;
  height: 32px;
  margin: 18px 0;
  clip-path: polygon(12% 0, 100% 28%, 92% 74%, 0 100%);
  background: rgba(255,255,255,.82);
}
.mark-stack span:nth-child(2) { width: 90%; margin-left: 6%; background: rgba(191,234,255,.9); }
.mark-stack span:nth-child(3) { width: 80%; margin-left: 12%; background: rgba(255,255,255,.66); }
.mark-stack span:nth-child(4) { width: 69%; margin-left: 18%; background: rgba(44,46,131,.56); }

.experience {
  padding: 110px 0;
  background: var(--soft);
}
.experience-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 22px;
}
.experience-card {
  min-height: 250px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 38px;
  border: 1px solid rgba(15,112,183,.14);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 15px 40px rgba(31,83,124,.07);
}
.big-number {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.4rem, 10vw, 8.8rem);
  line-height: .8;
  letter-spacing: -.08em;
}
.experience-card h3 {
  margin-bottom: 8px;
  color: var(--indigo);
  font-size: 1.5rem;
}
.experience-card p { margin-bottom: 0; color: var(--muted); }
.degree-icon {
  width: 90px;
  min-width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(45,170,226,.13), rgba(44,46,131,.10));
}
.degree-icon svg { width: 52px; fill: none; stroke: var(--blue); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }

.attention {
  padding: 110px 0;
  background: #fff;
}
.attention-shell {
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--indigo) 0%, #353799 100%);
  box-shadow: 0 28px 70px rgba(44,46,131,.18);
}
.attention-intro {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
  color: #fff;
}
.attention-intro::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -80px;
  width: 260px;
  height: 180px;
  transform: rotate(-24deg) skewX(-16deg);
  background: rgba(45,170,226,.22);
}
.attention-intro h2 { margin-bottom: 12px; color: #fff; }
.attention-intro > p:last-child { margin: 0; color: rgba(255,255,255,.72); }
.attention-details {
  display: grid;
  align-content: center;
  padding: 46px 52px;
  background: #fff;
}
.detail-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.detail-row:last-child { border-bottom: 0; }
.detail-label {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.detail-row strong { color: var(--blue); font-size: 1.18rem; }

.contact {
  padding: 0 0 110px;
  background: #fff;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 42px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f8fcff, #eef7fc);
}
.contact-copy h2 { margin-bottom: 20px; font-size: clamp(2.2rem, 4vw, 3.3rem); }
.contact-copy p { margin: 4px 0; color: var(--muted); }
.contact-copy p a { color: var(--blue); font-weight: 800; text-decoration: none; }
.contact-button {
  min-width: 350px;
  display: grid;
  grid-template-columns: 50px 1fr 28px;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(15,112,183,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-button:hover { transform: translateY(-3px); box-shadow: 0 24px 42px rgba(15,112,183,.28); }
.contact-button-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255,255,255,.15);
}
.contact-button-icon svg { width: 30px; fill: currentColor; }
.contact-button small { display: block; opacity: .78; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-button strong { display: block; margin-top: 2px; font-size: 1.12rem; }
.contact-arrow { width: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.site-footer {
  color: rgba(255,255,255,.8);
  background: #132b42;
}
.footer-grid {
  min-height: 210px;
  display: grid;
  grid-template-columns: 300px 1fr 1fr;
  align-items: center;
  gap: 50px;
  padding-block: 46px;
}
.footer-brand {
  display: block;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
}
.footer-brand img { width: 100%; }
.footer-info p, .footer-contact span { margin: 5px 0; }
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-contact a { color: #a8ddf7; font-weight: 800; text-decoration: none; }
.footer-bottom {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.52);
  font-size: .8rem;
}

.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  box-shadow: 0 15px 35px rgba(15,112,183,.3);
  font-size: .88rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float svg { width: 25px; height: 25px; fill: currentColor; }

/* El contenido permanece visible incluso si JavaScript no carga.
   Esto evita pantallas en blanco en despliegues estáticos como Cloudflare Pages. */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .brand { width: 225px; }
  .nav { gap: 19px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 250px 1fr 1fr; gap: 30px; }
}

@media (max-width: 820px) {
  :root { --radius-lg: 24px; }
  .topline-inner { justify-content: center; }
  .nav-wrap { min-height: 80px; }
  .brand { width: 220px; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 114px;
    bottom: 0;
    z-index: 48;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 20px 40px;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(14px);
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .28s ease, visibility .28s ease;
  }
  .nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .nav a::after { display: none; }
  .nav-cta {
    margin-top: 20px;
    padding: 15px 18px !important;
    border: 0 !important;
    text-align: center;
  }

  .hero { min-height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-block: 70px 96px;
  }
  .hero-copy { max-width: 690px; }
  .hero-visual { min-height: 360px; }
  .logo-card { width: min(100%, 560px); }
  .orbit-a { width: 390px; height: 390px; }
  .orbit-b { width: 280px; height: 280px; }
  .scroll-cue { display: none; }

  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; min-height: auto; }
  .service-mark { display: none; }
  .attention-shell { grid-template-columns: 1fr; }
  .attention-intro { min-height: 260px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-button { min-width: 0; width: 100%; max-width: 430px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; width: 290px; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topline { font-size: .71rem; }
  .topline-inner { min-height: 38px; gap: 8px; text-align: center; }
  .topline-dot { display: none; }
  .topline-inner span + span:not(.topline-dot)::before { content: "· "; }
  .brand { width: 205px; }
  .nav { top: 118px; }

  .hero-grid { padding-top: 52px; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 4.6rem); }
  .hero-lead { font-size: 1.04rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-meta { flex-direction: column; gap: 14px; }
  .meta-divider { width: 100%; height: 1px; }
  .meta-item { max-width: none; }
  .hero-visual { min-height: 270px; }
  .logo-card { padding: 34px 20px 22px; border-radius: 24px; }
  .orbit-a { width: 300px; height: 300px; }
  .orbit-b { width: 220px; height: 220px; }

  .areas, .experience, .attention { padding: 82px 0; }
  .practice-grid { grid-template-columns: 1fr; }
  .practice-card { min-height: 225px; }
  .practice-number { margin-bottom: 35px; }
  .services-grid { padding-block: 68px; }
  .experience-card { min-height: 0; padding: 30px 24px; }
  .experience-years { align-items: flex-end; gap: 20px; }
  .big-number { font-size: 6rem; }
  .experience-study { flex-direction: column; align-items: flex-start; }
  .attention-intro, .attention-details { padding: 34px 26px; }
  .detail-row { grid-template-columns: 1fr; gap: 5px; padding: 19px 0; }
  .contact { padding-bottom: 82px; }
  .contact-wrap { padding: 30px 22px; }
  .contact-button { grid-template-columns: 44px 1fr 24px; padding: 16px; }
  .contact-button-icon { width: 44px; height: 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; min-height: 0; }
  .footer-brand { grid-column: auto; width: min(100%, 300px); }
  .whatsapp-float { width: 56px; height: 56px; justify-content: center; padding: 0; }
  .whatsapp-float span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
