:root {
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --green: #172625;
  --green-2: #223a36;
  --green-3: #31524b;
  --bronze: #bc8c63;
  --bronze-text: #8f6844;
  --sand: #c7b498;
  --sand-soft: #e8ddcc;
  --paper: #f7f4ef;
  --white: #fffdf9;
  --ink: #172625;
  --muted: #55615d;
  --line: rgba(23, 38, 37, 0.16);
  --light-line: rgba(255, 253, 249, 0.2);
  --display: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --body: 'DM Sans', 'Century Gothic', 'Avenir Next', sans-serif;
  --mono: 'DM Mono', ui-monospace, monospace;
  --shadow: 0 26px 76px rgba(23, 38, 37, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button { color: inherit; }
a { color: inherit; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.032em;
  line-height: 0.99;
}
h1 em, h2 em { color: var(--bronze); font-weight: 500; }
button:focus-visible, a:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 3px solid var(--bronze-text);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--white);
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -90px;
  z-index: 200;
  background: var(--white);
  color: var(--green);
  padding: 12px 16px;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  padding: 0 clamp(20px, 4.5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 239, 0.94);
  backdrop-filter: blur(16px);
}
.brand {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
}
.brand img { width: 220px; height: 62px; object-fit: contain; object-position: left center; }
.desktop-nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
}
.desktop-nav a {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}
.desktop-nav a:hover { color: var(--bronze); }
.header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
}
.privacy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.privacy-note i { width: 6px; height: 6px; border-radius: 50%; background: var(--bronze); }
.link-button {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  padding: 4px 0;
  cursor: pointer;
  font-weight: 600;
}
.header-cta {
  border-radius: var(--radius-sm);
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero {
  scroll-margin-top: 80px;
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  max-width: 1600px;
  min-height: 710px;
  margin: 0 auto;
  padding: clamp(36px, 3.5vw, 56px) clamp(22px, 6vw, 96px) 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.88fr);
  column-gap: clamp(50px, 7vw, 112px);
  row-gap: clamp(30px, 3vw, 46px);
  align-items: start;
}
.hero-thesis { grid-column: 1 / -1; }
.hero-thesis h1 {
  max-width: 1400px;
  margin: 0;
  font-size: clamp(2.9rem, 4.4vw, 4.4rem);
  line-height: 1;
}
.hero-story {
  grid-column: 1 / -1;
  max-width: 1200px;
  align-self: center;
}
.hero-summary {
  max-width: 900px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.23rem);
}
.hero-summary strong { color: var(--green); font-weight: 600; }
.hero-actions {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 12px;
}
.button {
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--large {
  width: min(100%, 390px);
  min-height: 72px;
  padding-inline: 28px;
  justify-content: space-between;
  font-size: 1rem;
}
.button--primary { background: var(--green); color: var(--white); }
.button--primary:hover { background: var(--green-2); }
.button--sand { background: var(--sand); color: var(--green); }
.button--sand:hover { background: var(--bronze); }
.button--quiet { border-color: var(--line); color: var(--green); }
.button--quiet:hover { border-color: var(--bronze); color: var(--bronze); }
.button--outline { border-color: rgba(255, 253, 249, 0.36); color: var(--white); }
.button--outline:hover { border-color: var(--sand); color: var(--sand); }
.button--full { width: 100%; }
.kevin-link {
  width: min(100%, 390px);
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.54);
  padding: 10px 18px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 2px 13px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.kevin-link:hover {
  transform: translateY(-2px);
  color: var(--bronze);
  border-color: var(--bronze);
  background: var(--white);
}
.kevin-photo {
  width: 42px;
  height: 42px;
  grid-column: 1;
  grid-row: 1 / 3;
  border: 2px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 12px rgba(23, 38, 37, 0.16);
}
.kevin-link span { grid-column: 2; font-size: 0.98rem; font-weight: 600; }
.kevin-link small { grid-column: 2; color: var(--muted); font-size: 0.76rem; }
.kevin-link i { grid-column: 3; grid-row: 1 / 3; align-self: center; color: var(--bronze); font-style: normal; }
.microcopy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: left;
}
.audience-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.audience-list li {
  border-radius: var(--radius-sm);
  padding: 7px 10px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.route-board {
  grid-column: 1 / -1;
  min-height: 0;
  padding: 30px 0 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--green);
  position: relative;
  overflow: visible;
}
.route-heading {
  padding-bottom: 22px;
  display: block;
}
.route-heading > span {
  color: var(--bronze);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.route-heading h2 {
  max-width: 700px;
  margin: 10px 0 0;
  font-size: clamp(1.9rem, 2.7vw, 2.8rem);
  line-height: 1.02;
  text-align: left;
}
.route-list {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.route-list a {
  min-height: 148px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 12px 18px;
  align-items: start;
  background: var(--white);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}
.route-list a:hover { background: var(--sand-soft); }
.route-index {
  grid-column: 1 / -1;
  color: var(--bronze);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.route-list a > span:nth-child(2) { grid-column: 1; margin-top: 20px; }
.route-list strong { display: block; font-size: 0.95rem; line-height: 1.35; }
.route-list small { display: block; margin-top: 6px; color: var(--muted); font-size: 0.77rem; line-height: 1.45; }
.route-list i { grid-column: 2; grid-row: 2; margin-top: 20px; color: var(--bronze); font-style: normal; transition: transform 160ms ease; }
.route-list a:hover i { transform: translate(3px, 3px); }

.value-rail {
  margin: 0 clamp(22px, 5vw, 76px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-rail div { padding: 22px clamp(14px, 2.2vw, 30px); border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.value-rail div:last-child { border-right: 0; }
.value-rail strong { color: var(--bronze); font-family: var(--display); font-size: 1.8rem; font-weight: 500; }
.value-rail span { color: var(--muted); font-size: 0.8rem; }

.section { scroll-margin-top: 78px; }
.section-inner { max-width: 1440px; margin: 0 auto; padding: clamp(56px, 5.5vw, 84px) clamp(22px, 5vw, 78px); }
.section-intro, .story-heading { max-width: 1200px; }
.kicker {
  margin: 0 0 18px;
  color: var(--bronze);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-intro h2, .story-heading h2 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
}
.section-intro > p:last-child, .story-heading > p:last-child {
  max-width: none;
  color: var(--muted);
  font-size: 1.02rem;
  text-wrap: balance;
}

.estimate-section { background: var(--green); color: var(--white); }
.estimate-section .section-inner { padding-top: clamp(44px, 4vw, 60px); }
.estimate-section .section-intro h2 { max-width: 1120px; font-size: clamp(2.4rem, 3.5vw, 3.5rem); }
.estimate-section .section-intro > p:last-child { color: rgba(255, 253, 249, 0.7); }
.quick-calc {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(380px, 0.85fr) minmax(500px, 1.15fr);
  align-items: stretch;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}
.quick-inputs { padding: clamp(28px, 4vw, 48px); background: var(--white); color: var(--green); }
.quick-results { padding: clamp(30px, 4vw, 52px); background: var(--green-2); position: relative; overflow: hidden; }
.calc-heading { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.calc-heading > span {
  border-radius: var(--radius-sm);
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--bronze);
  font-family: var(--mono);
  font-size: 0.7rem;
}
.calc-heading h3 { margin: 0 0 2px; font-size: 1rem; }
.calc-heading p { margin: 0; color: var(--muted); font-size: 0.76rem; }
.calc-heading--light > span { border-color: var(--light-line); }
.calc-heading--light p { display: flex; align-items: center; gap: 8px; color: rgba(255, 253, 249, 0.62); }
.calc-heading--light p i { width: 6px; height: 6px; border-radius: 50%; background: var(--sand); box-shadow: 0 0 0 5px rgba(199, 180, 152, 0.12); }
.role-selector { margin: 0; padding: 0 0 22px; border: 0; border-bottom: 1px solid var(--line); }
.role-selector legend, .quick-field > span:first-child { margin-bottom: 10px; color: var(--muted); font-size: 0.78rem; }
.role-selector > div { display: grid; grid-template-columns: 1fr 1fr; }
.role-selector button, .mode-toggle button {
  min-height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.82rem;
}
.role-selector button:nth-child(even) { border-left: 0; }
.role-selector button:nth-child(n+3) { border-top: 0; }
.role-selector button.is-selected, .mode-toggle button.is-selected { background: var(--green); color: var(--white); }
.role-scope-note { margin: 14px 0 0; padding: 12px; border-left: 2px solid var(--bronze); background: rgba(199, 180, 152, .2); color: var(--muted); font-size: .74rem; }
.slider-field { padding: 15px 0 13px; border-bottom: 1px solid var(--line); }
.slider-field > label { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin-bottom: 16px; }
.slider-field > label > span { color: var(--muted); font-size: .78rem; }
.slider-field output { color: var(--bronze); font-family: var(--display); font-size: 1.55rem; font-weight: 600; white-space: nowrap; }
.calc-slider { --fill: 0%; width: 100%; height: 28px; margin: 0; appearance: none; -webkit-appearance: none; background: transparent; cursor: pointer; }
.calc-slider::-webkit-slider-runnable-track { height: 5px; border-radius: var(--radius-pill); background: linear-gradient(to right, var(--bronze) 0 var(--fill), rgba(23, 38, 37, .16) var(--fill) 100%); }
.calc-slider::-webkit-slider-thumb { width: 23px; height: 23px; margin-top: -9px; appearance: none; -webkit-appearance: none; border: 4px solid var(--white); border-radius: 50%; background: var(--bronze); box-shadow: 0 2px 9px rgba(23, 38, 37, .26); }
.calc-slider::-moz-range-track { height: 5px; border-radius: var(--radius-pill); background: rgba(23, 38, 37, .16); }
.calc-slider::-moz-range-progress { height: 5px; border-radius: var(--radius-pill); background: var(--bronze); }
.calc-slider::-moz-range-thumb { width: 16px; height: 16px; border: 4px solid var(--white); border-radius: 50%; background: var(--bronze); box-shadow: 0 2px 9px rgba(23, 38, 37, .26); }
.slider-scale { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-family: var(--mono); font-size: 0.68rem; }
.slider-field > p { margin: 11px 0 0; color: var(--muted); font-size: 0.8rem; line-height: 1.45; }
.quick-field { display: block; padding: 22px 0; border-bottom: 1px solid var(--line); }
.currency-field, .value-entry { display: flex; align-items: baseline; gap: 7px; }
.currency-field b, .value-entry > span:first-child { font-family: var(--display); font-size: 2rem; font-weight: 600; }
.currency-field input, .value-entry input {
  width: 155px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--green);
  font-family: var(--display);
  font-size: 2.15rem;
  font-weight: 600;
  padding: 2px 0;
}
.currency-field i { color: var(--muted); font-style: normal; font-size: 0.82rem; }
.mode-toggle { margin: 10px 0 14px; display: grid; grid-template-columns: 1fr 1fr; }
.mode-toggle button + button { border-left: 0; }
.value-entry { border-bottom: 1px solid var(--line); }
.value-entry input { flex: 1; width: 120px; border: 0; }
.value-entry.is-hidden { display: none; }
.quick-field small { display: block; margin-top: 8px; color: var(--muted); font-size: 0.74rem; }
.assumption-note { margin-top: 16px; padding: 16px; background: var(--sand-soft); border-radius: var(--radius-md); }
.assumption-note span, .assumption-note strong, .assumption-note small { display: block; }
.assumption-note span { color: var(--bronze); font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.05em; text-transform: uppercase; }
.assumption-note strong { margin-top: 4px; }
.assumption-note small { margin-top: 4px; color: var(--muted); font-size: 0.78rem; }
.result-mark { position: absolute; right: 0; bottom: 0; width: 395px; height: 114px; overflow: hidden; opacity: 0.055; pointer-events: none; }
.result-mark img { width: 620px; max-width: none; display: block; }
.quick-results > *:not(.result-mark) { position: relative; }
.opportunity-total { padding: 18px 0 26px; border-bottom: 1px solid var(--light-line); }
.opportunity-total > span { color: rgba(255, 253, 249, 0.7); font-size: 0.82rem; }
.opportunity-total > strong { display: block; margin: 7px 0; color: var(--sand); font-family: var(--display); font-size: clamp(3rem, 4.6vw, 4.5rem); font-weight: 600; letter-spacing: -0.04em; line-height: 0.95; }
.opportunity-total p { max-width: 520px; margin: 0; color: rgba(255, 253, 249, 0.78); font-size: 0.88rem; }
.opportunity-drivers { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; margin: 22px 0; background: var(--light-line); border: 1px solid var(--light-line); border-radius: var(--radius-lg); overflow: hidden; }
.opportunity-drivers div { min-height: 100px; padding: 16px; background: rgba(255, 253, 249, 0.04); display: flex; flex-direction: column; justify-content: space-between; gap: 10px; }
.opportunity-drivers span { color: rgba(255, 253, 249, 0.65); font-size: 0.74rem; }
.opportunity-drivers strong { color: var(--white); font-family: var(--display); font-size: 1.65rem; font-weight: 500; }
.time-back-note { padding: 17px 20px; border-left: 2px solid var(--sand); background: rgba(255, 253, 249, 0.035); }
.time-back-note strong { color: var(--sand); font-size: 0.78rem; }
.time-back-note p { margin: 4px 0 0; color: rgba(255, 253, 249, 0.67); font-size: 0.85rem; line-height: 1.5; }
.result-actions { margin-top: 22px; display: grid; gap: 10px; }
.result-disclaimer { margin: 16px 0 0; color: rgba(255, 253, 249, 0.64); font-size: 0.72rem; }
.cta-hook { margin: 12px 0 0; color: var(--sand-soft); font-size: 0.78rem; }
.brief-link { margin: 12px 0 0; border: 0; border-bottom: 1px solid rgba(255, 253, 249, 0.35); background: transparent; padding: 0 0 2px; display: inline-block; color: rgba(255, 253, 249, 0.78); cursor: pointer; font-size: 0.82rem; }
.brief-link:hover { color: var(--sand-soft); border-color: var(--sand-soft); }

.comp-grid {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.expense-story { padding: clamp(26px, 3vw, 44px); background: var(--white); }
.expense-story > a { display: inline-block; margin-top: 26px; color: var(--bronze-text); text-decoration: none; border-bottom: 1px solid currentColor; font-weight: 600; }
.expense-story .kicker { margin-bottom: 22px; }
.expense-story h3 { max-width: none; margin: 0 0 32px; font-family: var(--display); font-size: clamp(1.8rem, 2.5vw, 2.5rem); font-weight: 500; line-height: 1.04; }
.expense-story ul { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(32px, 4vw, 64px); }
.expense-story li { min-height: 62px; padding: 13px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.expense-story li span { color: var(--muted); font-size: 0.9rem; }
.expense-story li strong { color: var(--bronze); font-size: 0.9rem; text-align: right; }
.expense-story > p:last-of-type { margin: 24px 0 0; color: var(--muted); font-size: 0.76rem; }

.time-section { background: var(--green); color: var(--white); }
.story-heading--light > p:last-child { color: rgba(255, 253, 249, 0.7); }
.control-tower {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 3.5vw, 48px);
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid var(--light-line);
  background: rgba(255, 253, 249, 0.035);
}
.tower-copy > span { color: var(--sand); font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; }
.tower-copy h3 { margin: 20px 0; font-family: var(--display); font-size: clamp(1.9rem, 2.6vw, 2.6rem); font-weight: 500; line-height: 1; }
.tower-copy p { max-width: none; color: rgba(255, 253, 249, 0.72); font-size: 0.86rem; text-wrap: balance; }
.text-cta {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  padding: 5px 0;
  color: var(--bronze);
  cursor: pointer;
  font-weight: 600;
}
.text-cta--light { margin-top: 12px; color: var(--sand); }
.role-division {
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--light-line);
  background: var(--light-line);
}
.role-lane {
  padding: clamp(26px, 3vw, 38px);
  position: relative;
  overflow: hidden;
  overflow: clip;
}
.role-lane > span {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.role-lane h4 {
  position: relative;
  z-index: 1;
  margin: 18px 0 9px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.1vw, 2.1rem);
  font-weight: 500;
  line-height: 1;
}
.role-lane > strong {
  min-height: 52px;
  position: relative;
  z-index: 1;
  display: block;
  font-size: 0.82rem;
  line-height: 1.45;
}
.role-lane ul {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.role-lane li {
  padding: 11px 0 11px 18px;
  position: relative;
  font-size: 0.85rem;
  line-height: 1.35;
}
.role-lane li::before { content: '•'; position: absolute; left: 0; color: var(--bronze); }
.role-lane--human { background: var(--white); color: var(--green); }
.role-lane--human > span { color: var(--bronze); }
.role-lane--human li { border-top: 1px solid var(--line); color: var(--muted); }
.role-lane--agent { background: rgba(10, 23, 22, 0.76); color: var(--white); }
.role-lane--agent::after {
  content: '';
  width: 290px;
  height: 290px;
  position: absolute;
  right: -175px;
  bottom: -160px;
  border: 1px solid rgba(203, 164, 118, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(203, 164, 118, 0.08), 0 0 0 92px rgba(203, 164, 118, 0.05);
}
.role-lane--agent > span { color: var(--sand); }
.role-lane--agent li { border-top: 1px solid var(--light-line); color: rgba(255, 253, 249, 0.7); }
.approval-rail {
  grid-column: 1 / -1;
  min-height: 76px;
  padding: 18px clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: 1fr auto 1.15fr;
  gap: 18px;
  align-items: center;
  background: var(--sand);
  color: var(--green);
}
.approval-rail span, .approval-rail strong { font-size: 0.76rem; }
.approval-rail span { font-family: var(--mono); letter-spacing: 0.04em; text-transform: uppercase; }
.approval-rail i { font-size: 1.3rem; font-style: normal; }
.approval-rail strong { text-align: right; }

.support-section { background: var(--sand-soft); }
.support-compare {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 54px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.support-column { min-height: 300px; padding: clamp(30px, 4vw, 48px); background: var(--white); }
.support-column > span { color: var(--bronze); font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; }
.support-column ul { margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.support-column li { padding: 15px 0 15px 26px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 0.9rem; position: relative; }
.support-column li::before { position: absolute; left: 0; top: 14px; color: var(--bronze); }
.support-column--today li::before { content: '×'; }
.support-column--hightide li::before { content: '✓'; }
.support-column--you {
  min-height: 200px;
  grid-column: 1 / -1;
  background: var(--green);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(360px, 1fr);
  column-gap: 52px;
  align-items: center;
}
.support-column--you > span { color: var(--sand); }
.support-column--you strong { display: block; font-family: var(--display); font-size: clamp(1.8rem, 2.6vw, 2.6rem); font-weight: 500; line-height: 1.04; }
.support-column--you p { grid-column: 2; margin: 14px 0 0; color: rgba(255, 253, 249, 0.7); font-size: 0.84rem; }

.scale-section { background: var(--paper); }
.scale-inner { padding-bottom: clamp(64px, 7vw, 100px); }
.scale-paths {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.scale-paths article { min-height: 320px; padding: clamp(28px, 3.5vw, 44px); background: var(--white); display: flex; flex-direction: column; }
.scale-paths article > span { color: var(--bronze); font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.05em; text-transform: uppercase; }
.scale-paths h3 { margin: auto 0 18px; font-family: var(--display); font-size: clamp(1.8rem, 2.7vw, 2.7rem); font-weight: 500; line-height: 1.07; }
.scale-paths p { min-height: 92px; margin: 0; color: var(--muted); font-size: 0.9rem; }
.scale-actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

.proof-section { border-top: 1px solid var(--line); }
.draft-note { padding-left: 18px; border-left: 2px solid var(--bronze); font-size: 0.82rem !important; }
.testimonials {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.testimonials article { min-height: 340px; padding: clamp(28px, 3.5vw, 42px); background: var(--white); display: flex; flex-direction: column; }
.testimonials article > span { color: var(--bronze); font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; }
.testimonials blockquote { margin: 48px 0 auto; font-family: var(--display); font-size: clamp(1.4rem, 2.1vw, 2.05rem); line-height: 1.2; }
.testimonials article > div { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 14px; }
.testimonials article > div > i { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: var(--sand); font-family: var(--mono); font-size: 0.7rem; font-style: normal; }
.testimonials p { margin: 0; }
.testimonials strong, .testimonials small { display: block; }
.testimonials strong { font-size: 0.78rem; }
.testimonials small { margin-top: 3px; color: var(--muted); font-size: 0.68rem; }

.faq-section { background: var(--sand-soft); }
.faq-inner { display: grid; grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr); gap: clamp(54px, 9vw, 130px); }
.faq-heading { align-self: start; position: sticky; top: 126px; }
.faq-heading h2 { margin-bottom: 22px; font-size: clamp(2.25rem, 3.4vw, 3.4rem); }
.faq-heading > p:not(.kicker) { max-width: 520px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 23px 44px 23px 0; cursor: pointer; list-style: none; position: relative; font-weight: 600; font-size: 0.98rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 4px; top: 14px; color: var(--bronze); font-family: var(--display); font-size: 1.8rem; font-weight: 500; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list p { max-width: 660px; margin: 0; padding: 0 48px 24px 0; color: var(--muted); font-size: 0.92rem; }

.final-cta { min-height: 670px; padding: clamp(88px, 10vw, 150px) 24px; background: var(--green); color: var(--white); position: relative; overflow: hidden; display: grid; place-items: center; text-align: center; }
.final-mark { position: absolute; width: min(520px, 100%); right: 0; top: 50%; transform: translateY(-50%); opacity: 0.07; overflow: hidden; }
.final-mark img { width: 820px; max-width: none; display: block; }
.final-inner { max-width: 980px; position: relative; }
.final-inner h2 { margin-bottom: 24px; font-size: clamp(2.75rem, 4.2vw, 4.25rem); }
.final-inner > p:not(.kicker):not(.final-privacy):not(.cta-hook) { max-width: 650px; margin: 0 auto; color: rgba(255, 253, 249, 0.7); }
.final-inner .cta-hook { margin-top: 18px; }
.final-actions { margin-top: 34px; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.final-privacy { margin: 20px 0 0; color: rgba(255, 253, 249, 0.58); font-size: 0.76rem; }
.final-text-link { margin: 16px 0 0; font-size: 0.82rem; }
.final-text-link a { color: rgba(255, 253, 249, 0.78); text-decoration: none; border-bottom: 1px solid rgba(255, 253, 249, 0.35); padding-bottom: 2px; }
.final-text-link a:hover { color: var(--sand-soft); border-color: var(--sand-soft); }

.site-footer { min-height: 105px; padding: 24px clamp(20px, 5vw, 76px); border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 30px; background: var(--paper); }
.site-footer .footer-top img { width: 160px; height: 52px; object-fit: contain; object-position: left center; }
.site-footer p { max-width: 650px; margin: 0; color: var(--muted); font-size: 0.72rem; text-align: right; }

.modal-backdrop { position: fixed; inset: 0; z-index: 100; padding: 18px; display: grid; place-items: center; background: rgba(23, 38, 37, 0.78); backdrop-filter: blur(8px); overflow-y: auto; }
.modal-backdrop[hidden] { display: none; }
.contact-modal { width: min(550px, 100%); padding: clamp(30px, 5vw, 50px); background: var(--paper); position: relative; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32); border-radius: var(--radius-lg); overflow: hidden; }
.contact-modal h2 { margin-bottom: 18px; font-size: clamp(2rem, 3vw, 3rem); }
.contact-modal > p:not(.kicker) { color: var(--muted); }
.modal-close { position: absolute; right: 18px; top: 14px; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 1.8rem; }
.modal-kevin { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.modal-kevin img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.modal-kevin strong { display: block; color: var(--green); font-size: 0.86rem; }
.modal-kevin a { color: var(--bronze); font-size: 0.76rem; text-decoration: none; }
.modal-kevin a:hover { text-decoration: underline; }
.modal-context { margin-top: 18px; padding: 12px 14px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius-md); }
.modal-context span { display: block; color: var(--green); font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.02em; }
.modal-context small { display: block; margin-top: 5px; color: var(--muted); font-size: 0.7rem; }
.modal-success small { display: block; margin-top: 14px; color: var(--muted); font-size: 0.7rem; }
.contact-modal form { margin-top: 28px; display: grid; gap: 16px; }
.contact-modal form label { color: var(--muted); font-size: 0.8rem; }
.contact-modal form input { width: 100%; display: block; border: 0; border-bottom: 1px solid var(--line); background: transparent; padding: 10px 0; color: var(--green); }
.contact-modal form small { color: var(--muted); text-align: center; font-size: 0.72rem; }
.modal-success { padding: 26px 0 4px; text-align: center; }
.modal-success > span { width: 54px; height: 54px; margin: 0 auto 18px; border: 1px solid var(--bronze); border-radius: 50%; display: grid; place-items: center; color: var(--bronze); }
.modal-success h3 { font-family: var(--display); font-size: 2rem; }
.is-hidden { display: none !important; }

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 640ms ease, transform 640ms cubic-bezier(.2,.75,.25,1); }
.js .reveal--delay { transition-delay: 140ms; }
.js .reveal.is-visible { opacity: 1; transform: none; }
.section.is-arrived .story-heading h2, .estimate-section.is-arrived .section-intro h2 { animation: section-arrival 720ms ease both; }
@keyframes section-arrival { from { opacity: 0.35; transform: translateY(10px); } to { opacity: 1; transform: none; } }

@media (max-width: 1600px) {
  .privacy-note { display: none; }
}

@media (max-width: 1180px) {
  .site-header {
    height: 124px;
    grid-template-columns: 1fr auto;
    grid-template-rows: 79px 45px;
    gap: 0 24px;
  }
  .brand { grid-column: 1; grid-row: 1; }
  .header-actions { grid-column: 2; grid-row: 1; }
  .desktop-nav {
    width: 100%;
    position: static;
    left: auto;
    transform: none;
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: stretch;
    justify-self: stretch;
    justify-content: center;
    gap: 0;
    border-top: 1px solid var(--line);
    overflow-x: auto;
    scrollbar-width: none;
  }
  .desktop-nav::-webkit-scrollbar { display: none; }
  .desktop-nav a {
    min-width: 112px;
    padding: 0 20px;
    border-right: 1px solid var(--line);
    display: grid;
    place-items: center;
  }
  .hero, .section { scroll-margin-top: 124px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-thesis { grid-column: 1; }
  .hero-story { max-width: 940px; }
  .route-board { width: 100%; }
  .route-list { grid-template-columns: repeat(2, 1fr); }
  .quick-calc { grid-template-columns: 1fr; }
  .quick-results { min-height: 0; }
  .control-tower { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: 1fr; }
  .expense-story ul { grid-template-columns: 1fr; }
  .scale-paths, .testimonials { grid-template-columns: 1fr; }
  .scale-paths article, .testimonials article { min-height: 0; }
  .scale-paths h3 { margin-top: 70px; }
  .testimonials blockquote { margin-top: 34px; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .site-header {
    height: 112px;
    grid-template-rows: 67px 45px;
    padding-inline: 18px;
  }
  .brand img { width: 170px; height: 48px; }
  .link-button { font-size: 0.74rem; white-space: nowrap; }
  .header-actions { gap: 10px; }
  .header-cta { min-height: 40px; padding-inline: 12px; font-size: 0.74rem; }
  .desktop-nav a {
    min-width: 68px;
    padding: 0 9px;
    flex: 1 1 25%;
    font-size: 0.66rem;
  }
  .hero, .section { scroll-margin-top: 112px; }
  .hero-inner { padding: 54px 18px 42px; gap: 38px; min-height: 0; }
  .hero-thesis h1 { font-size: clamp(2.5rem, 10vw, 3.8rem); }
  .hero-actions {
    width: min(100%, 600px);
    flex-direction: column;
  }
  .button--large { width: 100%; min-width: 0; }
  .kevin-link { width: 100%; min-width: 0; max-width: none; }
  .route-board { padding: 26px 0 0; }
  .route-heading { display: block; }
  .route-heading h2 { margin-top: 10px; text-align: left; }
  .route-list a { min-height: 150px; padding: 22px; }
  .value-rail { margin-inline: 18px; grid-template-columns: 1fr 1fr; }
  .value-rail div:nth-child(2) { border-right: 0; }
  .value-rail div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-inner { padding: 78px 18px; }
  .section-intro h2, .story-heading h2 { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .quick-calc { margin-inline: -4px; }
  .quick-inputs, .quick-results { padding: 28px 20px; }
  .opportunity-total > strong { font-size: clamp(2.4rem, 11vw, 4rem); }
  .expense-story { padding: 34px 24px; }
  .role-division { grid-template-columns: 1fr; }
  .role-lane { min-height: 0; }
  .approval-rail { grid-column: 1; }
  .support-compare { grid-template-columns: 1fr; }
  .support-column--you { grid-column: 1; grid-template-columns: 1fr; gap: 22px; }
  .support-column--you p { grid-column: 1; margin: 0; }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
  .final-cta { min-height: 620px; }
  .final-inner h2 { font-size: clamp(2.6rem, 11vw, 4.2rem); }
  .final-actions { flex-direction: column; }
  .final-actions .button { width: 100%; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .site-footer p { text-align: left; }
}

@media (max-width: 480px) {
  .header-cta span { display: none; }
  .brand img { width: 140px; height: 40px; }
  .link-button { font-size: 0.7rem; }
  .hero-thesis h1 { font-size: clamp(2.25rem, 10.5vw, 3.2rem); }
  .route-list { grid-template-columns: 1fr; }
  .route-list a { grid-template-columns: 1fr auto; }
  .route-index { grid-column: 1 / -1; }
  .route-list a > span:nth-child(2) { grid-column: 1; }
  .route-list a > i { grid-column: 2; }
  .audience-list li { font-size: 0.63rem; }
  .value-rail strong { font-size: 1.5rem; }
  .value-rail span { font-size: 0.72rem; }
  .role-selector > div { grid-template-columns: 1fr; }
  .role-selector button:nth-child(even) { border-left: 1px solid var(--line); }
  .role-selector button:nth-child(n+2) { border-top: 0; }
  .mode-toggle { grid-template-columns: 1fr; }
  .mode-toggle button + button { border-left: 1px solid var(--line); border-top: 0; }
  .opportunity-drivers { grid-template-columns: 1fr; }
  .expense-story li { align-items: flex-start; flex-direction: column; gap: 4px; }
  .expense-story li strong { text-align: left; }
  .approval-rail { grid-template-columns: 1fr auto; }
  .approval-rail strong { grid-column: 1 / -1; text-align: left; }
  .support-column { padding: 28px 22px; }
  .faq-list summary { padding-right: 36px; }
  .faq-list p { padding-right: 18px; }
}

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

/* Mobile sticky result bar */
.result-bar { display: none; }

@media (max-width: 760px) {
  .result-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    min-height: 58px;
    padding: 9px 18px calc(9px + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--green);
    color: var(--white);
    border-top: 1px solid var(--light-line);
    box-shadow: 0 -18px 44px rgba(23, 38, 37, 0.22);
    transform: translateY(105%);
    visibility: hidden;
    transition: transform 260ms cubic-bezier(.2, .75, .25, 1), visibility 260ms;
  }
  .result-bar.is-visible { transform: none; visibility: visible; }
  .result-bar > div { min-width: 0; display: flex; flex-direction: column; gap: 1px; }
  .result-bar > div > span {
    color: rgba(255, 253, 249, 0.66);
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .result-bar > div > strong {
    color: var(--sand);
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.05;
    white-space: nowrap;
  }
  .result-bar > a {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(255, 253, 249, 0.36);
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
  }
  .result-bar > a:hover { border-color: var(--sand); color: var(--sand); }
  .quick-results { scroll-margin-top: 124px; }
  body:has(.result-bar.is-visible) { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
}

/* Company fact strip */
.trust-strip { border-top: 1px solid var(--line); background: var(--white); }
.trust-strip-inner { max-width: 1600px; margin: 0 auto; padding: 0 clamp(22px, 6vw, 96px); display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip-inner > div { padding: 26px 26px 26px 0; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.trust-strip-inner > div:last-child { border-right: 0; }
.trust-strip-inner > div + div { padding-left: 26px; }
.trust-strip strong { color: var(--green); font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.02em; text-transform: uppercase; }
.trust-strip span { color: var(--muted); font-size: 0.76rem; }
.trust-strip a { color: var(--bronze); text-decoration: none; }
.trust-strip a:hover { text-decoration: underline; }

/* Compliance footer */
.site-footer { flex-direction: column; align-items: stretch; gap: 18px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-note { max-width: 650px; margin: 0; color: var(--muted); font-size: 0.72rem; text-align: right; }
.footer-legal { border-top: 1px solid var(--line); padding-top: 16px; display: grid; gap: 6px; }
.footer-legal p { max-width: none; margin: 0; color: var(--muted); font-size: 0.68rem; text-align: left; line-height: 1.55; }
.footer-legal a { color: var(--bronze); text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; }
.footer-eho {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-eho img { width: 34px; height: 34px; flex: none; }

@media (max-width: 820px) {
  .trust-strip-inner { grid-template-columns: 1fr 1fr; padding-inline: 18px; }
  .trust-strip-inner > div { padding: 18px 16px 18px 0; }
  .trust-strip-inner > div:nth-child(2n) { border-right: 0; }
  .trust-strip-inner > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-note { text-align: left; }
}


/* Contrast: darker bronze for text on light surfaces */
h1 em, h2 em,
.kicker,
.route-heading > span,
.route-index,
.value-rail strong,
.desktop-nav a:hover,
.button--quiet:hover,
.kevin-link:hover,
.text-cta,
.calc-heading > span,
.slider-field output,
.assumption-note span,
.expense-story li strong,
.support-column > span,
.scale-paths article > span,
.testimonials article > span,
.modal-kevin a,
.trust-strip a,
.footer-legal a { color: var(--bronze-text); }

/* Original bronze stays on dark surfaces, where it already passes */
.estimate-section .kicker,
.time-section .kicker,
.final-inner .kicker,
.story-heading--light h2 em,
.final-inner h2 em,
#estimate-title em,
.calc-heading--light > span { color: var(--bronze); }
.text-cta--light { color: var(--sand); }

/* === v2: money-hero, scheduling, ledger (ported from Landing v2 option 1a) === */

/* --- header --- */
.header-cta--kevin { display: flex; align-items: center; gap: 10px; }
.header-cta--kevin img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }

/* --- money hero --- */
.hero { border-bottom: 1px solid var(--line); scroll-margin-top: 80px; }
.money-hero {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}
.mh-controls { padding: clamp(30px, 3.4vw, 52px) clamp(20px, 4vw, 56px) clamp(28px, 3vw, 44px); }
.mh-controls h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4.2vw, 3.75rem);
  line-height: 0.98;
}
.mh-lede {
  max-width: 30em;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
}
.mh-form { display: block; }
.mh-form .role-selector { border-bottom: 0; padding-bottom: 10px; }
.mh-leadership {
  display: block;
  margin: 0 0 6px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--bronze-text);
  cursor: pointer;
  font-size: 0.85rem;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.mh-leadership:hover { color: var(--green); }

.pay-block { padding-top: 20px; }
.pay-legend {
  margin: 0 0 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.pay-help { margin: 0 0 14px; color: var(--muted); font-size: 0.85rem; }
.pay-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-chips button {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font-size: 0.9rem;
}
.pay-chips button i { color: var(--bronze-text); font-size: 0.8rem; font-style: normal; }
.pay-chips button:hover { border-color: var(--bronze); }
.pay-chips button.is-selected { background: var(--green); border-color: var(--green); color: var(--white); }
.pay-chips button.is-selected i { color: var(--sand); }

.pay-rows { margin-top: 16px; }
.pay-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(23, 38, 37, 0.1);
}
.pay-row-label { display: block; font-size: 0.9rem; }
.pay-row-note {
  display: block;
  color: var(--bronze-text);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
}
.pay-row-field { display: flex; align-items: center; gap: 6px; flex-shrink: 0; color: var(--muted); }
.pay-row-field input {
  width: 88px;
  padding: 3px 0;
  border: 0;
  border-bottom: 1px solid rgba(23, 38, 37, 0.3);
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  text-align: right;
}
.pay-row-per { font-family: var(--mono); font-size: 0.7rem; }
.pay-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 13px;
  font-size: 0.95rem;
}
.pay-total span { color: var(--muted); }
.pay-total strong { color: var(--bronze-text); }

.mh-result {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 3.4vw, 52px) clamp(20px, 4vw, 56px) clamp(28px, 3vw, 44px);
  background: var(--green);
  color: var(--white);
}
.mh-mark { position: absolute; right: -110px; bottom: -130px; width: 420px; opacity: 0.06; }
.mh-result-inner { position: relative; }
.mh-result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.mh-badge {
  padding: 5px 12px;
  border: 1px solid rgba(199, 180, 152, 0.5);
  border-radius: var(--radius-pill);
  color: var(--sand);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mh-live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 253, 249, 0.55);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}
.mh-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--sand); }
.mh-frame {
  max-width: 52em;
  margin: 0 0 22px;
  color: #e6dfd3;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.45;
  text-wrap: pretty;
}
.mh-edit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin: -6px 0 8px;
  color: var(--sand);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(199, 180, 152, 0.55);
}
.mh-edit:hover { color: var(--white); border-bottom-color: var(--white); }
.mh-edit[hidden] { display: none; }

.mh-total { padding-top: 24px; border-top: 1px solid rgba(255, 253, 249, 0.18); }
.mh-total span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 253, 249, 0.6);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.mh-total strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(3.4rem, 5.6vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.drivers { margin-top: 26px; }
.mh-sum { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255, 253, 249, 0.18); }
.mh-sum-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 0;
}
.mh-sum-row span {
  color: #e6dfd3;
  font-size: 0.95rem;
}
.mh-sum-row strong {
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 500;
}
.mh-newtotal {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 253, 249, 0.28);
}
.mh-newtotal span {
  color: var(--bronze);
  font-family: var(--display);
  font-size: clamp(1.32rem, 1.8vw, 1.72rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.mh-newtotal strong {
  flex: none;
  color: var(--bronze);
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.2vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.driver {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 253, 249, 0.12);
}
.driver p { margin: 0; color: rgba(255, 253, 249, 0.86); font-size: 0.95rem; }
.driver strong {
  color: rgba(255, 253, 249, 0.86);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.driver--primary { border-top-color: rgba(255, 253, 249, 0.18); }
.driver--primary p { color: var(--white); font-size: 1.06rem; font-weight: 500; }
.driver--primary strong { color: var(--white); font-size: 2.1rem; }
.driver-tag {
  display: block;
  margin-top: 3px;
  color: rgba(255, 253, 249, 0.5);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.driver-tag--certain { color: var(--sand); }
.rec-stepper {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 10px;
  border: 1px solid rgba(255, 253, 249, 0.28);
  border-radius: var(--radius-sm);
  vertical-align: middle;
}
.rec-stepper button {
  width: 30px;
  height: 26px;
  border: 0;
  background: none;
  color: var(--white);
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
}
.rec-stepper button:hover { color: var(--sand); }
.rec-stepper > span { min-width: 16px; font-family: var(--mono); font-size: 0.78rem; text-align: center; }

.mh-actions { display: flex; gap: 12px; margin-top: 28px; }
.mh-actions .button { flex: 1; min-height: 58px; }
.mh-disclaimer { margin: 14px 0 0; color: rgba(255, 253, 249, 0.62); font-size: 0.85rem; line-height: 1.5; }
.mh-result .brief-link {
  margin-top: 14px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(199, 180, 152, 0.6);
  background: none;
  color: var(--sand);
  cursor: pointer;
  font-size: 0.9rem;
}
.mh-result .brief-link:hover { color: var(--white); border-bottom-color: var(--white); }

/* --- talk / scheduling --- */
.talk-section { background: var(--paper); border-bottom: 1px solid var(--line); scroll-margin-top: 78px; }
.talk-grid { display: grid; grid-template-columns: minmax(0, 480px) minmax(0, 1fr); gap: clamp(32px, 4vw, 64px); align-items: start; }
.talk-copy h2 { margin-bottom: 18px; font-size: clamp(2rem, 3vw, 2.6rem); }
.talk-copy > p { max-width: 34em; margin: 0 0 26px; color: var(--muted); }
.kevin-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}
.kevin-card > img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.kevin-name { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.kevin-name strong { font-size: 1.04rem; }
.kevin-role { margin: 2px 0 0; color: var(--muted); font-size: 0.9rem; }
.kevin-bio { margin: 8px 0 0; font-size: 0.88rem; line-height: 1.5; }
.needs-evidence {
  display: inline-block;
  padding: 3px 8px;
  border: 1px dashed var(--bronze);
  color: var(--bronze-text);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.needs-evidence--light { margin: 10px 0 0; border-color: rgba(199, 180, 152, 0.6); color: var(--sand); }

.slot-panel { padding: clamp(24px, 2.4vw, 34px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.slot-panel-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.slot-panel-head strong { font-size: 1.12rem; }
.slot-panel-head span { color: var(--muted); font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.04em; }
/* Google Calendar appointment schedule. The iframe is Google's markup and
   cannot be restyled, so the wrapper carries the radius and clips it —
   "objects that float get soft". */
.slot-embed { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); }
/* Retune once the real schedule is embedded — Google's widget height depends on
   how many slots it renders, which a placeholder cannot tell us. At 500px the
   #talk section runs ~1.1 viewports at 1440x820, slightly over the one-viewport
   density budget; that is the cost of an embedded third-party booking UI. */
.slot-embed iframe { display: block; width: 100%; min-height: 500px; border: 0; }
@media (max-width: 720px) { .slot-embed iframe { min-height: 600px; } }
.slot-note { margin: 12px 0 0; color: var(--muted); font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.04em; }

.reach-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(23, 38, 37, 0.12);
}
.reach-row > span { color: var(--muted); font-size: 0.88rem; }
.reach-row button {
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(143, 104, 68, 0.5);
  background: none;
  color: var(--bronze-text);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
}
.reach-row button:hover, .reach-row button.is-active { border-bottom-color: var(--green); color: var(--green); }

.talk-form { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.talk-kicker { margin: 0 0 16px; color: var(--bronze-text); font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.09em; text-transform: uppercase; }
.talk-context { margin-bottom: 20px; padding: 14px 16px; background: #f2ece1; border-radius: var(--radius-md); }
.talk-context span { display: block; color: #3d4a46; font-family: var(--mono); font-size: 0.8rem; line-height: 1.5; }
.talk-context small { display: block; margin-top: 6px; color: var(--muted); font-size: 0.8rem; }
.talk-fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.talk-form label { display: block; color: var(--muted); font-size: 0.85rem; }
.talk-form input {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid rgba(23, 38, 37, 0.3);
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
}
.talk-optional { margin-top: 18px; }
.talk-optional em { color: var(--bronze-text); font-style: normal; }
.talk-form .button { margin-top: 22px; }
.talk-note { margin: 12px 0 0; color: var(--muted); font-size: 0.85rem; line-height: 1.5; }
.talk-success { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.talk-success > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
}
.talk-success h3 { margin: 0 0 8px; font-family: var(--display); font-size: 1.4rem; font-weight: 500; letter-spacing: -0.02em; }
.talk-success p { margin: 0 0 10px; color: var(--muted); }
.talk-success small { color: var(--muted); font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.04em; }

.kevin-name a {
  color: var(--bronze-text);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.kevin-name a:hover { color: var(--green); }
.kevin-bio .needs-evidence { margin-left: 4px; }
.kevin-peer {
  display: block;
  margin: 12px 0 0;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(143, 104, 68, 0.5);
  background: none;
  color: var(--bronze-text);
  cursor: pointer;
  font-size: 0.86rem;
  text-align: left;
}
.kevin-peer:hover { border-bottom-color: var(--green); color: var(--green); }
.kevin-peer-line {
  margin: 12px 0 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--muted);
}
.kevin-inline-link {
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid rgba(143, 104, 68, 0.5);
  background: none;
  color: var(--bronze-text);
  cursor: pointer;
  font: inherit;
}
.alt-paths {
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(23, 38, 37, 0.12);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.kevin-inline-link:hover { border-bottom-color: var(--green); color: var(--green); }

/* --- comp ledger --- */
.ledger-grid { display: grid; grid-template-columns: minmax(0, 460px) minmax(0, 1fr); gap: clamp(32px, 4.5vw, 72px); align-items: start; }
.ledger-grid .story-heading h2 { margin-bottom: 18px; }
.ledger-grid .story-heading p { max-width: 32em; color: var(--muted); }
.ledger-lede { margin-bottom: 0; }
.ledger { border: 1px solid var(--line); background: var(--white); }
.ledger ul { margin: 0; padding: 0; list-style: none; }
.ledger li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px clamp(18px, 2vw, 28px);
  border-bottom: 1px solid rgba(23, 38, 37, 0.1);
}
.ledger li span { font-size: 1.02rem; }
.ledger li strong { color: var(--bronze-text); font-size: 0.95rem; white-space: nowrap; }
.ledger-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px clamp(18px, 2vw, 28px);
  background: var(--green);
  color: var(--white);
}
.ledger-total span { font-size: 1.02rem; font-weight: 500; }
.ledger-total strong { font-family: var(--display); font-size: 1.8rem; font-weight: 500; letter-spacing: -0.02em; }

/* --- time: pedigree --- */
.pedigree { margin: 22px 0 20px; padding: 18px 20px; border: 1px solid rgba(255, 253, 249, 0.22); }
.pedigree-label {
  margin: 0 0 8px;
  color: var(--sand);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
  text-wrap: balance;
}
.pedigree p:last-child { margin: 0; color: #e6dfd3; font-size: 0.95rem; line-height: 1.55; }
.pedigree > p:nth-child(2) { margin: 0 0 12px; color: #e6dfd3; font-size: 0.95rem; line-height: 1.55; }
.pedigree p.pedigree-credentials {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 253, 249, 0.16);
  font-size: 0.86rem;
}
.pedigree strong { color: var(--white); }

/* --- support third column --- */
.support-column--you .text-cta { margin-top: 18px; }

/* --- single quote --- */
.quote-grid { display: grid; grid-template-columns: minmax(0, 400px) minmax(0, 1fr); gap: clamp(32px, 4.5vw, 72px); align-items: start; }
.quote-stack { display: grid; gap: 20px; }
.quote-grid .story-heading .text-cta { margin-top: 18px; }
.quote-grid .story-heading p { max-width: 32em; color: var(--muted); }
.quote-grid .needs-evidence { margin-top: 4px; }
.single-quote { margin: 0; padding: clamp(26px, 2.4vw, 38px); border: 1px solid var(--line); background: var(--white); }
.single-quote blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.12rem, 1.35vw, 1.32rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.42;
  text-wrap: pretty;
}
.single-quote figcaption {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(23, 38, 37, 0.14);
}
.single-quote figcaption i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sand-soft);
  color: #75512f;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-style: normal;
}
.single-quote figcaption strong { display: block; font-size: 1.04rem; }
.single-quote figcaption small { display: block; margin-top: 2px; color: var(--muted); font-size: 0.9rem; }

/* --- result bar --- */
.result-bar a { white-space: nowrap; }

/* --- contrast + hit-area corrections --- */
.support-section .kicker,
.faq-section .kicker { color: #75512f; }
.faq-heading .text-cta,
.faq-heading .text-cta span { color: #75512f; }
.faq-heading .text-cta { border-bottom-color: #75512f; }
.role-lane span { color: var(--bronze-text); }
.role-lane--agent span { color: var(--sand); }
.support-column--you span { color: var(--sand); }
.rec-stepper button { width: 44px; height: 44px; font-size: 1.05rem; }
.rec-stepper > span { min-width: 20px; font-size: 0.85rem; }

/* --- grid overflow: hard track minimums only apply where they fit --- */
/* Scoped to min-width so these never outrank the narrow-width collapse rules
   above them in this file (equal specificity, later source order would win). */
@media (min-width: 1181px) {
  .faq-inner { grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr); }
  .control-tower { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }
}
@media (max-width: 1180px) {
  .faq-inner { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
}

/* --- responsive --- */
@media (max-width: 1180px) {
  .money-hero { grid-template-columns: 1fr; }
  .mh-result { order: -1; }
  .talk-grid, .ledger-grid, .quote-grid { grid-template-columns: 1fr; }
  .quote-grid { align-items: start; }
}
@media (max-width: 720px) {
  .mh-controls, .mh-result { padding-left: 20px; padding-right: 20px; }
  .mh-actions { flex-direction: column; }
  .driver { grid-template-columns: 1fr; gap: 6px; }
  .driver strong, .driver--primary strong { font-size: 1.5rem; }
  .value-rail { grid-template-columns: 1fr 1fr; }
  .value-rail div:nth-child(2n) { border-right: 0; }
  .value-rail div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .reach-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pay-row { flex-wrap: wrap; }
}

/* --- Form submit states (keep landing.css and styles.css in sync) --- */

/* Filled note -> --radius-md, per the radius rule. 0.85rem clears the 0.8rem
   content-text floor. */
.form-status {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: rgba(23, 38, 37, 0.05);
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}
.form-status[hidden] { display: none; }
.form-status[data-kind="error"] { background: #fdf1ef; color: #8c2f22; }
.form-status[data-kind="error"] a { color: inherit; }

/* Honeypot. Positioned off-screen rather than display:none — the better bots
   skip fields that are display:none, which defeats the point. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.button[disabled] { opacity: 0.55; cursor: progress; }
