/* MemberDex marketing site — shared design system */

:root {
  --bg: #ffffff;
  --surface: #f8fafc;
  --surface-2: #f1f5f9;
  --text: #0f172a;
  --text-soft: #1e293b;
  --muted: #475569;
  --muted-2: #64748b;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --brand: #4f46e5;
  --brand-700: #4338ca;
  --brand-50: #eef2ff;
  --accent: #06b6d4;
  --violet: #7c3aed;
  --success: #10b981;
  --warn: #f59e0b;
  --danger: #ef4444;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(64px, 9vw, 120px);
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 120ms ease;
}
a:hover { color: var(--brand-700); }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

p { margin: 0; }

ul, ol { margin: 0; padding-left: 1.25rem; }
li { color: var(--muted); }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: var(--surface-2);
  border-radius: 6px;
  padding: 2px 6px;
  color: var(--text-soft);
}

/* Layout primitives */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.section--tight {
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(40px, 6vw, 64px);
}

.section--surface { background: var(--surface); }
.section--gradient {
  background:
    radial-gradient(900px 500px at 85% -20%, rgba(124, 58, 237, 0.08), transparent 60%),
    radial-gradient(800px 500px at -10% -10%, rgba(79, 70, 229, 0.10), transparent 60%),
    var(--bg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-50);
  border-radius: 999px;
  padding: 6px 12px;
}

.lede {
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 19px);
  max-width: 62ch;
  line-height: 1.6;
}

h1 { font-size: clamp(36px, 5.5vw, 60px); letter-spacing: -0.03em; }
h2 { font-size: clamp(28px, 3.6vw, 42px); }
h3 { font-size: clamp(20px, 2.2vw, 24px); }
h4 { font-size: 17px; letter-spacing: -0.01em; }

.section-title {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(32px, 5vw, 56px);
  max-width: 760px;
}

.section-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 80ms ease, background 120ms ease, border-color 120ms ease, color 120ms ease, box-shadow 120ms ease;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, var(--shadow-md);
}
.btn--primary:hover { background: var(--brand-700); color: #fff; }

.btn--secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--secondary:hover { border-color: var(--text); color: var(--text); }

.btn--ghost {
  background: transparent;
  color: var(--text);
}
.btn--ghost:hover { background: var(--surface); }

.btn--lg { padding: 14px 24px; font-size: 16px; border-radius: 12px; }
.btn--sm { padding: 8px 14px; font-size: 14px; border-radius: 8px; }

.btn--block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--text); }

.brand__logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--violet) 100%);
  position: relative;
  flex: 0 0 auto;
  box-shadow: 0 2px 6px rgba(79, 70, 229, 0.35);
}
.brand__logo::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 4px;
  background:
    linear-gradient(180deg, transparent 0 30%, #fff 30% 36%, transparent 36% 50%, #fff 50% 56%, transparent 56% 70%, #fff 70% 76%, transparent 76%);
  opacity: 0.95;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  color: var(--text-soft);
  font-weight: 500;
  font-size: 14.5px;
}
.nav a:hover { color: var(--brand); }

.site-header__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--text);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after  { top:  6px; }

@media (max-width: 920px) {
  .nav, .site-header__cta .btn--primary { display: none; }
  .menu-toggle { display: inline-flex; }
}

.mobile-drawer {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 20px var(--gutter) 32px;
  z-index: 49;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-drawer a {
  display: block;
  padding: 12px 0;
  font-size: 17px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-drawer .btn { margin-top: 16px; }

body.menu-open .mobile-drawer { display: flex; }
body.menu-open { overflow: hidden; }

/* Hero */
.hero {
  padding-top: clamp(40px, 7vw, 88px);
  padding-bottom: clamp(40px, 6vw, 80px);
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.hero__copy h1 { margin-top: 16px; }
.hero__copy .lede { margin-top: 18px; }

.hero__cta {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero__meta {
  display: flex;
  gap: 18px 28px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14.5px;
}
.hero__meta li { list-style: none; display: inline-flex; gap: 8px; align-items: center; }
.hero__meta svg { color: var(--success); flex: 0 0 auto; }

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone {
  position: relative;
  width: clamp(240px, 32vw, 340px);
  aspect-ratio: 1290 / 2796;
  background: #0b1020;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.45), 0 0 0 6px #1e293b inset;
}
.phone__notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 28px;
  background: #0b1020;
  border-radius: 999px;
  z-index: 2;
}
.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--surface-2);
  position: relative;
}
.phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__halo {
  position: absolute;
  inset: -20% -10% -10% -10%;
  background:
    radial-gradient(closest-side, rgba(79, 70, 229, 0.20), transparent 70%),
    radial-gradient(closest-side, rgba(124, 58, 237, 0.18) 30%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; margin-bottom: 8px; }
}

/* Trust strip */
.trust {
  padding: 28px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
}
.trust__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
  color: var(--text-soft);
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.pillar {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}
.pillar h3 { margin-bottom: 8px; }
.pillar p { color: var(--muted); }

@media (max-width: 820px) {
  .pillars { grid-template-columns: 1fr; }
}

/* Feature grid */
.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 120ms ease, transform 120ms ease, box-shadow 120ms ease;
}
.feature-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-50), #f5f3ff);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid #e0e7ff;
}
.feature-card h3 { font-size: 19px; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 15.5px; }

@media (max-width: 900px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 28px 28px 28px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; font-size: 19px; }
.step p { color: var(--muted); }

@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* Pricing */
.pricing-toggle {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 32px;
}
.pricing-toggle button {
  border: 0;
  background: transparent;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
}
.pricing-toggle button.active {
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.pricing-toggle__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.pricing-toggle__sub {
  color: var(--muted);
  font-size: 14px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.pricing--six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.plan {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: border-color 120ms ease, box-shadow 120ms ease, transform 120ms ease;
}
.plan:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.plan--featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}
.plan--featured:hover { box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.18), var(--shadow-lg); }
.plan__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-50);
  padding: 4px 10px;
  border-radius: 999px;
}
.plan__name { font-weight: 700; font-size: 18px; }
.plan__limit { color: var(--muted); font-size: 14.5px; margin-top: -8px; }
.plan__price {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan__price small {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}
.plan__price-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: -8px;
}
.plan__price-was {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
  margin-top: -8px;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.plan li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--text-soft);
  font-size: 14.5px;
}
.plan li svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--success);
}
.plan .btn { margin-top: auto; }

@media (max-width: 1000px) {
  .pricing, .pricing--six { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .pricing, .pricing--six { grid-template-columns: 1fr; }
}

.discount-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, var(--brand-50), #f5f3ff);
  border: 1px solid #e0e7ff;
  border-radius: var(--radius-lg);
}
.discount-band > div { text-align: center; }
.discount-band strong {
  display: block;
  font-size: 22px;
  color: var(--brand-700);
  letter-spacing: -0.01em;
}
.discount-band span { color: var(--muted); font-size: 14px; }
@media (max-width: 720px) {
  .discount-band { grid-template-columns: 1fr; }
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
}
.faq__q::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 150ms ease;
  flex: 0 0 auto;
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg); }
.faq__a {
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 15.5px;
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(800px 300px at 0% 0%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(800px 300px at 100% 100%, rgba(255,255,255,0.12), transparent 60%),
    linear-gradient(135deg, var(--brand) 0%, var(--violet) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); margin-top: 10px; }
.cta-band .btn--primary { background: #fff; color: var(--brand); }
.cta-band .btn--primary:hover { background: #f5f3ff; color: var(--brand-700); }
.cta-band .btn--secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.cta-band .btn--secondary:hover { border-color: #fff; color: #fff; }
.cta-band__buttons { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 800px) {
  .cta-band { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  color: var(--muted);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}
.site-footer h4 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 8px; }
.site-footer li a { color: var(--muted); }
.site-footer li a:hover { color: var(--text); }
.site-footer__legal {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 13.5px;
}
.site-footer__legal a { color: var(--muted); }
.site-footer__legal a:hover { color: var(--text); }
@media (max-width: 800px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* Card / form components */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
}
.card--narrow { max-width: 520px; margin: 0 auto; }
.card--wide { max-width: 720px; margin: 0 auto; }

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}
.field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.18);
}
.field textarea { min-height: 110px; resize: vertical; }
.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field--row .field { margin: 0; }
@media (max-width: 600px) { .field--row { grid-template-columns: 1fr; } }

.note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--muted);
}

/* Help / docs */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.doc-card {
  display: block;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  transition: border-color 120ms ease, transform 120ms ease, box-shadow 120ms ease;
}
.doc-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--text);
}
.doc-card h3 { font-size: 18px; margin-bottom: 6px; }
.doc-card p { color: var(--muted); font-size: 14.5px; }
@media (max-width: 900px) { .doc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .doc-grid { grid-template-columns: 1fr; } }

.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { margin-bottom: 8px; }
.prose .lede { margin-bottom: 32px; }
.prose h2 { margin: 36px 0 14px; font-size: 26px; }
.prose h3 { margin: 24px 0 10px; font-size: 19px; }
.prose p { color: var(--muted); margin: 14px 0; font-size: 16px; }
.prose ul { color: var(--muted); margin: 14px 0; padding-left: 1.4rem; }
.prose li { margin: 6px 0; color: var(--muted); }
.prose strong { color: var(--text); }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.prose .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}
.prose .back-link:hover { color: var(--brand); }

/* Comparison table */
.compare {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare th, .compare td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
.compare th {
  background: var(--surface);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.compare tbody tr:last-child td { border-bottom: 0; }
.compare td.center, .compare th.center { text-align: center; }

/* Persona tile */
.personas {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.persona {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
}
.persona__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand-50);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.persona h4 { font-size: 15px; margin-bottom: 4px; }
.persona p { color: var(--muted); font-size: 13.5px; line-height: 1.5; }
@media (max-width: 900px) { .personas { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .personas { grid-template-columns: 1fr; } }

/* Login landing */
.login-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.login-option {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.login-option h3 { font-size: 17px; }
.login-option p { color: var(--muted); font-size: 14.5px; }
@media (max-width: 600px) { .login-options { grid-template-columns: 1fr; } }

/* Misc */
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  position: static;
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  margin: 8px;
}

.center { text-align: center; }

.divider { height: 1px; background: var(--border); margin: 32px 0; }

.ribbon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.02em;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
  html { scroll-behavior: auto; }
}
