/* =====================================================================
   5FIK public website. Own identity: gold / ink / cream, Plus Jakarta Sans,
   soft layered shadows, gold underline accents, textured dark hero.
   Separate from the portal's app.css on purpose.
   ===================================================================== */
:root {
  --ink: #101114;
  --ink-2: #1B1D23;
  --cream: #FAF6EE;
  --sand: #F1E7D2;
  --paper: #FFFFFF;
  --gold: #E5B457;
  --gold-2: #C8953A;
  --gold-soft: #F6E4B8;
  --teal: #1F5F5B;
  --teal-soft: #DCEBE8;
  --coral: #E8623A;
  --muted: #5E5A52;
  --muted-light: #B9B3A6;
  --line: #D9D0BE;
  --r: 20px;
  --r-sm: 12px;
  --maxw: 1140px;
  --ease: cubic-bezier(.22, .85, .3, 1);
  --shadow: 0 14px 34px rgba(16, 17, 20, .12), 0 2px 6px rgba(16, 17, 20, .06);
  --shadow-lg: 0 24px 60px rgba(16, 17, 20, .18), 0 4px 10px rgba(16, 17, 20, .06);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream); color: var(--ink); line-height: 1.65;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
b, strong { font-weight: 700; }
.wrap { width: min(var(--maxw), 100% - 40px); margin-inline: auto; }
.wrap.narrow { max-width: 800px; }
.center { text-align: center; }
.mt16 { margin-top: 16px; } .mt24 { margin-top: 24px; }
.y { color: var(--gold); }

/* ---- type ---------------------------------------------------------- */
h1, h2, h3 { font-weight: 800; letter-spacing: -.025em; line-height: 1.1; }
h1 { font-size: clamp(32px, 4.6vw, 58px); }
.h1-sm { font-size: clamp(30px, 4.2vw, 48px); }
h2 { font-size: clamp(27px, 3.6vw, 42px); margin: 14px 0 16px; }
.h2-sm { font-size: clamp(24px, 3vw, 32px); }
h3 { font-size: 21px; }
.sub { font-size: clamp(16px, 1.25vw, 18px); color: var(--muted); max-width: 640px; }
.sub-light { color: var(--muted-light); }
.center-sub { margin-inline: auto; }
.lead { font-size: clamp(17px, 1.45vw, 20px); color: var(--muted-light); max-width: 600px; }
/* brush-style underline instead of a boxed marker */
.hl {
  background-image: linear-gradient(transparent 62%, var(--gold) 62%, var(--gold) 92%, transparent 92%);
  padding: 0 .08em; white-space: normal;
}
.hl-teal { background-image: linear-gradient(transparent 62%, var(--teal-soft) 62%, var(--teal-soft) 92%, transparent 92%); }
.hl-coral { background-image: linear-gradient(transparent 62%, #F8CDBD 62%, #F8CDBD 92%, transparent 92%); }
.sec-ink .hl { background-image: linear-gradient(transparent 62%, var(--gold-2) 62%, var(--gold-2) 92%, transparent 92%); color: #fff; }
.rule { width: 72px; height: 4px; background: var(--gold); border-radius: 2px; margin: 22px 0; }
/* small square section badge instead of a giant outlined number */
.num {
  display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 14px;
  background: var(--ink); color: var(--gold); font-weight: 800; font-size: 18px; letter-spacing: .04em;
  margin-bottom: 18px;
}
.num-light { background: var(--gold); color: var(--ink); }
.note { display: flex; gap: 10px; align-items: center; font-size: 14px; font-weight: 500; margin-top: 16px; color: var(--muted-light); }
.note .dot { background: var(--gold); }

/* ---- tags & buttons ------------------------------------------------ */
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px;
  border: 1.5px solid var(--ink); border-radius: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: transparent; color: var(--ink); white-space: nowrap; line-height: 1.3;
}
.pill-xs { padding: 4px 8px; font-size: 10px; letter-spacing: .1em; }
.pill-ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.pill-yellow { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.pill-sky { background: var(--teal-soft); border-color: var(--teal-soft); color: var(--teal); }
.pill-purple { background: var(--gold-soft); border-color: var(--gold-soft); color: var(--ink); }
.pill-paper { background: var(--paper); border-color: var(--line); }
.pill-muted { background: var(--sand); border-color: var(--sand); color: var(--muted); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink); flex: none; display: inline-block; }
.pill-ink .dot, .dot-yellow { background: var(--gold) !important; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px; border: 1.5px solid var(--ink); border-radius: 999px;
  font-weight: 700; font-size: 15px; line-height: 1.2; cursor: pointer;
  background: var(--paper); color: var(--ink);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 17px 28px; font-size: 16px; }
.btn-sm { padding: 9px 15px; font-size: 13px; }
.btn-ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-ink span { color: var(--gold); }
.btn-yellow { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn-yellow:hover { background: var(--gold-2); border-color: var(--gold-2); }
.btn-paper { background: var(--paper); border-color: var(--line); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost-light:hover { border-color: #fff; box-shadow: none; background: rgba(255,255,255,.06); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.cta-row.center { justify-content: center; }
.pills-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; }

/* ---- backgrounds ---------------------------------------------------- */
/* dark hero: fine diagonal hatch + warm gold glow, no grid */
.bg-hero {
  background-color: var(--ink);
  background-image:
    radial-gradient(60% 55% at 85% 15%, rgba(229,180,87,.28), transparent 70%),
    radial-gradient(40% 40% at 10% 90%, rgba(31,95,91,.35), transparent 70%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 14px);
}
/* gold CTA band: soft dot texture */
.bg-dots {
  background-color: var(--gold);
  background-image: radial-gradient(rgba(16,17,20,.16) 1.4px, transparent 1.6px);
  background-size: 22px 22px;
}
.sec { padding: clamp(64px, 9vw, 120px) 0; }
.sec-cream { background: var(--cream); }
.sec-paper { background: var(--paper); }
.sec-sand { background: var(--sand); }
.sec-teal { background: var(--teal); color: #fff; }
.sec-teal .sub { color: rgba(255,255,255,.75); }
.sec-ink { background: var(--ink-2); color: #fff; }
.sec-ink .sub { color: rgba(255,255,255,.75); }
.sec-cta { padding: clamp(72px, 10vw, 130px) 0; }
.page-head { padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px); color: #fff; }
.page-head .sub { margin-top: 10px; color: var(--muted-light); }

/* ---- top bar + header ---------------------------------------------- */
.topbar {
  background: var(--gold); color: var(--ink); display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 10px 18px; padding: 9px 20px; font-size: 14px;
}
.topbar .pill { border-color: var(--ink); }
.topbar-text b { font-weight: 800; }
.topbar .btn { padding: 7px 14px; }
.site-head { background: var(--ink); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(255,255,255,.08); }
.head-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 72px; }
.brand img { height: 36px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { color: rgba(255,255,255,.85); font-weight: 600; font-size: 14.5px; }
.site-nav a:not(.btn):hover { color: var(--gold); }
.nav-toggle {
  display: none; width: 42px; height: 42px; background: transparent; border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 10px; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; align-items: center;
}
.nav-toggle span { width: 18px; height: 2px; background: #fff; border-radius: 2px; }

/* ---- hero ---------------------------------------------------------- */
.hero { padding: clamp(60px, 8vw, 110px) 0 clamp(56px, 8vw, 100px); color: #fff; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  grid-template-areas: "head viz" "body viz";
  gap: clamp(22px, 3vw, 32px) clamp(36px, 5vw, 64px); align-items: center; position: relative;
}
.hero-grid > * { min-width: 0; }
.hero-head { grid-area: head; }
.hero-head h1 { margin-top: 22px; }
.hero-head .pill { border-color: rgba(255,255,255,.4); color: #fff; }
.hero-body { grid-area: body; }
.hero-viz { grid-area: viz; position: relative; }
/* straight, staggered ticket list (no rotated fan) */
.stack { display: grid; gap: 14px; position: relative; }
.stack::before { content: ""; position: absolute; left: 22px; top: 18px; bottom: 18px; width: 2px; background: rgba(255,255,255,.14); }
.mini {
  position: relative; background: var(--paper); color: var(--ink); border-radius: var(--r);
  padding: 18px 18px 16px 18px; box-shadow: var(--shadow-lg); margin-left: 44px;
  transition: transform .35s var(--ease);
}
.mini::before { content: ""; position: absolute; left: -30px; top: 24px; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px var(--ink); }
.mini:nth-child(2) { margin-left: 64px; }
.mini:nth-child(3) { margin-left: 84px; }
.mini:hover { transform: translateX(6px); }
.mini-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.mini-price { font-weight: 800; font-size: 14px; color: var(--teal); }
.mini-title { font-weight: 800; font-size: 17px; line-height: 1.2; margin: 12px 0 4px; letter-spacing: -.01em; }
.mini-line { font-size: 12.5px; font-weight: 500; color: var(--muted); }
.mini-bar { height: 8px; border-radius: 999px; background: var(--sand); margin-top: 14px; overflow: hidden; }
.mini-bar i { display: block; height: 100%; background: var(--gold); }
.mini-foot { font-size: 11.5px; font-weight: 700; margin-top: 8px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-tags .pill-paper { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); color: #fff; }
.hero-tags .pill-paper .dot { background: var(--gold); }

/* ---- strip ---------------------------------------------------------- */
.bar-ink { background: var(--gold); color: var(--ink); }
.bar-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 22px; padding: 14px 0; font-weight: 600; font-size: 14.5px; }
.bar-row .y { color: var(--ink); font-weight: 800; }
.bar-row i { width: 5px; height: 5px; border-radius: 50%; background: rgba(16,17,20,.45); }
.bar-row .btn { margin-left: 8px; }

/* ---- proof card: team figures floating over the hero edge ---------- */
.proof { position: relative; z-index: 2; margin-top: -64px; }
.proof-card {
  position: relative; background: var(--paper); border-radius: 24px; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden;
}
.proof-card.cols-2 { grid-template-columns: repeat(2, 1fr); }
.proof-card.cols-1 { grid-template-columns: 1fr; }
.proof-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 6px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); }
.proof-head { grid-column: 1 / -1; padding: 26px 28px 0; }
.proof-item { position: relative; padding: 22px 28px 30px; }
.proof-item + .proof-item::before { content: ""; position: absolute; left: 0; top: 26px; bottom: 30px; width: 1px; background: var(--line); }
.proof-item i { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; background: var(--gold-soft); color: var(--gold-2); font-style: normal; font-weight: 800; font-size: 12px; letter-spacing: .04em; margin-bottom: 14px; }
.proof-item b { display: block; font-size: clamp(36px, 4.2vw, 56px); font-weight: 800; letter-spacing: -.04em; line-height: 1; color: var(--ink); }
.proof-item span { display: block; margin-top: 10px; font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-2); }
.proof-item small { display: block; margin-top: 8px; font-size: 13.5px; line-height: 1.55; color: var(--muted); }
/* the next (dark) section tucks under the card so it floats over dark on both sides */
.sec-ink.after-proof { margin-top: -220px; padding-top: 300px; }

/* ---- stats / callout ------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r); padding: 26px 24px 22px; }
.stat b { display: block; font-size: clamp(30px, 3.4vw, 44px); font-weight: 800; letter-spacing: -.03em; line-height: 1; margin-bottom: 10px; color: var(--gold); }
.stat span { font-size: 14.5px; color: rgba(255,255,255,.78); }
.callout { display: flex; gap: 18px; align-items: flex-start; background: rgba(255,255,255,.06); border-left: 4px solid var(--gold); border-radius: 0 var(--r) var(--r) 0; padding: 20px 22px; margin-top: 28px; max-width: 820px; }
.callout .pill { flex: none; margin-top: 2px; }
.callout p { font-size: 15px; color: rgba(255,255,255,.85); }

/* ---- campaign cards ------------------------------------------------ */
.cgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-top: 40px; }
.ccard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow);
  padding: 24px 24px 22px; display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.ccard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
/* gold corner tab in place of a full-width colour strip */
.ccard::before { content: ""; position: absolute; top: 0; right: 0; width: 64px; height: 64px; background: var(--gold); clip-path: polygon(100% 0, 0 0, 100% 100%); }
.ccard.tone-paper::before { background: var(--sand); }
.ccard-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-right: 36px; }
.ccard-price { font-weight: 800; font-size: 17px; letter-spacing: -.01em; color: var(--teal); }
.ccard-title { font-size: 21px; line-height: 1.2; }
.ccard-meta { list-style: none; display: grid; gap: 8px; font-size: 14px; }
.ccard-meta li { display: grid; grid-template-columns: 74px 1fr; gap: 10px; align-items: baseline; }
.ccard-meta b { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.seatbar { height: 8px; border-radius: 999px; background: var(--sand); overflow: hidden; margin-top: auto; }
.seatbar i { display: block; height: 100%; background: var(--gold); transition: width .8s var(--ease); }
.ccard-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.seats { font-size: 13.5px; font-weight: 500; color: var(--muted); }
.seats b { color: var(--ink); font-size: 16px; }
.ccard.is-past { opacity: .75; }
.ccard.is-past:hover { transform: none; box-shadow: var(--shadow); }
.empty { background: var(--paper); border: 1px dashed var(--line); border-radius: var(--r); padding: 40px 28px; margin-top: 32px; text-align: center; }
.empty h3 { margin: 16px 0 8px; }
.empty p { color: var(--muted); max-width: 520px; margin-inline: auto; }

/* ---- split sections (02, 03) --------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split.rev .split-text { order: 1; } .split.rev .split-viz { order: 2; }
.panel { background: var(--paper); color: var(--ink); border-radius: var(--r); box-shadow: var(--shadow-lg); padding: 24px; }
.checks { list-style: none; display: grid; gap: 10px; margin-top: 18px; }
.checks li { display: flex; gap: 14px; align-items: flex-start; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 13px 14px; background: var(--cream); }
.checks li.on { background: var(--gold-soft); border-color: var(--gold); }
.checks i { flex: none; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-style: normal; font-weight: 800; font-size: 12px; background: var(--ink); color: var(--gold); }
.checks b { display: block; font-size: 15px; }
.checks span { font-size: 13px; color: var(--muted); }
.panel-foot { display: flex; gap: 10px; align-items: center; margin-top: 18px; background: var(--teal); color: #fff; border-radius: 12px; padding: 12px 16px; font-size: 14px; font-weight: 600; }
.panel-foot .dot { background: var(--gold); }
.steps { display: grid; gap: 14px; margin-top: 30px; }
.step { display: flex; gap: 16px; align-items: flex-start; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: 20px 22px; }
.step i { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-style: normal; font-weight: 800; background: var(--gold); color: var(--ink); }
.step b { display: block; font-size: 17px; margin-bottom: 4px; }
.step p { font-size: 14.5px; color: var(--muted-light); }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feat { border-radius: var(--r); padding: 22px 20px; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; }
.feat::before { content: ""; display: block; width: 36px; height: 4px; border-radius: 2px; background: var(--gold); margin-bottom: 14px; }
.feat.tone-sky::before { background: var(--teal); } .feat.tone-mint::before { background: var(--coral); } .feat.tone-purple::before { background: var(--ink); }
.feat b { display: block; font-size: 17px; margin-bottom: 8px; line-height: 1.2; }
.feat span { font-size: 14px; color: var(--muted); }

/* ---- faq ------------------------------------------------------------ */
.faq { display: grid; gap: 0; margin-top: 30px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 0 4px; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 0; font-weight: 700; font-size: 16.5px; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; background: var(--gold); color: var(--ink); }
.faq details[open] summary::after { content: "–"; background: var(--ink); color: var(--gold); }
.faq details p { padding: 0 0 20px; color: var(--ink); font-size: 15px; line-height: 1.7; max-width: 700px; }

/* ---- footer -------------------------------------------------------- */
.site-foot { background: var(--ink); color: #fff; padding: 56px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.foot-logo { height: 38px; width: auto; margin-bottom: 16px; }
.foot-copy { color: var(--muted-light); font-size: 14px; max-width: 420px; }
.foot-links { display: grid; gap: 10px; align-content: start; font-size: 14px; }
.foot-links b { color: var(--gold); letter-spacing: .12em; text-transform: uppercase; font-size: 11.5px; margin-bottom: 4px; }
.foot-links a { color: rgba(255,255,255,.85); } .foot-links a:hover { color: var(--gold); }
.foot-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12.5px; color: var(--muted-light); }

/* ---- reveal ---------------------------------------------------------- */
.rv { opacity: 0; transform: translateY(14px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.rv.in { opacity: 1; transform: none; }

/* ---- responsive ------------------------------------------------------ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; grid-template-areas: "head" "body" "viz"; }
  .stats { grid-template-columns: 1fr; }
  .proof-card, .proof-card.cols-2 { grid-template-columns: 1fr; }
  .proof-item + .proof-item::before { left: 28px; right: 28px; top: 0; bottom: auto; width: auto; height: 1px; }
  .proof { margin-top: 0; background: var(--ink-2); padding-top: 28px; }
  .sec-ink.after-proof { margin-top: 0; padding-top: 56px; }
  .split { grid-template-columns: 1fr; }
  .split.rev .split-text { order: 0; } .split.rev .split-viz { order: 1; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .pill { white-space: normal; line-height: 1.35; text-align: left; }
  .wrap { width: calc(100% - 32px); }
  .nav-toggle { display: flex; }
  .site-nav { display: none; position: fixed; inset: 72px 0 0 0; background: var(--ink); flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 22px; z-index: 40; }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 20px; }
  .site-nav .btn { margin-top: 10px; }
  .topbar { font-size: 13px; }
  .topbar-text { display: none; }
  .mini, .mini:nth-child(2), .mini:nth-child(3) { margin-left: 40px; }
  .feat-grid { grid-template-columns: 1fr; }
  .callout { flex-direction: column; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .btn-lg { width: 100%; }
  .cta-row { flex-direction: column; }
  .cgrid { grid-template-columns: 1fr; }
}

/* ---- campaign card featured image ---------------------------------- */
.ccard.has-img { padding-top: 0; }
.ccard.has-img::before { display: none; }
.ccard-img { display: block; margin: 0 -24px 6px; aspect-ratio: 1200 / 630; overflow: hidden; background: var(--sand); }
.ccard-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.ccard:hover .ccard-img img { transform: scale(1.03); }
.ccard.has-img .ccard-top { padding-right: 0; margin-top: 8px; }
.ccard-title a { color: inherit; }
.ccard-title a:hover { color: var(--gold-2); }

/* ---- public 404 ------------------------------------------------------ */
.p404 { min-height: 60vh; display: flex; align-items: center; }
.p404 .num { width: auto; height: auto; padding: 8px 18px; font-size: 22px; letter-spacing: .2em; }
.p404 h1 { margin: 14px 0 12px; }
.p404 .cta-row { margin-top: 26px; }

/* ---- leadership team (transparent cut-out, no box behind it) ---- */
.sec-leaders { padding-bottom: 0; overflow: hidden; }
.leaders-head { text-align: center; max-width: 760px; margin-inline: auto; }
.leaders-head .sub { margin-inline: auto; }
.leaders-art { margin: 34px auto 0; max-width: 1040px; }
.leaders-art img { width: 100%; height: auto; display: block; }

/* cards no longer show seat counts: keep the footer pinned to the bottom */
.ccard-foot { margin-top: auto; padding-top: 6px; }
.mini-foot { margin-top: 12px; }

/* gold CTA band: body copy in ink, not grey, for contrast */
.sec-cta .sub { color: var(--ink); opacity: .85; }

/* ---- legal pages (terms, disclaimer, privacy) ---- */
.legal { max-width: 800px; }
.legal .updated { font-size: 13px; color: var(--muted); margin-top: 6px; }
.legal h2 { font-size: 22px; margin: 34px 0 10px; }
.legal p, .legal li { font-size: 16px; line-height: 1.75; color: var(--ink); }
.legal ul { margin: 8px 0 0 22px; }
.legal li { margin-bottom: 6px; }
.legal .lead-in { font-size: 17px; color: var(--muted); margin-top: 14px; }
.legal-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.legal-nav a { padding: 8px 14px; border: 1.5px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 700; background: var(--paper); }
.legal-nav a.on { background: var(--ink); color: #fff; border-color: var(--ink); }
