/* ============================================================================
   hosting-marketing.css — /hosting page plan-comparison cards.
   Reuses the site's design tokens (tokens.css). Native to the pg-* page system.
   ============================================================================ */

.hm-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.hm-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  background: var(--canvas-paper, #fff);
  border: 1px solid var(--ink-line);
  border-radius: 14px;
  transition: transform .25s var(--ease, ease), box-shadow .25s ease, border-color .25s ease;
}
.hm-plan:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 16px 40px rgba(11, 15, 31, 0.10);
}

.hm-plan-feat {
  border-color: var(--ink);
  box-shadow: 0 12px 36px rgba(11, 15, 31, 0.12);
}
.hm-plan-feat::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 14px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1.5px var(--lime, #C7F848);
}

.hm-plan-badge {
  position: absolute;
  top: -11px; left: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--lime, #C7F848);
  color: var(--ink, #0B0F1F);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.hm-plan-name {
  font-family: var(--font-display, "Pixelify Sans");
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 4px;
}

.hm-plan-price {
  font-family: var(--font-display, "Pixelify Sans");
  font-size: 38px;
  line-height: 1;
  color: var(--ink);
  margin: 6px 0 2px;
}
.hm-plan-price span {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-mute);
  font-weight: 400;
}

.hm-plan-blurb {
  font-size: 13.5px;
  color: var(--ink-soft, #41465a);
  min-height: 38px;
  margin-bottom: 14px;
}

.hm-plan-specs {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.hm-plan-specs li {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft, #41465a);
  padding-left: 18px;
  position: relative;
}
.hm-plan-specs li::before {
  content: "›";
  position: absolute; left: 0;
  color: var(--lime-ink, #7a9a00);
  font-weight: 700;
}
.hm-plan-specs li b { color: var(--ink); }

.hm-plan-cta { width: 100%; justify-content: center; }

.hm-plan-foot {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-mute);
  text-align: center;
}
.hm-plan-foot a { color: var(--ink); text-decoration: underline; }
