/* ==========================================================================
   portal.css - Portal inicio: barra colapsable (Alertas + Accesos). [layout/portal]
   Fase 1: movido TAL CUAL desde tqc.css (orden preservado => cascada identica).
   ========================================================================== */
/* ===== Barra colapsable: Alertas + Accesos (portal inicio) ===== */
.portal-quickbar {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  margin: -18px auto 0;
  padding: 0;
  background: rgba(255, 255, 255, .40);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .08);
  overflow: hidden;
}
.portal-quickbar-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.portal-quickbar-summary::-webkit-details-marker { display: none; }
.portal-quickbar-summary:hover { background: rgba(255, 255, 255, .30); }
.portal-quickbar-title {
  font-size: 15px;
  font-weight: 900;
  color: #101828;
  white-space: nowrap;
}
.portal-quickbar-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}
.portal-quickbar-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.portal-quickbar-badge.is-alert {
  color: #8a3b00;
  background: rgba(255, 145, 0, .16);
  border: 1px solid rgba(255, 145, 0, .32);
}
.portal-quickbar-badge.is-access {
  color: #0f4c81;
  background: rgba(35, 181, 211, .16);
  border: 1px solid rgba(35, 181, 211, .34);
}
.portal-quickbar-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  color: #0f4c81;
  font-size: 12px;
  font-weight: 900;
}
.portal-quickbar-toggle-close { display: none; }
.portal-quickbar[open] .portal-quickbar-toggle-open { display: none; }
.portal-quickbar[open] .portal-quickbar-toggle-close { display: inline; }
.portal-quickbar-chevron {
  width: 9px;
  height: 9px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.portal-quickbar[open] .portal-quickbar-chevron {
  transform: rotate(-135deg);
}
.portal-quickbar-body {
  /* Apilados en vertical: cada grupo a todo el ancho, sin choque de carriles */
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px 16px 16px;
  border-top: 1px solid rgba(15, 39, 71, .10);
}
.portal-quickbar-group { min-width: 0; }
.portal-quickbar-group + .portal-quickbar-group {
  padding-top: 10px;
  border-top: 1px solid rgba(15, 39, 71, .08);
}
.portal-quickbar-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0;
}
.portal-quickbar-group-head h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  color: #101828;
  text-transform: none;
  letter-spacing: 0;
}

.portal-home-utility {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 14px;
  max-width: 1200px;
  margin: 14px auto 0;
  padding: 12px;
  background: rgba(255,255,255,.36);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(255,255,255,.42);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.portal-alert-band {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 6px auto 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255,255,255,.36);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(255,255,255,.42);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.portal-alert-band-head h2 {
  margin: 0;
  color: #101828;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}
.portal-alert-band-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
}
.portal-slide-rail {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.portal-slide-rail [data-slide-scroll-container] {
  flex: 1 1 auto;
  min-width: 0;
}
.portal-alert-chip-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2px 3px;
  mask-image: linear-gradient(90deg, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
}
.portal-alert-chip-row::-webkit-scrollbar {
  display: none;
}
.portal-alert-chip {
  min-width: 0;
  flex: 0 0 auto;
  max-width: 280px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  scroll-snap-align: start;
  padding: 8px 10px;
  color: #0f2747;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .50);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 18px rgba(3, 11, 26, .12);
  text-decoration: none;
}
.portal-alert-chip:hover {
  text-decoration: none;
  background: #ffffff;
}
.portal-alert-chip strong {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
.portal-alert-chip span {
  min-width: 0;
  overflow: hidden;
  color: #475569;
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.portal-alert-chip-muted {
  max-width: none;
  color: #334155;
}
.portal-alert-empty-slot {
  min-width: 150px;
  height: 38px;
  justify-content: center;
  border: 1px dashed rgba(15, 39, 71, .28);
  color: #0f2747;
  background: rgba(255, 255, 255, .52);
  box-shadow: none;
}
.portal-alert-empty-slot:hover {
  border-color: rgba(255, 192, 0, .86);
  color: #071b3a;
  background: rgba(255, 192, 0, .24);
}
.portal-alert-plus {
  color: inherit;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}
.portal-slide-btn {
  flex: 0 0 auto;
  z-index: 4;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(15, 39, 71, .12);
  border-radius: 50%;
  color: #0f2747;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .14);
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, color .18s ease;
}
/* Flecha limpia y centrada: cuadro rotado sobre su propio centro */
.portal-slide-btn::before {
  content: "";
  width: 8px;
  height: 8px;
  border-style: solid;
  border-width: 2.5px 2.5px 0 0;
  border-color: currentColor;
}
.portal-slide-prev::before {
  transform: rotate(-135deg);
  margin-left: 3px;
}
.portal-slide-next::before {
  transform: rotate(45deg);
  margin-right: 3px;
}
.portal-slide-btn:hover {
  color: #071b3a;
  background: #ffc000;
  border-color: #ffc000;
  transform: scale(1.06);
}
.portal-slide-btn:active {
  transform: scale(.96);
}
.portal-slide-btn[hidden],
.portal-slide-rail:not(.has-overflow) .portal-slide-btn {
  display: none;
}
.portal-home-utility-single {
  grid-template-columns: 1fr;
  margin-top: 10px;
}
.portal-utility-card {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.portal-utility-card .settings-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.portal-utility-card .settings-card-head h2 {
  margin: 0;
  color: #101828;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}
.portal-edit-link {
  flex: 0 0 auto;
  color: #8a6400;
  font-size: 12px;
  font-weight: 900;
  background: rgba(255, 192, 0, .22);
  border: 1px solid rgba(255, 192, 0, .38);
  border-radius: var(--radius-pill);
  padding: 6px 10px;
}
.portal-edit-link:hover {
  color: #071b3a;
  background: rgba(255, 192, 0, .42);
  text-decoration: none;
}
.portal-compact-list {
  display: flex;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2px 3px;
  mask-image: linear-gradient(90deg, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
}
.portal-compact-list::-webkit-scrollbar {
  display: none;
}
.portal-compact-card {
  min-height: 0;
  padding: 10px 12px;
  gap: 6px;
  border-radius: var(--radius-md);
  box-shadow: none;
}
.portal-compact-card .module-card-header {
  align-items: center;
  gap: 8px;
}
.portal-compact-card h2 {
  font-size: 14px;
  line-height: 1.2;
}
.portal-compact-card p {
  font-size: 12px;
  line-height: 1.35;
}
.portal-compact-card .module-status {
  font-size: 10px;
  padding: 4px 7px;
}
.module-card.portal-compact-card {
  flex: 0 0 min(300px, 76vw);
  min-height: 0;
  padding: 12px 14px;
  gap: 6px;
  border-radius: var(--radius-md);
  box-shadow: none;
  scroll-snap-align: start;
}
.portal-access-card .module-card.portal-compact-card {
  min-height: 58px;
  justify-content: center;
}
.module-card.portal-compact-card .module-card-header {
  align-items: center;
  gap: 8px;
}
.module-card.portal-compact-card h2 {
  font-size: 14px;
  line-height: 1.2;
}
.module-card.portal-compact-card p {
  font-size: 12px;
  line-height: 1.35;
}
.portal-kpi-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}
.portal-kpi-strip-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.cards-grid-container {
  position: relative;
  z-index: 3;
  margin-top: 14px;
  padding: 0 4%;
}
.glass-panel-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px;
  background: rgba(255,255,255,.36);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(255,255,255,.42);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.portal-kpi-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 11px;
  color: #101828;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .02);
  text-decoration: none;
}
.portal-kpi-card:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, .10);
}
.portal-kpi-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.portal-kpi-topline span {
  color: #101828;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.portal-kpi-topline i {
  width: 9px;
  height: 9px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(18, 63, 140, .10);
}
.portal-kpi-card strong {
  color: #0f2747;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.1;
  overflow-wrap: anywhere;
  font-variant-numeric: tabular-nums;
}
.portal-kpi-card small {
  color: #667085;
  font-weight: 800;
}
.portal-kpi-mini-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  text-align: center;
}
.portal-kpi-mini-values div {
  min-width: 0;
  padding: 8px 4px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .06);
  border-radius: var(--radius-sm);
}
.portal-kpi-mini-values strong {
  display: block;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.1;
  overflow-wrap: anywhere;
  font-variant-numeric: tabular-nums;
}
.portal-kpi-mini-values small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
}
.portal-kpi-card p {
  min-height: 0;
  margin: 0;
  color: #475467;
  font-size: 11px;
  line-height: 1.35;
}
.portal-mini-chart {
  height: 7px;
  overflow: hidden;
  background: #eef2f6;
  border-radius: var(--radius-pill);
}
.portal-mini-chart span {
  display: block;
  height: 100%;
  min-width: 8px;
  border-radius: inherit;
  background: var(--primary);
}
.portal-kpi-yellow .portal-kpi-topline i,
.portal-kpi-yellow .portal-mini-chart span {
  background: #f0b429;
  box-shadow: 0 0 0 4px rgba(240, 180, 41, .14);
}
.portal-kpi-green .portal-kpi-topline i,
.portal-kpi-green .portal-mini-chart span {
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, .12);
}
.portal-kpi-teal .portal-kpi-topline i,
.portal-kpi-teal .portal-mini-chart span {
  background: #0f766e;
  box-shadow: 0 0 0 4px rgba(15, 118, 110, .12);
}
.portal-kpi-slate .portal-kpi-topline i,
.portal-kpi-slate .portal-mini-chart span {
  background: #475569;
  box-shadow: 0 0 0 4px rgba(71, 85, 105, .12);
}
.portal-module-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.portal-module-link {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  align-items: center;
  padding: 13px 14px;
  color: #0f2747;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius-md);
  text-decoration: none;
}
.portal-module-link:hover {
  text-decoration: none;
  background: #eef5ff;
}
.portal-module-link span {
  font-weight: 900;
}
.portal-module-link strong {
  font-size: 18px;
  color: var(--primary);
}
.portal-module-link small {
  grid-column: 1 / -1;
  color: #667085;
  font-weight: 700;
}
.portal-chart-panel {
  margin-top: 16px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.portal-chart-panel .section-title-row {
  margin-bottom: 12px;
}
.portal-chart-panel h2,
.portal-chart-panel p {
  margin: 0;
}
.portal-chart-panel p {
  margin-top: 4px;
}
.portal-click-chart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.portal-chart-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 10px;
  align-items: start;
  padding: 13px 14px;
  color: #0f2747;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .06);
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.portal-chart-bar:hover {
  text-decoration: none;
  background: #eef5ff;
}
.portal-chart-label {
  font-weight: 900;
}
.portal-chart-track {
  grid-column: 1 / -1;
  order: 3;
  height: 12px;
  overflow: hidden;
  background: #e9eef5;
  border-radius: var(--radius-pill);
}
.portal-chart-track i {
  display: block;
  height: 100%;
  min-width: 8px;
  background: var(--primary);
  border-radius: inherit;
}
.portal-chart-yellow .portal-chart-track i { background: #f0b429; }
.portal-chart-green .portal-chart-track i { background: #16a34a; }
.portal-chart-teal .portal-chart-track i { background: #0f766e; }
.portal-chart-bar strong {
  min-width: 42px;
  text-align: right;
  color: var(--primary);
  font-size: 20px;
  line-height: 1;
}
.portal-carousel {
  max-width: 1200px;
  margin: 12px auto 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.portal-carousel-track {
  display: flex;
  width: max-content;
  animation: portalCarousel 34s linear infinite;
}
.portal-carousel:hover .portal-carousel-track {
  animation-play-state: paused;
}
.portal-carousel-slide {
  position: relative;
  flex: 0 0 min(640px, calc(100vw - 48px));
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: #0b1728;
  border-right: 1px solid rgba(15, 23, 42, .08);
}
.portal-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portal-carousel-slide figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 9px;
  width: fit-content;
  max-width: calc(100% - 20px);
  padding: 6px 9px;
  color: #ffffff;
  background: rgba(7, 27, 58, .72);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 800;
}
@keyframes portalCarousel {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.site-footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: auto;
  padding: 22px 18px;
  color: #ffffff;
  background: #303482;
  font-size: 15px;
}
.site-footer span,
.site-footer a {
  color: #ffffff;
  font-weight: 500;
}
.site-footer a {
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}
.site-footer > *:not(:last-child)::after {
  content: "|";
  margin: 0 7px;
  opacity: .86;
}
.module-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .09);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
}
.module-card-active {
  border-top: 5px solid #FFC000;
}
.module-card-soft {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}
.module-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.module-card h2 {
  margin: 0;
  color: #0f2747;
}
.module-card p {
  margin: 0;
  color: #475569;
  line-height: 1.5;
}

/* Sistema visual de indicadores inspirado en el dashboard de Operaciones. */
body .card:not(.portal-carousel),
body .stat-card,
body .module-card:not(.portal-compact-card),
body .nov-card,
body .panel-card,
body .persona-kpi,
body .eco-kpi,
body .report-kpi {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid #e2eaf4;
  background: linear-gradient(145deg, #f9fbff 0%, #f4f8fd 100%);
  box-shadow: var(--shadow-md);
}

body .card:not(.portal-carousel),
body .stat-card,
body .module-card:not(.portal-compact-card) {
  border-radius: var(--radius-lg);
}

body .nov-card,
body .persona-kpi,
body .eco-kpi,
body .report-kpi {
  border-radius: var(--radius-lg);
}

body .card:not(.portal-carousel)::after,
body .stat-card::after,
body .module-card:not(.portal-compact-card)::after,
body .nov-card::after,
body .panel-card::after,
body .persona-kpi::after,
body .eco-kpi::after,
body .report-kpi::after {
  content: '';
  position: absolute;
  z-index: 0;
  right: -26px;
  bottom: -30px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(83, 201, 235, .22);
  pointer-events: none;
}

body .card:not(.portal-carousel) > *,
body .stat-card > *,
body .module-card:not(.portal-compact-card) > *,
body .nov-card > *,
body .panel-card > *,
body .persona-kpi > *,
body .eco-kpi > *,
body .report-kpi > * {
  position: relative;
  z-index: 1;
}

body .stat-card strong,
body .nov-card strong,
body .persona-kpi strong,
body .eco-kpi strong,
body .report-kpi strong {
  color: var(--text);
}

/* Movimiento individual al pasar el mouse, tarjeta por tarjeta.
   Se aplica solo a tarjetas "hoja" (KPI / tiles / cards pequeñas), NUNCA a los
   contenedores genéricos `.card` ni a envoltorios grandes: si el hover se pusiera en
   un contenedor, al pasar por cualquier hija se levantarían todas juntas. */
body .module-card:not(.portal-compact-card),
body .nov-card,
body .panel-card,
body .horario-card,
body .stat-card,
body .backup-card,
body .dashboard-kpi,
body .drift-kpi,
body .persona-kpi,
body .eco-kpi,
body .report-kpi,
body .report-result-card,
body .role-card,
body .placeholder-card,
body .quote-release-card,
body .quote-selected-card,
body .quote-excel-card {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

body .module-card:not(.portal-compact-card):hover,
body .nov-card:hover,
body .panel-card:hover,
body .horario-card:hover,
body .stat-card:hover,
body .backup-card:hover,
body .dashboard-kpi:hover,
body .drift-kpi:hover,
body .persona-kpi:hover,
body .eco-kpi:hover,
body .report-kpi:hover,
body .report-result-card:hover,
body .role-card:hover,
body .placeholder-card:hover,
body .quote-release-card:hover,
body .quote-selected-card:hover,
body .quote-excel-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--user-accent) 34%, var(--line));
  box-shadow: var(--shadow-lg);
}


/* ==========================================================================
   Liquid glass SOLO para los items del menu de Inicio (accesos "Frecuentes").
   Aprobado por el usuario como lo unico util del intento premium.
   ========================================================================== */
.portal-usage-card{
  background:linear-gradient(135deg, rgba(255,255,255,.30), rgba(255,255,255,.12)) !important;
  -webkit-backdrop-filter:blur(18px) saturate(160%);backdrop-filter:blur(18px) saturate(160%);
  border:1px solid rgba(255,255,255,.55) !important;
  box-shadow:0 1px 0 rgba(255,255,255,.7) inset, 0 14px 34px -14px rgba(15,23,42,.40) !important;
  border-radius:18px !important;
  transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.portal-usage-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.85) !important;
  box-shadow:0 1px 0 rgba(255,255,255,.9) inset, 0 22px 50px -16px rgba(15,23,42,.5) !important;
}
@media (prefers-reduced-motion:reduce){ .portal-usage-card{transition:none} }
