/* ============================================================
   Expense Audit — institutional fidelity stylesheet
   Inter (sans) + Source Serif 4 (italic accents only)
   Yellow #FFE600 used as keyline + single color band, not Stabilo
   ============================================================ */

:root {
  --yellow: #FFE600;
  --yellow-soft: #FFF6A8;
  --yellow-dark: #E8D000;

  --ink: #0B1220;
  --ink-2: #1B2230;
  --ink-3: #3A4252;
  --slate: #5F6675;
  --mute: #8B92A1;
  --hair: #E5E3DA;
  --hair-2: #EFEDE5;
  --paper: #FAFAF7;
  --paper-2: #F5F3EC;
  --white: #FFFFFF;

  --foc-blue: #1E3A8A;
  --foc-red: #B83232;

  --maxw: 1240px;
  --pad: 32px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  --t-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --t-serif: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--t-display);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "ss03", "cv11";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.serif-italic {
  font-family: var(--t-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
}
.kicker--blue { color: var(--foc-blue); }
.kicker--yellow { color: var(--yellow); }

.unit { font-size: 0.55em; font-weight: 700; opacity: 0.72; letter-spacing: 0.02em; }

/* ----------------- Utility bar (top hairline) ----------------- */
.utility-bar {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 32px;
  gap: 32px;
}
.utility-left { font-weight: 600; color: var(--white); letter-spacing: 0.12em; text-transform: uppercase; font-size: 11px; }
.utility-right { display: flex; gap: 12px; font-feature-settings: "tnum"; }
.utility-right .dot-sep { color: rgba(255,255,255,0.35); }

/* ----------------- Header ----------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--hair);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  gap: 32px;
}

.brand { display: inline-flex; align-items: center; gap: 4px; }

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  flex-shrink: 0;
}
.brand-mark--sm { width: 56px; height: 56px; }
.brand-mark--lion { padding: 2px; }
.brand-mark--lion img { width: 100%; height: 100%; object-fit: contain; }

/* dot mark (used on dots variant) */
.brand-mark--dots {
  position: relative;
  width: 52px;
  height: 52px;
}
.brand-mark--dots .dot-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 4px;
}
.brand-mark--dots .dot-grid span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  align-self: center;
  justify-self: center;
  transition: transform 0.2s;
}
.brand-mark--dots .dot-grid span.lit { background: var(--yellow); box-shadow: 0 0 0 2px var(--ink); }
.brand-mark--dots .dot-grid span.muted { background: var(--hair); }

.wordmark { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.wordmark-name {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.x-red { color: inherit; }

.i-dot { position: relative; display: inline-block; }
.i-dot::after {
  content: "";
  position: absolute;
  top: -0.28em;
  left: 50%;
  transform: translateX(-50%);
  width: 1.05em;
  height: 1.05em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g fill='%23FFE600'><circle cx='50' cy='50' r='15'/><path d='M50 0 L54 26 L46 26 Z'/><path d='M50 100 L54 74 L46 74 Z'/><path d='M0 50 L26 54 L26 46 Z'/><path d='M100 50 L74 54 L74 46 Z'/><path d='M14.6 14.6 L37 31 L31 37 Z'/><path d='M85.4 85.4 L63 69 L69 63 Z'/><path d='M85.4 14.6 L69 37 L63 31 Z'/><path d='M14.6 85.4 L31 63 L37 69 Z'/></g></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
  z-index: 2;
}
.wordmark-sub {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}
.primary-nav a {
  color: var(--ink-3);
  position: relative;
  padding: 6px 0;
  transition: color 0.15s;
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav .nav-phone {
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
  padding-left: 4px;
}
.primary-nav .nav-phone:hover { color: var(--ink); opacity: 0.7; }
.primary-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 11px 18px;
  border-radius: var(--r-md);
  font-weight: 600;
  border: 1px solid var(--ink);
  transition: background 0.15s;
}
.primary-nav .nav-cta:hover { background: #000; }

/* ----------------- Buttons ----------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--r-md);
  transition: all 0.18s ease;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 16px 28px;
  position: relative;
}
.btn-primary:hover { background: var(--yellow-dark); }
.btn-primary--invert { background: var(--yellow); border-color: var(--yellow); }
.btn-link {
  color: var(--ink);
  padding: 16px 8px;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn-link:hover { color: var(--foc-blue); border-color: var(--foc-blue); }
.btn-link--invert { color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-link--invert:hover { color: var(--yellow); border-color: var(--yellow); }

/* ----------------- Hero ----------------- */
.hero { padding: 80px 0 96px; position: relative; }

/* ---- Split hero (homepage cover with diagnostic memo) ---- */
.hero--split {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--hair);
}
.split-bg-yellow {
  position: absolute;
  inset: 0 0 0 auto;
  width: 50%;
  background: var(--yellow);
  z-index: 0;
  pointer-events: none;
}
.split-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  padding-top: 56px;
  padding-bottom: 88px;
  align-items: center;
}

.split-left { padding-right: 16px; }
.split-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.split-meta .meta-num { color: var(--ink); }
.split-meta .meta-rule { width: 28px; height: 1px; background: var(--hair); }
.split-meta .meta-status { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-2); }
.split-meta .status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #1f8a5b;
  box-shadow: 0 0 0 3px rgba(31,138,91,0.14);
}

.split-headline {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(64px, 8.4vw, 128px);
  line-height: 0.88;
  letter-spacing: -0.05em;
  color: var(--ink);
  margin: 0 0 30px;
}
.split-headline--top { margin-top: -8px; }
.split-headline .line { display: block; }
.split-headline .line:nth-child(2) { padding-left: 0.9em; }
.split-headline .line:nth-child(3) { padding-left: 1.6em; }
.split-headline .serif-italic {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.025em;
  font-size: 1.05em;
}
.split-headline .hl-block {
  background: var(--yellow);
  padding: 0 0.14em 0.06em;
  display: inline-block;
}

.split-lede {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 500;
  max-width: 540px;
  margin: 0 0 32px;
  letter-spacing: -0.005em;
}
.split-lede strong { color: var(--ink); font-weight: 700; }
.split-lede em {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
}

.split-cta { display: flex; gap: 18px; align-items: center; margin-bottom: 48px; flex-wrap: wrap; }

.split-credentials {
  display: flex;
  gap: 36px;
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
  border-top: 1px solid var(--hair);
}
.split-credentials li { display: flex; flex-direction: column; gap: 4px; }
.split-credentials-foot { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--ink-3); margin: 12px 0 0; font-style: italic; text-transform: none; letter-spacing: 0.02em; }
.split-credentials strong {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.split-credentials span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}

/* Diagnostic memo card */
.split-right { display: flex; align-items: center; justify-content: center; }
.diag-card {
  background: #fff;
  width: 100%;
  max-width: 480px;
  border: 1px solid var(--ink);
  box-shadow:
    0 1px 0 0 var(--ink),
    14px 14px 0 -1px var(--ink),
    14px 14px 0 0 var(--yellow);
  padding: 28px 30px 24px;
  font-feature-settings: "tnum" 1;
  transform: rotate(-1.2deg);
  position: relative;
}
.diag-card::before {
  content: "C O N F I D E N T I A L";
  position: absolute;
  top: 18px;
  right: -34px;
  background: var(--ink);
  color: var(--yellow);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  padding: 4px 38px;
  transform: rotate(38deg);
  z-index: 2;
}
.diag-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 16px;
}
.diag-stamp { display: flex; flex-direction: column; gap: 2px; }
.diag-stamp-row {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.diag-stamp-row:nth-child(2) { color: var(--ink-3); letter-spacing: 0.16em; }
.diag-meta {
  display: grid;
  grid-template-columns: auto auto;
  gap: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  text-align: right;
}
.diag-meta .dim { color: var(--ink-3); letter-spacing: 0.1em; text-transform: uppercase; font-size: 10px; }
.diag-meta .redact {
  display: inline-block;
  width: 64px;
  height: 9px;
  background: var(--ink);
  vertical-align: middle;
}

.diag-rows { display: flex; flex-direction: column; gap: 14px; }
.diag-row {
  padding: 12px 0;
  border-bottom: 1px dashed var(--hair-2, #e0ddd2);
}
.diag-row:last-child { border-bottom: 0; }
.diag-row-cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.diag-row-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: 13px;
}
.diag-row-grid .dim { color: var(--ink-3); }
.diag-row-grid .num { font-weight: 700; color: var(--ink); text-align: right; font-variant-numeric: tabular-nums; }
.diag-row-grid .num.strike {
  color: var(--ink-3);
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-color: #c83b3b;
  text-decoration-thickness: 2px;
}
.diag-row-grid .num.pos { color: #0f6f3f; }

.diag-total {
  margin-top: 16px;
  padding: 14px 14px 12px;
  border: 1.5px solid var(--ink);
  background: #fff;
}
.diag-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.diag-total-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.diag-total-value { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.diag-total-hl {
  background: var(--yellow);
  padding: 1px 10px 3px;
  display: inline-block;
}
.diag-total-hl .unit { font-size: 0.55em; font-weight: 700; color: var(--ink-2); }
.diag-total-sub {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
}

.diag-foot {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.diag-foot-stamp { color: var(--ink); }
.diag-foot-rule { flex: 1; height: 1px; background: var(--hair); }

@media (max-width: 1000px) {
  .split-bg-yellow { display: none; }
  .split-grid { grid-template-columns: 1fr; gap: 48px; padding: 40px 0 64px; }
  .split-headline { font-size: clamp(56px, 12vw, 96px); }
  .diag-card { max-width: 100%; transform: rotate(-0.6deg); }
  .diag-card::before { right: -28px; padding: 4px 32px; font-size: 8px; }
}

.hero-orig::before {
  content: "";
.hero--cover { padding: 48px 0 0; overflow: hidden; }
.hero--cover::before { display: none; }
.cover-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(180px, 22vw, 320px);
  height: clamp(180px, 22vw, 320px);
  background: var(--yellow);
  z-index: 0;
  pointer-events: none;
}
.hero--cover .container { position: relative; z-index: 1; }

.cover-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 28px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--hair);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.cover-meta .meta-pill { color: var(--ink); }
.cover-meta .meta-rule { width: 28px; height: 1px; background: var(--hair); }
.cover-meta .meta-spacer { flex: 1; }
.cover-meta .meta-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
}
.cover-meta .status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #1f8a5b;
  box-shadow: 0 0 0 3px rgba(31,138,91,0.14);
}

.cover-headline {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(80px, 14.5vw, 220px);
  line-height: 0.86;
  letter-spacing: -0.055em;
  color: var(--ink);
  margin: 0 0 72px;
}
.cover-headline .cline { display: block; }
.cover-headline .cline-2 { padding-left: 1.4em; }
.cover-headline .cline-3 { padding-left: 3.2em; }
.cover-headline .serif-italic {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.025em;
  font-size: 1.04em;
}
.cover-headline .hl-block {
  background: var(--yellow);
  padding: 0 0.14em 0.06em;
  display: inline-block;
  margin-left: -0.08em;
}

.cover-foot {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hair);
}
.cover-lede {
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink-2);
  font-weight: 500;
  max-width: 620px;
  letter-spacing: -0.005em;
  margin: 0 0 14px;
}
.cover-lede strong { color: var(--ink); font-weight: 700; }
.cover-promise {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
}
.cover-foot-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.btn-primary--lg { padding: 22px 32px; font-size: 16px; }

.cover-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 36px 0 88px;
  margin: 0;
}
.cover-stats > div {
  padding: 4px 28px;
  border-left: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cover-stats > div:first-child { padding-left: 0; border-left: 0; }
.cover-stats dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  order: 2;
}
.cover-stats dd {
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 0.95;
  margin: 0;
  order: 1;
}
.cover-stats dd .unit {
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-2);
}

.hero-brief-wrap { padding: 0 0 96px; background: var(--paper); border-top: 1px solid var(--hair); }
.hero-brief-wrap { padding: 64px 0 88px; }
.hero-brief-wrap .hero-brief { max-width: 880px; margin: 0 auto; }

@media (max-width: 900px) {
  .cover-headline { font-size: clamp(56px, 13vw, 120px); margin-bottom: 48px; }
  .cover-headline .cline-2 { padding-left: 0.8em; }
  .cover-headline .cline-3 { padding-left: 1.6em; }
  .cover-foot { grid-template-columns: 1fr; gap: 32px; align-items: stretch; }
  .cover-stats { grid-template-columns: 1fr 1fr; gap: 24px 0; padding: 32px 0 64px; }
  .cover-stats > div:nth-child(3) { padding-left: 0; border-left: 0; }
  .cover-meta { flex-wrap: wrap; gap: 10px; }
  .cover-meta .meta-spacer { display: none; }
  .cover-corner { width: 140px; height: 140px; }
}

.hero-orig::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--hair), transparent);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 72px;
  align-items: start;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 8px 16px 8px 12px;
  border: 1px solid var(--hair);
  border-radius: 99px;
  background: var(--paper);
  margin-bottom: 36px;
}
.eyebrow-tick {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,230,0,0.18);
}
.hero-headline {
  font-size: clamp(64px, 9vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 32px;
}
.hero-headline .serif-italic {
  position: relative;
  display: inline-block;
  font-size: 1.08em;
  letter-spacing: -0.03em;
  color: var(--ink);
  padding: 0 0.06em;
}
.hero-headline .serif-italic::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.08em;
  top: 0.42em;
  background: var(--yellow);
  z-index: -1;
  border-radius: 2px;
}
.hero-lede {
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 580px;
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.cta-row { display: inline-flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.hero-proof {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.hero-proof div { display: flex; flex-direction: column; gap: 6px; }
.hero-proof dt {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
}
.hero-proof dd {
  font-family: var(--t-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-feature-settings: "tnum";
}

/* hero brief card */
.hero-brief {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: 32px;
}
.hero-brief::before {
  content: "";
  position: absolute;
  left: 32px; right: 32px;
  top: -1px;
  height: 3px;
  background: var(--yellow);
}
.brief-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.brief-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
}
.brief-status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 4px 10px;
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: 99px;
}
.brief-title {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 22px;
}
.brief-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.brief-list li { display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start; }
.brief-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  padding-top: 4px;
  border-top: 1px solid var(--ink);
  text-align: left;
}
.brief-list h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.01em; }
.brief-list p { font-size: 14px; line-height: 1.5; color: var(--ink-3); }

.brief-foot { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--hair); }
.brief-foot-share { display: flex; flex-direction: column; gap: 10px; }
.share-row {
  display: grid;
  grid-template-columns: 110px 1fr 48px;
  align-items: center;
  gap: 14px;
}
.share-label { font-size: 12px; font-weight: 500; color: var(--slate); letter-spacing: 0.04em; }
.share-bar {
  display: block;
  height: 8px;
  background: var(--hair);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}
.share-fill { display: block; height: 100%; background: var(--ink); border-radius: 99px; }
.share-fill--full { background: var(--yellow); }
.share-num {
  font-size: 14px;
  font-weight: 700;
  font-feature-settings: "tnum";
  text-align: right;
  color: var(--ink);
}

/* ----------------- Trust band (FOC stats) ----------------- */
.trust-band {
  background: var(--ink);
  color: var(--white);
  padding: 88px 0 100px;
  position: relative;
}
.trust-band::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 4px; background: var(--yellow);
}
.trust-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: end; }
.trust-head .kicker { color: var(--yellow); margin-bottom: 14px; }
.trust-head h2 {
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 18px;
}
.trust-head p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.55; max-width: 380px; }
.trust-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.18);
}
.trust-stats li {
  padding: 28px 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-stats li + li { border-left: 1px solid rgba(255,255,255,0.18); padding-left: 28px; }
.trust-stats .stat-num {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  font-feature-settings: "tnum";
}
.hero-orig::before {
  content: "";
.counsel-strip {
  padding: 64px 0;
  background: var(--paper);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.counsel-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.counsel-left h3 {
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin: 14px 0 16px;
  max-width: 600px;
}
.counsel-left p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 620px;
}
.counsel-left p strong { color: var(--ink); font-weight: 700; }
.counsel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--hair);
}
.counsel-stats li {
  padding: 24px 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.counsel-stats .stat-num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.counsel-stats .stat-num .unit { font-size: 0.6em; font-weight: 700; color: var(--ink-2); }
.counsel-stats .stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
@media (max-width: 900px) {
  .counsel-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ----------------- Brandeis origin section ----------------- */
.brandeis {
  padding: 96px 0;
  background: var(--paper);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.brandeis-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.brandeis-portrait { margin: 0; }
.portrait-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #fff;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 0 var(--yellow);
  position: relative;
  overflow: hidden;
}
.portrait-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18px;
}
.placeholder-stripes {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      #1f2530 0,
      #1f2530 2px,
      #2c3340 2px,
      #2c3340 14px
    );
  opacity: 0.92;
}
.placeholder-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,0.92);
  padding: 10px 12px;
  border-left: 3px solid var(--yellow);
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--ink);
  max-width: 90%;
}
.placeholder-name { font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 11px; }
.placeholder-spec { color: var(--ink-2); }
.placeholder-source { color: var(--ink-3); }
.brandeis-portrait figcaption {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-3);
  font-style: italic;
}

.brandeis-body h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 12px 0 32px;
  color: var(--ink);
  max-width: 640px;
}

.brandeis-quote {
  position: relative;
  margin: 0 0 36px;
  padding: 28px 28px 24px;
  border-left: 4px solid var(--yellow);
  background: #fff;
  border-top: 1px solid var(--hair);
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.brandeis-quote p {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.brandeis-quote cite {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: block;
  line-height: 1.5;
}
.brandeis-quote cite em { font-style: italic; text-transform: none; letter-spacing: 0; color: var(--ink-2); }

.brandeis-prose p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 16px;
  max-width: 680px;
}
.brandeis-prose .brandeis-coda {
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
  font-size: 19px;
  color: var(--ink);
  font-weight: 500;
}
.brandeis-prose .brandeis-coda em {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-style: italic;
}

@media (max-width: 900px) {
  .brandeis { padding: 64px 0; }
  .brandeis-grid { grid-template-columns: 1fr; gap: 32px; }
  .portrait-frame { max-width: 280px; }
}

.trust-stats .stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ----------------- Approach section ----------------- */
.approach { padding: 110px 0 96px; }
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
}
.approach-aside { position: sticky; top: 96px; align-self: start; }
.approach-aside .kicker { display: inline-flex; margin-bottom: 22px; }
.approach-aside h2 {
  font-size: 50px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.approach-lede {
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink);
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--hair);
  max-width: 620px;
}
.principles { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 48px; }
.principle { display: flex; flex-direction: column; gap: 10px; }
.principle-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--foc-blue);
  border: 1px solid var(--foc-blue);
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 6px;
  letter-spacing: 0;
}
.principle h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.principle p { font-size: 15px; color: var(--ink-3); line-height: 1.55; }

/* ----------------- Pricing band (yellow) ----------------- */
.pricing-band {
  background: var(--yellow);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 56px 0;
}
.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.pricing-quote { display: flex; gap: 22px; align-items: flex-start; }
.pricing-rule {
  width: 4px;
  align-self: stretch;
  background: var(--ink);
}
.pricing-quote p {
  font-size: 28px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid rgba(11,18,32,0.15);
}
.tier {
  padding: 4px 24px;
  border-right: 1px solid rgba(11,18,32,0.15);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tier-year {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.75;
}
.tier-share {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  font-feature-settings: "tnum";
}
.tier-share span { font-size: 0.5em; font-weight: 700; vertical-align: top; margin-left: 2px; }
.tier-note { font-size: 12px; letter-spacing: 0.06em; color: var(--ink); opacity: 0.75; text-transform: uppercase; }
.tier--full .tier-share { color: var(--ink); }
.tier--full { background: rgba(11,18,32,0.05); }

/* ----------------- Section header (shared) ----------------- */
.section-head { margin-bottom: 56px; max-width: 760px; }
.section-head .kicker { display: inline-flex; margin-bottom: 18px; }
.section-head h2 {
  font-size: 48px;
  line-height: 1.04;
  letter-spacing: -0.028em;
  font-weight: 700;
  margin-bottom: 18px;
}
.section-lede {
  font-size: 17px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 580px;
}
.section-head--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  max-width: none;
}
.section-head--row .section-lede { max-width: 380px; }

/* ----------------- Engagement steps ----------------- */
.engagement { padding: 110px 0; background: var(--paper); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
}
.step {
  padding: 32px 28px 32px 0;
  border-right: 1px solid var(--hair);
  position: relative;
}
.step:last-child { border-right: none; }
.step + .step { padding-left: 28px; }
.step::before {
  content: "";
  position: absolute;
  left: 0; top: -1px;
  width: 36px; height: 4px;
  background: var(--yellow);
}
.step header { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; padding-top: 8px; }
.step-index { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate); font-weight: 600; }
.step h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.step p { font-size: 15px; color: var(--ink-3); line-height: 1.55; }

/* ----------------- Sectors ----------------- */
.sectors { padding: 120px 0; }
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sector {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.sector:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -24px rgba(11,18,32,0.18);
}
.sector header { display: flex; flex-direction: column; gap: 8px; }
.sector-tag {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--foc-blue);
}
.sector h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.18; }
.sector-savings {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.savings-range {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
  color: var(--ink);
}
.savings-unit { font-size: 12px; letter-spacing: 0.08em; color: var(--slate); text-transform: uppercase; font-weight: 500; }
.sector p { font-size: 14.5px; color: var(--ink-3); line-height: 1.55; }
.sector-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.sector-list li {
  font-size: 13.5px;
  color: var(--ink-2);
  padding-left: 18px;
  position: relative;
}
.sector-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--ink);
}
.sector--featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.sector--featured .sector-tag { color: var(--yellow); }
.sector--featured h3 { color: var(--white); }
.sector--featured .sector-savings { border-color: rgba(255,255,255,0.18); }
.sector--featured .savings-range { color: var(--yellow); }
.sector--featured .savings-unit { color: rgba(255,255,255,0.6); }
.sector--featured p { color: rgba(255,255,255,0.78); }
.sector--featured .sector-list li { color: rgba(255,255,255,0.85); }
.sector--featured .sector-list li::before { background: var(--yellow); }
.sector--featured:hover { transform: translateY(-4px); border-color: var(--yellow); }

/* ----------------- Results table ----------------- */
.results { padding: 120px 0; background: var(--paper); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.results-table {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.results-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  padding: 22px 28px;
  align-items: center;
  border-bottom: 1px solid var(--hair);
  font-feature-settings: "tnum";
}
.results-row:last-child { border-bottom: none; }
.results-row--head {
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 28px;
}
.results-row span { font-size: 17px; }
.results-row strong { font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.results-row--accent { background: var(--yellow-soft); }
.num-pos { font-weight: 700; color: var(--ink); }
.results-foot { margin-top: 18px; font-size: 13px; color: var(--slate); }

/* ----------------- Categories list ----------------- */
.categories { padding: 120px 0; }
.cat-list { list-style: none; display: flex; flex-direction: column; }
.cat-list li {
  display: grid;
  grid-template-columns: 220px 1fr 80px;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hair);
}
.cat-list li:first-child { border-top: 1px solid var(--ink); padding-top: 22px; }
.cat-name { font-size: 16px; font-weight: 600; letter-spacing: -0.005em; }
.cat-bar { height: 6px; background: var(--hair); border-radius: 99px; overflow: hidden; position: relative; }
.cat-bar span { display: block; height: 100%; background: var(--ink); border-radius: 99px; transition: width 0.5s; }
.cat-list li:nth-child(-n+3) .cat-bar span { background: var(--yellow); box-shadow: inset 0 0 0 1px var(--ink); }
.cat-num {
  font-size: 22px;
  font-weight: 700;
  font-feature-settings: "tnum";
  text-align: right;
  letter-spacing: -0.02em;
}
.cat-num span { font-size: 0.55em; opacity: 0.7; margin-left: 1px; font-weight: 700; }

/* ----------------- FAQ ----------------- */
.faq { padding: 120px 0; background: var(--paper); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.faq h2 {
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: -0.028em;
  font-weight: 700;
  margin: 18px 0 18px;
}
.faq-list { display: flex; flex-direction: column; }
.faq-list details {
  border-bottom: 1px solid var(--hair);
  padding: 22px 0;
  cursor: pointer;
}
.faq-list details:first-child { border-top: 1px solid var(--ink); }
.faq-list summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  position: relative;
  padding-right: 36px;
  transition: color 0.2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 22px;
  font-weight: 400;
  color: var(--slate);
  transition: transform 0.25s, color 0.2s;
}
.faq-list details[open] summary { color: var(--foc-blue); }
.faq-list details[open] summary::after { content: "−"; color: var(--foc-blue); }
.faq-list details p {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--ink-3);
  max-width: 620px;
}

/* ----------------- Final CTA ----------------- */
.final-cta {
  padding: 120px 0 110px;
  background: var(--ink);
  color: var(--white);
  position: relative;
}
.final-cta::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: var(--yellow);
}
.final-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: end;
}
.final-cta h2 {
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 22px 0 24px;
}
.final-cta p { font-size: 19px; color: rgba(255,255,255,0.72); max-width: 540px; line-height: 1.5; margin-bottom: 36px; }
.final-card {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-lg);
  padding: 30px;
  background: rgba(255,255,255,0.03);
}
.final-card-head { margin-bottom: 22px; }
.final-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.final-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.final-list li span {
  font-family: var(--t-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--yellow);
  font-weight: 500;
}

/* ----------------- Footer ----------------- */
.site-footer { background: #06080F; color: rgba(255,255,255,0.72); padding: 72px 0 32px; }
.site-footer .brand-mark--lion img { filter: brightness(1.1) contrast(1.05); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand { margin-bottom: 22px; }
.footer-brand .wordmark-name { color: var(--white); }
.footer-brand .wordmark-sub { color: rgba(255,255,255,0.55); }
.footer-blurb { font-size: 14px; line-height: 1.55; max-width: 360px; color: rgba(255,255,255,0.6); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-cols > div { display: flex; flex-direction: column; gap: 10px; }
.footer-h {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 6px;
}
.footer-cols a, .footer-line { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-cols a:hover { color: var(--yellow); }
.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
}
.footer-base-links { display: flex; gap: 22px; }
.footer-base-links a { color: rgba(255,255,255,0.55); }
.footer-base-links a:hover { color: var(--yellow); }

/* SVG lockup brand (used on dots variant) */
.brand--svg-lockup { display: inline-flex; align-items: center; gap: 18px; }
.brand-lockup { height: 44px; width: auto; display: block; }
.site-header .brand-lockup { height: 50px; }
.brand--svg-lockup-footer .brand-lockup {
  height: 40px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 6px;
}
.wordmark--sub-only { padding-left: 18px; border-left: 1px solid var(--hair); }
.site-footer .wordmark--sub-only { border-color: rgba(255,255,255,0.18); }
@media (max-width: 720px) {
  .brand--svg-lockup { gap: 10px; }
  .site-header .brand-lockup { height: 40px; }
  .wordmark--sub-only { display: none; }
}

/* Footer dot mark color override on dots variant */
body[data-mark="dots"] .site-footer .brand-mark--dots .dot-grid span { background: rgba(255,255,255,0.78); }
body[data-mark="dots"] .site-footer .brand-mark--dots .dot-grid span.lit { background: var(--yellow); box-shadow: 0 0 0 2px var(--white); }
body[data-mark="dots"] .site-footer .brand-mark--dots .dot-grid span.muted { background: rgba(255,255,255,0.18); }

/* Compare bar (top-of-page logo switcher) */
.compare-bar {
  background: var(--yellow);
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
}
.compare-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 9px 32px;
}
.compare-label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
}
.compare-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.compare-active-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 2px rgba(11,18,32,0.15);
}
.compare-switch {
  margin-left: auto;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  transition: opacity 0.15s;
}
.compare-switch:hover { opacity: 0.7; }
@media (max-width: 720px) {
  .compare-inner { flex-wrap: wrap; gap: 10px 16px; }
  .compare-switch { margin-left: 0; }
}

/* ----------------- Responsive ----------------- */
@media (max-width: 1100px) {
  .hero-grid, .approach-grid, .faq-grid, .final-grid { grid-template-columns: 1fr; gap: 48px; }
  .approach-aside { position: static; }
  .trust-inner { grid-template-columns: 1fr; gap: 36px; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-stats li:nth-child(3) { border-left: none; padding-left: 0; }
  .pricing-inner { grid-template-columns: 1fr; gap: 28px; }
  .principles { grid-template-columns: 1fr; gap: 28px; }
  .sector-grid, .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--hair); padding: 28px 0; }
  .step + .step { padding-left: 0; padding-top: 28px; }
  .step:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .results-row { grid-template-columns: 1fr 1fr; gap: 12px 0; padding: 18px 20px; }
  .results-row--head { display: none; }
  .results-row span:nth-child(odd)::before { content: attr(data-label); display: block; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); margin-bottom: 4px; }
}
@media (max-width: 720px) {
  :root { --pad: 22px; }
  .utility-right { display: none; }
  .primary-nav { display: none; }
  .hero { padding: 64px 0; }
  .hero-headline { font-size: 48px; }
  .hero-proof { grid-template-columns: 1fr 1fr; gap: 22px 18px; }
  .section-head h2, .approach-aside h2, .faq h2 { font-size: 32px; }
  .final-cta h2 { font-size: 40px; }
  .approach-lede { font-size: 18px; }
  .pricing-quote p { font-size: 22px; }
  .pricing-tiers { grid-template-columns: 1fr; border-left: none; }
  .tier { border-right: none; border-bottom: 1px solid rgba(11,18,32,0.15); padding: 14px 0; }
  .cat-list li { grid-template-columns: 1fr 60px; gap: 14px; }
  .cat-list .cat-bar { grid-column: 1 / -1; order: 3; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-base { flex-direction: column; gap: 12px; }
}


/* ============== About + team page ============== */
.nav-active { color: var(--ink) !important; border-bottom: 2px solid var(--yellow); padding-bottom: 4px; }

.about-hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--ink);
}
.about-hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--ink);
  margin: 14px 0 40px;
  max-width: 1100px;
}
.about-intro {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-intro p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 16px;
  max-width: 640px;
}
.about-intro p strong { color: var(--ink); font-weight: 700; }
.about-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
}
.about-stats li {
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.about-stats strong {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.about-stats .unit { font-size: 0.6em; font-weight: 700; color: var(--ink-2); }
.about-stats span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.people { padding: 80px 0 96px; }
.people-head {
  margin-bottom: 48px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
}
.people-head h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 12px 0 0;
  max-width: 760px;
}
.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
}
.person {
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-photo {
  width: 88px;
  height: 88px;
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 3px;
  margin-bottom: 6px;
}
.p-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.94); }
.person h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}
.p-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #d8d4c2;
}
.p-bio {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.p-bio strong { color: var(--ink); font-weight: 700; }

.people-foot {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--paper);
  border-left: 4px solid var(--yellow);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 980px;
}
.people-foot strong { color: var(--ink); font-weight: 700; }

@media (max-width: 1100px) {
  .about-intro { grid-template-columns: 1fr; gap: 32px; }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .people-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}
