/* ── the tier table ──────────────────────────────────────────────── */
.tier-grid { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.tier {
  background: linear-gradient(135deg, rgba(26, 26, 38, 0.7) 0%, rgba(18, 18, 26, 0.9) 100%);
  border: 1px solid rgba(192, 192, 192, 0.15);
  border-radius: 16px; padding: 1.4rem;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.tier.featured { border-color: rgba(212, 175, 55, 0.55); box-shadow: 0 0 28px rgba(212, 175, 55, 0.12); }
.tier.current  { border-color: rgba(0, 229, 255, 0.6); }

.tier-head { display: flex; align-items: baseline; justify-content: space-between; gap: 0.8rem; flex-wrap: wrap; }
.tier-name {
  font-family: 'Orbitron', monospace;
  font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-primary);
}
.tier-price { font-family: 'Orbitron', monospace; font-size: 1.5rem; font-weight: 700; color: var(--accent-gold); white-space: nowrap; }
.tier-price .per { font-size: 0.7rem; color: var(--text-secondary); font-weight: 400; letter-spacing: 0.05em; }

.tier-badge {
  padding: 0.2rem 0.6rem; border-radius: 12px;
  font-family: 'Orbitron', monospace; font-size: 0.55rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  background: rgba(0, 229, 255, 0.18); color: var(--accent-cyan);
  border: 1px solid rgba(0, 229, 255, 0.45);
}

.tier-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.tier-list li {
  color: var(--text-secondary); font-size: 0.88rem;
  padding-left: 1.3rem; position: relative;
}
.tier-list li::before {
  content: '▸'; position: absolute; left: 0; top: 0;
  color: var(--accent-gold); font-size: 0.8rem;
}
.tier-list li.muted { color: rgba(154, 154, 170, 0.6); }
.tier-list li.muted::before { content: '·'; color: rgba(154, 154, 170, 0.5); }

/* the buy control — 44px finger floor, which the sweep measures and enforces */
.tier-cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0.7rem 1.4rem;
  border: 1px solid rgba(192, 192, 192, 0.25); border-radius: 25px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.22), rgba(212, 175, 55, 0.22));
  color: var(--text-primary);
  font-family: 'Orbitron', monospace; font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  text-decoration: none; cursor: pointer;
  transition: all 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.tier-cta:active { transform: scale(0.98); }
.tier-cta[disabled] { opacity: 0.45; cursor: default; }
.tier-cta[data-loading] { opacity: 0.6; pointer-events: none; }
@media (hover: hover) and (pointer: fine) {
  .tier-cta:hover:not([disabled]) {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 18px rgba(230, 57, 70, 0.3);
  }
}

.tier-note { color: rgba(154, 154, 170, 0.85); font-size: 0.78rem; line-height: 1.45; }

