/* ✅ Shared card look (applies to ALL cards) */
.card {
  background-color: #0c122a;
  border: 1px solid #2b2834;
  border-radius: 16px;

  padding: 28px;
  box-sizing: border-box;
  text-align: center;

  box-shadow: 0 0 18px rgba(43, 40, 52, 0.55);
}
/* ✅ First card dark navy (no gradient) */
.card--hero {
  background-color: #0a0c16;
  border: 1px solid rgba(176, 176, 215, 0.22);
}

/* Cards stack nicely inside container (layout gap handles spacing) */
.card + .card {
  margin-top: 0;
}

.card h1 {
  margin: 0 0 10px 0;
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 44px;
  line-height: 1.1;
  color: #b0b0d7;
}

.card h3 {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 18px;

  color: #5f608c;
  opacity: 1;

  padding-bottom: 8px;
  border-bottom: 1px solid rgba(232, 232, 255, 0.22);
}

/* Desktop hover for normal cards only */
@media (hover: hover) {
  .card:not(.split-card):hover {
    box-shadow: 0 0 28px rgba(43, 40, 52, 0.75);
    transform: translateY(-2px);
    transition: box-shadow 180ms ease, transform 180ms ease;
  }
}
