.showcase-head p {
  max-width: 78ch;
  color: var(--text-muted);
  margin: 0.25rem 0 0;
}

.showcase-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.showcase-card {
  position: relative;
  border: 1px solid var(--stroke-1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(900px 320px at 12% 0%, rgba(0, 139, 191, 0.14), transparent 55%),
    radial-gradient(700px 280px at 92% 12%, rgba(0, 92, 126, 0.10), transparent 55%),
    linear-gradient(180deg, var(--surface-1), var(--surface-2));
  box-shadow: var(--shadow-card);
  padding: 1.25rem 1.25rem 1.15rem;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out);
  transform-style: preserve-3d;
}

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

.showcase-card:hover {
  transform: translateY(-4px) rotateX(1deg);
  border-color: rgba(0, 139, 191, 0.26);
  box-shadow: 0 20px 64px rgba(0, 46, 63, 0.18);
}

.showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.showcase-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 46, 63, 0.12);
  background: rgba(255, 255, 255, 0.66);
  color: rgba(0, 46, 63, 0.78);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.showcase-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(0, 46, 63, 0.14);
  background:
    conic-gradient(from 140deg, rgba(0, 139, 191, 0.95), rgba(0, 92, 126, 0.9), rgba(212, 175, 55, 0.85), rgba(0, 139, 191, 0.95));
  box-shadow: 0 16px 40px rgba(0, 46, 63, 0.18);
  position: relative;
  overflow: hidden;
  --icon-color: rgba(7, 24, 37, 0.86);
  --icon-mask: none;
}

.showcase-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--icon-color);
  opacity: 0.92;
  transform: translateZ(12px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  -webkit-mask: var(--icon-mask) center / contain no-repeat;
  mask: var(--icon-mask) center / contain no-repeat;
}

@supports not ((mask: url("x") center / contain no-repeat) or (-webkit-mask: url("x") center / contain no-repeat)) {
  .showcase-icon::before {
    border-radius: 999px;
    width: 12px;
    height: 12px;
    opacity: 0.9;
  }
}

.showcase-icon::after {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(closest-side, rgba(255, 255, 255, 0.78), transparent 62%),
    radial-gradient(closest-side, rgba(0, 46, 63, 0.18), transparent 70%);
  transform: rotate(12deg);
  opacity: 0.75;
}

.showcase-icon--ops {
  filter: saturate(1.05);
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 8.2a3.8 3.8 0 1 0 0 7.6 3.8 3.8 0 0 0 0-7.6Zm9 4.3v-1l-2.1-.6a7.7 7.7 0 0 0-.8-1.8l1.2-1.9-.7-.7-1.9 1.2a7.7 7.7 0 0 0-1.8-.8L13.5 3h-1l-.6 2.1a7.7 7.7 0 0 0-1.8.8L8.2 4.7l-.7.7 1.2 1.9a7.7 7.7 0 0 0-.8 1.8L5.8 11.5H4.8v1l2.1.6c.2.6.5 1.2.8 1.8l-1.2 1.9.7.7 1.9-1.2c.6.3 1.2.6 1.8.8l.6 2.1h1l.6-2.1c.6-.2 1.2-.5 1.8-.8l1.9 1.2.7-.7-1.2-1.9c.3-.6.6-1.2.8-1.8l2.1-.6Z'/%3E%3C/svg%3E");
}

.showcase-icon--procurement {
  filter: saturate(0.98) hue-rotate(-6deg);
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 18a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm10 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM6.2 6H21l-1.7 8.2a2 2 0 0 1-2 1.6H9a2 2 0 0 1-2-1.6L5.4 2H2v2h1.9L6.2 16H19v-2H7.2L6.7 12h11.3l1-4.8H6.4l-.2-1.2Z'/%3E%3C/svg%3E");
}

.showcase-icon--comms {
  filter: saturate(1.1) hue-rotate(8deg);
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H9l-5 3v-3H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm3 5h10v2H7V9Zm0 4h7v2H7v-2Z'/%3E%3C/svg%3E");
}

.showcase-icon--shield {
  filter: saturate(0.98) hue-rotate(-14deg);
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 20 6v7c0 5-3.4 9.4-8 11-4.6-1.6-8-6-8-11V6l8-4Zm0 3.2L6 7.8V13c0 3.6 2.2 6.9 6 8.7 3.8-1.8 6-5.1 6-8.7V7.8l-6-2.6Z'/%3E%3C/svg%3E");
}

.showcase-icon--upgrade {
  filter: saturate(1.12) hue-rotate(16deg);
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3 5 10h4v8h6v-8h4l-7-7Zm-7 18v-2h14v2H5Z'/%3E%3C/svg%3E");
}

.showcase-icon--northstar {
  filter: saturate(1.05) hue-rotate(28deg);
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 2 2.6 6.8L22 12l-7.4 3.2L12 22l-2.6-6.8L2 12l7.4-3.2L12 2Zm0 5.4-1.2 3.1-3.4 1.5 3.4 1.5L12 16.6l1.2-3.1 3.4-1.5-3.4-1.5L12 7.4Z'/%3E%3C/svg%3E");
}

.showcase-title {
  margin: 0.95rem 0 0.35rem;
  font-size: 1.15rem;
  line-height: 1.15;
  color: var(--text-strong);
  letter-spacing: -0.02em;
}

.showcase-body {
  margin: 0;
  color: var(--text);
}

.showcase-bullets {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: rgba(0, 46, 63, 0.82);
}

.showcase-bullets li {
  margin: 0.25rem 0;
}

.showcase-actions {
  margin-top: 1rem;
}
