/* =========================================================
   Rate My Ratings — site.css
   Editorial layout system. Sparse hairlines, generous space.
   ========================================================= */

* { box-sizing: border-box; }
body { margin: 0; }

.site { min-height: 100vh; background: var(--bg-1); color: var(--fg-1); font-family: var(--font-sans); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }

/* ---------- Topbar (announcement + header) -------------- */
.topbar {
  background: var(--ink); color: var(--fg-on-dark);
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em;
  padding: 10px 0;
}
.topbar__inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--fg-on-dark); text-decoration: underline; text-underline-offset: 0.2em; text-decoration-color: rgba(244,242,236,0.4); }
.topbar a:hover { text-decoration-color: var(--rmr-blue); color: white; }
.topbar__dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--rmr-green); margin-right: 8px; vertical-align: middle; }

/* ---------- Header -------------------------------------- */
.hdr {
  position: sticky; top: 0; z-index: 30;
  background: rgba(251,250,247,0.94);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease-out);
}
.hdr.scrolled { border-bottom-color: var(--rule); }
.hdr__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 32px; max-width: 1200px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--fg-1); }
.brand img { height: 26px; width: auto; }
.brand__name { font-size: 15px; font-weight: 600; letter-spacing: -0.012em; font-family: var(--font-sans, inherit); }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { color: var(--fg-2); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 120ms var(--ease-out); }
.nav a:hover, .nav a.active { color: var(--rmr-blue); }
.hdr__cta { display: flex; align-items: center; gap: 16px; }
.hdr__menu-btn { display: none; background: transparent; border: 0; width: 40px; height: 40px; padding: 8px; margin: -8px; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border-radius: 2px; }
.hdr__menu-btn:focus-visible { outline: 2px solid var(--rmr-blue); outline-offset: 2px; }
.hdr__menu-line { display: block; width: 22px; height: 1.5px; background: var(--fg-1); border-radius: 1px; transition: transform 200ms var(--ease-out), opacity 200ms var(--ease-out); }
.hdr.menu-open .hdr__menu-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hdr.menu-open .hdr__menu-line:nth-child(2) { opacity: 0; }
.hdr.menu-open .hdr__menu-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Buttons ------------------------------------- */
.btn { font-family: var(--font-sans); font-size: 14.5px; font-weight: 500; padding: 11px 18px; border-radius: 2px; border: 1px solid transparent; cursor: pointer; line-height: 1; display: inline-flex; align-items: center; gap: 8px; transition: background 120ms var(--ease-out), border-color 120ms var(--ease-out), color 120ms var(--ease-out); text-decoration: none; }
.btn--primary { background: var(--rmr-blue); color: white; }
.btn--primary:hover { background: var(--rmr-blue-700); color: white; }
.btn--primary:disabled { background: var(--ink-faint); cursor: not-allowed; }
.btn--secondary { background: transparent; color: var(--fg-1); border-color: var(--rule-strong); }
.btn--secondary:hover { background: var(--bg-2); border-color: var(--ink); color: var(--fg-1); }
.btn--ghost { background: transparent; color: var(--fg-1); border-radius: 0; padding: 4px 0; border-bottom: 1px solid var(--ink); }
.btn--ghost:hover { color: var(--rmr-blue); border-color: var(--rmr-blue); }
.btn--sm { padding: 8px 14px; font-size: 13.5px; }

/* ---------- Hero ---------------------------------------- */
.hero { padding: 96px 0 88px; border-bottom: var(--hairline); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.hero__eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-muted); margin: 0 0 28px; display: inline-flex; align-items: center; gap: 12px; }
.hero__eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--rmr-blue); }
.hero h1 { font-size: 60px; line-height: 1.04; letter-spacing: -0.024em; font-weight: 600; max-width: 16ch; margin: 0; text-wrap: balance; }
.hero h1 em { font-style: normal; color: var(--rmr-blue); }
.hero__sub { font-size: 19px; line-height: 1.55; color: var(--fg-2); max-width: 50ch; margin: 28px 0 0; }
.hero__ctas { display: flex; gap: 12px; margin-top: 36px; align-items: center; flex-wrap: wrap; }
.hero__meta { font-family: var(--font-mono); font-size: 12px; color: var(--fg-faint); margin-top: 28px; letter-spacing: 0.02em; }
.hero__visual { background: white; border: var(--hairline); border-radius: 4px; padding: 22px 26px; box-shadow: var(--shadow-1); }

/* Hero composite report panel */
.hero-report { display: flex; flex-direction: column; gap: 14px; }
.hero-report__bar { display: flex; justify-content: space-between; align-items: center; padding-bottom: 10px; border-bottom: 1px solid var(--ink); }
.hero-report__brand { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-2); }
.hero-report__brand img { height: 16px; width: auto; }
.hero-report__id { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-faint); }
.hero-report__tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.hero-report__tab { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 10px; border: var(--hairline); color: var(--fg-muted); border-radius: 2px; }
.hero-report__tab.active { background: var(--ink); color: white; border-color: var(--ink); }
.hero-report__title { margin-top: 2px; }
.hero-report__title h4 { font-size: 17px; font-weight: 600; letter-spacing: -0.012em; margin: 0; color: var(--ink); }
.hero-report__meta { display: block; font-family: var(--font-mono); font-size: 10.5px; color: var(--fg-muted); margin-top: 4px; letter-spacing: 0.02em; }
.hero-report__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 12px 0; border-top: var(--hairline); border-bottom: var(--hairline); }
.hero-report__kpis > div { display: flex; flex-direction: column; }
.hero-report__kpis .num { font-family: var(--font-mono); font-size: 22px; font-weight: 600; font-variant-numeric: tabular-nums; letter-spacing: -0.005em; color: var(--ink); line-height: 1; }
.hero-report__kpis .lbl { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); margin-top: 6px; }
.hero-report__sec { display: block; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 8px; }
.hero-report__chart .dist { height: 110px; padding-top: 4px; }
.hero-report__absa { padding-top: 6px; border-top: var(--hairline); }
.hero-report__absa-row { display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 10px; margin-top: 6px; }
.hero-report__absa-row .name { font-size: 11.5px; color: var(--fg-1); }
.hero-report__absa-row .absa__bar { height: 8px; }
.hero-report__absa-row .absa__seg { font-size: 0; }

/* ---------- Proof point quote --------------------------- */
.proof { padding: 80px 0; background: var(--bg-2); border-bottom: var(--hairline); }
.proof__inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: center; }
.proof__mark { font-family: var(--font-display); font-size: 96px; line-height: 0.7; color: var(--rmr-blue); font-weight: 600; letter-spacing: -0.03em; }
.proof__text { font-size: 30px; line-height: 1.3; letter-spacing: -0.014em; max-width: 28ch; font-weight: 500; color: var(--fg-1); margin: 0; text-wrap: balance; }
.proof__text .num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-weight: 600; }
.proof__src { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); margin-top: 20px; display: block; }

/* ---------- Section scaffolding ------------------------- */
.section { padding: 120px 0; border-bottom: var(--hairline); }
.section--alt { background: var(--bg-2); }
.section__eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-muted); margin: 0 0 20px; display: inline-flex; align-items: center; gap: 10px; }
.section__eyebrow .num { color: var(--rmr-blue); }
.section h2 { font-size: 40px; line-height: 1.1; letter-spacing: -0.02em; font-weight: 600; max-width: 22ch; margin: 0 0 24px; text-wrap: balance; }
.section__lede { font-size: 19px; line-height: 1.55; color: var(--fg-2); max-width: 60ch; margin: 0 0 56px; }

/* ---------- How it works steps -------------------------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid var(--ink); }
.step { padding: 32px 28px 32px 0; border-right: var(--hairline); display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.step + .step { padding-left: 28px; }
.step:last-child { border-right: 0; padding-right: 0; }
.step h3, .step p { overflow-wrap: break-word; word-break: normal; hyphens: auto; }
.step__num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--fg-faint); text-transform: uppercase; }
.step h3 { font-size: 17px; line-height: 1.3; font-weight: 600; letter-spacing: -0.006em; margin: 0; }
.step p { font-size: 14.5px; line-height: 1.55; color: var(--fg-2); margin: 0; }
.steps__foot { font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted); margin-top: 32px; padding-top: 20px; border-top: var(--hairline); display: flex; gap: 32px; flex-wrap: wrap; }
.steps__foot strong { color: var(--fg-1); font-weight: 500; }

/* ---------- Report walkthrough -------------------------- */
.walk { display: flex; flex-direction: column; gap: 80px; margin-top: 24px; }
.walk__row { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: center; }
.walk__row--flip { grid-template-columns: 1.15fr 1fr; }
.walk__row--flip .walk__copy { order: 2; }
.walk__cap { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); margin: 0 0 12px; display: flex; gap: 10px; align-items: center; }
.walk__cap .num { color: var(--rmr-blue); }
.walk__copy h3 { font-size: 26px; line-height: 1.2; letter-spacing: -0.014em; font-weight: 600; margin: 0 0 14px; max-width: 16ch; }
.walk__copy p { font-size: 16px; line-height: 1.6; color: var(--fg-2); margin: 0; max-width: 46ch; }
.walk__copy .askswer { font-style: italic; color: var(--fg-1); font-weight: 500; }
.walk__visual { background: white; border: var(--hairline); border-radius: 4px; padding: 32px; box-shadow: var(--shadow-1); }

/* ---------- Tables (report-style) ----------------------- */
.rep-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.rep-table thead th { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); font-weight: 500; text-align: left; padding: 8px 0; border-top: 1px solid var(--ink); border-bottom: var(--hairline); }
.rep-table thead th.num { text-align: right; }
.rep-table tbody td { padding: 9px 0; border-bottom: var(--hairline); font-variant-numeric: tabular-nums; }
.rep-table tbody td.num { text-align: right; font-family: var(--font-mono); }
.rep-table tbody tr.you td { background: var(--rmr-blue-50); }
.rep-table tbody tr.you td:first-child { font-weight: 600; color: var(--rmr-blue-700); padding-left: 8px; }
.rep-table tbody tr.you td:last-child { padding-right: 8px; }
.rep-page__hdr { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-faint); padding-bottom: 12px; border-bottom: 1px solid var(--ink); margin-bottom: 20px; }
.rep-page__cap { font-family: var(--font-mono); font-size: 10px; color: var(--fg-faint); margin-top: 14px; }
.rep-page__title { font-size: 18px; margin: 0 0 8px; letter-spacing: -0.012em; font-weight: 600; }
.rep-page__sub { font-size: 13.5px; line-height: 1.55; color: var(--fg-2); margin: 0 0 16px; max-width: 56ch; }

/* ---------- Distribution / chart parts ------------------ */
.dist { display: grid; grid-template-columns: 28px 1fr; gap: 8px; height: 200px; padding: 12px 0 0; }
.dist__yaxis { display: flex; flex-direction: column; justify-content: space-between; font-family: var(--font-mono); font-size: 10px; color: var(--fg-faint); text-align: right; padding: 6px 0 22px; }
.dist__plot { position: relative; border-bottom: 1px solid var(--ink); border-left: 1px solid var(--ink); padding-bottom: 22px; }
.dist__grid { position: absolute; left: 0; right: 0; height: 1px; background: var(--ink-faintest, rgba(0,0,0,0.06)); border-top: 1px dashed rgba(0,0,0,0.07); }
.dist__median { position: absolute; top: 0; bottom: 22px; width: 1px; background: var(--rmr-red, #b8443a); pointer-events: none; }
.dist__median-lbl { position: absolute; top: -4px; left: 4px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--rmr-red, #b8443a); white-space: nowrap; background: var(--paper, #f6f4ef); padding: 0 4px; }
.dist__bars { position: absolute; inset: 0 0 22px 0; display: flex; align-items: flex-end; gap: 4px; padding: 0 4px; }
.dist__bar { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; position: relative; }
.dist__bar-stack { width: 100%; height: 100%; display: flex; align-items: flex-end; }
.dist__col { width: 100%; background: var(--ink-faint); position: relative; }
.dist__col.you { background: var(--rmr-blue); }
.dist__col-lbl { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; color: var(--rmr-blue); font-weight: 600; }
.dist__lbl { position: absolute; bottom: -22px; font-family: var(--font-mono); font-size: 10px; color: var(--fg-muted); }
.dist__axis-title { font-family: var(--font-mono); font-size: 10.5px; color: var(--fg-faint); text-align: center; margin-top: 8px; letter-spacing: 0.04em; }
.dist__legend { display: flex; gap: 20px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-muted); margin-top: 16px; padding-top: 14px; border-top: var(--hairline); }
.dist__legend span::before { content: ""; display: inline-block; width: 10px; height: 10px; margin-right: 6px; vertical-align: -1px; }
.dist__legend .you::before { background: var(--rmr-blue); }
.dist__legend .mkt::before { background: var(--ink-faint); }

/* Theme bars */
.theme-list { display: flex; flex-direction: column; gap: 16px; }
.theme { display: grid; grid-template-columns: 1fr; gap: 6px; }
.theme__head { display: flex; justify-content: space-between; font-size: 13px; }
.theme__head .name { font-weight: 500; }
.theme__head .count { font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); }
.theme__bar { display: grid; grid-template-columns: 32px 1fr 36px; gap: 10px; align-items: center; }
.theme__bar .lbl { font-family: var(--font-mono); font-size: 9.5px; color: var(--fg-muted); }
.theme__bar .lbl.you { color: var(--rmr-blue-700); }
.theme__bar .track { height: 8px; background: var(--bg-2); position: relative; }
.theme__bar .fill { position: absolute; left: 0; top: 0; height: 100%; background: var(--ink-faint); }
.theme__bar .fill.you { background: var(--rmr-blue); }
.theme__bar .pct { font-family: var(--font-mono); font-size: 10.5px; text-align: right; }

/* Quadrant / scatter */
.quad { position: relative; height: 280px; background: white; border: var(--hairline); margin-left: 14px; }
.quad__grid { position: absolute; inset: 24px; border-left: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.quad__hline { position: absolute; left: 0; right: 0; top: 50%; border-top: 1px dashed var(--rule); }
.quad__vline { position: absolute; top: 0; bottom: 0; left: 50%; border-left: 1px dashed var(--rule); }
.quad__dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--ink-faint); transform: translate(-50%, 50%); }
.quad__dot.you { width: 12px; height: 12px; background: var(--rmr-blue); box-shadow: 0 0 0 3px rgba(24,112,232,0.18); }
.quad__dot.lead { background: var(--rmr-amber); }
.quad__lbl { position: absolute; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); }
.quad__lbl.x { bottom: 4px; right: 8px; }
.quad__lbl.y { left: 16px; top: 50%; transform: translate(-50%, -50%) rotate(-90deg); transform-origin: center; white-space: nowrap; color: var(--fg-muted); }
.quad__cap { font-family: var(--font-mono); font-size: 10px; color: var(--fg-faint); margin-top: 10px; }

/* Phrase pills */
.phrases { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.phrases__col h4 { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 14px; color: var(--fg-muted); display: flex; align-items: center; gap: 8px; }
.phrases__col .stars { font-family: var(--font-mono); color: var(--ink); }
.phrases__col.pos h4 .stars { color: var(--rmr-green-700); }
.phrases__col.neg h4 .stars { color: var(--data-negative); }
.phrase { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: var(--hairline); font-size: 13.5px; }
.phrase:last-child { border-bottom: 0; }
.phrase .word { color: var(--fg-1); }
.phrase .cnt { font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); }

/* Recommendations list */
.recs { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--ink); }
.rec { padding: 18px 0; border-bottom: var(--hairline); display: grid; grid-template-columns: 36px 1fr; gap: 16px; align-items: baseline; }
.rec__num { font-family: var(--font-mono); font-size: 11px; color: var(--rmr-blue); letter-spacing: 0.06em; }
.rec h4 { font-size: 15px; font-weight: 600; margin: 0 0 4px; letter-spacing: -0.006em; }
.rec p { font-size: 13.5px; line-height: 1.55; color: var(--fg-2); margin: 0; max-width: 60ch; }

/* Persona preview */
.persona-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; border-top: 1px solid var(--ink); padding-top: 18px; }
.persona-preview > div:last-child { grid-column: 1 / -1; padding-top: 14px; border-top: var(--hairline); }
.persona-preview .lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); display: block; margin-bottom: 6px; }
.persona-preview p { font-size: 13.5px; line-height: 1.55; color: var(--fg-1); margin: 0; max-width: 60ch; }
.persona-preview p.num { font-family: var(--font-mono); font-size: 15px; color: var(--rmr-blue-700); letter-spacing: 0.02em; }
.persona-preview p.note { font-size: 12px; color: var(--fg-muted); margin-top: 6px; line-height: 1.5; }

/* ABSA stacked-bar list */
.absa { display: flex; flex-direction: column; gap: 14px; }
.absa__row { display: flex; flex-direction: column; gap: 6px; }
.absa__head { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; }
.absa__head .name { font-weight: 500; color: var(--fg-1); }
.absa__head .count { font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); }
.absa__bar { display: flex; height: 14px; background: var(--bg-2); overflow: hidden; }
.absa__seg { height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.02em; color: rgba(255,255,255,0.95); }
.absa__seg.pos { background: var(--rmr-green-700); }
.absa__seg.neu { background: var(--ink-faint); color: var(--fg-2); }
.absa__seg.neg { background: var(--data-negative); }
.absa__legend { display: flex; gap: 18px; margin-top: 16px; padding-top: 14px; border-top: var(--hairline); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-muted); }
.absa__legend span::before { content: ""; display: inline-block; width: 10px; height: 10px; margin-right: 6px; vertical-align: -1px; }
.absa__legend .pos::before { background: var(--rmr-green-700); }
.absa__legend .neu::before { background: var(--ink-faint); }
.absa__legend .neg::before { background: var(--data-negative); }

/* SWOT 4-box grid */
.swot { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.swot__cell { padding: 14px 16px; border: var(--hairline); border-left-width: 3px; background: var(--bg-2); }
.swot__cell--strengths { border-left-color: var(--rmr-green-700); }
.swot__cell--weaknesses { border-left-color: var(--data-negative); }
.swot__cell--opportunities { border-left-color: var(--rmr-blue); }
.swot__cell--threats { border-left-color: var(--rmr-amber, #c98a32); }
.swot__k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); display: block; margin-bottom: 10px; }
.swot__cell ul { margin: 0; padding-left: 16px; list-style: disc; }
.swot__cell li { font-size: 12px; line-height: 1.45; color: var(--fg-1); margin: 0 0 4px; }
.swot__cell li:last-child { margin-bottom: 0; }

/* ---------- Form ---------------------------------------- */
.req { padding: 120px 0; background: var(--ink); color: var(--fg-on-dark); border-bottom: 1px solid var(--ink); }
.req__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.req__copy h2 { font-size: 40px; line-height: 1.1; letter-spacing: -0.02em; font-weight: 600; max-width: 16ch; margin: 0 0 20px; color: var(--fg-on-dark); }
.req__copy p { font-size: 17px; line-height: 1.6; color: rgba(244,242,236,0.75); max-width: 46ch; margin: 0 0 32px; }
.req__copy .eyebrow { color: rgba(244,242,236,0.55); }
.req__assure { display: flex; flex-direction: column; gap: 14px; padding-top: 28px; border-top: 1px solid rgba(244,242,236,0.12); }
.req__assure .row { display: grid; grid-template-columns: 16px 1fr; gap: 12px; align-items: baseline; font-size: 14px; color: rgba(244,242,236,0.85); }
.req__assure .row svg { width: 14px; height: 14px; stroke: var(--rmr-green); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; margin-top: 4px; }

.form-card { background: var(--paper); color: var(--fg-1); padding: 40px; border-radius: 4px; }
.form-card h3 { font-size: 18px; margin: 0 0 24px; font-weight: 600; letter-spacing: -0.008em; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field__lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); }
.field__help { font-size: 12.5px; color: var(--fg-faint); margin-top: 2px; }
.field input { font-family: var(--font-sans); font-size: 16px; padding: 12px 14px; border: 1px solid var(--rule-strong); background: white; border-radius: 2px; outline: none; color: var(--fg-1); transition: border-color 120ms var(--ease-out), box-shadow 120ms var(--ease-out); }
.field input:focus { border-color: var(--rmr-blue); box-shadow: 0 0 0 2px rgba(24,112,232,0.16); }
.field input.err { border-color: var(--data-negative); }
.field__err { font-size: 12.5px; color: var(--data-negative); margin-top: 2px; }
.field--hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-card__consent { font-size: 12.5px; line-height: 1.5; color: var(--fg-muted); margin: 16px 0 0; max-width: 48ch; }
.form-card__consent a { color: var(--fg-1); }
.form-card__err { background: #FCEEEB; color: #8C2C19; border: 1px solid #E8B5A8; padding: 10px 14px; font-size: 13.5px; border-radius: 2px; margin-bottom: 16px; }
.form-card__btn { width: 100%; justify-content: center; margin-top: 8px; padding: 14px 18px; }

.form-card--success { display: flex; flex-direction: column; gap: 16px; }
.form-card--success .tick { width: 40px; height: 40px; border-radius: 50%; background: var(--rmr-green-50); color: var(--rmr-green-700); display: inline-flex; align-items: center; justify-content: center; }
.form-card--success .tick svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form-card--success h3 { margin: 0; font-size: 22px; }
.form-card--success p { font-size: 15px; line-height: 1.6; color: var(--fg-2); margin: 0; max-width: 44ch; }
.form-card--success .ack { font-family: var(--font-mono); font-size: 12px; color: var(--fg-faint); padding-top: 14px; border-top: var(--hairline); }

/* ---------- Pricing context ----------------------------- */
.price { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.price__range { background: var(--bg-2); padding: 32px 36px; border: var(--hairline); border-radius: 4px; }
.price__range .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); margin: 0 0 12px; display: block; }
.price__range .num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 56px; font-weight: 600; letter-spacing: -0.024em; line-height: 1; }
.price__range .num .small { font-size: 30px; color: var(--fg-muted); margin: 0 6px; }
.price__range .desc { font-size: 14px; color: var(--fg-2); margin: 16px 0 0; line-height: 1.55; max-width: 36ch; }
.price__range hr { margin: 24px 0; border: 0; border-top: var(--hairline); }
.price__range .meta { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
.price__range .meta .row { display: flex; justify-content: space-between; gap: 16px; }
.price__range .meta .row .k { color: var(--fg-muted); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.price__range .meta .row .v { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* ---------- About --------------------------------------- */
.about { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.about__card { border: var(--hairline); padding: 28px; background: white; border-radius: 4px; }
.about__card .photo { width: 64px; height: 64px; border-radius: 50%; background: var(--bg-2); border: var(--hairline); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); color: var(--fg-muted); font-size: 13px; }
.about__card h4 { margin: 16px 0 4px; font-size: 17px; font-weight: 600; }
.about__card .role { font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-muted); letter-spacing: 0.04em; }
.about__card .meta { margin-top: 20px; padding-top: 16px; border-top: var(--hairline); display: flex; flex-direction: column; gap: 8px; font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-muted); }
.about__card .meta a { color: var(--fg-1); text-decoration: none; }
.about__card .meta a:hover { color: var(--rmr-blue); }
.about__copy p { font-size: 17px; line-height: 1.65; color: var(--fg-2); margin: 0 0 18px; max-width: 60ch; }
.about__copy p strong { color: var(--fg-1); font-weight: 600; }
.about__values { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--ink); }
.about__values .v { padding: 16px 16px 16px 0; border-right: var(--hairline); }
.about__values .v:nth-child(2n) { border-right: 0; padding-right: 0; padding-left: 16px; }
.about__values .v:nth-child(n+3) { border-top: var(--hairline); }
.about__values .v .lbl { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rmr-blue); display: block; margin-bottom: 6px; }
.about__values .v .desc { font-size: 14px; line-height: 1.5; color: var(--fg-2); margin: 0; }

/* ---------- Methodology teaser grid --------------------- */
.meth-grid { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; border-top: 1px solid var(--ink); }
.meth-grid__item { padding: 24px 24px 24px 0; border-right: var(--hairline); border-bottom: var(--hairline); display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.meth-grid__item:nth-child(3n) { border-right: 0; padding-right: 0; }
.meth-grid__item:nth-child(3n+1) { padding-left: 0; }
.meth-grid__item:nth-child(3n+2) { padding-left: 24px; }
.meth-grid__item:nth-child(3n) { padding-left: 24px; }
.meth-grid__item:nth-last-child(-n+3) { border-bottom: 0; }
.meth-grid__k { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rmr-blue); }
.meth-grid__v { font-size: 14.5px; line-height: 1.55; color: var(--fg-1); margin: 0; max-width: 36ch; overflow-wrap: break-word; hyphens: auto; }
.meth-grid__foot { margin-top: 28px; display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.btn--ghost { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid var(--ink); background: transparent; color: var(--fg-1); font-size: 14px; text-decoration: none; transition: background 120ms; }
.btn--ghost:hover { background: var(--ink); color: var(--fg-on-dark); }
@media (max-width: 920px) {
  .meth-grid { grid-template-columns: 1fr; }
  .meth-grid__item { padding: 20px 0 !important; border-right: 0; }
}

/* ---------- Footer logo --------------------------------- */
.ftr__logo { width: 56px; height: 56px; display: block; object-fit: contain; flex: none; }
.ftr__brand-link { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.ftr__brand-name { font-family: inherit; font-size: 15px; letter-spacing: -0.012em; color: var(--fg-on-dark); font-weight: 600; line-height: 1; }

/* ---------- FAQ ----------------------------------------- */
.faq { border-top: 1px solid var(--ink); }
.faq__item { border-bottom: var(--hairline); padding: 22px 0; cursor: pointer; }
.faq__q { display: flex; justify-content: space-between; gap: 24px; font-size: 17px; font-weight: 500; color: var(--fg-1); align-items: baseline; }
.faq__sign { font-family: var(--font-mono); font-size: 16px; color: var(--fg-muted); flex: none; transition: transform 200ms var(--ease-out); }
.faq__item.open .faq__sign { transform: rotate(45deg); color: var(--rmr-blue); }
.faq__a { font-size: 15px; line-height: 1.65; color: var(--fg-2); margin: 14px 0 0; max-width: 64ch; }
.faq__a a { color: var(--rmr-blue); }
.faq__item:not(.open) .faq__a { display: none; }

/* ---------- Final CTA ----------------------------------- */
.final-cta { padding: 120px 0; text-align: left; background: var(--paper); border-bottom: var(--hairline); }
.final-cta__inner { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.final-cta h2 { font-size: 48px; line-height: 1.05; letter-spacing: -0.022em; font-weight: 600; margin: 0 0 24px; max-width: 18ch; text-wrap: balance; }
.final-cta p { font-size: 18px; line-height: 1.55; color: var(--fg-2); max-width: 52ch; margin: 0 0 32px; }
.final-cta__cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.final-cta__cta .or { font-family: var(--font-mono); font-size: 12px; color: var(--fg-faint); }
.final-cta__cta a.email { color: var(--fg-1); text-decoration: underline; text-underline-offset: 0.2em; font-size: 14.5px; }

/* ---------- Footer -------------------------------------- */
.ftr { background: var(--ink); color: var(--fg-on-dark); padding: 72px 0 40px; }
.ftr__inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; }
.ftr__brand { display: flex; flex-direction: column; gap: 14px; }
.ftr__brand img { height: 30px; width: auto; }
.ftr__tag { font-size: 13.5px; line-height: 1.6; color: rgba(244,242,236,0.6); max-width: 32ch; margin: 0; }
.ftr__col { display: flex; flex-direction: column; gap: 10px; }
.ftr__col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,242,236,0.5); margin: 0 0 6px; font-weight: 500; }
.ftr__col a { color: rgba(244,242,236,0.85); text-decoration: none; font-size: 13.5px; transition: color 120ms; }
.ftr__col a:hover { color: white; }
.ftr__legal { max-width: 1200px; margin: 56px auto 0; padding: 24px 32px 0; border-top: 1px solid rgba(244,242,236,0.12); display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; font-family: var(--font-mono); font-size: 11px; color: rgba(244,242,236,0.55); line-height: 1.7; }
.ftr__legal a { color: rgba(244,242,236,0.75); text-decoration: underline; text-underline-offset: 0.2em; }

/* ---------- Article (legal/methodology pages) ----------- */
.article { padding: 80px 0 120px; }
.article__head { padding-bottom: 40px; border-bottom: var(--hairline); margin-bottom: 48px; }
.article__eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-muted); margin: 0 0 16px; }
.article h1 { font-size: 48px; line-height: 1.08; letter-spacing: -0.022em; font-weight: 600; margin: 0 0 16px; max-width: 18ch; }
.article__lede { font-size: 19px; line-height: 1.55; color: var(--fg-2); max-width: 60ch; margin: 0; }
.article__meta { font-family: var(--font-mono); font-size: 11px; color: var(--fg-faint); letter-spacing: 0.04em; margin-top: 24px; display: flex; gap: 24px; }
.article__body { display: grid; grid-template-columns: 200px 1fr; gap: 56px; align-items: start; }
.article__toc { position: sticky; top: 88px; }
.article__toc h4 { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); margin: 0 0 12px; font-weight: 500; }
.article__toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; display: flex; flex-direction: column; gap: 8px; }
.article__toc li { counter-increment: toc; font-size: 13px; }
.article__toc li::before { content: counter(toc, decimal-leading-zero) " · "; font-family: var(--font-mono); color: var(--fg-faint); font-size: 11px; }
.article__toc a { color: var(--fg-2); text-decoration: none; }
.article__toc a:hover { color: var(--rmr-blue); }
.article__content h2 { font-size: 26px; line-height: 1.2; letter-spacing: -0.014em; font-weight: 600; margin: 56px 0 16px; counter-increment: sec; }
.article__content h2:first-child { margin-top: 0; }
.article__content h3 { font-size: 17px; font-weight: 600; margin: 28px 0 8px; letter-spacing: -0.006em; }
.article__content p { font-size: 16.5px; line-height: 1.7; color: var(--fg-1); margin: 0 0 16px; max-width: 65ch; }
.article__content ul { padding-left: 20px; margin: 0 0 16px; }
.article__content li { font-size: 16.5px; line-height: 1.7; color: var(--fg-1); margin-bottom: 6px; max-width: 64ch; }
.article__content code { background: var(--bg-2); padding: 2px 6px; border-radius: 2px; font-size: 14px; }
.article__content blockquote { border-left: 2px solid var(--rmr-blue); padding: 4px 0 4px 20px; margin: 16px 0; color: var(--fg-2); font-size: 16px; line-height: 1.6; max-width: 60ch; }
.article__content table { width: 100%; border-collapse: collapse; margin: 20px 0 24px; font-size: 14.5px; }
.article__content th { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); font-weight: 500; text-align: left; padding: 8px 12px 8px 0; border-top: 1px solid var(--ink); border-bottom: var(--hairline); }
.article__content td { padding: 10px 12px 10px 0; border-bottom: var(--hairline); vertical-align: top; line-height: 1.5; }
.article__content td:first-child { font-weight: 500; width: 28%; }

/* Unsubscribe form */
.unsub { padding: 80px 0 120px; }
.unsub__card { background: white; border: var(--hairline); padding: 40px; border-radius: 4px; max-width: 520px; }

/* ---------- Responsive ---------------------------------- */
@media (max-width: 920px) {
  .hero { padding: 56px 0; }
  .hero__grid, .intro__grid, .walk__row, .walk__row--flip, .req__grid, .price, .about, .article__body { grid-template-columns: 1fr; gap: 40px; }
  .walk__row--flip .walk__copy { order: 0; }
  .hero h1 { font-size: 44px; }
  .section { padding: 72px 0; }
  .section h2 { font-size: 30px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: 0; border-bottom: var(--hairline); padding: 24px 0; }
  .step + .step { padding-left: 0; }
  .ftr__inner { grid-template-columns: 1fr 1fr; }
  .ftr__brand { grid-column: 1 / -1; }
  .proof__inner { grid-template-columns: 1fr; gap: 16px; }
  .proof__text { font-size: 22px; }
  .article__toc { position: static; }
  .final-cta h2 { font-size: 34px; }
}

@media (max-width: 720px) {
  .hdr__inner { padding: 14px 20px; gap: 12px; }
  .hdr__menu-btn { display: inline-flex; }
  .nav, .hdr__cta { display: none; }
  .hdr.menu-open { border-bottom-color: var(--rule); }
  .hdr.menu-open .hdr__inner { flex-wrap: wrap; row-gap: 0; }
  .hdr.menu-open .nav { display: flex; flex-direction: column; gap: 0; align-items: stretch; width: 100%; order: 3; padding: 8px 0 4px; border-top: var(--hairline); margin-top: 12px; }
  .hdr.menu-open .nav a { padding: 14px 4px; font-size: 16px; border-bottom: var(--hairline); color: var(--fg-1); }
  .hdr.menu-open .nav a:last-child { border-bottom: 0; }
  .hdr.menu-open .hdr__cta { display: flex; width: 100%; order: 4; padding-top: 12px; padding-bottom: 4px; }
  .hdr.menu-open .hdr__cta .btn { width: 100%; justify-content: center; padding: 14px 18px; font-size: 15px; }
}

@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 20px; }
  .topbar__inner { padding: 0 20px; }
  .hero { padding: 40px 0 56px; }
  .hero__eyebrow { margin-bottom: 20px; }
  .hero h1 { font-size: 34px; line-height: 1.06; max-width: 100%; }
  .hero__sub { font-size: 16px; margin-top: 20px; }
  .hero__ctas { gap: 10px; margin-top: 28px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__visual { padding: 18px 16px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .section { padding: 56px 0; }
  .section h2 { font-size: 26px; }
  .section__lede { font-size: 16px; margin-bottom: 36px; }
  .steps { grid-template-columns: 1fr; }
  .step { padding: 20px 0; }
  .req { padding: 64px 0; }
  .req__copy h2 { font-size: 28px; }
  .req__copy p { font-size: 15.5px; }
  .form-card { padding: 24px; }
  .about__values { grid-template-columns: 1fr; }
  .about__values .v { padding: 16px 0 !important; border-right: 0; border-bottom: var(--hairline); }
  .about__values .v:last-child { border-bottom: 0; }
  .about__values .v:nth-child(n+3) { border-top: 0; }
  .final-cta { padding: 64px 0; }
  .final-cta__inner { padding: 0 20px; }
  .final-cta h2 { font-size: 28px; }
  .final-cta p { font-size: 16px; }
  .final-cta__cta { gap: 12px; }
  .final-cta__cta .btn { width: 100%; justify-content: center; }
  .ftr { padding: 56px 0 32px; }
  .ftr__inner { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .ftr__brand { grid-column: auto; }
  .ftr__legal { grid-template-columns: 1fr; gap: 16px; padding: 24px 20px 0; margin-top: 40px; }
  .article { padding: 56px 0 80px; }
  .article h1 { font-size: 32px; }
  .article__head { margin-bottom: 32px; padding-bottom: 28px; }
  .article__content h2 { font-size: 22px; margin: 40px 0 12px; }
  .article__content p, .article__content li { font-size: 15.5px; }
  .proof { padding: 56px 0; }
  .proof__mark { font-size: 64px; }
  .proof__text { font-size: 19px; }
  .walk__visual { padding: 20px; }
  .walk__copy h3 { font-size: 22px; }
  .price__range { padding: 24px; }
  .price__range .num { font-size: 44px; }
  .price__range .num .small { font-size: 22px; }
  .unsub { padding: 56px 0 80px; }
  .unsub__card { padding: 24px; }
}

@media print {
  .topbar, .hdr, .ftr, .req__assure { display: none; }
}
