/* ==========================================================================
   The People's Fund — Shared Design System
   Single source of truth. Every page inherits these tokens & components.
   Style: Minimalism / Swiss + Trust & Authority. Light-mode primary.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,500;1,8..60,400&display=swap');

/* ---- Design Tokens ------------------------------------------------------- */
:root {
  /* Brand */
  --ink:        #0B1220;  /* near-black, headings on light */
  --navy:       #15294D;  /* trust navy, dark sections */
  --navy-deep:  #0E1C36;  /* deeper navy gradient stop */
  --gold:       #C0A062;  /* soft gold accent */
  --gold-soft:  #D8C089;  /* lighter gold for dark-bg text */
  --gold-tint:  #F6F0E2;  /* faint gold wash for highlights */

  /* Neutrals */
  --white:      #FFFFFF;
  --bg:         #FFFFFF;
  --bg-soft:    #F5F6F8;  /* soft gray section */
  --bg-softer:  #FAFBFC;
  --border:     #E4E7EC;
  --border-strong: #D2D7DF;

  /* Text */
  --text:       #1D2433;  /* body on light */
  --text-muted: #5B6472;  /* muted body */
  --text-faint: #8A92A0;
  --text-on-dark:       #EDEFF3;
  --text-on-dark-muted: #A9B2C2;

  /* Type scale */
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;

  /* Spacing / shape */
  --radius:     14px;
  --radius-sm:  10px;
  --radius-lg:  22px;
  --maxw:       1180px;
  --shadow-sm:  0 1px 2px rgba(11,18,32,.04), 0 1px 3px rgba(11,18,32,.06);
  --shadow-md:  0 4px 16px rgba(11,18,32,.06), 0 2px 6px rgba(11,18,32,.04);
  --shadow-lg:  0 18px 50px rgba(11,18,32,.10), 0 8px 20px rgba(11,18,32,.06);
  --ease:       cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---- Typography --------------------------------------------------------- */
h1, h2, h3, h4 { color: var(--ink); line-height: 1.1; letter-spacing: -0.02em; font-weight: 600; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.25rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.075rem; font-weight: 600; }
p  { color: var(--text-muted); }
.serif { font-family: var(--font-serif); }

/* ---- Layout helpers ----------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(72px, 11vw, 130px); }
.section--tight { padding-block: clamp(56px, 8vw, 90px); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%); }
.section--dark, .section--dark p { color: var(--text-on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: var(--text-on-dark-muted); }

.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.section--dark .eyebrow { color: var(--gold-soft); }
.lead { font-size: clamp(1.075rem, 1.6vw, 1.3rem); line-height: 1.6; color: var(--text-muted); max-width: 62ch; }
.section--dark .lead { color: var(--text-on-dark-muted); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.measure { max-width: 65ch; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 500; font-size: .975rem;
  border: 1px solid transparent; transition: background .2s var(--ease), color .2s var(--ease),
  border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #b08f50; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-soft); }
.section--dark .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.28); }
.section--dark .btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; color: var(--navy); font-weight: 500; }
.link-arrow svg { transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }
.section--dark .link-arrow { color: var(--gold-soft); }

/* ---- Navbar ------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 600; color: var(--ink); letter-spacing: -.01em; font-size: 1.05rem; }
.brand__mark { width: 30px; height: 30px; flex: none; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { font-size: .95rem; color: var(--text-muted); font-weight: 500; transition: color .18s var(--ease); }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; background: none; border: 0; padding: 8px; color: var(--ink); }
@media (max-width: 860px) {
  .nav__links, .nav__cta .btn-ghost { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__links.open {
    display: flex; position: absolute; top: 66px; left: 0; right: 0; flex-direction: column;
    gap: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 8px 24px 18px;
  }
  .nav__links.open a { padding: 14px 0; border-bottom: 1px solid var(--border); width: 100%; }
}

/* ---- Cards & grids ------------------------------------------------------ */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.card--hover:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card__icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--gold-tint); color: var(--navy); margin-bottom: 20px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .975rem; }
.card__num { font-family: var(--font-serif); font-size: 1.05rem; color: var(--gold); font-weight: 500; margin-bottom: 14px; }

/* Stats */
.stat__value { font-size: clamp(2.25rem, 4vw, 3rem); font-weight: 600; color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.section--dark .stat__value { color: var(--white); }
.stat__value .unit { color: var(--gold); }
.stat__label { margin-top: 10px; font-size: .95rem; color: var(--text-muted); }
.section--dark .stat__label { color: var(--text-on-dark-muted); }

/* Tier / pricing cards */
.tier {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px 30px; display: flex; flex-direction: column; position: relative;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.tier--featured { border-color: var(--gold); box-shadow: var(--shadow-lg); }
.tier__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.tier__name { font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); }
.tier__price { font-size: 2.75rem; font-weight: 600; color: var(--ink); letter-spacing: -.03em; margin-top: 14px; line-height: 1; }
.tier__price span { font-size: 1rem; font-weight: 400; color: var(--text-faint); letter-spacing: 0; }
.tier__for { font-size: .92rem; color: var(--text-muted); margin-top: 14px; min-height: 42px; }
.tier__list { list-style: none; padding: 0; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.tier__list li { display: flex; gap: 11px; font-size: .94rem; color: var(--text); line-height: 1.5; }
.tier__list svg { flex: none; width: 19px; height: 19px; color: var(--gold); margin-top: 2px; }
.tier .btn { margin-top: auto; }

/* Feature row (alternating) */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.feature-row + .feature-row { margin-top: clamp(56px, 8vw, 96px); }
.feature-row.reverse .feature-row__media { order: 2; }
@media (max-width: 820px) { .feature-row, .feature-row.reverse { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-row__media { order: 0; } }

/* Process steps */
.step { display: flex; gap: 20px; }
.step__num {
  flex: none; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy); color: var(--white); font-weight: 600; font-family: var(--font-serif);
}
.step h3 { margin-bottom: 6px; }

/* Pull quote */
.pullquote { font-family: var(--font-serif); font-size: clamp(1.6rem, 3.4vw, 2.6rem); line-height: 1.28; letter-spacing: -.01em; color: var(--white); font-weight: 400; }
.pullquote .em { color: var(--gold-soft); font-style: italic; }

/* Divider list (gaps) */
.gap-item { padding: 26px 0; border-top: 1px solid var(--border); display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: baseline; }
.gap-item:last-child { border-bottom: 1px solid var(--border); }
.gap-item__pct { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; color: var(--gold); letter-spacing: -.03em; min-width: 92px; }

/* ---- Forms -------------------------------------------------------------- */
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .9rem; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.field .req { color: var(--gold); }
.input, .select, .textarea {
  width: 100%; padding: 13px 15px; font-family: inherit; font-size: 1rem; color: var(--text);
  background: var(--white); border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(192,160,98,.18);
}
.textarea { resize: vertical; min-height: 120px; }
.field__error { display: none; color: #B4232A; font-size: .85rem; margin-top: 6px; }
.field.invalid .input, .field.invalid .select, .field.invalid .textarea { border-color: #B4232A; }
.field.invalid .field__error { display: block; }
.form-note { font-size: .85rem; color: var(--text-faint); }
.form-success {
  display: none; text-align: center; padding: 40px 24px;
}
.form-success.show { display: block; }
.form-success__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--gold-tint); color: var(--navy); display: grid; place-items: center; margin: 0 auto 22px; }
.form-success__icon svg { width: 32px; height: 32px; }

/* ---- Footer ------------------------------------------------------------- */
.footer { background: var(--ink); color: var(--text-on-dark-muted); padding-block: 64px 36px; }
.footer a { color: var(--text-on-dark-muted); transition: color .18s var(--ease); }
.footer a:hover { color: var(--white); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer .brand { color: var(--white); margin-bottom: 14px; }
.footer__col h5 { color: var(--white); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.footer__col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 11px; font-size: .94rem; }
.footer__legal { margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; color: var(--text-faint); line-height: 1.7; }
.footer__legal p + p { margin-top: 10px; }
.footer__bottom { margin-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; }

/* ---- Scroll reveal ------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .card--hover:hover, .tier:hover { transform: none !important; }
}

/* ==========================================================================
   Member Dashboard
   ========================================================================== */

/* Paywall / access gate overlay */
.paywall {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center;
  padding: 24px; background: rgba(11,18,32,.55); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.paywall[hidden] { display: none; }
.paywall__card {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  width: 100%; max-width: 440px; padding: 38px 34px; text-align: center;
  max-height: 92vh; overflow-y: auto;
}
.paywall__lock { width: 56px; height: 56px; border-radius: 50%; background: var(--gold-tint); color: var(--navy); display: grid; place-items: center; margin: 0 auto 20px; }
.paywall__lock svg { width: 28px; height: 28px; }
.paywall__plans { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; text-align: left; }
.plan-opt { display: flex; align-items: center; gap: 13px; padding: 15px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: border-color .18s var(--ease), background .18s var(--ease); }
.plan-opt:hover { border-color: var(--border-strong); }
.plan-opt input { accent-color: var(--gold); width: 18px; height: 18px; flex: none; }
.plan-opt.sel { border-color: var(--gold); background: var(--gold-tint); }
.plan-opt__name { font-weight: 600; color: var(--ink); font-size: .98rem; }
.plan-opt__price { margin-left: auto; font-weight: 600; color: var(--navy); white-space: nowrap; }
.paywall__note { font-size: .8rem; color: var(--text-faint); margin-top: 16px; line-height: 1.5; }

/* Dashboard shell */
.dash { background: var(--bg-soft); min-height: calc(100vh - 66px); padding-block: 36px 64px; }
.dash__head { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.dash__avatar {
  width: 64px; height: 64px; border-radius: 16px; flex: none; display: grid; place-items: center;
  background: linear-gradient(165deg, var(--navy), var(--navy-deep)); color: var(--gold-soft);
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600;
}
.dash__id h1 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.dash__id .dash__meta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 8px; }
.dash__head .dash__actions { margin-left: auto; display: flex; gap: 10px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; }
.chip--gold { background: var(--gold-tint); color: #8a6d2f; }
.chip--navy { background: rgba(21,41,77,.08); color: var(--navy); }
.chip--green { background: #E6F4EC; color: #1E7C46; }
.chip svg { width: 14px; height: 14px; }

/* Dashboard stat cards */
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 30px; }
@media (max-width: 900px) { .dash-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .dash-stats { grid-template-columns: 1fr; } }
.dash-stat { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; }
.dash-stat__label { font-size: .82rem; color: var(--text-muted); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.dash-stat__label svg { width: 16px; height: 16px; color: var(--gold); }
.dash-stat__value { font-size: 1.9rem; font-weight: 600; color: var(--ink); letter-spacing: -.03em; margin-top: 10px; line-height: 1; }
.dash-stat__sub { font-size: .82rem; color: var(--text-faint); margin-top: 7px; }

/* Dashboard layout grid */
.dash-grid { display: grid; grid-template-columns: 1.9fr 1fr; gap: 22px; align-items: start; }
@media (max-width: 920px) { .dash-grid { grid-template-columns: 1fr; } }
.panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.panel + .panel { margin-top: 22px; }
.panel__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; gap: 12px; }
.panel__head h2 { font-size: 1.2rem; letter-spacing: -.02em; }
.panel__head .link-arrow { font-size: .9rem; }

/* Deals table */
.deals { width: 100%; border-collapse: collapse; }
.deals th { text-align: left; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-faint); font-weight: 600; padding: 0 14px 12px; }
.deals td { padding: 16px 14px; border-top: 1px solid var(--border); vertical-align: middle; font-size: .92rem; }
.deals tr:hover td { background: var(--bg-softer); }
.deals .co { display: flex; align-items: center; gap: 12px; }
.deals .co__logo { width: 38px; height: 38px; border-radius: 9px; flex: none; display: grid; place-items: center; font-weight: 700; font-size: .85rem; color: var(--white); }
.deals .co__name { font-weight: 600; color: var(--ink); }
.deals .co__sub { font-size: .8rem; color: var(--text-faint); }
.dir { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; }
.dir svg { width: 14px; height: 14px; }
.dir--out { color: #1E7C46; }
.dir--in { color: var(--navy); }
.deal-status { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 600; padding: 4px 11px; border-radius: 999px; }
.deal-status--active { background: #E6F4EC; color: #1E7C46; }
.deal-status--pending { background: var(--gold-tint); color: #8a6d2f; }
.deal-status--closed { background: rgba(21,41,77,.08); color: var(--navy); }
.deals-cards { display: none; }
@media (max-width: 680px) {
  .deals-wrap { display: none; }
  .deals-cards { display: flex; flex-direction: column; gap: 14px; }
  .deal-card { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; }
  .deal-card__top { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
  .deal-card__row { display: flex; justify-content: space-between; font-size: .88rem; padding: 5px 0; }
  .deal-card__row span:first-child { color: var(--text-muted); }
  .deal-card__row span:last-child { font-weight: 600; color: var(--ink); }
}

/* Profile / detail list */
.detail-list { list-style: none; padding: 0; margin: 0; }
.detail-list li { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-top: 1px solid var(--border); font-size: .92rem; }
.detail-list li:first-child { border-top: 0; }
.detail-list .k { color: var(--text-muted); }
.detail-list .v { font-weight: 600; color: var(--ink); text-align: right; }

/* Connections / network list */
.conn { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--border); }
.conn:first-child { border-top: 0; }
.conn__logo { width: 36px; height: 36px; border-radius: 9px; flex: none; display: grid; place-items: center; color: var(--white); font-weight: 700; font-size: .8rem; }
.conn__name { font-weight: 600; color: var(--ink); font-size: .92rem; }
.conn__sub { font-size: .8rem; color: var(--text-faint); }

/* Event / activity item */
.activity { display: flex; gap: 13px; padding: 13px 0; border-top: 1px solid var(--border); }
.activity:first-child { border-top: 0; }
.activity__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex: none; }
.activity__text { font-size: .9rem; color: var(--text); }
.activity__text b { color: var(--ink); font-weight: 600; }
.activity__time { font-size: .78rem; color: var(--text-faint); margin-top: 3px; }

/* Progress bar (return multiple) */
.bar { height: 7px; background: var(--border); border-radius: 999px; overflow: hidden; margin-top: 6px; }
.bar__fill { height: 100%; background: var(--gold); border-radius: 999px; }

/* ---- Vertical rhythm fixes ----------------------------------------------
   The global `* { margin: 0 }` reset strips default spacing between stacked
   text elements, leaving some heading / paragraph groups too tight. Restore
   consistent breathing room in heading blocks and cards. Purely additive —
   these elements previously had zero margin. */
.section-head .badge-pill { margin-bottom: 20px; }
.section-head h1,
.section-head h2,
.section-head h3 { margin-bottom: 18px; }
.card h4 { margin-bottom: 8px; }

/* Utilities */
.center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 44px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-row.center { justify-content: center; }
.badge-pill { display:inline-flex; align-items:center; gap:8px; padding:7px 15px; border-radius:999px; background:var(--gold-tint); color:var(--navy); font-size:.83rem; font-weight:600; }
