/* ── Entry animations ── */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes floatBlob {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-18px) scale(1.04); }
}

.anim-hero { animation: fadeSlideUp  0.45s 0.05s ease both; }
.anim-card { animation: cardIn 0.4s ease both; }
.anim-card:nth-child(1) { animation-delay: 0.07s; }
.anim-card:nth-child(2) { animation-delay: 0.13s; }
.anim-card:nth-child(3) { animation-delay: 0.19s; }
.anim-card:nth-child(4) { animation-delay: 0.25s; }
.anim-card:nth-child(5) { animation-delay: 0.31s; }

.gradient-text {
  background: linear-gradient(120deg, #67d4ff 0%, #009DFF 60%, #5eb3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-shimmer {
  background: linear-gradient(90deg,
    rgba(0,157,255,0.10) 0%,
    rgba(0,157,255,0.25) 50%,
    rgba(0,157,255,0.10) 100%);
  background-size: 200% auto;
  animation: shimmer 3.5s linear infinite;
}

.blob       { pointer-events: none; animation: floatBlob 8s ease-in-out infinite; }
.blob-b     { animation-delay: -4s; animation-duration: 11s; }

.app-card-wrap { transition: box-shadow 0.2s ease, transform 0.2s ease; }
.app-card-available:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px -8px rgba(7,86,155,0.20), 0 2px 8px -2px rgba(0,157,255,0.12);
}
.app-card-available:hover .icon-wrap {
  background: linear-gradient(135deg, rgba(0,157,255,0.14) 0%, rgba(7,86,155,0.09) 100%) !important;
}

.btn-visit { transition: background 0.18s, border-color 0.18s, transform 0.18s; }
.btn-visit:hover {
  background: rgba(7,86,155,0.06);
  border-color: rgba(7,86,155,0.35);
  transform: translateY(-1px);
}

.btn-login {
  background: linear-gradient(135deg, #07569B 0%, #02356C 100%);
  transition: all 0.2s ease;
}
.btn-login:hover {
  background: linear-gradient(135deg, #009DFF 0%, #07569B 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px -2px rgba(0,157,255,0.45);
}

.sso-disabled { position: relative; }
.sso-disabled::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: #fff;
  font-size: 11px;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
}
.sso-disabled:hover::after { opacity: 1; }

.cat-rule { background: linear-gradient(to right, rgba(7,86,155,0.20), transparent); }
