

.clip-card-shell {
  position: relative;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), filter 0.45s ease;
}

.clip-card-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 56, 89, 0.045);
  clip-path: var(--clip-card-shape);
  -webkit-clip-path: var(--clip-card-shape);
  pointer-events: none;
  z-index: 0;
}

.clip-card-shell::after {
  content: '';
  position: absolute;
  inset: 0.5px;
  clip-path: var(--clip-card-shape);
  -webkit-clip-path: var(--clip-card-shape);
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(17, 56, 89, 0.035), transparent 62%),
    linear-gradient(168deg, #ffffff 0%, rgba(17, 56, 89, 0.025) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  pointer-events: none;
  z-index: 0;
  transition: background 0.45s ease, box-shadow 0.45s ease;
}

.clip-card-shell:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 10px 28px rgba(17, 56, 89, 0.1));
}

.clip-card-shell:hover::after {
  background:
    radial-gradient(ellipse 85% 80% at 100% 0%, rgba(17, 56, 89, 0.05), transparent 65%),
    linear-gradient(168deg, #ffffff 0%, rgba(17, 56, 89, 0.04) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

@media (prefers-reduced-motion: reduce) {
  .clip-card-shell {
    transition: none;
  }

  .clip-card-shell:hover {
    transform: none;
    filter: none;
  }
}
