/* membership.css — Styles for the /membership researcher program page.
   Owns: layout, pricing cards, benefit sections, feature grid.
   Does NOT own: global brand tokens (see theme.css). */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: #0B1F3A;
  color: #FAFAF8;
  font-family: 'Figtree', sans-serif;
  min-height: 100vh;
}

/* ── Nav ── */
.m-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,31,58,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,132,10,0.1);
  padding: 1rem clamp(1.5rem, 5vw, 4rem);
  display: flex; align-items: center; justify-content: space-between;
}
.m-nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #FAFAF8;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.m-nav-logo span { color: #D4840A; }
.m-nav-links { display: flex; gap: 2rem; align-items: center; }
.m-nav-links a {
  font-size: 0.85rem;
  color: rgba(250,250,248,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.m-nav-links a:hover { color: #D4840A; }

/* ── Hero ── */
.m-hero {
  padding: clamp(4rem,8vw,7rem) clamp(1.5rem,5vw,4rem) clamp(3rem,6vw,5rem);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.m-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #D4840A;
  background: rgba(212,132,10,0.1);
  border: 1px solid rgba(212,132,10,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 2rem;
}
.m-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem,5vw,4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.m-headline em {
  font-style: normal;
  color: #D4840A;
}
.m-sub {
  font-size: 1.05rem;
  color: rgba(250,250,248,0.55);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.m-trust-bar {
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  flex-wrap: wrap;
  padding: 1.25rem 2rem;
  background: rgba(250,250,248,0.03);
  border: 1px solid rgba(212,132,10,0.12);
  border-radius: 10px;
  max-width: 720px;
  margin: 0 auto;
}
.m-trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: rgba(250,250,248,0.5);
  font-weight: 500;
}
.m-trust-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #D4840A;
  box-shadow: 0 0 6px #D4840A;
  flex-shrink: 0;
}

/* ── Pricing ── */
.m-pricing {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem,5vw,4rem) clamp(4rem,8vw,8rem);
}
.m-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.m-plan-card {
  background: rgba(250,250,248,0.025);
  border: 1px solid rgba(212,132,10,0.15);
  border-radius: 18px;
  padding: 2.5rem;
  display: flex; flex-direction: column;
  position: relative;
}
.m-plan-card.featured {
  border-color: #D4840A;
  background: rgba(212,132,10,0.05);
}
.m-plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: #D4840A; color: #0B1F3A;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 100px;
  white-space: nowrap;
}
.m-plan-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 1.3rem;
  margin-bottom: 0.35rem;
}
.m-plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.6rem; font-weight: 800;
  letter-spacing: -0.04em;
  color: #FAFAF8;
  display: flex; align-items: baseline; gap: 0.25rem;
}
.m-plan-price span {
  font-size: 1rem; font-weight: 400;
  color: rgba(250,250,248,0.4);
  letter-spacing: 0;
}
.m-plan-cycle {
  font-size: 0.78rem; color: rgba(250,250,248,0.35);
  margin-bottom: 1.5rem;
}
.m-plan-divider {
  height: 1px;
  background: rgba(212,132,10,0.1);
  margin-bottom: 1.75rem;
}
.m-plan-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.85rem;
  flex: 1;
}
.m-plan-features li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.88rem; color: rgba(250,250,248,0.65);
  line-height: 1.5;
}
.m-feat-check {
  flex-shrink: 0; margin-top: 1px;
  font-size: 1rem;
}
.m-feat-highlight { color: #D4840A; font-weight: 600; }
.m-plan-cta {
  display: block;
  padding: 0.9rem 1.5rem;
  background: #D4840A;
  color: #0B1F3A;
  font-family: 'Figtree', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  border-radius: 10px; text-align: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  margin-top: 2rem;
}
.m-plan-cta:hover { background: #e09012; transform: scale(1.01); }
.m-plan-cta-outline {
  background: transparent;
  color: #D4840A;
  border: 1px solid rgba(212,132,10,0.35);
}
.m-plan-cta-outline:hover { background: rgba(212,132,10,0.08); }

/* ── Benefits section ── */
.m-benefits {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(4rem,8vw,7rem) clamp(1.5rem,5vw,4rem);
  border-top: 1px solid rgba(212,132,10,0.08);
}
.m-section-label {
  text-align: center;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,250,248,0.35);
  margin-bottom: 1rem;
}
.m-section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem,3.5vw,2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 4rem;
}
.m-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.m-benefit-card {
  background: rgba(250,250,248,0.025);
  border: 1px solid rgba(212,132,10,0.1);
  border-radius: 14px;
  padding: 2rem 1.75rem;
}
.m-benefit-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.m-benefit-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: #FAFAF8;
}
.m-benefit-desc {
  font-size: 0.85rem;
  color: rgba(250,250,248,0.45);
  line-height: 1.65;
}

/* ── Comparison table ── */
.m-compare {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem,5vw,4rem) clamp(4rem,8vw,8rem);
  border-top: 1px solid rgba(212,132,10,0.08);
}
.m-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(212,132,10,0.15);
  border-radius: 14px;
  overflow: hidden;
}
.m-compare-table th {
  background: rgba(212,132,10,0.07);
  padding: 1rem 1.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  color: #FAFAF8;
  text-align: center;
}
.m-compare-table th:first-child {
  text-align: left;
  color: rgba(250,250,248,0.4);
  font-weight: 600;
}
.m-compare-table td {
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  color: rgba(250,250,248,0.5);
  border-top: 1px solid rgba(212,132,10,0.07);
  text-align: center;
}
.m-compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: rgba(250,250,248,0.7);
}
.m-compare-table tr:nth-child(even) td {
  background: rgba(250,250,248,0.015);
}
.m-compare-table tr:last-child td:first-child { border-bottom-left-radius: 14px; }
.m-compare-table tr:last-child td:last-child { border-bottom-right-radius: 14px; }
.m-check-yes { color: #D4840A; font-weight: 700; font-size: 1rem; }
.m-check-no { color: rgba(250,250,248,0.2); font-size: 1rem; }

/* ── CTA footer ── */
.m-cta-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem,5vw,4rem) clamp(5rem,10vw,10rem);
  text-align: center;
}
.m-cta-box {
  background: rgba(212,132,10,0.06);
  border: 1px solid rgba(212,132,10,0.2);
  border-radius: 18px;
  padding: clamp(2.5rem,5vw,4rem) clamp(2rem,5vw,4rem);
}
.m-cta-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem,3.5vw,2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.m-cta-sub {
  font-size: 0.95rem;
  color: rgba(250,250,248,0.5);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.m-cta-row {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
}
.m-btn-primary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: #D4840A;
  color: #0B1F3A;
  font-family: 'Figtree', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  border-radius: 10px; text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.m-btn-primary:hover { background: #e09012; transform: scale(1.01); }
.m-btn-secondary {
  display: inline-block;
  padding: 0.9rem 2rem;
  color: rgba(250,250,248,0.6);
  font-family: 'Figtree', sans-serif;
  font-weight: 500; font-size: 0.95rem;
  border-radius: 10px; text-decoration: none;
  border: 1px solid rgba(212,132,10,0.2);
  transition: color 0.2s, border-color 0.2s;
}
.m-btn-secondary:hover { color: #D4840A; border-color: rgba(212,132,10,0.5); }

/* ── Disclaimer ── */
.m-disclaimer {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(250,250,248,0.18);
  margin-top: 2rem;
  line-height: 1.65;
  padding: 0 2rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .m-pricing-grid { grid-template-columns: 1fr; }
  .m-benefits-grid { grid-template-columns: 1fr 1fr; }
  .m-compare-table { font-size: 0.78rem; }
  .m-compare-table td, .m-compare-table th { padding: 0.75rem 1rem; }
}
@media (max-width: 480px) {
  .m-benefits-grid { grid-template-columns: 1fr; }
  .m-trust-bar { flex-direction: column; gap: 0.75rem; }
}