/* Pricing — HSaaS */
.pricing__quote {
  margin: 64px auto;
  max-width: 820px;
  text-align: center;
  font-family: var(--font-humanist);
  font-style: italic;
  font-size: 28px;
  color: var(--fg-warm);
  line-height: 1.4;
  padding: 0 24px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  padding-top: 20px;       /* space so the elevated tile's tab doesn't clip */
}
@media (max-width: 960px){ .pricing { grid-template-columns: 1fr; } }

.ptile {
  position: relative;
  background: rgba(10,10,15,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 20px;
  min-height: 480px;
}
.ptile--featured {
  transform: translateY(-20px);
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px rgba(0,255,255,0.35), 0 0 40px rgba(0,255,255,0.25), inset 0 0 30px rgba(0,255,255,0.06);
}
@media (max-width: 960px){ .ptile--featured { transform: none; } }

.ptile__tab {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: #000;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  box-shadow: var(--glow-cyan-md);
  white-space: nowrap;
}

.ptile__title {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  margin: 0;
}
.ptile__title--green { color: var(--green); text-shadow: var(--text-glow-green); }
.ptile__title--cyan  { color: var(--cyan);  text-shadow: var(--text-glow-cyan); }

.ptile__price {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--fg-1);
  line-height: 1;
}

.ptile__feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.ptile__feats li {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-1);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.ptile__feats li::before {
  content: ">";
  position: absolute; left: 0; top: 0;
  font-weight: 700;
}
.ptile--green .ptile__feats li::before { color: var(--green); }
.ptile--cyan  .ptile__feats li::before { color: var(--cyan); }

.ptile__cta { margin-top: auto; }
.ptile__cta .btn { width: 100%; }
