/* Marketing pages — SoTheySaid public front door (homepage / how-it-works / library).
   High-fidelity reproduction of docs/design_handoff_sotheysaid prototypes
   (Marketing Homepage + Homepage A search bar + Homepage C + Homepage D).
   All rules scoped under the .mkt root class; builds ON redesign-tokens.css
   (--rd-* and --score-* custom properties) — no token duplication here.
   Rendered by web/marketing.py. No JS required. */

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

.mkt {
  margin: 0;
  font-family: var(--rd-font-body);
  color: var(--rd-ink-body);
  background: var(--rd-cream-page);
  -webkit-font-smoothing: antialiased;
}
.mkt ::selection { background: var(--rd-burgundy); color: #fff; }
.mkt img { max-width: 100%; }
.mkt a { color: inherit; text-decoration: none; }

/* ---- layout primitives ---------------------------------------------- */
.mkt-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: var(--rd-page-pad-web);
  padding-right: var(--rd-page-pad-web);
}
.mkt-wrap--wide { max-width: 1220px; }
.mkt-wrap--narrow { max-width: 1080px; }

.mkt-eyebrow {
  font-family: var(--rd-font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rd-gold-on-cream);
}
.mkt-eyebrow--on-dark { color: var(--rd-gold-on-burgundy); }

.mkt-card-shadow {
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 22px 50px -34px rgba(50, 25, 28, .4);
}

/* ---- score vocabulary ------------------------------------------------ */
.mkt-band-strong.mkt-score-num,
.mkt-card-score.mkt-band-strong { color: var(--score-strong-text); }
.mkt-band-mixed.mkt-score-num,
.mkt-card-score.mkt-band-mixed { color: var(--score-mixed-text); }
.mkt-band-watch.mkt-score-num,
.mkt-card-score.mkt-band-watch { color: var(--score-watch-text); }

.mkt-score-ring {
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rd-font-display);
  font-weight: 600;
}
.mkt-score-ring.mkt-band-strong { border-color: var(--score-strong-fill); color: var(--score-strong-text); }
.mkt-score-ring.mkt-band-mixed { border-color: var(--score-mixed-fill); color: var(--score-mixed-text); }
.mkt-score-ring.mkt-band-watch { border-color: var(--score-watch-fill); color: var(--score-watch-text); }

.mkt-bar-track {
  height: 8px;
  background: #ece2d2;
  border-radius: 5px;
  overflow: hidden;
}
.mkt-bar-fill { height: 100%; }
.mkt-bar-fill.mkt-band-strong { background: var(--score-strong-fill); }
.mkt-bar-fill.mkt-band-mixed { background: var(--score-mixed-fill); }
.mkt-bar-fill.mkt-band-watch { background: var(--score-watch-fill); }
.mkt-bar-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #33252a;
  font-weight: 500;
  margin-bottom: 5px;
}
.mkt-bar-head .mkt-score-num {
  font-family: var(--rd-font-display);
  font-weight: 600;
  font-size: 14px;
}

/* ---- nav ------------------------------------------------------------- */
.mkt-nav {
  background: var(--rd-burgundy);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: var(--rd-nav-shadow);
}
.mkt-nav-inner {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.mkt-nav-logo img { height: 38px; width: auto; display: block; }
.mkt-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14.5px;
  color: #e0cabf;
  font-weight: 500;
}
.mkt-nav-links a:hover { color: #F7F0E4; }
.mkt-nav-cta {
  background: #F7F0E4;
  color: var(--rd-burgundy) !important;
  padding: 10px 18px;
  border-radius: var(--rd-radius-pill);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

/* ---- hero (burgundy) ------------------------------------------------- */
.mkt-hero {
  background: var(--rd-burgundy);
  position: relative;
  overflow: hidden;
}
.mkt-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(72% 72% at 84% -12%, rgba(212, 150, 71, .26), transparent 60%);
}
.mkt-hero-grid {
  position: relative;
  padding-top: 84px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.mkt-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--rd-gold-on-burgundy);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(212, 150, 71, .4);
  border-radius: var(--rd-radius-pill);
  padding: 6px 14px;
  margin-bottom: 28px;
  font-weight: 600;
}
.mkt-hero-pill .mkt-dot,
.mkt-lite-pill .mkt-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rd-gold-line);
}
.mkt-hero h1 {
  font-family: var(--rd-font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  color: #FCF8F0;
}
.mkt-hero h1 em { color: var(--rd-gold-on-burgundy); font-style: italic; }
.mkt-hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: #e3cdc2;
  margin: 0 0 34px;
  max-width: 480px;
}
.mkt-hero-sub em { font-family: var(--rd-font-display); font-style: italic; }
.mkt-hero-note { font-size: 13px; color: #c3a99f; margin-top: 14px; }

/* ---- oversized search / paste bar (grafted from Homepage A) ---------- */
.mkt-search {
  width: 100%;
  max-width: 640px;
  background: #fff;
  border: 1.5px solid #e3d8c4;
  border-radius: 16px;
  padding: 10px 10px 10px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 26px 50px -30px rgba(50, 25, 28, .42);
}
.mkt-search svg { flex-shrink: 0; }
.mkt-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-family: var(--rd-font-body);
  font-size: 18px;
  color: var(--rd-ink-body);
  padding: 8px 0;
}
.mkt-search input::placeholder { color: #a89a90; }
.mkt-search button {
  background: var(--rd-burgundy);
  color: #F7F0E4;
  border: 0;
  cursor: pointer;
  font-family: var(--rd-font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 11px;
  white-space: nowrap;
}
.mkt-search button:hover { background: #4a121f; }
.mkt-search--md { max-width: 560px; border-radius: 14px; padding: 8px 8px 8px 18px; gap: 12px; }
.mkt-search--md input { font-size: 15.5px; }
.mkt-search--md button { font-size: 15px; padding: 13px 22px; border-radius: 10px; }
.mkt-search--center { margin-left: auto; margin-right: auto; }

/* ---- hero visual + floating report glimpse --------------------------- */
.mkt-hero-visual { position: relative; }
.mkt-hero-photo {
  position: relative;
  height: 520px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(150deg, #ecc083 0%, #d18b5b 40%, #7c3a3f 100%);
  box-shadow: 0 30px 60px -28px rgba(90, 40, 30, .55);
}
.mkt-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 75% at 82% 8%, rgba(255, 236, 200, .5), transparent 55%);
}
/* Punch-list 2026-07-18: the hero visual is a deliberate abstract gradient
   (no photography required, no placeholder label). Real photography slots
   back in as a background-image when the founder supplies it. */
.mkt-illustrative {
  margin-top: 12px;
  font-family: var(--rd-font-mono);
  font-size: 9.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rd-ink-muted);
}
.mkt-glimpse {
  position: absolute;
  right: -18px;
  bottom: -26px;
  width: 300px;
  background: #FCF8F0;
  border-radius: var(--rd-radius-card);
  overflow: hidden;
}
.mkt-glimpse-head {
  background: var(--rd-burgundy);
  padding: 15px 17px;
  position: relative;
  overflow: hidden;
}
.mkt-glimpse-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(130% 90% at 88% 0%, rgba(212, 150, 71, .28), transparent 56%);
}
.mkt-glimpse-head-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.mkt-glimpse-name {
  font-family: var(--rd-font-display);
  color: #FCF8F0;
  font-size: 17px;
  font-weight: 500;
}
.mkt-glimpse-trip {
  font-family: var(--rd-font-display);
  font-style: italic;
  color: #e2b8a9;
  font-size: 11.5px;
  margin-top: 3px;
}
.mkt-glimpse-score {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #D49647;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rd-font-display);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}
.mkt-glimpse-body { padding: 14px 17px; }
.mkt-glimpse-verdict {
  font-family: var(--rd-font-display);
  font-size: 13.5px;
  color: #33252a;
  line-height: 1.45;
  margin: 0 0 12px;
}
.mkt-glimpse-bars { display: flex; flex-direction: column; gap: 8px; }
.mkt-glimpse-bars .mkt-bar-head { font-size: 11px; font-weight: 400; margin-bottom: 3px; }
.mkt-glimpse-bars .mkt-bar-head .mkt-score-num { font-size: 11px; }
.mkt-glimpse-bars .mkt-bar-track { height: 6px; border-radius: 4px; }
.mkt-glimpse-meta {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #eadfce;
  font-size: 10px;
  color: #9a8d80;
  font-family: var(--rd-font-mono);
}

/* ---- sources strip --------------------------------------------------- */
.mkt-sources {
  border-top: 1px solid #e7dcc8;
  border-bottom: 1px solid #e7dcc8;
  background: var(--rd-parchment);
}
.mkt-sources-inner {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}
.mkt-sources-note { font-size: 13px; color: var(--rd-ink-muted-2); }
.mkt-sources-name { font-family: var(--rd-font-display); font-size: 19px; color: #6e5a52; }

/* ---- proof section --------------------------------------------------- */
.mkt-proof { background: #FCF8F0; }
.mkt-proof-grid {
  padding-top: 92px;
  padding-bottom: 92px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 60px;
  align-items: center;
}
.mkt-proof h2,
.mkt-h2 {
  font-family: var(--rd-font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 22px;
  color: var(--rd-ink-heading);
}
.mkt-proof-lede {
  font-size: 17px;
  line-height: 1.65;
  color: #564e48;
  margin: 0 0 26px;
  max-width: 430px;
}
.mkt-proof-lede em { font-family: var(--rd-font-display); font-style: italic; }
.mkt-feature-list { display: flex; flex-direction: column; gap: 16px; }
.mkt-feature { display: flex; gap: 13px; align-items: flex-start; }
.mkt-feature svg { flex-shrink: 0; margin-top: 1px; }
.mkt-feature-title { font-weight: 700; font-size: 15px; color: var(--rd-ink-body); }
.mkt-feature-copy { font-size: 14px; color: var(--rd-ink-muted); line-height: 1.5; }

/* the compact report object */
.mkt-report {
  background: #FCF8F0;
  border-radius: 18px;
  overflow: hidden;
  border: var(--rd-card-border);
}
.mkt-report-head {
  background: var(--rd-burgundy);
  padding: 24px 26px;
  position: relative;
  overflow: hidden;
}
.mkt-report-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(130% 90% at 88% 0%, rgba(212, 150, 71, .28), transparent 56%);
}
.mkt-report-head-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}
.mkt-report-head h3 {
  font-family: var(--rd-font-display);
  font-weight: 500;
  font-size: 26px;
  color: #FCF8F0;
  margin: 0 0 5px;
}
.mkt-report-trip {
  font-family: var(--rd-font-display);
  font-style: italic;
  font-size: 13px;
  color: #f0d3c8;
}
.mkt-report-match {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2.5px solid #D49647;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mkt-report-match .num {
  font-family: var(--rd-font-display);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.mkt-report-match .lbl {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rd-gold-on-burgundy);
  margin-top: 2px;
}
.mkt-report-body { padding: 20px 26px; }
.mkt-report-verdict {
  font-family: var(--rd-font-display);
  font-size: 16px;
  line-height: 1.5;
  color: #33252a;
  margin: 0 0 20px;
}
.mkt-report-bars { display: flex; flex-direction: column; gap: 13px; margin-bottom: 20px; }
.mkt-report-flag {
  background: #F8E8E4;
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 13px;
  line-height: 1.5;
  color: #6e3329;
  margin-bottom: 16px;
}
.mkt-report-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid #eadfce;
}
.mkt-report-foot .meta {
  font-family: var(--rd-font-mono);
  font-size: 11px;
  color: #9a8d80;
  flex: 1;
}
.mkt-report-foot .more { font-size: 12px; font-weight: 600; color: var(--rd-burgundy); }

/* ---- dark bands (how-it-works / steps / CTAs) ------------------------ */
.mkt-dark {
  background: var(--rd-burgundy);
  color: #f0e6dc;
  position: relative;
  overflow: hidden;
}
.mkt-dark-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 85% -10%, rgba(212, 150, 71, .2), transparent 60%);
}
.mkt-dark-glow--center { background: radial-gradient(70% 80% at 50% -20%, rgba(212, 150, 71, .22), transparent 60%); }
.mkt-dark-glow--left { background: radial-gradient(70% 70% at 12% -10%, rgba(212, 150, 71, .2), transparent 60%); }
.mkt-dark-glow--right { background: radial-gradient(60% 80% at 80% -20%, rgba(212, 150, 71, .2), transparent 60%); }
.mkt-dark .mkt-h2,
.mkt-dark h2 { color: #fff; }

.mkt-steps-inner { position: relative; padding-top: 88px; padding-bottom: 88px; }
.mkt-steps-head { text-align: center; margin-bottom: 54px; }
.mkt-steps-head .mkt-eyebrow--on-dark { display: block; margin-bottom: 16px; }
.mkt-steps-head h2 {
  font-family: var(--rd-font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  margin: 0;
  color: #fff;
}
.mkt-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.mkt-step-num {
  font-family: var(--rd-font-display);
  font-size: 34px;
  color: var(--rd-gold-on-burgundy);
  border-bottom: 1px solid rgba(212, 150, 71, .35);
  padding-bottom: 16px;
  margin-bottom: 18px;
}
.mkt-steps-grid h3 {
  font-family: var(--rd-font-display);
  font-weight: 500;
  font-size: 23px;
  color: #fff;
  margin: 0 0 10px;
}
.mkt-steps-grid p { font-size: 15px; line-height: 1.6; color: #d8c5bb; margin: 0; }
.mkt-steps-link { text-align: center; margin-top: 44px; }
.mkt-steps-link a { font-size: 14.5px; font-weight: 600; color: var(--rd-gold-on-burgundy); }

/* ---- trust grid ------------------------------------------------------ */
.mkt-trust-inner { padding-top: 92px; padding-bottom: 92px; }
.mkt-trust-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.mkt-trust-head h2 { margin-bottom: 16px; }
.mkt-trust-head p { font-size: 17px; line-height: 1.6; color: #564e48; margin: 0; }
.mkt-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.mkt-trust-card {
  background: #fff;
  border-radius: var(--rd-radius-card);
  padding: 24px 22px;
  border: 1px solid #efe5d4;
}
.mkt-trust-card svg { margin-bottom: 14px; }
.mkt-trust-card .t {
  font-family: var(--rd-font-display);
  font-size: 19px;
  color: var(--rd-ink-heading);
  margin-bottom: 8px;
}
.mkt-trust-card .c { font-size: 13.5px; color: var(--rd-ink-muted); line-height: 1.55; }

/* ---- founder moment -------------------------------------------------- */
.mkt-founder { background: #FCF8F0; border-top: var(--rd-card-border); }
/* Punch-list 2026-07-18: portrait-less pull-quote (restructured so no image
   or name placeholder is required; the 280px photo column returns when the
   founder supplies assets). */
.mkt-founder-grid {
  max-width: 780px;
  margin: 0 auto;
  padding: 88px var(--rd-page-pad-web);
}
.mkt-founder-quote {
  font-family: var(--rd-font-display);
  font-size: clamp(21px, 2.6vw, 27px);
  line-height: 1.42;
  color: #241619;
  margin: 0 0 24px;
  letter-spacing: -.005em;
}
.mkt-founder-sig { display: flex; align-items: center; gap: 14px; }
.mkt-founder-rule { height: 1px; width: 36px; background: #c9b8a4; }
.mkt-founder-name { font-weight: 700; font-size: 15px; color: var(--rd-ink-body); }
.mkt-founder-role { font-size: 13px; color: var(--rd-ink-muted-2); }

/* ---- library / featured cards ---------------------------------------- */
.mkt-library { background: var(--rd-cream-page); border-top: 1px solid #ece0cd; }
.mkt-library-inner { padding-top: 88px; padding-bottom: 88px; }
.mkt-library-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.mkt-library-head .mkt-eyebrow { display: block; margin-bottom: 16px; }
.mkt-library-head h2 { margin: 0; }
.mkt-library-lede {
  font-size: 15.5px;
  color: var(--rd-ink-muted);
  line-height: 1.6;
  max-width: 360px;
  margin: 0 0 10px;
}
.mkt-library-browse { font-size: 14px; font-weight: 600; color: var(--rd-burgundy); }
/* C18 (2026-09-11): the coverage line — counted from the cards on the page,
   never rendered at 0 (an outage fails open to an empty list). */
.mkt-library-coverage {
  font-family: var(--rd-font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rd-ink-muted-2);
  margin: 0 0 10px;
}

.mkt-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mkt-card {
  display: block;
  background: #FCF8F0;
  border-radius: var(--rd-radius-card);
  overflow: hidden;
  border: var(--rd-card-border);
  box-shadow: 0 18px 40px -36px rgba(50, 25, 28, .5);
}
a.mkt-card:hover { box-shadow: var(--rd-hero-shadow); }
.mkt-card-thumb { height: 118px; position: relative; }
.mkt-card-thumb--g1 { background: linear-gradient(150deg, #e9bd86, #c97f54); }
.mkt-card-thumb--g2 { background: linear-gradient(150deg, #d99a73, #8f4a45); }
.mkt-card-thumb--g3 { background: linear-gradient(150deg, #e8c79a, #bf8650); }
.mkt-card-thumb--g4 { background: linear-gradient(150deg, #cdb3d0, #7e6a93); }
.mkt-card-thumb--g5 { background: linear-gradient(150deg, #9ec0c9, #4f7d86); }
.mkt-card-thumb--g6 { background: linear-gradient(150deg, #cdd6a0, #7e8d52); }
.mkt-card-score {
  position: absolute;
  right: 13px;
  top: 13px;
  background: #fff;
  font-family: var(--rd-font-display);
  font-weight: 600;
  font-size: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px -8px rgba(0, 0, 0, .35);
}
.mkt-card-body { padding: 18px 19px; }
.mkt-card-title {
  font-family: var(--rd-font-display);
  font-size: 19px;
  color: var(--rd-ink-heading);
  margin-bottom: 3px;
}
.mkt-card-city { font-size: 12.5px; color: var(--rd-ink-muted-2); margin-bottom: 12px; }
.mkt-card-liner { font-size: 13.5px; color: #564e48; line-height: 1.55; margin: 0 0 16px; }
.mkt-card-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 13px;
  border-top: var(--rd-card-border);
}
.mkt-card-meta { font-family: var(--rd-font-mono); font-size: 10.5px; color: #9a8d80; flex: 1; }
.mkt-card-read { font-size: 12px; font-weight: 600; color: var(--rd-burgundy); }

/* ---- final CTA -------------------------------------------------------- */
.mkt-cta-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 92px var(--rd-page-pad-web);
  text-align: center;
}
.mkt-cta-inner h2 {
  font-family: var(--rd-font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1.08;
  margin: 0 0 20px;
  color: #fff;
}
.mkt-cta-inner p { font-size: 18px; line-height: 1.6; color: #e0cabf; margin: 0 0 34px; }

/* ---- footer ----------------------------------------------------------- */
.mkt-footer { background: #2a1418; color: #c3a99f; }
.mkt-footer-inner { padding-top: 56px; padding-bottom: 40px; }
.mkt-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid #3d2329;
}
.mkt-footer-brand { max-width: 300px; }
.mkt-footer-brand img { height: 26px; width: auto; display: block; margin-bottom: 14px; }
.mkt-footer-brand p { font-size: 13.5px; line-height: 1.6; color: #a8918a; margin: 0; }
.mkt-footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.mkt-footer-col-title {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8a7168;
  margin-bottom: 14px;
  font-weight: 600;
}
.mkt-footer-col-title--pro { color: var(--rd-gold-on-burgundy); }
.mkt-footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: #c3a99f;
}
.mkt-footer-col-links a:hover { color: #F7F0E4; }
.mkt-footer-col-links .pro-lead { font-weight: 600; color: #e0cabf; }
.mkt-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  font-size: 12.5px;
  color: #8a7168;
}
.mkt-footer-bottom .links { display: flex; gap: 22px; }

/* ====================================================================== */
/* How-it-works page (Homepage C — product tour)                          */
/* ====================================================================== */
.mkt-tour-hero { padding-top: 58px; padding-bottom: 30px; text-align: center; }
.mkt-lite-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--rd-font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rd-gold-on-cream);
  background: #F4EAD9;
  border: 1px solid #e7d5bb;
  border-radius: var(--rd-radius-pill);
  padding: 6px 14px;
  margin-bottom: 26px;
}
.mkt-tour-hero h1 {
  font-family: var(--rd-font-display);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 0 auto 18px;
  color: var(--rd-ink-heading);
  max-width: 720px;
}
.mkt-tour-hero h1 em { color: var(--rd-burgundy); font-style: italic; }
.mkt-tour-hero p { font-size: 18px; line-height: 1.6; color: #6e645d; margin: 0 auto; max-width: 520px; }
/* (0,2,0) beats `.mkt-tour-hero p` (0,1,1), so the label keeps its mono style. */
.mkt-tour-hero .mkt-illustrative { margin-top: 18px; font-size: 10.5px; line-height: 1.4; }

/* C18 (2026-09-11): visible answers on /how-it-works — plain HTML, no FAQ
   rich-result markup. */
.mkt-answers { padding-top: 70px; padding-bottom: 70px; }
.mkt-answers h2 {
  font-family: var(--rd-font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 38px);
  margin: 0 0 28px;
  color: var(--rd-ink-heading);
}
.mkt-answer { padding: 20px 0; border-top: var(--rd-card-border); }
.mkt-answer h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--rd-ink-body); }
.mkt-answer p { font-size: 15.5px; line-height: 1.65; color: #564e48; margin: 0; max-width: 640px; }

/* C17 (2026-09-11): /contact + /for-travel-advisors — plain POST form, works
   with JS off. The honeypot is moved off-screen, not display:none, so simple
   bots still see and fill it. */
.mkt-contact, .mkt-advisers { padding-top: 58px; padding-bottom: 80px; }
.mkt-contact h1, .mkt-advisers h1 {
  font-family: var(--rd-font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0 0 16px;
  color: var(--rd-ink-heading);
}
.mkt-contact-lede, .mkt-advisers-lede {
  font-size: 17px;
  line-height: 1.6;
  color: #6e645d;
  margin: 0 0 28px;
  max-width: 620px;
}
.mkt-form { display: grid; gap: 8px; max-width: 560px; }
.mkt-form label { font-weight: 600; font-size: 14px; color: var(--rd-ink-body); margin-top: 10px; }
.mkt-form input,
.mkt-form select,
.mkt-form textarea {
  font: inherit;
  font-size: 15.5px;
  padding: 11px 13px;
  border: 1px solid #d9c9b5;
  border-radius: 10px;
  background: #fff;
  color: var(--rd-ink-body);
  width: 100%;
  box-sizing: border-box;
}
.mkt-form [aria-invalid="true"] { border-color: #B23B2E; }
.mkt-form button {
  margin-top: 14px;
  justify-self: start;
  background: var(--rd-burgundy);
  color: #fff;
  border: 0;
  border-radius: var(--rd-radius-pill);
  padding: 12px 22px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}
.mkt-form-error { color: #B23B2E; font-size: 13.5px; margin: 2px 0 0; }
.mkt-form-note { font-size: 13px; color: var(--rd-ink-muted-2); margin: 12px 0 0; }
.mkt-form-hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.mkt-notice { border-radius: 10px; padding: 12px 16px; margin: 0 0 20px; font-size: 15px; max-width: 560px; }
.mkt-notice--ok { background: #EAF3EC; color: #2f5d43; border: 1px solid #c8dfcf; }
.mkt-notice--warn { background: #FBEDEA; color: #7a2a20; border: 1px solid #efcfc8; }
.mkt-contact-aside { margin-top: 30px; font-size: 14.5px; color: #6e645d; }
.mkt-advisers h2 {
  font-family: var(--rd-font-display);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  margin: 44px 0 12px;
  color: var(--rd-ink-heading);
}
.mkt-advisers-signin { font-size: 15px; color: #6e645d; margin: 0 0 8px; }
.mkt-advisers-limits ul { padding-left: 20px; margin: 0; }
.mkt-advisers-limits li { font-size: 15.5px; line-height: 1.65; color: #564e48; margin: 6px 0; }
/* The homepage's direct route for advisors (C18 item 12), on the burgundy hero. */
.mkt-hero-audience { font-size: 14px; color: #e8d6cd; margin-top: 10px; }
.mkt-hero-audience a { color: #fff; font-weight: 600; text-decoration: underline; }

.mkt-tour-step {
  position: relative;
  padding-top: 57px;
  padding-bottom: 57px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.mkt-tour-step--flip .mkt-tour-copy { order: 2; }
.mkt-tour-step--flip .mkt-tour-panel { order: 1; }
.mkt-tour-label {
  font-family: var(--rd-font-display);
  font-size: 18px;
  color: var(--rd-gold-line);
  margin-bottom: 14px;
  letter-spacing: .02em;
}
.mkt-tour-label--on-dark { color: var(--rd-gold-on-burgundy); }
.mkt-tour-copy h2 {
  font-family: var(--rd-font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--rd-ink-heading);
}
.mkt-tour-copy p { font-size: 17px; line-height: 1.65; color: #564e48; margin: 0; max-width: 420px; }
.mkt-dark .mkt-tour-copy h2 { color: #fff; }
.mkt-dark .mkt-tour-copy p { color: #e3cdc2; }
.mkt-tour-band { background: var(--rd-parchment); border-top: 1px solid var(--rd-parchment-border); border-bottom: 1px solid var(--rd-parchment-border); }

.mkt-tour-panel {
  background: #fff;
  border: var(--rd-card-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 26px 50px -38px rgba(50, 25, 28, .55);
}
.mkt-tour-panel--dark {
  background: #4a121f;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, .6);
}
.mkt-tour-panel--report { background: #FCF8F0; padding: 0; overflow: hidden; }

/* step 01 — mini search + chips */
.mkt-mini-search {
  background: var(--rd-cream-page);
  border: 1.5px solid #e3d8c4;
  border-radius: 11px;
  padding: 7px 7px 7px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.mkt-mini-search .q { flex: 1; font-size: 14px; color: #6e645d; }
.mkt-mini-search .go {
  background: var(--rd-burgundy);
  color: #F7F0E4;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 8px;
}
.mkt-chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.mkt-chip {
  font-size: 13px;
  border-radius: var(--rd-radius-pill);
  padding: 7px 14px;
}
.mkt-chip--on { color: var(--rd-burgundy); background: #F4EAD9; border: 1px solid #e7d5bb; font-weight: 500; }
.mkt-chip--off { color: var(--rd-ink-muted-3); background: #fff; border: 1px solid #ead9c4; }

/* step 02 — site read-bars */
.mkt-sites-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 10px;
}
.mkt-sites-head .l {
  font-family: var(--rd-font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rd-gold-on-burgundy);
}
.mkt-sites-head .r { font-family: var(--rd-font-mono); font-size: 11px; color: #c3a99f; }
.mkt-site-rows { display: flex; flex-direction: column; gap: 11px; }
.mkt-site-row { display: flex; align-items: center; gap: 12px; }
.mkt-site-row .n { font-family: var(--rd-font-display); font-size: 14px; color: #f0d3c8; width: 96px; flex-shrink: 0; }
.mkt-site-row .track {
  flex: 1;
  height: 7px;
  background: rgba(255, 255, 255, .12);
  border-radius: 4px;
  overflow: hidden;
}
.mkt-site-row .fill { height: 100%; background: var(--rd-gold-on-burgundy); }

/* step 03 — flagged rows */
.mkt-flag-rows { display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }
.mkt-flag-row {
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 9px;
  padding: 11px 13px;
}
.mkt-flag-row--out { background: #F8E8E4; opacity: .7; }
.mkt-flag-row--in { background: #EAF1EB; }
.mkt-flag-row .mark { font-size: 13px; font-weight: 600; font-family: var(--rd-font-mono); }
.mkt-flag-row--out .mark { color: var(--score-watch-fill); }
.mkt-flag-row--in .mark { color: var(--score-strong-fill); }
.mkt-flag-row .txt { flex: 1; font-size: 13px; }
.mkt-flag-row--out .txt { color: #6e3329; text-decoration: line-through; }
.mkt-flag-row--in .txt { color: #33252a; }
.mkt-flag-row .tag { font-family: var(--rd-font-mono); font-size: 10px; }
.mkt-flag-row--out .tag { color: #b23b2e; }
.mkt-flag-row--in .tag { color: var(--score-strong-fill); }
.mkt-flag-note {
  font-family: var(--rd-font-mono);
  font-size: 11px;
  color: #9a8d80;
  border-top: 1px solid #eadfce;
  padding-top: 12px;
}

/* step 04 — mini report */
.mkt-mini-report-head {
  background: var(--rd-burgundy);
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.mkt-mini-report-head .n { font-family: var(--rd-font-display); color: #FCF8F0; font-size: 20px; }
.mkt-mini-report-head .score {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #D49647;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rd-font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.mkt-mini-report-body { padding: 18px 22px; display: flex; flex-direction: column; gap: 12px; }
.mkt-mini-report-body .mkt-bar-track { height: 7px; border-radius: 4px; }

/* step 05 — chat */
.mkt-chat-q { display: flex; justify-content: flex-end; margin-bottom: 12px; }
.mkt-chat-q span {
  background: var(--rd-burgundy);
  color: #F7F0E4;
  font-size: 14px;
  padding: 11px 16px;
  border-radius: 14px 14px 4px 14px;
  max-width: 80%;
}
.mkt-chat-a { display: flex; gap: 10px; align-items: flex-start; }
.mkt-chat-a .ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F4EAD9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mkt-chat-a span.bubble {
  background: #F7F2E9;
  color: #33252a;
  font-size: 14px;
  line-height: 1.5;
  padding: 11px 15px;
  border-radius: 14px 14px 14px 4px;
}

/* ====================================================================== */
/* Library page (Homepage D — library first)                              */
/* ====================================================================== */
.mkt-lib-hero { background: var(--rd-parchment); border-bottom: 1px solid var(--rd-parchment-border); }
.mkt-lib-hero-inner { padding-top: 46px; padding-bottom: 30px; }
.mkt-lib-hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.mkt-lib-hero h1 {
  font-family: var(--rd-font-display);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: -.015em;
  margin: 0 0 10px;
  color: var(--rd-ink-heading);
}
.mkt-lib-hero-lede { font-size: 16.5px; line-height: 1.55; color: #6e645d; margin: 0; max-width: 440px; }
/* Punch-list 2026-07-18: inline under the search (the right-column float
   read as a broken layout). */
.mkt-lib-stats {
  font-family: var(--rd-font-mono);
  font-size: 12px;
  color: var(--rd-gold-on-cream);
  letter-spacing: .04em;
  margin-top: 12px;
  line-height: 1.8;
}
.mkt-lib-filter {
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}
.mkt-lib-filter .mkt-chip--dest {
  font-size: 13px;
  color: #5b4f4a;
  background: #fff;
  border: 1px solid #e3d3bd;
  font-weight: 500;
  padding: 8px 16px;
}
.mkt-lib-filter .mkt-chip--all {
  font-size: 13px;
  background: var(--rd-burgundy);
  color: #F7F0E4;
  font-weight: 600;
  padding: 8px 16px;
}
.mkt-lib-main { padding-top: 34px; padding-bottom: 64px; }
.mkt-lib-group { margin-bottom: 46px; }
.mkt-lib-group:last-child { margin-bottom: 0; }
.mkt-lib-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.mkt-lib-group-head h2 {
  font-family: var(--rd-font-display);
  font-weight: 500;
  font-size: 27px;
  color: var(--rd-ink-heading);
  margin: 0;
}
.mkt-lib-group-count { font-family: var(--rd-font-mono); font-size: 11px; color: var(--rd-ink-muted-2); }
/* C5: a group heading that links to its destination hub (dark until the flag) */
.mkt-lib-group-head h2 a.mkt-lib-group-link { color: inherit; text-decoration: none; border-bottom: 1px solid var(--rd-gold-on-cream); }
.mkt-lib-group-head h2 a.mkt-lib-group-link:hover { color: var(--rd-gold-on-cream); }
.mkt-hub-crumbs { font-family: var(--rd-font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--rd-ink-muted-2); margin: 0 0 14px; }
.mkt-hub-crumbs a { color: inherit; text-decoration: none; }
.mkt-hub-crumbs a:hover { color: var(--rd-gold-on-cream); }
.mkt-hub-group { padding-top: 32px; }

.mkt-lib-empty {
  background: var(--rd-parchment);
  border: 1px solid var(--rd-parchment-border);
  border-radius: 16px;
  padding: 56px 32px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.mkt-lib-empty h2 {
  font-family: var(--rd-font-display);
  font-weight: 500;
  font-size: 30px;
  color: var(--rd-ink-heading);
  margin: 0 0 12px;
}
.mkt-lib-empty p { font-size: 15.5px; line-height: 1.6; color: #6e645d; margin: 0 0 24px; }
.mkt-lib-empty a.run {
  display: inline-block;
  background: var(--rd-burgundy);
  color: #F7F0E4;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--rd-radius-pill);
}

.mkt-lib-cta-inner {
  position: relative;
  padding-top: 54px;
  padding-bottom: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.mkt-lib-cta-inner h2 {
  font-family: var(--rd-font-display);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.1;
  margin: 0 0 8px;
  color: #fff;
}
.mkt-lib-cta-inner p { font-size: 16px; color: #e0cabf; margin: 0; }
.mkt-lib-cta-inner .mkt-search { max-width: 440px; min-width: 300px; flex: 1; }

/* ====================================================================== */
/* Responsive: 360px – 1440px                                             */
/* ====================================================================== */
@media (max-width: 1000px) {
  .mkt-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .mkt-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .mkt-hero-grid,
  .mkt-proof-grid { grid-template-columns: 1fr; gap: 44px; }
  .mkt-hero-grid { padding-top: 56px; padding-bottom: 64px; }
  .mkt-hero-photo { height: 340px; }
  .mkt-glimpse { position: static; width: 100%; max-width: 340px; margin: -60px auto 0; }
}

@media (max-width: 860px) {
  .mkt-tour-step { grid-template-columns: 1fr; gap: 32px; }
  .mkt-tour-step--flip .mkt-tour-copy { order: 1; }
  .mkt-tour-step--flip .mkt-tour-panel { order: 2; }
  .mkt-steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .mkt-wrap,
  .mkt-founder-grid,
  .mkt-cta-inner { padding-left: 20px; padding-right: 20px; }
  .mkt-nav-links { gap: 16px; font-size: 13.5px; }
  .mkt-nav-logo img { height: 30px; }
  .mkt-search,
  .mkt-search--md { flex-wrap: wrap; padding: 12px; gap: 10px; }
  .mkt-search input { flex: 1 1 100%; padding: 6px 4px; }
  .mkt-search button { flex: 1 1 auto; }
  .mkt-search svg { display: none; }
  .mkt-cards { grid-template-columns: 1fr; }
  .mkt-footer-cols { gap: 32px; }
  .mkt-proof-grid,
  .mkt-trust-inner,
  .mkt-library-inner,
  .mkt-steps-inner { padding-top: 60px; padding-bottom: 60px; }
}

@media (max-width: 560px) {
  .mkt-trust-grid { grid-template-columns: 1fr; }
  .mkt-nav-inner { flex-wrap: wrap; row-gap: 10px; padding-top: 12px; padding-bottom: 12px; }
  .mkt-nav-links { gap: 12px; font-size: 13px; flex-wrap: wrap; }
  .mkt-nav-cta { padding: 8px 14px; font-size: 13px; }
  .mkt-report-head,
  .mkt-report-body { padding-left: 18px; padding-right: 18px; }
}

/* --------------------------------------------------------------------------
   Consent banner (Lane C16, 2026-09-07) — injected by /static/js/page-analytics.js
   only while USE_PAGE_ANALYTICS is on, a PostHog key exists and the visitor
   has not yet answered. No animation (nothing to reduce for reduced-motion).
   -------------------------------------------------------------------------- */
.sts-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 18px;
  background: var(--rd-burgundy);
  color: var(--rd-cream-on-burgundy);
  border-radius: var(--rd-radius-card);
  box-shadow: var(--rd-nav-shadow);
  font-family: var(--rd-font-body);
  font-size: 14px;
  line-height: 1.45;
}
.sts-consent-text { margin: 0; flex: 1 1 320px; }
.sts-consent-text a { color: var(--rd-gold-on-burgundy); text-decoration: underline; }
.sts-consent-actions { display: flex; gap: 8px; }
.sts-consent-actions button {
  font: inherit;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--rd-radius-pill);
  border: 1px solid #F7F0E4;
  cursor: pointer;
}
.sts-consent-accept { background: #F7F0E4; color: var(--rd-burgundy); }
.sts-consent-decline { background: transparent; color: #F7F0E4; }
@media (max-width: 560px) {
  .sts-consent { left: 8px; right: 8px; bottom: 8px; }
}
