/* =================================================================
 * datalab-landing.css
 * Landing page institucional de DataLab — Unitrópico
 *
 * Tokens en datalab-tokens.css (importado abajo). Este archivo solo
 * contiene estilos específicos del landing.
 * ================================================================= */

@import url('./datalab-tokens.css');

/* ─── Reset & base ───────────────────────────────────────────────── */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

html { background: #fff; }

body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dl-text);
  background:
    /* halo verde institucional difuso detrás del hero */
    radial-gradient(70% 55% at 50% 0%, rgba(0, 89, 78, 0.10) 0%, rgba(0, 89, 78, 0) 65%),
    /* acento dorado muy sutil arriba a la derecha */
    radial-gradient(40% 35% at 92% 6%, rgba(181, 161, 96, 0.10) 0%, rgba(181, 161, 96, 0) 70%),
    /* base limpia: mint pálido → blanco */
    linear-gradient(180deg, var(--dl-green-tintl) 0%, #ffffff 320px);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--dl-ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
}

p { margin: 0 0 1em; }
a { color: var(--dl-green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--dl-green-dark); }

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Navbar sticky con blur ─────────────────────────────────────── */
.dl-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: all 0.35s var(--dl-ease);
  background: rgba(255, 255, 255, 0);
}

.dl-nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--dl-line);
  padding: 10px 0;
  box-shadow: 0 1px 3px rgba(0, 38, 31, 0.04);
}

.dl-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Header full-width: ignora el max-width del .container global y respira
 * con padding lateral grande para que el contenido no quede pegado al borde.
 * El resto del landing sigue usando .container con su max-width 1200px. */
.dl-nav .container.dl-nav-inner {
  max-width: none;
  padding-left: clamp(24px, 5vw, 64px);
  padding-right: clamp(24px, 5vw, 64px);
}

.dl-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dl-ink);
}

.dl-brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.dl-brand-icon img {
  width: 22px;
  height: 22px;
}

.dl-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.dl-brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--dl-ink);
}

.dl-brand-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dl-muted);
}

.dl-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dl-nav-links a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--dl-text);
  transition: all 0.2s;
}

.dl-nav-links a:hover {
  background: var(--dl-green-tint);
  color: var(--dl-green-dark);
}

.dl-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--dl-green);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.94rem;
  box-shadow: 0 6px 16px rgba(0, 89, 78, 0.25);
  transition: all 0.25s var(--dl-ease);
}

.dl-nav-cta:hover {
  background: var(--dl-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 89, 78, 0.30);
  color: #fff !important;
}

/* ─── Contenedor de acciones del header ──────────────── */
.dl-nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ─── Botón de notificaciones (campana) ─────────────────── */
.dl-bell-btn {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  background: rgba(0, 89, 78, 0.06);
  border: 1px solid rgba(0, 89, 78, 0.14);
  border-radius: 999px;
  color: var(--dl-green-dark);
  cursor: pointer;
  font-size: 1rem;
  vertical-align: middle;
  transition: background 0.15s var(--dl-ease), border-color 0.15s var(--dl-ease), transform 0.15s var(--dl-ease);
}

.dl-bell-btn:hover {
  background: rgba(0, 89, 78, 0.12);
  border-color: var(--dl-green);
  transform: translateY(-1px);
}

.dl-bell-btn i { font-size: 1.05rem; }

.dl-bell-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #E04A4A 0%, #C13838 100%);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px -2px rgba(193, 56, 56, 0.55);
  z-index: 2;
}

.dl-bell-badge.is-wide { min-width: 26px; }

.dl-bell-badge-num {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.dl-bell-badge-pulse {
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: rgba(224, 74, 74, 0.45);
  z-index: 1;
  animation: dlBellRing 1.8s ease-out infinite;
}

@keyframes dlBellRing {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ─── Wrapper bell + dropdown ──────────────────────── */
.dl-bell-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dl-bell-menu[hidden] { display: none !important; }

/* ─── Panel desplegable de notificaciones ──────────── */
.dl-bell-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 380px;
  max-width: 92vw;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(0, 89, 78, 0.10);
  border-radius: 18px;
  box-shadow: 0 24px 60px -20px rgba(0, 53, 46, 0.30);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px) scale(.98);
  transition: opacity .18s var(--dl-ease), transform .18s var(--dl-ease), visibility 0s linear .18s;
  z-index: 70;
  overflow: hidden;
}

.dl-bell-menu.open .dl-bell-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity .2s var(--dl-ease), transform .2s var(--dl-ease);
}

.dl-bell-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--dl-green-tint) 0%, #fff 100%);
  border-bottom: 1px solid var(--dl-line);
}

.dl-bell-panel-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dl-muted);
}

.dl-bell-panel-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--dl-green-dark);
  margin-top: 2px;
}

.dl-bell-panel-count {
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(0, 89, 78, 0.10);
  color: var(--dl-green-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dl-bell-panel-list {
  max-height: 380px;
  overflow-y: auto;
  padding: 4px;
}

.dl-bell-panel-empty {
  padding: 32px 16px;
  text-align: center;
  color: var(--dl-muted);
}

.dl-bell-panel-empty i {
  font-size: 1.8rem;
  color: rgba(15, 31, 28, .25);
  margin-bottom: 10px;
  display: block;
}

.dl-bell-panel-empty p {
  margin: 0;
  font-size: .88rem;
}

.dl-bell-item {
  position: relative;
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background .15s var(--dl-ease);
}

.dl-bell-item-mark {
  position: absolute;
  bottom: 10px;
  right: 28px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(15, 31, 28, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--dl-muted);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  cursor: pointer;
  opacity: 0;
  transform: scale(.9);
  transition: opacity .15s var(--dl-ease), transform .15s var(--dl-ease),
              background .15s var(--dl-ease), color .15s var(--dl-ease),
              border-color .15s var(--dl-ease);
}

.dl-bell-item:hover .dl-bell-item-mark {
  opacity: 1;
  transform: scale(1);
}

.dl-bell-item-mark:hover {
  background: var(--dl-green);
  color: #fff;
  border-color: var(--dl-green);
}

.dl-bell-item + .dl-bell-item {
  border-top: 1px solid var(--dl-line);
  border-radius: 0;
}

.dl-bell-item:hover { background: var(--dl-green-tint); }
.dl-bell-item.unread { background: rgba(0, 89, 78, 0.04); }

.dl-bell-item.unread::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  margin-top: 6px;
  align-self: flex-start;
}

.dl-bell-item-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(0, 89, 78, 0.08);
  color: var(--dl-green);
  font-size: .9rem;
}

.dl-bell-item-icon.warn    { background: rgba(245, 158, 11, .12); color: #b45309; }
.dl-bell-item-icon.error   { background: rgba(239, 68, 68, .12);  color: #b91c1c; }
.dl-bell-item-icon.success { background: rgba(16, 185, 129, .12); color: #047857; }
.dl-bell-item-icon.info    { background: rgba(59, 130, 246, .12); color: #1d4ed8; }

.dl-bell-item-body { flex: 1; min-width: 0; }

.dl-bell-item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.dl-bell-item-app {
  font-family: 'Outfit', sans-serif;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dl-green);
}

.dl-bell-item-time {
  font-size: .7rem;
  color: var(--dl-muted);
}

.dl-bell-item-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--dl-green-dark);
  line-height: 1.3;
  margin: 2px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.dl-bell-item-msg {
  font-size: .78rem;
  color: var(--dl-muted);
  line-height: 1.35;
  margin: 2px 0 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.dl-bell-panel-foot {
  padding: 6px;
  border-top: 1px solid var(--dl-line);
  background: rgba(0, 89, 78, 0.025);
}

.dl-bell-panel-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  color: var(--dl-green-dark);
  text-decoration: none;
  transition: background .15s var(--dl-ease);
}

.dl-bell-panel-more:hover {
  background: rgba(0, 89, 78, .08);
  color: var(--dl-green-dark);
}

/* ─── App launcher (grid PlanItOne) ──────────────────── */
.dl-apps-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dl-apps-menu[hidden] { display: none !important; }

.dl-apps-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  background: rgba(0, 89, 78, 0.06);
  border: 1px solid rgba(0, 89, 78, 0.14);
  border-radius: 999px;
  color: var(--dl-green-dark);
  cursor: pointer;
  vertical-align: middle;
  transition: background 0.15s var(--dl-ease), border-color 0.15s var(--dl-ease),
              transform 0.15s var(--dl-ease), color 0.15s var(--dl-ease);
}

.dl-apps-btn:hover,
.dl-apps-menu.open .dl-apps-btn {
  background: rgba(0, 89, 78, 0.12);
  border-color: var(--dl-green);
  color: var(--dl-green);
  transform: translateY(-1px);
}

.dl-apps-btn svg { display: block; }

.dl-apps-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 340px;
  max-width: 92vw;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(0, 89, 78, 0.10);
  border-radius: 18px;
  box-shadow: 0 24px 60px -20px rgba(0, 53, 46, 0.30);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px) scale(.98);
  transition: opacity .18s var(--dl-ease), transform .18s var(--dl-ease),
              visibility 0s linear .18s;
  z-index: 70;
  overflow: hidden;
}

.dl-apps-menu.open .dl-apps-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity .2s var(--dl-ease), transform .2s var(--dl-ease);
}

.dl-apps-panel-head {
  padding: 16px 18px 10px;
  border-bottom: 1px solid var(--dl-line);
  background: linear-gradient(135deg, var(--dl-green-tint) 0%, #fff 100%);
}

.dl-apps-panel-eyebrow {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dl-muted);
}

.dl-apps-panel-title {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dl-green-dark);
  margin-top: 2px;
}

.dl-apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 12px;
  max-height: 420px;
  overflow-y: auto;
}

.dl-app-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: background .15s var(--dl-ease), transform .15s var(--dl-ease);
}

.dl-app-tile:hover {
  background: rgba(0, 89, 78, .06);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

.dl-app-tile.is-current {
  background: rgba(0, 89, 78, .08);
  position: relative;
}

.dl-app-tile.is-current::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 24px;
  height: 2px;
  background: var(--dl-green);
  border-radius: 2px;
  transform: translateX(-50%);
}

.dl-app-tile-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid var(--dl-line);
  overflow: hidden;
  transition: transform .15s var(--dl-ease), box-shadow .15s var(--dl-ease),
              border-color .15s var(--dl-ease);
}

.dl-app-tile:hover .dl-app-tile-ico {
  border-color: var(--dl-green);
  box-shadow: 0 4px 12px rgba(0, 89, 78, .12);
}

.dl-app-tile-ico img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  display: block;
}

.dl-app-tile-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  color: var(--dl-green-dark);
  text-align: center;
  line-height: 1.2;
}

.dl-apps-panel-foot {
  padding: 6px;
  border-top: 1px solid var(--dl-line);
  background: rgba(0, 89, 78, 0.025);
}

.dl-apps-panel-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  color: var(--dl-green-dark);
  text-decoration: none;
  transition: background .15s var(--dl-ease);
}

.dl-apps-panel-more:hover {
  background: rgba(0, 89, 78, .08);
  color: var(--dl-green-dark);
}

/* ─── Menú de usuario (wrapper) ──────────────────────── */
.dl-user-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dl-user-menu[hidden] { display: none !important; }

/* ─── Trigger de usuario (avatar + nombre + chevron) ────── */
.dl-user-trigger {
  height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px 0 4px;
  border-radius: 999px;
  background: rgba(0, 89, 78, 0.06);
  border: 1px solid rgba(0, 89, 78, 0.14);
  color: var(--dl-green-dark);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1;
  vertical-align: middle;
  transition: background 0.15s var(--dl-ease), border-color 0.15s var(--dl-ease), transform 0.15s var(--dl-ease);
}

.dl-user-trigger:hover {
  background: rgba(0, 89, 78, 0.12);
  border-color: var(--dl-green);
  color: var(--dl-green-dark);
  transform: translateY(-1px);
}

.dl-user-avatar {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--dl-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.dl-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.dl-user-avatar.has-photo img { display: block; }
.dl-user-avatar.has-photo .dl-user-initials { display: none; }

.dl-user-name {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dl-user-chev {
  font-size: 0.72rem;
  opacity: 0.6;
}

@media (max-width: 900px) {
  .dl-user-name,
  .dl-user-chev { display: none; }
  .dl-user-trigger { padding: 3px; }
}

.dl-user-trigger[hidden],
.dl-bell-btn[hidden],
.dl-nav-cta[hidden] { display: none !important; }
.dl-bell-badge[hidden] { display: none !important; }

/* ─── Panel desplegable del menú de usuario ──────────── */
.dl-user-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 320px;
  max-height: min(82vh, 640px);
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(0, 89, 78, 0.08);
  border-radius: 18px;
  box-shadow: 0 24px 60px -20px rgba(0, 53, 46, 0.28);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px) scale(.98);
  transition: opacity .18s var(--dl-ease), transform .18s var(--dl-ease), visibility 0s linear .18s;
  z-index: 60;
}

.dl-user-menu.open .dl-user-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity .2s var(--dl-ease), transform .2s var(--dl-ease);
}

.dl-user-panel-head {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--dl-green-tint) 0%, #fff 100%);
  border-bottom: 1px solid var(--dl-line);
}

.dl-user-avatar-lg {
  width: 44px;
  height: 44px;
  font-size: 0.95rem;
}

.dl-user-panel-meta {
  min-width: 0;
  flex: 1;
}

.dl-user-panel-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dl-green-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dl-user-panel-mail {
  font-size: 0.78rem;
  color: var(--dl-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dl-user-section {
  padding: 8px 6px 4px;
  border-top: 1px solid var(--dl-line);
}

.dl-user-section:first-of-type { border-top: 0; }

.dl-user-section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dl-muted);
  opacity: 0.7;
  padding: 6px 10px 8px;
}

.dl-user-panel-foot {
  border-top: 1px solid var(--dl-line);
  padding: 6px;
  background: rgba(0, 89, 78, 0.025);
}

.dl-user-action {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--dl-ink);
  text-decoration: none;
  background: transparent;
  border: 0;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: background .15s var(--dl-ease), color .15s var(--dl-ease), transform .15s var(--dl-ease);
}

.dl-user-action:hover {
  background: var(--dl-green-tint);
  color: var(--dl-green-dark);
  transform: translateX(2px);
}

.dl-user-action-ico {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(0, 89, 78, 0.07);
  color: var(--dl-green);
  transition: background .15s var(--dl-ease), color .15s var(--dl-ease);
  font-size: 0.95rem;
}

.dl-user-action:hover .dl-user-action-ico {
  background: var(--dl-green);
  color: #fff;
}

.dl-user-action-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 1;
}

.dl-user-action-title {
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.2;
  color: var(--dl-green-dark);
}

.dl-user-action-desc {
  font-size: 0.74rem;
  color: var(--dl-muted);
  line-height: 1.25;
}

.dl-user-logout { color: var(--dl-muted); }
.dl-user-logout .dl-user-action-ico {
  background: rgba(220, 53, 69, 0.08);
  color: #b02a37;
}
.dl-user-logout:hover {
  background: rgba(220, 53, 69, 0.08);
  color: #b02a37;
  transform: none;
}
.dl-user-logout:hover .dl-user-action-ico {
  background: #b02a37;
  color: #fff;
}
.dl-user-logout:hover .dl-user-action-title { color: #b02a37; }

.dl-nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--dl-ink);
}

.dl-nav-toggle:hover { background: var(--dl-green-tint); }

@media (max-width: 900px) {
  .dl-nav-links { display: none; }
  .dl-nav-toggle { display: inline-flex; }
  .dl-nav-cta { padding: 9px 16px; font-size: 0.88rem; }
  .dl-brand-tag { display: none; }
}

/* mobile drawer */
.dl-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: min(320px, 90vw);
  z-index: 110;
  background: #fff;
  padding: 80px 24px 32px;
  box-shadow: -10px 0 30px rgba(0, 38, 31, 0.15);
  transition: right 0.3s var(--dl-ease);
}

.dl-mobile-menu.open { right: 0; }

.dl-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dl-mobile-menu li { margin-bottom: 6px; }

.dl-mobile-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--dl-text);
  font-weight: 600;
  font-size: 1rem;
}

.dl-mobile-menu a:hover { background: var(--dl-green-tint); color: var(--dl-green-dark); }

.dl-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 31, 28, 0.45);
  backdrop-filter: blur(4px);
  z-index: 105;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.dl-backdrop.show { opacity: 1; pointer-events: auto; }

/* ─── Hero principal ─────────────────────────────────────────────── */
.dl-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 89, 78, 0.10), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(181, 161, 96, 0.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--dl-green-tintl) 100%);
}

.dl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(0, 89, 78, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
  z-index: -1;
  opacity: 0.6;
}

/* ─── Stage decorativo del hero: iconos de estadística + partículas ─── */
.dl-hero-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Iconos flotantes */
.dl-hero-floatie {
  position: absolute;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 89, 78, 0.10);
  box-shadow:
    0 12px 30px -8px rgba(0, 89, 78, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: var(--dl-green);
  font-size: 1.4rem;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  opacity: 0;
  animation: dlFloatieIn 0.8s var(--dl-ease) forwards,
             dlFloat 12s ease-in-out infinite;
  will-change: transform;
}

/* Halo glow detrás del icono */
.dl-hero-floatie::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 22px;
  background: radial-gradient(circle, rgba(0, 89, 78, 0.18) 0%, transparent 70%);
  z-index: -1;
  filter: blur(8px);
  opacity: 0.7;
}

/* Acentos dorados intercalados */
.dl-hero-floatie.f2,
.dl-hero-floatie.f5,
.dl-hero-floatie.f8 {
  color: var(--dl-gold);
  border-color: rgba(181, 161, 96, 0.18);
}
.dl-hero-floatie.f2::before,
.dl-hero-floatie.f5::before,
.dl-hero-floatie.f8::before {
  background: radial-gradient(circle, rgba(181, 161, 96, 0.22) 0%, transparent 70%);
}

/* Posiciones, tamaños y timing — distribuidos para no chocar con el texto/cards */
.dl-hero-floatie.f1 { top:  18%;  left:  6%;  width: 52px; height: 52px; font-size: 1.25rem;
                      animation-duration: 0.8s, 11s; animation-delay: 0.1s, 0s; }
.dl-hero-floatie.f2 { top:  72%;  left:  12%; width: 48px; height: 48px; font-size: 1.15rem;
                      animation-duration: 0.8s, 13s; animation-delay: 0.3s, 1.5s; }
.dl-hero-floatie.f3 { top:  42%;  left:  3%;  width: 44px; height: 44px; font-size: 1.05rem;
                      animation-duration: 0.8s, 14s; animation-delay: 0.5s, 3s; }
.dl-hero-floatie.f4 { top:  10%;  left:  46%; width: 50px; height: 50px; font-size: 1.20rem;
                      animation-duration: 0.8s, 12s; animation-delay: 0.7s, 2s; }
.dl-hero-floatie.f5 { top:  20%;  right: 4%;  width: 58px; height: 58px; font-size: 1.45rem;
                      animation-duration: 0.8s, 15s; animation-delay: 0.2s, 1s; }
.dl-hero-floatie.f6 { top:  78%;  right: 8%;  width: 46px; height: 46px; font-size: 1.10rem;
                      animation-duration: 0.8s, 11s; animation-delay: 0.6s, 2.5s; }
.dl-hero-floatie.f7 { top:  52%;  right: 2%;  width: 42px; height: 42px; font-size: 1.00rem;
                      animation-duration: 0.8s, 13s; animation-delay: 0.9s, 4s; }
.dl-hero-floatie.f8 { top:  84%;  left:  44%; width: 48px; height: 48px; font-size: 1.15rem;
                      animation-duration: 0.8s, 14s; animation-delay: 0.4s, 0.5s; }

/* Partículas — puntos verdes/dorados que ascienden lentamente */
.dl-hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 89, 78, 0.45);
  box-shadow: 0 0 8px rgba(0, 89, 78, 0.35);
  opacity: 0;
  animation: dlParticle 14s linear infinite;
}

.dl-hero-particle:nth-child(odd) {
  background: rgba(181, 161, 96, 0.55);
  box-shadow: 0 0 8px rgba(181, 161, 96, 0.45);
}

/* Variaciones de tamaño — algunas grandes, otras diminutas para profundidad */
.dl-hero-particle.p1, .dl-hero-particle.p5, .dl-hero-particle.p9, .dl-hero-particle.p13,
.dl-hero-particle.p17, .dl-hero-particle.p21, .dl-hero-particle.p25 { width: 6px; height: 6px; }

.dl-hero-particle.p3, .dl-hero-particle.p7, .dl-hero-particle.p11,
.dl-hero-particle.p15, .dl-hero-particle.p19, .dl-hero-particle.p23, .dl-hero-particle.p27 { width: 3px; height: 3px; }

.dl-hero-particle.p2, .dl-hero-particle.p10, .dl-hero-particle.p18 { width: 8px; height: 8px; }

/* Posiciones de inicio + delays — cubrimos toda la base del hero */
.dl-hero-particle.p1  { left:  4%; bottom: -10px; animation-delay:  0s;  animation-duration: 16s; }
.dl-hero-particle.p2  { left: 10%; bottom: -10px; animation-delay:  2s;  animation-duration: 14s; }
.dl-hero-particle.p3  { left: 16%; bottom: -10px; animation-delay:  5s;  animation-duration: 12s; }
.dl-hero-particle.p4  { left: 22%; bottom: -10px; animation-delay:  1s;  animation-duration: 18s; }
.dl-hero-particle.p5  { left: 28%; bottom: -10px; animation-delay:  7s;  animation-duration: 15s; }
.dl-hero-particle.p6  { left: 34%; bottom: -10px; animation-delay:  3s;  animation-duration: 13s; }
.dl-hero-particle.p7  { left: 40%; bottom: -10px; animation-delay:  9s;  animation-duration: 17s; }
.dl-hero-particle.p8  { left: 46%; bottom: -10px; animation-delay:  4s;  animation-duration: 14s; }
.dl-hero-particle.p9  { left: 52%; bottom: -10px; animation-delay:  6s;  animation-duration: 16s; }
.dl-hero-particle.p10 { left: 58%; bottom: -10px; animation-delay:  8s;  animation-duration: 12s; }
.dl-hero-particle.p11 { left: 64%; bottom: -10px; animation-delay: 10s;  animation-duration: 15s; }
.dl-hero-particle.p12 { left: 70%; bottom: -10px; animation-delay: 11s;  animation-duration: 13s; }
.dl-hero-particle.p13 { left: 76%; bottom: -10px; animation-delay: 12s;  animation-duration: 18s; }
.dl-hero-particle.p14 { left: 82%; bottom: -10px; animation-delay: 13s;  animation-duration: 14s; }
.dl-hero-particle.p15 { left: 88%; bottom: -10px; animation-delay:  0.5s; animation-duration: 17s; }
.dl-hero-particle.p16 { left: 94%; bottom: -10px; animation-delay:  2.5s; animation-duration: 13s; }
.dl-hero-particle.p17 { left:  7%; bottom: -10px; animation-delay:  4.5s; animation-duration: 19s; }
.dl-hero-particle.p18 { left: 13%; bottom: -10px; animation-delay:  6.5s; animation-duration: 14s; }
.dl-hero-particle.p19 { left: 19%; bottom: -10px; animation-delay:  8.5s; animation-duration: 12s; }
.dl-hero-particle.p20 { left: 25%; bottom: -10px; animation-delay: 10.5s; animation-duration: 16s; }
.dl-hero-particle.p21 { left: 31%; bottom: -10px; animation-delay: 12.5s; animation-duration: 13s; }
.dl-hero-particle.p22 { left: 37%; bottom: -10px; animation-delay: 14.5s; animation-duration: 15s; }
.dl-hero-particle.p23 { left: 43%; bottom: -10px; animation-delay:  1.5s; animation-duration: 17s; }
.dl-hero-particle.p24 { left: 49%; bottom: -10px; animation-delay:  3.5s; animation-duration: 14s; }
.dl-hero-particle.p25 { left: 55%; bottom: -10px; animation-delay:  5.5s; animation-duration: 13s; }
.dl-hero-particle.p26 { left: 61%; bottom: -10px; animation-delay:  7.5s; animation-duration: 18s; }
.dl-hero-particle.p27 { left: 67%; bottom: -10px; animation-delay:  9.5s; animation-duration: 15s; }
.dl-hero-particle.p28 { left: 73%; bottom: -10px; animation-delay: 11.5s; animation-duration: 12s; }

/* ─── Sparkles: estrellitas que titilan en su lugar (no se mueven) ── */
.dl-hero-sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 6px rgba(0, 89, 78, 0.55),
    0 0 14px rgba(0, 89, 78, 0.30);
  opacity: 0;
  animation: dlSparkle 4s ease-in-out infinite;
}

.dl-hero-sparkle:nth-child(even) {
  box-shadow:
    0 0 6px rgba(181, 161, 96, 0.65),
    0 0 14px rgba(181, 161, 96, 0.35);
}

.dl-hero-sparkle.s1  { top: 14%; left:  22%; animation-delay: 0s;   }
.dl-hero-sparkle.s2  { top: 28%; left:  74%; animation-delay: 0.7s; }
.dl-hero-sparkle.s3  { top: 38%; left:  10%; animation-delay: 1.4s; }
.dl-hero-sparkle.s4  { top: 50%; left:  88%; animation-delay: 2.1s; }
.dl-hero-sparkle.s5  { top: 62%; left:  32%; animation-delay: 2.8s; width: 4px; height: 4px; }
.dl-hero-sparkle.s6  { top: 26%; left:  56%; animation-delay: 3.5s; }
.dl-hero-sparkle.s7  { top: 70%; left:  68%; animation-delay: 0.3s; }
.dl-hero-sparkle.s8  { top: 16%; left:  82%; animation-delay: 1.0s; width: 4px; height: 4px; }
.dl-hero-sparkle.s9  { top: 80%; left:  18%; animation-delay: 1.7s; }
.dl-hero-sparkle.s10 { top: 46%; left:  50%; animation-delay: 2.4s; width: 5px; height: 5px; }

@keyframes dlSparkle {
  0%, 100% { opacity: 0;   transform: scale(0.5); }
  50%      { opacity: 1;   transform: scale(1.4); }
}

@keyframes dlFloatieIn {
  from { opacity: 0; transform: translateY(20px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes dlFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%      { transform: translate(8px, -14px) rotate(2deg); }
  50%      { transform: translate(-6px, -8px) rotate(-2deg); }
  75%      { transform: translate(4px, -18px) rotate(1.5deg); }
}

@keyframes dlParticle {
  0%   { transform: translateY(0) translateX(0);    opacity: 0; }
  10%  { opacity: 0.9; }
  50%  { transform: translateY(-50vh) translateX(20px); opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-100vh) translateX(-15px); opacity: 0; }
}

/* En pantallas pequeñas atenuamos para no abarrotar */
@media (max-width: 768px) {
  .dl-hero-floatie.f3,
  .dl-hero-floatie.f4,
  .dl-hero-floatie.f7,
  .dl-hero-floatie.f8 { display: none; }
  .dl-hero-floatie { width: 42px; height: 42px; font-size: 1rem; }
}

/* Accesibilidad: respeta usuarios que pidieron reducir movimiento */
@media (prefers-reduced-motion: reduce) {
  .dl-hero-floatie {
    animation: dlFloatieIn 0.6s var(--dl-ease) forwards;
  }
  .dl-hero-particle,
  .dl-hero-sparkle { display: none; }
}

.dl-hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.dl-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 89, 78, 0.08);
  border: 1px solid rgba(0, 89, 78, 0.18);
  color: var(--dl-green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.dl-hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dl-gold);
  box-shadow: 0 0 0 3px rgba(181, 161, 96, 0.25);
  animation: dlPulse 2.4s ease infinite;
}

@keyframes dlPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.4); }
}

.dl-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  color: var(--dl-ink);
}

.dl-hero-title .accent {
  background: linear-gradient(135deg, var(--dl-green) 0%, var(--dl-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.dl-hero-subtitle {
  font-size: 1.18rem;
  color: var(--dl-muted);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.55;
}

.dl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s var(--dl-ease);
  text-decoration: none;
  border: 0;
  letter-spacing: -0.005em;
}

.dl-btn-primary {
  background: var(--dl-green);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 89, 78, 0.28);
}

.dl-btn-primary:hover {
  background: var(--dl-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 89, 78, 0.34);
  color: #fff;
}

.dl-btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--dl-green-dark);
  border: 1px solid var(--dl-green);
  backdrop-filter: blur(8px);
}

.dl-btn-ghost:hover {
  background: var(--dl-green);
  color: #fff;
  transform: translateY(-2px);
}

.dl-btn-icon { font-size: 0.95em; transition: transform 0.25s; }
.dl-btn:hover .dl-btn-icon { transform: translateX(3px); }

/* Hero visual: floating dashboard preview */
.dl-hero-visual {
  position: relative;
  height: 460px;
}

.dl-hero-card {
  position: absolute;
  border-radius: var(--dl-radius);
  background: #fff;
  box-shadow: var(--dl-shadow-lg);
  border: 1px solid var(--dl-line);
  padding: 18px;
  animation: dlFloat 7s ease-in-out infinite;
}

.dl-hero-card-1 {
  top: 0;
  right: 30px;
  width: 320px;
  z-index: 2;
}

.dl-hero-card-2 {
  bottom: 30px;
  left: 0;
  width: 280px;
  animation-delay: -3.5s;
  z-index: 3;
}

.dl-hero-card-3 {
  top: 50%;
  right: 0;
  width: 220px;
  background: linear-gradient(135deg, var(--dl-green), var(--dl-green-dark));
  color: #fff;
  border: 0;
  animation-delay: -1.8s;
  z-index: 4;
}

@keyframes dlFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.dl-mini-chart-label {
  font-size: 0.78rem;
  color: var(--dl-muted);
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dl-mini-chart-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--dl-ink);
}

.dl-hero-card-3 .dl-mini-chart-label,
.dl-hero-card-3 .dl-mini-chart-value { color: #fff; }

.dl-hero-card-3 .dl-mini-chart-label { opacity: 0.85; }

.dl-mini-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 50px;
}

.dl-mini-chart-bars span {
  flex: 1;
  background: linear-gradient(180deg, var(--dl-green), var(--dl-green-dark));
  border-radius: 4px 4px 0 0;
  transform-origin: bottom;
  animation: dlBarRise 1.2s var(--dl-ease) backwards;
}

.dl-hero-card-3 .dl-mini-chart-bars span {
  background: linear-gradient(180deg, var(--dl-gold-soft), var(--dl-gold));
}

@keyframes dlBarRise {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

.dl-mini-chart-bars span:nth-child(1) { height: 40%; animation-delay: 0.2s; }
.dl-mini-chart-bars span:nth-child(2) { height: 70%; animation-delay: 0.3s; }
.dl-mini-chart-bars span:nth-child(3) { height: 55%; animation-delay: 0.4s; }
.dl-mini-chart-bars span:nth-child(4) { height: 90%; animation-delay: 0.5s; }
.dl-mini-chart-bars span:nth-child(5) { height: 75%; animation-delay: 0.6s; }
.dl-mini-chart-bars span:nth-child(6) { height: 100%; animation-delay: 0.7s; }

.dl-mini-chart-line {
  height: 60px;
  position: relative;
}

.dl-mini-chart-line svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.dl-mini-chart-line path {
  fill: none;
  stroke: var(--dl-gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: dlDrawLine 2s var(--dl-ease) 0.5s forwards;
}

@keyframes dlDrawLine {
  to { stroke-dashoffset: 0; }
}

.dl-mini-chart-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dl-green);
  background: rgba(0, 89, 78, 0.08);
  padding: 3px 8px;
  border-radius: 999px;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .dl-hero { padding: 110px 0 60px; }
  .dl-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .dl-hero-visual { height: 360px; }
  .dl-hero-card-1 { width: 280px; right: 0; }
  .dl-hero-card-2 { width: 240px; }
  .dl-hero-card-3 { width: 180px; }
}

@media (max-width: 600px) {
  .dl-hero-visual { display: none; }
}

/* ─── Cifras hero (improved version of planeacion) ───────────────── */
.dl-cifras-section {
  padding: 0 0 80px;
  position: relative;
}

.dl-cifras-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--dl-radius-lg);
  color: #fff;
  padding: 44px 46px 34px;
  background:
    /* halo dorado discreto en esquina superior derecha */
    radial-gradient(48% 70% at 92% -12%, rgba(181, 161, 96, 0.22) 0%, rgba(181, 161, 96, 0) 62%),
    /* halo verde institucional medio en esquina inferior izquierda */
    radial-gradient(55% 65% at 0% 110%, rgba(0, 89, 78, 0.45) 0%, rgba(0, 89, 78, 0) 65%),
    /* tinte oscuro sobre la imagen para legibilidad del texto blanco */
    linear-gradient(135deg, rgba(0, 38, 31, 0.88) 0%, rgba(0, 61, 54, 0.80) 55%, rgba(0, 89, 78, 0.78) 100%),
    /* base: imagen institucional */
    url('/datalab/assets/img/registrarse.png') center/cover no-repeat,
    /* fallback de degradado por si la imagen no carga */
    linear-gradient(135deg, var(--dl-green-deep) 0%, var(--dl-green-dark) 55%, var(--dl-green) 100%);
  box-shadow:
    0 30px 70px -24px rgba(0, 38, 31, 0.55),
    0 10px 24px -10px rgba(0, 38, 31, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    inset 0 0 0 1px rgba(181, 161, 96, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Capa fina: grid de líneas y dots verde-tintados (data viz feel) */
.dl-cifras-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(212, 195, 136, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 195, 136, 0.05) 1px, transparent 1px),
    radial-gradient(rgba(212, 195, 136, 0.08) 1px, transparent 1px);
  background-size: 56px 56px, 56px 56px, 28px 28px;
  background-position: -1px -1px, -1px -1px, 0 0;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 80%);
  opacity: 0.65;
}

/* Capa decorativa: glow dorado suave superior derecho */
.dl-cifras-hero::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -140px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%,
      rgba(181, 161, 96, 0.32) 0%,
      rgba(181, 161, 96, 0.08) 38%,
      transparent 70%);
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
}

.dl-cifras-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: stretch;
}

.dl-cifras-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dl-cifras-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 6px;
}

.dl-cifras-badge::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--dl-gold);
  border-radius: 2px;
}

.dl-cifras-period {
  font-family: 'Outfit', sans-serif;
  font-size: 4.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.9;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dl-cifras-help {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 10px;
}

.dl-cifras-help .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  font-weight: 800;
}

.dl-cifras-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.dl-cifras-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s var(--dl-ease);
  font-family: inherit;
}

.dl-cifras-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.dl-cifras-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dl-metric {
  position: relative;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: left;
  transition: all 0.3s var(--dl-ease);
  overflow: hidden;
}

.dl-metric::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(181, 161, 96, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.dl-metric:hover {
  background: rgba(255, 255, 255, 0.10);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.20);
}

.dl-metric:hover::before { opacity: 1; }

.dl-metric-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(181, 161, 96, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--dl-gold-soft);
}

.dl-metric-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.dl-metric-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}

.dl-metric-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.01em;
}

.dl-metric-tag {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dl-gold-soft);
  opacity: 0.95;
}

.dl-metric-tag.is-static {
  color: rgba(255, 255, 255, 0.55);
}

.dl-cifras-note {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dl-cifras-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dl-cifras-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.dl-cifras-status .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
  animation: dlPulse 2s ease infinite;
}

@media (max-width: 900px) {
  .dl-cifras-hero { padding: 28px 22px 22px; }
  .dl-cifras-inner { grid-template-columns: 1fr; gap: 22px; }
  .dl-cifras-period { font-size: 3.6rem; }
  .dl-cifras-metrics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .dl-cifras-metrics { grid-template-columns: 1fr 1fr; gap: 10px; }
  .dl-metric-value { font-size: 1.6rem; }
  .dl-metric { padding: 14px; }
}

/* ─── Section common ─────────────────────────────────────────────── */
.dl-section {
  padding: 80px 0;
  position: relative;
}

.dl-section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.dl-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dl-green);
  background: var(--dl-green-tint);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.dl-section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.dl-section-subtitle {
  font-size: 1.1rem;
  color: var(--dl-muted);
  margin: 0;
}

/* ─── Módulos grid ──────────────────────────────────────────────── */
.dl-modulos {
  background: var(--dl-green-tintl);
}

.dl-modulos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.dl-modulo-card {
  position: relative;
  padding: 26px;
  border-radius: var(--dl-radius);
  background: #fff;
  border: 1px solid var(--dl-line);
  transition: all 0.35s var(--dl-ease);
  text-decoration: none;
  color: var(--dl-text);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.dl-modulo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dl-green) 0%, var(--dl-green-dark) 100%);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 0;
}

.dl-modulo-card > * {
  position: relative;
  z-index: 1;
}

.dl-modulo-card:hover {
  transform: translateY(-4px);
  border-color: var(--dl-green);
  box-shadow: var(--dl-shadow-lg);
  color: #fff;
}

.dl-modulo-card:hover::before { opacity: 1; }

.dl-modulo-card:hover .dl-modulo-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.dl-modulo-card:hover .dl-modulo-name,
.dl-modulo-card:hover .dl-modulo-desc { color: #fff; }

.dl-modulo-card:hover .dl-modulo-arrow {
  background: rgba(255, 255, 255, 0.20);
  color: #fff;
  transform: translateX(4px);
}

.dl-modulo-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--dl-green-tint);
  color: var(--dl-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
  transition: all 0.35s;
}

.dl-modulo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  margin-bottom: 6px;
  color: var(--dl-ink);
  transition: color 0.35s;
}

.dl-modulo-desc {
  font-size: 0.92rem;
  color: var(--dl-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  flex: 1;
  transition: color 0.35s;
}

.dl-modulo-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--dl-green);
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--dl-green-tint);
  transition: all 0.35s;
}

@media (max-width: 900px) {
  .dl-modulos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .dl-modulos-grid { grid-template-columns: 1fr; }
}

/* ─── Cómo funciona (3 pasos) ────────────────────────────────────── */
.dl-workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.dl-workflow-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--dl-line-strong) 0 8px, transparent 8px 16px);
  z-index: 0;
}

.dl-step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.dl-step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--dl-green-tint);
  color: var(--dl-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: var(--dl-shadow-md);
  transition: all 0.4s var(--dl-ease);
}

.dl-step-circle::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dl-green), var(--dl-gold));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}

.dl-step:hover .dl-step-circle {
  background: var(--dl-green);
  color: #fff;
  border-color: transparent;
  transform: scale(1.05);
}

.dl-step:hover .dl-step-circle::before { opacity: 1; }

.dl-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.dl-step-text {
  color: var(--dl-muted);
  font-size: 0.96rem;
  line-height: 1.55;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .dl-workflow-grid { grid-template-columns: 1fr; gap: 36px; }
  .dl-workflow-grid::before { display: none; }
}

/* ─── Características ────────────────────────────────────────────── */
.dl-features {
  background: var(--dl-green-tintl);
}

.dl-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dl-feature {
  padding: 28px;
  border-radius: var(--dl-radius);
  background: #fff;
  border: 1px solid var(--dl-line);
  transition: all 0.3s var(--dl-ease);
}

.dl-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--dl-shadow-md);
  border-color: var(--dl-green-tint);
}

.dl-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--dl-green), var(--dl-green-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  box-shadow: 0 6px 14px rgba(0, 89, 78, 0.22);
}

.dl-feature-title {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.dl-feature-text {
  font-size: 0.92rem;
  color: var(--dl-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) { .dl-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .dl-features-grid { grid-template-columns: 1fr; } }

/* ─── Admin callout ──────────────────────────────────────────────── */
.dl-admin-callout {
  padding: 56px 0 24px;
}

.dl-admin-card {
  position: relative;
  border-radius: var(--dl-radius-lg);
  padding: 32px 40px 32px 48px;
  background:
    linear-gradient(135deg, #ffffff 0%, #fefcf6 60%, #fbf6e6 100%);
  border: 1px solid rgba(181, 161, 96, 0.28);
  box-shadow: 0 14px 36px rgba(15, 31, 28, 0.06);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  transition: box-shadow 0.35s var(--dl-ease), transform 0.35s var(--dl-ease);
}

.dl-admin-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(15, 31, 28, 0.10);
}

.dl-admin-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--dl-gold) 0%, var(--dl-gold-soft) 100%);
}

.dl-admin-card::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 161, 96, 0.14), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.dl-admin-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--dl-gold) 0%, #8d7a3e 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 10px 24px rgba(181, 161, 96, 0.32);
  flex-shrink: 0;
}

.dl-admin-text { min-width: 0; }

.dl-admin-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8d7a3e;
  margin-bottom: 8px;
}

.dl-admin-eyebrow i { font-size: 0.85em; }

.dl-admin-title {
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--dl-ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.dl-admin-desc {
  font-size: 0.96rem;
  color: var(--dl-muted);
  margin: 0;
  line-height: 1.55;
  max-width: 580px;
}

.dl-btn-admin {
  background: var(--dl-ink);
  color: #fff;
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(15, 31, 28, 0.20);
}

.dl-btn-admin:hover {
  background: var(--dl-green-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 31, 28, 0.28);
}

@media (max-width: 800px) {
  .dl-admin-callout { padding: 36px 0 12px; }

  .dl-admin-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 22px 26px;
    gap: 18px;
  }

  .dl-admin-card::before {
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--dl-gold), var(--dl-gold-soft));
  }

  .dl-admin-icon { margin: 0 auto; }
  .dl-admin-eyebrow { justify-content: center; }
  .dl-admin-desc { margin: 0 auto; }
  .dl-btn-admin { justify-self: center; width: 100%; max-width: 320px; justify-content: center; }
}

/* ─── CTA final ──────────────────────────────────────────────────── */
.dl-cta-final {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  isolation: isolate;
}

.dl-cta-card {
  position: relative;
  border-radius: var(--dl-radius-lg);
  padding: 56px 48px;
  text-align: center;
  background:
    linear-gradient(135deg, var(--dl-green-deep) 0%, var(--dl-green) 60%, var(--dl-green-dark) 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: var(--dl-shadow-lg);
}

.dl-cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(181, 161, 96, 0.22), transparent 60%);
  pointer-events: none;
}

.dl-cta-card::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0, 89, 78, 0.5), transparent 60%);
  pointer-events: none;
}

.dl-cta-inner { position: relative; z-index: 1; }

.dl-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dl-gold-soft);
  margin-bottom: 16px;
}

.dl-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 14px;
}

.dl-cta-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 28px;
  max-width: 540px;
}

.dl-cta-card .dl-btn-primary {
  background: #fff;
  color: var(--dl-green-dark);
}

.dl-cta-card .dl-btn-primary:hover {
  background: var(--dl-gold);
  color: var(--dl-green-deep);
  box-shadow: 0 14px 30px rgba(181, 161, 96, 0.4);
}

@media (max-width: 600px) {
  .dl-cta-card { padding: 42px 24px; }
}

/* ─── Footer ─────────────────────────────────────────────────────── */
.dl-footer {
  background: var(--dl-green-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 28px;
}

.dl-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.dl-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.dl-footer-brand img {
  width: 42px;
  height: 42px;
}

.dl-footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.dl-footer-brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
}

.dl-footer-brand-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dl-gold-soft);
}

.dl-footer-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
  max-width: 320px;
  line-height: 1.55;
}

.dl-footer-unitropico {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  text-decoration: none;
}

.dl-footer-unitropico:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
}

.dl-footer-unitropico img { height: 36px; }

.dl-footer-unitropico-text {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.2;
}

.dl-footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 16px;
}

.dl-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dl-footer-col li { margin-bottom: 8px; }

.dl-footer-col a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s;
}

.dl-footer-col a:hover { color: var(--dl-gold-soft); }

.dl-footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
}

.dl-footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 18px;
}
.dl-footer-bottom a:hover { color: #fff; }

@media (max-width: 900px) {
  .dl-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .dl-footer-inner { grid-template-columns: 1fr; }
}

/* ─── Scroll-reveal animations ───────────────────────────────────── */
.dl-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--dl-ease), transform 0.8s var(--dl-ease);
}

.dl-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.dl-reveal.is-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--dl-ease), transform 0.6s var(--dl-ease);
}

.dl-reveal.is-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.dl-reveal.is-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.dl-reveal.is-stagger.is-visible > *:nth-child(2) { transition-delay: 0.10s; }
.dl-reveal.is-stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.dl-reveal.is-stagger.is-visible > *:nth-child(4) { transition-delay: 0.20s; }
.dl-reveal.is-stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; }
.dl-reveal.is-stagger.is-visible > *:nth-child(6) { transition-delay: 0.30s; }
.dl-reveal.is-stagger.is-visible > *:nth-child(7) { transition-delay: 0.35s; }
.dl-reveal.is-stagger.is-visible > *:nth-child(8) { transition-delay: 0.40s; }
.dl-reveal.is-stagger.is-visible > *:nth-child(9) { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .dl-reveal, .dl-reveal.is-stagger > * { transition: none !important; opacity: 1 !important; transform: none !important; }
  .dl-hero-card, .dl-mini-chart-line path, .dl-mini-chart-bars span, .dl-hero-eyebrow .dot { animation: none !important; }
  html { scroll-behavior: auto; }
}
