.card {
  --surface-luma: 0.93;
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(139, 206, 236, 0.34);
  background:
    radial-gradient(760px 320px at -2% -18%, rgba(36, 182, 227, 0.16), transparent 68%),
    radial-gradient(640px 280px at 102% -8%, rgba(216, 173, 85, 0.1), transparent 74%),
    linear-gradient(182deg, rgba(255, 255, 255, 0.995), rgba(245, 251, 255, 0.972));
  box-shadow:
    0 26px 58px rgba(5, 22, 35, 0.15),
    0 6px 18px rgba(7, 26, 41, 0.08);
  backdrop-filter: blur(6px) saturate(112%);
  padding: 1.26rem;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, rgba(36, 182, 227, 0.78), rgba(15, 111, 148, 0.66));
  pointer-events: none;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.56);
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(132, 201, 231, 0.34);
  background: rgba(14, 110, 145, 0.15);
  color: rgba(8, 68, 95, 0.96);
  font-size: clamp(0.74rem, 0.22vw + 0.7rem, 0.86rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 760;
}
