/* ==========================================================================
   Korelabs — Landing v3
   Dirección: paleta cohesiva de UN solo color (familia cobalto) sobre base
   clara, con "aurora" de luces difusas animadas por detrás. Sin bloques
   negros: todo respira en el mismo tono, con profundidad por la luz.
   ========================================================================== */

:root {
  --bg: #F6F7FB;          /* casi blanco, ligero tinte frío para unificar con el cobalto */
  --surface: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.66);
  --ink: #15172A;         /* azul-noche suave, evita el negro puro */
  --muted: #5C6173;
  --muted-2: #9096A8;
  --line: #E6E8F1;

  --accent: #1B45E0;
  --accent-2: #4E7BFF;
  --accent-3: #86A9FF;
  --accent-hover: #1638BC;
  --accent-soft: rgba(27, 69, 224, 0.09);
  --on-accent: #FFFFFF;

  --nav-bg: rgba(246, 247, 251, 0.72);
  --app-bg: #FFFFFF;
  --app-bar: #FBFBFE;
  --app-side: #FBFBFE;
  --app-track: #EDEFF6;
  --app-dot: #D9DCE8;
  --app-win: #C7CBDA;

  --maxw: 1120px;
  --radius: 16px;
  --ease: cubic-bezier(0.22, 0.7, 0.2, 1);
}

/* ===================== Modo oscuro ===================== */
:root[data-theme="dark"] {
  --bg: #0B0D15;
  --surface: #141726;
  --glass: rgba(22, 26, 42, 0.55);
  --ink: #ECEEF5;
  --muted: #9CA2B4;
  --muted-2: #6C7284;
  --line: rgba(255, 255, 255, 0.10);

  --accent: #5B7BFF;
  --accent-2: #7C97FF;
  --accent-3: #3A5CE0;
  --accent-hover: #6E88FF;
  --accent-soft: rgba(91, 123, 255, 0.14);

  --nav-bg: rgba(11, 13, 21, 0.72);
  --app-bg: #141726;
  --app-bar: #191D2E;
  --app-side: #10131F;
  --app-track: rgba(255, 255, 255, 0.09);
  --app-dot: rgba(255, 255, 255, 0.18);
  --app-win: rgba(255, 255, 255, 0.30);

  color-scheme: dark;
}
/* CTA atenuado en modo oscuro (no choca con el fondo) */
:root[data-theme="dark"] .cta__inner {
  background: linear-gradient(135deg, #161B33 0%, #202A54 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
:root[data-theme="dark"] .cta__inner::before {
  opacity: 0.22;
  background: radial-gradient(circle, rgba(91, 123, 255, 0.55), transparent 60%);
}
:root[data-theme="dark"] .cta__text { color: rgba(255, 255, 255, 0.72); }
:root[data-theme="dark"] .cta .btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 30px rgba(91, 123, 255, 0.3); }
:root[data-theme="dark"] .cta .btn--primary:hover { background: var(--accent-hover); }
:root[data-theme="dark"] .cta .btn--primary .btn__k { filter: brightness(0) invert(1); }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
a { color: inherit; text-decoration: none; }

/* ===================== Aurora: luces difusas animadas ===================== */
.matrix { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
/* Velo translúcido que suaviza el fondo para poder leer el texto */
.veil { position: fixed; inset: 0; z-index: 0; pointer-events: none; background: rgba(246, 247, 251, 0.5); }
:root[data-theme="dark"] .veil { background: rgba(11, 13, 21, 0.55); }
/* El contenido va por encima del fondo animado */
main, .footer { position: relative; z-index: 1; }
@keyframes drift2 { from { transform: translate(0,0) scale(1.05); } to { transform: translate(-22vmax, 18vmax) scale(0.85); } }

/* ===================== Reveal on scroll ===================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease) var(--d, 0ms), transform 0.7s var(--ease) var(--d, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ===================== Botones ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 15px; padding: 12px 22px;
  border-radius: 10px; border: 1px solid transparent; cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.05s ease, box-shadow 0.25s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--primary { background: var(--accent); color: var(--on-accent); box-shadow: 0 10px 26px rgba(27, 69, 224, 0.22); }
.btn--primary:hover { background: var(--accent-hover); box-shadow: 0 16px 36px rgba(27, 69, 224, 0.3); }
.btn--secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.btn__k {
  display: block; height: 1.1em; width: auto; aspect-ratio: 698 / 849;
  transform: rotate(-90deg); transition: transform 0.25s var(--ease);
}
.btn--primary .btn__k { filter: brightness(0) invert(1); }
.btn:hover .btn__k { transform: rotate(-90deg) translateX(2px); }
.cta .btn--primary .btn__k { filter: none; }

.link-arrow { position: relative; font-weight: 600; font-size: 15px; color: var(--ink); padding-bottom: 3px; }
.link-arrow::after { content: "→"; display: inline-block; margin-left: 6px; transition: transform 0.25s var(--ease); }
.link-arrow:hover { color: var(--accent); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ===================== Kickers ===================== */
.eyebrow, .kicker {
  display: inline-block; font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.eyebrow { color: var(--accent); margin-bottom: 24px; }
.kicker, .kicker--light { color: var(--muted-2); margin-bottom: 14px; }

/* ===================== Nav ===================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}
.nav__actions { display: flex; align-items: center; gap: 12px; overflow: visible; }
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink);
  cursor: pointer; transition: color 0.2s ease, border-color 0.2s ease, transform 0.15s var(--ease);
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
.theme-toggle svg { width: 18px; height: 18px; }
.icon-sun { display: none; }
:root[data-theme="dark"] .icon-sun { display: block; }
:root[data-theme="dark"] .icon-moon { display: none; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand__logo { display: block; height: 26px; width: auto; aspect-ratio: 698 / 849; }
.brand__name { font-weight: 700; font-size: 18px; letter-spacing: -0.2px; }
.nav__links { display: flex; gap: 34px; }
.nav__links a { position: relative; color: var(--muted); font-size: 15px; font-weight: 500; transition: color 0.2s ease; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--accent); transition: width 0.25s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

/* ===================== Hero ===================== */
.hero { position: relative; padding: 118px 0 84px; }
.hero__title {
  font-family: 'Fraunces', Georgia, serif; font-weight: 500;
  font-size: clamp(2.7rem, 7.5vw, 5.4rem); line-height: 1.02;
  letter-spacing: -0.025em; max-width: 16ch;
}
.hero__accent { color: var(--accent); font-style: italic; }
.hero__row { margin-top: 40px; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.hero__sub { max-width: 46ch; color: var(--muted); font-size: clamp(1.02rem, 2vw, 1.18rem); }
.hero__cta { display: flex; align-items: center; gap: 24px; }

.scroll-cue {
  position: absolute; right: 28px; bottom: 34px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--muted-2); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue__line { width: 1px; height: 46px; background: var(--line); position: relative; overflow: hidden; }
.scroll-cue__line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--accent); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { top: -50%; } 100% { top: 100%; } }

/* ===================== Marquee ===================== */
.marquee {
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: var(--glass);
  /* Sin backdrop-filter: en Chrome desktop rompe transform en hijos animados */
}
.marquee__track {
  display: flex;
  width: max-content;
  flex-shrink: 0;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 28s linear infinite;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  color: var(--ink);
}
.marquee__track .dot { color: var(--accent); flex-shrink: 0; }
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.marquee__track.is-js { animation: none; will-change: transform; }

/* ===================== Programas (tarjetas) ===================== */
.section--products {
  padding-top: 72px;
  padding-bottom: 80px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head--center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.section__lead { color: var(--muted); font-size: 1.08rem; margin-top: 12px; line-height: 1.65; }

.products-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 28px 32px;
  box-shadow: 0 12px 40px rgba(27, 69, 224, 0.06);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.product-card:hover {
  border-color: rgba(27, 69, 224, 0.22);
  box-shadow: 0 16px 48px rgba(27, 69, 224, 0.1);
}
:root[data-theme="dark"] .product-card {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}
:root[data-theme="dark"] .product-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.36);
}

.product-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.product-card__brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
  flex: 1;
}

.product-card__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(27, 69, 224, 0.12);
}

.product-card__logo {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.product-card__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.product-card__tag {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 6px;
  line-height: 1.4;
}

.product-card__downloads {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.product-card__body {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.product-card__desc {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 72ch;
}

.product-card__features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.product-card__features li {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(27, 69, 224, 0.12);
}
.product-card__more { margin-top: 14px; }

.pill { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: var(--surface); color: var(--muted); border: 1px solid var(--line); white-space: nowrap; }
.pill--live { background: var(--accent-soft); color: var(--accent); border-color: rgba(27, 69, 224, 0.22); }

/* ===================== Idioma (dropdown) ===================== */
.lang-dropdown {
  position: relative;
}
.lang-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  list-style: none;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.lang-dropdown__toggle::-webkit-details-marker { display: none; }
.lang-dropdown__toggle::marker { content: ""; }
.lang-dropdown__toggle:hover,
.lang-dropdown[open] .lang-dropdown__toggle {
  color: var(--accent);
  border-color: rgba(27, 69, 224, 0.22);
  background: var(--accent-soft);
}
.lang-dropdown__icon {
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 120;
  min-width: 148px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(22, 23, 27, 0.12);
}
.lang-dropdown:not([open]) .lang-dropdown__menu {
  display: none;
}
.lang-dropdown__menu li {
  margin: 0;
  padding: 0;
}
.lang-dropdown__item {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.18s ease, color 0.18s ease;
}
.lang-dropdown__item:hover {
  background: var(--accent-soft);
  color: var(--accent);
}
.lang-dropdown__item.is-active {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

/* ===================== Portfolio / Servicios ===================== */
.section--services {
  background: var(--glass);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.portfolio-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.portfolio-card:hover {
  border-color: rgba(27, 69, 224, 0.22);
  box-shadow: 0 12px 32px rgba(22, 23, 27, 0.06);
}
.portfolio-card__head { display: flex; flex-direction: column; gap: 6px; }
.portfolio-card__cat { align-self: flex-start; }
.portfolio-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.portfolio-card__tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
.portfolio-card__desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.portfolio-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.portfolio-card__features li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.45;
}
.portfolio-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.portfolio-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 4px;
}
.portfolio-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(27, 69, 224, 0.12);
}
.services-cta {
  margin-top: 56px;
  padding: 40px 36px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--surface) 100%);
  text-align: center;
}
.services-cta__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.services-cta__text {
  max-width: 52ch;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.services-cta__actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.services-cta__alt {
  font-size: 14px;
  color: var(--muted-2);
}
.services-cta__alt a {
  color: var(--accent);
  font-weight: 600;
}
.services-cta__alt a:hover { text-decoration: underline; }

.section--guides {
  background: var(--glass);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.guide-card {
  padding: 24px 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.guide-card:hover {
  border-color: rgba(27, 69, 224, 0.22);
  box-shadow: 0 12px 36px rgba(27, 69, 224, 0.08);
}
.guide-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.3;
}
.guide-card__title a:hover { color: var(--accent); }
.guide-card__desc { color: var(--muted); font-size: 0.94rem; line-height: 1.55; flex: 1; }

.section__cta-link { text-align: center; margin-top: 36px; }

/* ===================== Blog (índice) ===================== */
.section--blog { padding: 56px 0 88px; }
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.blog-filter {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.blog-filter:hover { color: var(--accent); border-color: rgba(27, 69, 224, 0.22); }
.blog-filter.is-active {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: rgba(27, 69, 224, 0.22);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.blog-card {
  padding: 28px 30px;
  border-radius: calc(var(--radius) + 2px);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.blog-card:hover {
  border-color: rgba(27, 69, 224, 0.22);
  box-shadow: 0 12px 36px rgba(27, 69, 224, 0.08);
}
.blog-card__tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(27, 69, 224, 0.12);
}
.blog-card__tag--sm { font-size: 10px; padding: 3px 8px; margin-bottom: 4px; }
.blog-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.blog-card__title a:hover { color: var(--accent); }
.blog-card__desc { color: var(--muted); font-size: 0.95rem; line-height: 1.6; flex: 1; }

/* ===================== Páginas interiores ===================== */
.page-hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(10px);
}
.page-hero--compact { padding: 40px 0 28px; }
.page-hero__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.page-hero__brand { display: flex; gap: 18px; align-items: flex-start; flex: 1; min-width: 280px; }
.page-hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.page-hero__tagline { color: var(--muted); font-size: 1.08rem; margin-top: 10px; max-width: 56ch; }
.page-hero__meta { color: var(--muted-2); font-size: 14px; margin-top: 10px; }
.page-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.product-card__icon--lg { width: 64px; height: 64px; border-radius: 16px; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted-2);
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--accent); }

.section--article { padding: 56px 0 80px; }
.product-gallery {
  display: grid;
  gap: 24px;
  margin: 32px 0 40px;
}
.product-gallery__item {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.product-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.product-gallery__item figcaption {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: start;
}
.article-layout:has(.guide-toc) {
  grid-template-columns: 220px minmax(0, 1fr) 260px;
}
.guide-toc {
  position: sticky;
  top: 88px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
.guide-toc__title { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); margin-bottom: 12px; }
.guide-toc__list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.guide-toc__item { font-size: 14px; line-height: 1.4; }
.guide-toc__item--h3 { padding-left: 12px; font-size: 13px; }
.guide-toc__item a { color: var(--muted); }
.guide-toc__item a:hover { color: var(--accent); }

.prose { min-width: 0; max-width: 72ch; }
.prose__lead { font-size: 1.12rem; color: var(--ink); line-height: 1.65; margin-bottom: 28px; }
.prose h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin: 36px 0 14px;
  letter-spacing: -0.02em;
}
.prose h3 { font-size: 1.12rem; font-weight: 600; margin: 28px 0 10px; }
.prose p { color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.prose ul, .prose ol { color: var(--muted); margin: 12px 0 20px 20px; line-height: 1.65; }
.prose li { margin-bottom: 6px; }
.prose table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.94rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.prose th { background: var(--accent-soft); color: var(--ink); font-weight: 600; }
.prose__features { list-style: none; margin-left: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.prose__features li {
  font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent); border: 1px solid rgba(27, 69, 224, 0.12);
}
.prose__cta { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }

.article-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 88px; }
.sidebar-card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-card h3, .sidebar-card h4 { font-size: 1rem; font-weight: 600; }
.sidebar-card p { color: var(--muted); font-size: 0.92rem; }
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a { color: var(--muted); font-size: 0.94rem; }
.sidebar-links a:hover { color: var(--accent); }

/* ===================== FAQ ===================== */
.section--faq { padding: 56px 0 80px; }
.faq-section { margin-bottom: 48px; }
.faq-section__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.faq-item { padding: 22px 24px; border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-item__q { font-weight: 600; font-size: 1.02rem; color: var(--ink); margin-bottom: 8px; }
.faq-item__a { color: var(--muted); line-height: 1.65; font-size: 0.98rem; }

.cta__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===================== Showcase (legacy, por si se reutiliza) ===================== */
.showcase { padding: 96px 0; position: relative; }
.showcase__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 48px; }
.showcase__title { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: clamp(2.4rem, 6vw, 3.6rem); letter-spacing: -0.02em; margin-top: 6px; }
.showcase__lead { color: var(--muted); font-size: 1.15rem; margin-top: 6px; }
.showcase__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }

/* App mock (tema claro) */
.app {
  border-radius: 16px;
  background: var(--app-bg);
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(27, 69, 224, 0.14), 0 6px 20px rgba(21, 23, 42, 0.06);
  overflow: hidden;
}
.app__bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--app-bar); }
.app__dots { display: flex; gap: 7px; }
.app__dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--app-dot); }
.app__name { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--ink); }
.app__logo { height: 15px; width: auto; aspect-ratio: 698 / 849; }
.app__win { display: flex; gap: 14px; }
.app__win i { width: 11px; height: 2px; background: var(--app-win); }

.app__body { display: grid; grid-template-columns: 140px 1fr; min-height: 300px; }
.app__side { padding: 16px 10px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; background: var(--app-side); }
.app__navitem { font-size: 13px; color: var(--muted); padding: 8px 12px; border-radius: 8px; transition: background 0.2s ease, color 0.2s ease; }
.app__navitem.is-active { background: var(--accent-soft); color: var(--accent); font-weight: 600; }
.app__navitem--accent { color: var(--accent-2); }

.app__main { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.app__stats { display: flex; flex-direction: column; gap: 14px; }
.stat__top { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-bottom: 7px; }
.stat__top b { color: var(--ink); }
.bar { height: 8px; border-radius: 999px; background: var(--app-track); overflow: hidden; }
.bar span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }

.app__cta { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-radius: 12px; background: var(--accent-soft); border: 1px solid rgba(27, 69, 224, 0.2); }
.app__cta-label { font-size: 13px; color: var(--muted); }
.app__cta-btn { font-size: 13px; font-weight: 600; background: var(--accent); color: #fff; padding: 8px 14px; border-radius: 8px; }

.app__list { list-style: none; display: flex; flex-direction: column; }
.app__list li { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--muted); padding: 8px 4px; border-bottom: 1px solid var(--line); }
.app__list li:last-child { border-bottom: 0; }
.app__list li b { color: var(--ink); font-weight: 500; }

/* Showcase info */
.showcase__text { color: var(--muted); font-size: 1.08rem; }
.feature-list { list-style: none; margin: 26px 0; display: flex; flex-direction: column; }
.feature-list li { padding: 16px 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 3px; }
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-list b { font-size: 1rem; color: var(--ink); }
.feature-list span { color: var(--muted); font-size: 0.95rem; }
.showcase__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 26px; }
.showcase__meta { color: var(--muted-2); font-size: 14px; }

/* Próximos */
.soon-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.soon { padding: 28px; border: 1px dashed var(--line); border-radius: var(--radius); background: var(--glass); backdrop-filter: blur(6px); transition: border-color 0.25s ease, transform 0.25s var(--ease); }
.soon:hover { transform: translateY(-3px); border-color: var(--accent-3); }
.soon__title { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: 1.3rem; margin-top: 14px; color: var(--ink); }
.soon__text { color: var(--muted); margin-top: 8px; font-size: 0.95rem; }

/* ===================== Secciones ===================== */
.section { padding: 96px 0; position: relative; }
.section__head { margin-bottom: 52px; }
.section__title { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1.08; letter-spacing: -0.02em; }

/* Principios */
.principles { list-style: none; border-top: 1px solid var(--line); }
.principle { display: grid; grid-template-columns: 88px 1fr; gap: 24px; align-items: start; padding: 30px 12px; border-bottom: 1px solid var(--line); transition: background 0.25s ease, padding-left 0.25s var(--ease); border-radius: 12px; }
.principle:hover { background: var(--glass); padding-left: 22px; }
.principle__num { font-family: 'Fraunces', Georgia, serif; font-size: 1.6rem; color: var(--accent); font-weight: 500; }
.principle h3 { font-size: 1.22rem; font-weight: 600; }
.principle p { color: var(--muted); margin-top: 6px; max-width: 60ch; }

/* Nosotros */
.section--about { background: var(--glass); backdrop-filter: blur(8px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
.about__title { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1.08; letter-spacing: -0.02em; }
.about__lead { font-size: 1.25rem; color: var(--ink); }
.about__text { color: var(--muted); margin-top: 18px; }
.about__signature { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-direction: column; align-items: flex-start; }
.about__name { font-family: 'Dancing Script', cursive; font-size: 2.6rem; font-weight: 700; line-height: 1; color: var(--accent); }
.about__role { color: var(--muted-2); font-size: 0.92rem; margin-top: 8px; }

/* ===================== CTA (degradado del mismo color) ===================== */
.cta { padding: 100px 0; }
.cta__inner {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(135deg, #1B45E0 0%, #3A63F0 45%, #5B84FF 100%);
  color: #fff; border-radius: 28px; padding: 84px 28px;
  box-shadow: 0 30px 70px rgba(27, 69, 224, 0.32);
}
.cta__inner::before {
  content: ""; position: absolute; width: 40vmax; height: 40vmax; border-radius: 50%;
  top: -20vmax; right: -10vmax; background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 60%);
  animation: drift2 24s var(--ease) infinite alternate;
}
.cta__title, .cta__text, .cta .btn { position: relative; z-index: 1; }
.cta__title { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.02em; }
.cta__text { color: rgba(255,255,255,0.85); margin: 12px 0 32px; }
.cta .btn--primary { background: #fff; color: var(--accent); box-shadow: 0 10px 30px rgba(0,0,0,0.14); }
.cta .btn--primary:hover { background: #eef1ff; }

/* ===================== Footer ===================== */
.footer { border-top: 1px solid var(--line); padding: 64px 0 32px; background: var(--glass); backdrop-filter: blur(8px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); font-weight: 600; margin-bottom: 4px; }
.footer__col a { color: var(--muted); font-size: 15px; transition: color 0.2s ease; }
.footer__col a:hover { color: var(--accent); }
.footer__col--brand .brand__name { font-size: 18px; }
.footer__tag { color: var(--muted); font-size: 15px; max-width: 30ch; }
.footer__support {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
  width: fit-content;
}
.footer__support:hover { color: #E85D04; }

/* ===================== Ko-fi flotante ===================== */
.kofi-float {
  position: fixed;
  bottom: max(22px, env(safe-area-inset-bottom, 0px));
  right: max(22px, env(safe-area-inset-right, 0px));
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 13px;
  border-radius: 999px;
  background: linear-gradient(145deg, #FF8C42 0%, #E85D04 55%, #DC2F02 100%);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  border: 2px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 10px 32px rgba(232, 93, 4, 0.55),
    0 4px 12px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.82);
  pointer-events: none;
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    padding 0.32s var(--ease),
    gap 0.32s var(--ease),
    box-shadow 0.25s ease;
}
.kofi-float.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.kofi-float:hover,
.kofi-float:focus-visible {
  padding: 13px 20px 13px 15px;
  gap: 10px;
  color: #fff;
  box-shadow:
    0 14px 40px rgba(232, 93, 4, 0.65),
    0 6px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  outline: none;
}
.kofi-float.is-scrolling {
  animation: kofi-glow-pulse 0.55s ease;
}
.kofi-float.is-scrolling .kofi-float__cup {
  animation: kofi-cup-bob 0.45s ease;
}
.kofi-float.is-scrolling .kofi-float__steam-wisp {
  animation-duration: 0.55s;
}
.kofi-float__icon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.kofi-float__steam {
  position: absolute;
  top: -6px;
  width: 28px;
  height: 14px;
  color: rgba(255, 255, 255, 0.85);
  overflow: visible;
}
.kofi-float__steam-wisp {
  animation: kofi-steam-rise 2.2s ease-in-out infinite;
}
.kofi-float__steam-wisp--1 { animation-delay: 0s; }
.kofi-float__steam-wisp--2 { animation-delay: 0.35s; }
.kofi-float__steam-wisp--3 { animation-delay: 0.7s; }
.kofi-float__cup {
  width: 26px;
  height: 26px;
  margin-top: 4px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}
.kofi-float__label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transition: max-width 0.38s var(--ease), opacity 0.28s ease;
}
.kofi-float:hover .kofi-float__label,
.kofi-float:focus-visible .kofi-float__label {
  max-width: 180px;
  opacity: 1;
}

:root[data-theme="dark"] .kofi-float {
  border-color: rgba(255, 200, 150, 0.35);
  box-shadow:
    0 10px 36px rgba(255, 120, 40, 0.5),
    0 0 0 1px rgba(255, 140, 66, 0.2),
    0 4px 16px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
:root[data-theme="dark"] .kofi-float:hover,
:root[data-theme="dark"] .kofi-float:focus-visible {
  box-shadow:
    0 14px 44px rgba(255, 120, 40, 0.65),
    0 0 24px rgba(255, 140, 66, 0.35),
    0 6px 20px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
:root[data-theme="dark"] .kofi-float__steam {
  color: rgba(255, 230, 200, 0.95);
}

@keyframes kofi-steam-rise {
  0%, 100% { opacity: 0.25; transform: translateY(2px); }
  50% { opacity: 1; transform: translateY(-5px); }
}
@keyframes kofi-cup-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  30% { transform: translateY(-4px) rotate(-3deg); }
  60% { transform: translateY(-2px) rotate(2deg); }
}
@keyframes kofi-glow-pulse {
  0%, 100% { box-shadow: 0 10px 32px rgba(232, 93, 4, 0.55), 0 4px 12px rgba(0, 0, 0, 0.25); }
  50% { box-shadow: 0 14px 44px rgba(255, 120, 40, 0.75), 0 0 28px rgba(255, 160, 80, 0.4); }
}

@media (prefers-reduced-motion: reduce) {
  .kofi-float,
  .kofi-float__steam-wisp,
  .kofi-float__cup { animation: none !important; transition: none !important; }
  .kofi-float { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .kofi-float__label { max-width: none; opacity: 1; }
}

@media (max-width: 600px) {
  .kofi-float { padding: 12px; }
  .kofi-float:hover,
  .kofi-float:focus-visible { padding: 12px 16px 12px 14px; }
  .kofi-float__label { display: none; }
}

.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 14px; }

/* ===================== Modal de contacto ===================== */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), visibility 0.28s;
}
.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 21, 0.55);
  backdrop-filter: blur(6px);
}
.contact-modal__dialog {
  position: relative;
  width: min(100%, 480px);
  max-height: min(90vh, 720px);
  overflow-y: auto;
  padding: 32px 28px 28px;
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 24px 64px rgba(22, 23, 27, 0.18);
  transform: translateY(12px) scale(0.97);
  transition: transform 0.32s var(--ease);
}
.contact-modal.is-open .contact-modal__dialog {
  transform: translateY(0) scale(1);
}
:root[data-theme="dark"] .contact-modal__dialog {
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--glass);
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.contact-modal__close svg { width: 18px; height: 18px; }
.contact-modal__close:hover { color: var(--accent); border-color: var(--accent-3); }
.contact-modal__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  padding-right: 36px;
}
.contact-modal__sub {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form__field { display: flex; flex-direction: column; gap: 7px; }
.contact-form__field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--accent-3);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.contact-form__field textarea { resize: vertical; min-height: 120px; }
.contact-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-form__status {
  min-height: 1.25em;
  font-size: 14px;
  font-weight: 500;
}
.contact-form__status.is-success { color: #1a7f4b; }
.contact-form__status.is-error { color: #c0392b; }
:root[data-theme="dark"] .contact-form__status.is-success { color: #6ee7a0; }
:root[data-theme="dark"] .contact-form__status.is-error { color: #ff8a80; }
.contact-form__submit { width: 100%; justify-content: center; }
.contact-form__submit:disabled { opacity: 0.65; cursor: not-allowed; }

/* ===================== Responsive ===================== */
@media (max-width: 900px) {
  .showcase__grid { grid-template-columns: 1fr; gap: 36px; }
  .about { grid-template-columns: 1fr; gap: 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-card__head { flex-direction: column; align-items: stretch; }
  .product-card__downloads { width: 100%; }
  .product-card__downloads .btn { flex: 1; }
  .guides-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-layout,
  .article-layout:has(.guide-toc) { grid-template-columns: 1fr; }
  .guide-toc, .article-sidebar { position: static; }
  .page-hero__row { flex-direction: column; }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .lang-dropdown { order: -1; }
  .hero { padding: 80px 0 60px; }
  .hero__row { flex-direction: column; align-items: flex-start; gap: 28px; }
  .scroll-cue { display: none; }
  .section, .showcase, .cta { padding: 64px 0; }
  .section--products { padding-bottom: 64px; }
  .products-stack { margin-top: 36px; gap: 14px; }
  .product-card { padding: 22px 20px; }
  .product-card__body { margin-top: 16px; padding-top: 16px; }
  .product-card__downloads { flex-direction: column; }
  .product-card__downloads .btn { width: 100%; }
  .soon-grid { grid-template-columns: 1fr; }
  .principle { grid-template-columns: 54px 1fr; gap: 14px; padding: 24px 4px; }
  .principle:hover { padding-left: 4px; }
  .cta__inner { padding: 56px 22px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .app__body { grid-template-columns: 1fr; }
  .app__side { flex-direction: row; flex-wrap: wrap; border-right: 0; border-bottom: 1px solid var(--line); }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
