/* ==========================================================================
   Powerhouse Sourcing — design system
   Obsidian ground, brushed-gold accent, Newsreader over IBM Plex.
   ========================================================================== */

:root {
  /* Ground */
  --ink-900: #05070B;   /* deepest — footer, appendix */
  --ink-850: #07090F;   /* page ground */
  --ink-800: #090C13;   /* alternating band */
  --ink-750: #0A0E16;   /* card surface */
  --ink-700: #101827;   /* elevated / gradient stop */

  /* Metal */
  --gold-500: #C8A96A;
  --gold-300: #E3C892;
  --gold-line: rgba(200, 169, 106, 0.22);
  --gold-line-soft: rgba(200, 169, 106, 0.14);

  /* Type */
  --paper: #F7F8FA;
  --muted: #9AA3B2;
  --dim: #6B7484;
  --faint: #545E70;

  /* Structure */
  --hair: rgba(255, 255, 255, 0.08);
  --hair-soft: rgba(255, 255, 255, 0.06);
  --field: rgba(255, 255, 255, 0.18);

  /* Signals */
  --positive: #7FB08A;
  --caution: #D2A857;
  --negative: #C9776B;

  --serif: 'Newsreader', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --shell: 1180px;
  --gutter: 48px;
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink-850);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--gold-500); text-decoration: none; transition: color 160ms ease; }
a:hover { color: var(--gold-300); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* Screen-reader-only, still focusable. */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 14px 22px;
  background: var(--gold-500);
  color: var(--ink-850);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.skip-link:focus { left: 12px; top: 12px; color: var(--ink-850); }

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */

.shell { max-width: var(--shell); margin: 0 auto; }
.shell--narrow { max-width: 980px; }
.shell--tight { max-width: 760px; }

.section { padding: 110px var(--gutter); border-bottom: 1px solid var(--hair-soft); }
.section--band { background: var(--ink-800); }
.section--deep { background: linear-gradient(180deg, #0B111C, var(--ink-850)); }
.section--tight { padding: 62px var(--gutter); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 0 0 18px;
}

.rule-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}
.rule-eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold-500);
  flex: none;
}
.rule-eyebrow span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.lede { font-size: 19px; line-height: 1.62; color: var(--muted); font-weight: 300; }
.body-copy { font-size: 16px; line-height: 1.7; color: var(--muted); }
.fine-print {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.75;
  color: var(--dim);
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 18px 38px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn--primary { background: var(--gold-500); color: var(--ink-850); }
.btn--primary:hover { background: var(--gold-300); color: var(--ink-850); }

.btn--ghost { border-color: var(--field); color: var(--paper); padding: 18px 30px; }
.btn--ghost:hover { border-color: var(--gold-500); color: var(--gold-500); }

.btn--compact { padding: 11px 22px; font-size: 12px; letter-spacing: 0.14em; font-weight: 400; }
.btn--outline { border-color: var(--gold-500); color: var(--gold-500); background: transparent; }
.btn--outline:hover { background: var(--gold-500); color: var(--ink-850); }

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

.btn--quiet {
  background: transparent;
  border-color: var(--hair);
  color: var(--muted);
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 400;
}
.btn--quiet:hover { border-color: var(--gold-500); color: var(--gold-500); }

.btn--danger { border-color: rgba(201, 119, 107, 0.5); color: var(--negative); background: transparent; }
.btn--danger:hover { background: var(--negative); color: var(--ink-850); }

/* --------------------------------------------------------------------------
   Masthead
   -------------------------------------------------------------------------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px var(--gutter);
  background: rgba(7, 9, 15, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-line-soft);
}

.wordmark { display: flex; align-items: baseline; gap: 10px; }
.wordmark__name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--paper);
}
.wordmark__descriptor {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-500);
}
a.wordmark:hover .wordmark__name { color: var(--gold-300); }

.masthead__nav { display: flex; align-items: center; gap: 34px; }
.masthead__nav a {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.masthead__nav a:hover { color: var(--paper); }
.masthead__nav a.btn--outline { color: var(--gold-500); }
.masthead__nav a.btn--outline:hover { color: var(--ink-850); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: 128px var(--gutter) 108px;
  border-bottom: 1px solid var(--hair-soft);
  background: radial-gradient(120% 90% at 20% 0%, var(--ink-700) 0%, var(--ink-850) 62%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: start;
}

.hero__title {
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}

.hero__lede { max-width: 560px; margin: 0 0 42px; }

.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }

.hero__note { margin-top: 22px; max-width: 520px; }

.hero__visual { position: relative; }
.hero__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.hero__visual .receive-panel {
  position: relative;
  z-index: 2;
  margin: -64px 24px 0 32px;
}

/* Membership criteria panel */
.criteria {
  border: 1px solid var(--gold-line);
  background: linear-gradient(160deg, rgba(16, 24, 39, 0.9), rgba(7, 9, 15, 0.9));
  padding: 40px 38px;
}
.criteria__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 30px;
}
.criteria__list { display: grid; gap: 26px; }
.criteria__item { display: grid; gap: 6px; }
.criteria__figure { font-family: var(--serif); font-size: 32px; color: var(--paper); line-height: 1.1; }
.criteria__caption { font-size: 13px; color: var(--muted); }
.criteria__divider { height: 1px; background: var(--hair); }

/* --------------------------------------------------------------------------
   Social proof
   -------------------------------------------------------------------------- */

.proof__label {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 0 0 38px;
}

.logo-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }

.logo-plate {
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 6px, transparent 6px 12px);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--faint);
}

.proof__criteria { text-align: center; font-size: 14px; color: var(--muted); margin: 34px 0 0; }
.proof__criteria strong { color: var(--gold-500); font-weight: 400; }

/* --------------------------------------------------------------------------
   Section headers
   -------------------------------------------------------------------------- */

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
}
.section-head h2 { font-size: clamp(32px, 3.6vw, 46px); line-height: 1.12; max-width: 640px; }
.section-head__aside { font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 320px; margin: 0; }

/* --------------------------------------------------------------------------
   Hairline grids (steps, stages, ledger)
   -------------------------------------------------------------------------- */

.grid-hairline {
  display: grid;
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.grid-hairline--3 { grid-template-columns: repeat(3, 1fr); }

.step { background: var(--ink-750); padding: 44px 38px 48px; }
.step__number {
  font-family: var(--serif);
  font-size: 44px;
  color: rgba(200, 169, 106, 0.4);
  line-height: 1;
  margin-bottom: 26px;
}
.step h3 { font-size: 25px; font-weight: 400; margin: 0 0 14px; }
.step p { font-size: 15px; line-height: 1.68; color: var(--muted); margin: 0; }
.step__aside {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--hair);
}

.stage {
  background: var(--ink-750);
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  align-items: baseline;
}
.stage__index {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold-500);
}
.stage__title { font-size: 17px; font-weight: 500; margin-bottom: 6px; color: var(--paper); }
.stage p { font-size: 14px; line-height: 1.62; color: var(--muted); margin: 0; }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.split--reverse { grid-template-columns: 0.85fr 1.15fr; }

.pledge { border: 1px solid var(--gold-line); padding: 26px 28px; }
.pledge__title { font-family: var(--serif); font-size: 21px; margin-bottom: 8px; }
.pledge p { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }

.assurances { display: grid; gap: 16px; font-size: 14px; color: var(--muted); }
.assurances div { display: flex; gap: 12px; }
.assurances span[aria-hidden] { color: var(--gold-500); }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.quote {
  margin: 0;
  padding: 38px 34px;
  border: 1px solid var(--hair);
  background: var(--ink-750);
}
.quote blockquote {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.5;
  color: var(--paper);
}
.quote figcaption { font-size: 13px; line-height: 1.6; color: var(--muted); }
.quote__verified { font-family: var(--mono); font-size: 11px; color: var(--gold-500); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq {
  display: grid;
  gap: 1px;
  background: var(--hair);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}

.faq details { background: var(--ink-800); padding: 26px 4px; }

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--paper);
}
.faq summary::-webkit-details-marker { display: none; }

.faq__sign {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 300;
  color: var(--gold-500);
  transition: transform 180ms ease;
  flex: none;
}
.faq details[open] .faq__sign { transform: rotate(45deg); }

.faq p { font-size: 15px; line-height: 1.72; color: var(--muted); margin: 18px 0 0; max-width: 760px; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.panel {
  border: 1px solid var(--gold-line);
  background: rgba(10, 14, 22, 0.72);
  padding: 44px 42px;
}

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field--wide { grid-column: 1 / -1; }

.field { display: grid; gap: 8px; }

.field__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.field__label .req { color: var(--gold-500); }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--field);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  padding: 10px 2px;
  outline: none;
  transition: border-color 160ms ease;
}
.field select { background: var(--ink-750); }
.field textarea { resize: vertical; min-height: 84px; line-height: 1.6; }

.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--gold-500); }

.field input::placeholder, .field textarea::placeholder { color: var(--faint); }

.field__hint { font-size: 11px; color: var(--dim); }

.field__error { font-size: 12px; color: var(--negative); }
.field--invalid input,
.field--invalid select,
.field--invalid textarea { border-bottom-color: var(--negative); }

/* Bot trap: hidden from people, visible to naive form-fillers. */
.decoy {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note { margin: 18px 0 0; }

.notice {
  padding: 16px 18px;
  border: 1px solid var(--gold-line);
  font-size: 13px;
  line-height: 1.6;
  color: var(--gold-300);
  margin-bottom: 28px;
}
.notice--error { border-color: rgba(201, 119, 107, 0.45); color: var(--negative); }
.notice--positive { border-color: rgba(127, 176, 138, 0.45); color: var(--positive); }

/* --------------------------------------------------------------------------
   Confirmation / status
   -------------------------------------------------------------------------- */

.confirm { padding: 128px var(--gutter) 110px; background: radial-gradient(110% 80% at 50% 0%, var(--ink-700) 0%, var(--ink-850) 60%); }
.confirm__mark {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border: 1px solid var(--gold-500);
  color: var(--gold-500);
  font-size: 24px;
  margin-bottom: 34px;
}
.confirm h1 { font-size: clamp(34px, 4.4vw, 48px); line-height: 1.12; margin: 0 0 22px; }

.reference-plate {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  border: 1px solid var(--gold-line);
  padding: 16px 24px;
  margin: 32px 0;
}
.reference-plate__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.reference-plate__value {
  font-family: var(--mono);
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--gold-300);
}

.timeline { display: grid; gap: 1px; background: var(--hair); border: 1px solid var(--hair); margin: 40px 0; }
.timeline__row {
  background: var(--ink-750);
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: baseline;
}
.timeline__index { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--gold-500); }
.timeline__title { font-size: 17px; font-weight: 500; margin-bottom: 6px; }
.timeline__row p { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }
.timeline__row--done .timeline__index { color: var(--positive); }

/* --------------------------------------------------------------------------
   Status pills
   -------------------------------------------------------------------------- */

.pill {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 11px;
  border: 1px solid currentColor;
  white-space: nowrap;
}
.pill--pending { color: var(--muted); }
.pill--review { color: var(--caution); }
.pill--admitted { color: var(--positive); }
.pill--declined { color: var(--negative); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  padding: 46px var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  background: var(--ink-900);
}
.footer__mark { font-family: var(--serif); font-size: 17px; letter-spacing: 0.04em; color: var(--muted); }
.footer__links { display: flex; flex-wrap: wrap; gap: 28px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer__links a, .footer__links span { color: var(--dim); }
.footer__links a:hover { color: var(--gold-500); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  :root { --gutter: 32px; }

  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .split, .split--reverse { grid-template-columns: 1fr; gap: 48px; }
  .grid-hairline--3 { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
  .section-head { flex-direction: column; align-items: flex-start; gap: 24px; }
  .section-head__aside { max-width: none; }
}

@media (max-width: 720px) {
  :root { --gutter: 22px; }

  body { font-size: 15px; }

  .masthead { flex-wrap: wrap; gap: 14px; padding: 16px var(--gutter); }
  .masthead__nav { gap: 18px; flex-wrap: wrap; }
  .masthead__nav a:not(.btn) { display: none; }

  .hero { padding: 76px var(--gutter) 68px; }
  .section { padding: 72px var(--gutter); }
  .section--tight { padding: 48px var(--gutter); }

  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }

  .field-grid { grid-template-columns: 1fr; }
  .panel { padding: 30px 24px; }
  .criteria { padding: 30px 26px; }
  .step { padding: 32px 26px 36px; }
  .stage { grid-template-columns: 1fr; gap: 10px; }
  .timeline__row { grid-template-columns: 1fr; gap: 10px; }

  .faq summary { font-size: 18px; }
  .quote blockquote { font-size: 19px; }

  .footer { flex-direction: column; align-items: flex-start; }

  .hero__image { aspect-ratio: 16 / 10; }
  .hero__visual .receive-panel { margin: 24px 0 0; }
  .image-band__copy { padding: 44px var(--gutter); }
  .photo-cta { padding: 80px var(--gutter); }
}

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */

@media print {
  .masthead, .footer, .hero__actions, .btn { display: none; }
  body { background: #fff; color: #000; }
}

/* --------------------------------------------------------------------------
   Section titles (shared by marketing pages)
   -------------------------------------------------------------------------- */

.section-title {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.12;
  margin: 0 0 24px;
}
.section-title--lead { margin-bottom: 58px; max-width: 640px; }

.cta-band { border-bottom: 0; background: radial-gradient(110% 80% at 80% 0%, var(--ink-700) 0%, var(--ink-850) 60%); }
.cta-band .shell { text-align: center; }
.cta-band .eyebrow { text-align: center; }
.cta-band h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.1; margin: 0 0 24px; }
.cta-band .lede { margin: 0 auto 40px; max-width: 620px; }
.cta-band .fine-print { margin-top: 24px; }

.stage--yours { background: rgba(200, 169, 106, 0.05); }
.stage--yours .stage__index { color: var(--paper); }

.stack-sm { margin-bottom: 26px; }
.stack-md { margin-bottom: 32px; }

/* ==========================================================================
   Marketing theme — light, editorial, restrained.

   Scoped to body.marketing so the membership office (admin) keeps its own
   dark, dense working palette untouched. Everything below this point either
   (a) redefines the custom properties above, which the whole file already
   reads its colours from, or (b) overrides the handful of rules above that
   hardcode a colour instead of using a variable, or (c) adds new components
   for sections the original dark layout did not have.
   ========================================================================== */

body.marketing {
  /* Ground */
  --ink-900: #D9D9D9;   /* deepest — footer band */
  --ink-850: #FFFFFF;   /* page ground, true white */
  --ink-800: #F2F2F2;   /* alternating band */
  --ink-750: #FFFFFF;   /* card surface, true white */
  --ink-700: #F2F2F2;   /* gradient stop */

  /* Metal — teal, deepened for contrast on light ground */
  --gold-500: #3C6E71;
  --gold-300: #2C5254;  /* used for hover/emphasis states: deliberately darker, not lighter */
  --gold-line: rgba(60, 110, 113, 0.28);
  --gold-line-soft: rgba(60, 110, 113, 0.16);

  /* Type */
  --paper: #1F2426;     /* primary text — cool near-black, not pure black */
  --muted: #5B6366;
  --dim: #7C8386;
  --faint: #A3A9AB;

  /* Structure */
  --hair: rgba(31, 36, 38, 0.11);
  --hair-soft: rgba(31, 36, 38, 0.07);
  --field: rgba(31, 36, 38, 0.28);

  /* Signals — deepened for AA contrast on white */
  --positive: #4F7A57;
  --caution: #97701F;
  --negative: #A8483A;

  background: var(--ink-850);
}

body.marketing { font-weight: 400; }
body.marketing .lede { font-weight: 400; }
body.marketing h1, body.marketing h2, body.marketing h3, body.marketing h4 {
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Hardcoded-colour overrides the variable remap above cannot reach. */

body.marketing .masthead {
  background: var(--ink-850);
  border-bottom: 1px solid var(--hair);
}

body.marketing .section--deep {
  background: linear-gradient(180deg, var(--ink-700), var(--ink-850));
}

body.marketing .panel {
  background: var(--ink-750);
  border: 1px solid var(--hair);
  box-shadow: 0 1px 2px rgba(31, 36, 38, 0.04);
}

body.marketing .quote,
body.marketing .step,
body.marketing .stage,
body.marketing .faq details {
  box-shadow: 0 1px 2px rgba(31, 36, 38, 0.03);
}

body.marketing .footer {
  border-top: 1px solid var(--hair);
}

body.marketing .field select { background: var(--ink-750); }

body.marketing .step__number { color: var(--gold-line); }
body.marketing .stage--yours { background: var(--gold-line-soft); }

/* Section rhythm: white cards need a hairline of their own against the ivory
   ground, since the dark theme relied on near-black-on-black needing none. */
body.marketing .step,
body.marketing .stage {
  border-bottom: 1px solid transparent;
}

/* --------------------------------------------------------------------------
   Hero panel — "What members receive"
   -------------------------------------------------------------------------- */

.receive-panel {
  border: 1px solid var(--hair);
  background: var(--ink-750);
  padding: 44px 40px;
  box-shadow: 0 1px 3px rgba(31, 36, 38, 0.05);
}
.receive-panel__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 0 0 30px;
}
.receive-panel__list { display: grid; gap: 26px; }
.receive-panel__item { display: grid; gap: 6px; }
.receive-panel__item + .receive-panel__item { padding-top: 26px; border-top: 1px solid var(--hair); }
.receive-panel__title {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--paper);
  line-height: 1.3;
}
.receive-panel__desc { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   Logo marquee
   -------------------------------------------------------------------------- */

.marquee { overflow: hidden; position: relative; }
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink-850), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--ink-850), transparent); }

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__item {
  flex: none;
  padding: 0 40px;
  display: grid;
  place-items: center;
  height: 46px;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.03em;
  color: var(--dim);
  white-space: nowrap;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   Intro / positioning — spacious editorial block
   -------------------------------------------------------------------------- */

.intro-block { max-width: 760px; }
.intro-block h2 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.18; margin-bottom: 40px; }
.intro-block p { font-size: 18px; line-height: 1.75; color: var(--muted); margin-bottom: 22px; }
.intro-block p:last-child { margin-bottom: 0; }
.intro-block strong { color: var(--paper); font-weight: 500; }

/* --------------------------------------------------------------------------
   How it works — emphasis line
   -------------------------------------------------------------------------- */

.grid-hairline--5 { grid-template-columns: repeat(5, 1fr); }

.emphasis-line {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--paper);
  margin-top: 56px;
}

/* --------------------------------------------------------------------------
   Inline CTA — a light, secondary touchpoint at a natural point of conviction
   -------------------------------------------------------------------------- */

.inline-cta { text-align: center; margin-top: 48px; }

/* --------------------------------------------------------------------------
   Image band — a full-bleed photo paired with a column of copy
   -------------------------------------------------------------------------- */

.image-band { padding: 0; overflow: hidden; }
.image-band__grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.image-band__grid.image-band--reverse { direction: rtl; }
.image-band__grid.image-band--reverse > * { direction: ltr; }
.image-band__photo { position: relative; }
.image-band__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-band__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px var(--gutter);
}
.image-band__copy h2 { font-size: clamp(28px, 3.2vw, 40px); line-height: 1.16; margin-bottom: 22px; }
.image-band__copy p { font-size: 16px; line-height: 1.7; color: var(--muted); margin-bottom: 16px; }
.image-band__copy p:last-child { margin-bottom: 0; }
.image-band__copy strong { color: var(--paper); font-weight: 500; }

/* --------------------------------------------------------------------------
   Photo CTA — dark, full-bleed, for the final call to action
   -------------------------------------------------------------------------- */

.photo-cta {
  position: relative;
  padding: 140px var(--gutter);
  text-align: center;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.photo-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 20, 21, 0.72), rgba(15, 20, 21, 0.82));
  z-index: -1;
}
.photo-cta h2 { color: #FFFFFF; font-size: clamp(32px, 4vw, 52px); line-height: 1.12; margin: 0 0 24px; }
.photo-cta .lede { color: rgba(255, 255, 255, 0.82); margin: 0 auto 40px; max-width: 620px; }
.photo-cta .fine-print { color: rgba(255, 255, 255, 0.6); margin-top: 24px; }

/* --------------------------------------------------------------------------
   The Standard / Exclusivity — single-column editorial statement
   -------------------------------------------------------------------------- */

.statement { max-width: 720px; }
.statement h2 { font-size: clamp(32px, 3.8vw, 48px); line-height: 1.16; margin-bottom: 36px; }
.statement p { font-size: 17px; line-height: 1.75; color: var(--muted); margin-bottom: 22px; }
.statement p:last-child { margin-bottom: 0; }
.statement p.statement__lead {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--paper);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   For Members — benefit grid
   -------------------------------------------------------------------------- */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 40px;
}
.benefit { padding-top: 22px; border-top: 1px solid var(--hair); }
.benefit__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 0 0 12px;
}
.benefit p { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   Who it's for — categories
   -------------------------------------------------------------------------- */

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.category { padding-top: 24px; border-top: 2px solid var(--gold-line); }
.category__title {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--paper);
  margin: 0 0 14px;
}
.category p { font-size: 15px; line-height: 1.68; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   Participation benefit — deliberately understated
   -------------------------------------------------------------------------- */

.participation {
  padding: 56px var(--gutter);
  text-align: center;
}
.participation__inner { max-width: 560px; margin: 0 auto; }
.participation h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 14px;
}
.participation p { font-size: 14px; line-height: 1.7; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   Breadcrumb
   -------------------------------------------------------------------------- */

.breadcrumb { margin-bottom: 28px; }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb a, .breadcrumb span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
}
.breadcrumb a:hover { color: var(--gold-500); }
.breadcrumb span[aria-current] { color: var(--muted); }
.breadcrumb__sep { color: var(--faint); }

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */

.blog-layout { display: grid; grid-template-columns: 1fr 260px; gap: 56px; align-items: start; }

.blog-grid { display: grid; gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
.blog-card { background: var(--ink-750); padding: 30px 32px; }
.blog-card__meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}
.blog-card__title { font-family: var(--serif); font-size: 24px; line-height: 1.25; margin: 0 0 12px; }
.blog-card__title a { color: var(--paper); }
.blog-card__title a:hover { color: var(--gold-500); }
.blog-card p { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0; }

.blog-sidebar { display: grid; gap: 28px; align-content: start; }
.blog-sidebar__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 0 0 14px;
}
.blog-sidebar__list { display: grid; gap: 10px; }
.blog-sidebar__list a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.blog-sidebar__list a:hover { color: var(--gold-500); }
.blog-sidebar__list .count { font-family: var(--mono); font-size: 11px; color: var(--dim); }

.article-head { max-width: 760px; margin-bottom: 44px; }
.article-head h1 { font-size: clamp(30px, 4vw, 44px); line-height: 1.15; margin: 18px 0 20px; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}
.article-meta span { color: var(--gold-500); }

.article-body { max-width: 720px; font-size: 17px; line-height: 1.8; color: var(--paper); }
.article-body p { margin: 0 0 24px; }
.article-body h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin: 44px 0 20px;
}

.article-nav {
  max-width: 720px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.article-nav a { font-size: 14px; max-width: 320px; }
.article-nav__label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 6px;
}
.article-nav__next { text-align: right; margin-left: auto; }

/* --------------------------------------------------------------------------
   Apply page — a single, centered, uncluttered form
   -------------------------------------------------------------------------- */

.apply-head { text-align: center; margin-bottom: 40px; }
.apply-head .section-title { margin: 10px 0 12px; }
.apply-head .body-copy { color: var(--dim); }

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */

.legal-body h2 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin: 40px 0 14px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { font-size: 15px; line-height: 1.75; color: var(--muted); margin: 0 0 8px; }

/* --------------------------------------------------------------------------
   Marketing-scope responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .grid-hairline--5 { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: 1fr; gap: 36px; }
  .blog-layout { grid-template-columns: 1fr; }
  .image-band__grid { grid-template-columns: 1fr; min-height: 0; }
  .image-band__photo { aspect-ratio: 16 / 9; }
  .hero__visual .receive-panel { margin: -60px 16px 0 20px; }
}

@media (max-width: 720px) {
  .grid-hairline--5 { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; gap: 32px; }
  .receive-panel { padding: 32px 26px; }
  .intro-block p, .statement p { font-size: 16px; }
  .marquee__item { padding: 0 26px; font-size: 14px; }
}
