/* ═══════════════════════════════════════════════════════════════════
   THE COMPASS PRO — 3-tier pricing + upgrade + locked nav
   ═══════════════════════════════════════════════════════════════════ */

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.tier-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--sapphire);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.tier-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.tier-card.featured {
  border-top-color: var(--gold);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.tier-card.featured:hover { transform: scale(1.02) translateY(-3px); }
.tier-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sapphire);
  margin-bottom: 12px;
}
.tier-eyebrow.gold { color: var(--gold); }
.tier-name {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--midnight);
  margin-bottom: 4px;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
}
.tier-dollar {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--charcoal);
  font-weight: 600;
}
.tier-number {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--midnight);
  font-weight: 700;
  line-height: 1;
}
.tier-unit {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
}
.tier-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.tier-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.5;
}
.tier-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.tier-list li.plus {
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px dashed var(--line);
}
.tier-list li.plus::before { content: "+"; color: var(--sapphire); font-size: 18px; top: 14px; }

/* Locked nav items */
.locked-link {
  color: var(--muted) !important;
  cursor: pointer;
  opacity: 0.8;
}
.locked-link:hover {
  color: var(--gold) !important;
  opacity: 1;
}
.lock {
  font-size: 11px;
  margin-left: 2px;
}

/* Mobile */
@media (max-width: 900px) {
  .tier-card.featured { transform: none; }
  .tier-card.featured:hover { transform: translateY(-3px); }
}

/* ─── Dev-only tier switcher bar ─── */
.dev-bar {
  background: #1a1a1a;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  flex-wrap: wrap;
  border-bottom: 2px dashed var(--gold);
}
.dev-label {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.2em;
}
.dev-current { color: #ccc; }
.dev-current b { color: var(--gold); }
.dev-links { display: flex; gap: 6px; margin-left: auto; }
.dev-btn {
  padding: 4px 10px;
  background: #333;
  color: #ccc;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid #444;
  font-size: 11px;
  transition: all 0.15s ease;
}
.dev-btn:hover { background: #444; color: #fff; border-color: var(--gold); }
.dev-btn.active { background: var(--gold); color: #000; border-color: var(--gold); }
.dev-btn.active:hover { background: var(--gold-hover); }
