/* ── membership.css ──────────────────────────────────────────────────────────
   Page-specific styles for membership.html
   No overlap with base.css — all mb-* and table modifier classes are unique.
   ──────────────────────────────────────────────────────────────────────────── */

/* ── Hero section ────────────────────────────────────────────────────────── */
.mb-hero {
  text-align: center;
  padding: 60px 20px 48px;
}
.mb-hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.mb-hero-sub {
  font-size: 1rem;
  color: var(--sand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.mb-hero-tagline {
  font-size: 0.95rem;
  color: #C8DFF0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Tier grid ───────────────────────────────────────────────────────────── */
.mb-tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 56px;
}
.mb-tier {
  background: #1E2F42;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 36px;
  position: relative;
}
.mb-tier.featured {
  border-color: rgba(232,184,75,0.5);
  box-shadow: 0 0 40px rgba(232,184,75,0.12);
}
.mb-tier-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.mb-tier-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.mb-tier-desc {
  font-size: 0.82rem;
  color: var(--sand);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ── Feature list (inside tier cards) ───────────────────────────────────── */
.mb-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.mb-feature-list li {
  font-size: 0.86rem;
  color: #C8DFF0;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.mb-feature-list li:last-child {
  border-bottom: none;
}
.mb-check {
  color: #4A9B7A;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.mb-x {
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
  font-size: 0.9rem;
}

/* ── Section wrapper ─────────────────────────────────────────────────────── */
.mb-section {
  max-width: 1100px;
  margin: 0 auto 56px;
}
.mb-section-title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(232,184,75,0.2);
}

/* ── Feature deep-dive cards ─────────────────────────────────────────────── */
.mb-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mb-feature-card {
  background: #1E2F42;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
  padding: 26px 24px;
}
.mb-feature-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.mb-feature-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.mb-feature-body {
  font-size: 0.82rem;
  color: var(--sand);
  line-height: 1.7;
}

/* ── Comparison table ────────────────────────────────────────────────────── */
.mb-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.mb-compare-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  border-bottom: 2px solid rgba(232,184,75,0.2);
}
.mb-compare-table th.col-premium {
  color: var(--gold);
}
.mb-compare-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: #C8DFF0;
}
.mb-compare-table tr:last-child td {
  border-bottom: none;
}
.mb-compare-table td.col-feature {
  color: #ffffff;
  font-weight: 500;
}
.mb-compare-table td.check {
  color: #4A9B7A;
  text-align: center;
  font-size: 1rem;
}
.mb-compare-table td.cross {
  color: rgba(255,255,255,0.2);
  text-align: center;
  font-size: 1rem;
}
.mb-compare-table td.partial {
  color: #E8B84B;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
}
.mb-compare-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

/* ── CTA block ───────────────────────────────────────────────────────────── */
.mb-cta {
  text-align: center;
  padding: 48px 40px;
  background: #1E2F42;
  border: 1px solid rgba(232,184,75,0.2);
  border-radius: 4px;
  max-width: 700px;
  margin: 0 auto 56px;
}
.mb-cta-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.mb-cta-sub {
  font-size: 0.88rem;
  color: var(--sand);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ── Disclaimer ──────────────────────────────────────────────────────────── */
.mb-disclaimer {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
  padding: 0 20px;
}

/* ── Light theme overrides ───────────────────────────────────────────────── */
body[data-theme="light"] .mb-tier        { background: #ffffff; }
body[data-theme="light"] .mb-feature-card { background: #ffffff; }
body[data-theme="light"] .mb-cta          { background: #ffffff; }
body[data-theme="light"] .mb-tier-name    { color: #0D1B2A; }
body[data-theme="light"] .mb-feature-title { color: #0D1B2A; }
body[data-theme="light"] .mb-cta-title    { color: #0D1B2A; }
body[data-theme="light"] .mb-compare-table td            { color: #3A5570; }
body[data-theme="light"] .mb-compare-table td.col-feature { color: #0D1B2A; }
body[data-theme="light"] .mb-hero-title   { color: #0D1B2A; }
body[data-theme="light"] .mb-hero-tagline { color: #3A5570; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .mb-tier-grid    { grid-template-columns: 1fr; }
  .mb-feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .mb-feature-grid { grid-template-columns: 1fr; }
}
