/* A quiet instrument: ink, paper, a load line. All assets stay local. */
:root {
  --paper: #f5f3ed;
  --white: #fcfbf7;
  --ink: #233e35;
  --body: #33483f;
  --muted: #657068;
  --rule: #d9ddd2;
  --green: #285e52;
  --light-green: #e5ece4;
  --rust: #a75d39;
  --sand: #eee7d9;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,
select,
input {
  font: inherit;
  color: inherit;
}
button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border-radius: 0;
}
button:disabled {
  cursor: default;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
}
h1,
h2 {
  font-family: var(--serif);
  letter-spacing: -0.045em;
  line-height: 1.09;
}
em {
  font-weight: 400;
}
p {
  color: var(--body);
}
button:focus-visible,
a:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 4px;
}
button,
a,
select {
  touch-action: manipulation;
}
a:hover {
  text-decoration: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--white);
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.wrap {
  width: calc(100% - 112px);
  max-width: 1312px;
  margin-inline: auto;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
}
.section-space {
  padding-block: 102px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  line-height: 1;
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -0.065em;
  white-space: nowrap;
}
.brand-note {
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin: 7px 0 0 5px;
  font-weight: 500;
}
.load-mark {
  display: inline-block;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}
.load-mark:before {
  content: "";
  position: absolute;
  height: 2px;
  background: currentColor;
  top: 12px;
  left: -9px;
  width: 44px;
}
.tiny-mark {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rust);
  margin-right: 8px;
}
.site-header {
  height: 108px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  gap: 30px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
}
.site-header nav a {
  padding: 12px 0;
}
.site-header nav a:hover {
  color: var(--rust);
}
.site-header .nav-cta {
  border-bottom: 1px solid var(--ink);
  padding-block: 8px;
  display: flex;
  gap: 20px;
}
.hero {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  column-gap: 8%;
  position: relative;
  padding-top: 80px;
}
.hero-copy .eyebrow {
  margin-bottom: 32px;
}
.hero h1 {
  font-size: clamp(56px, 5.9vw, 88px);
  line-height: 1.035;
  letter-spacing: -0.058em;
}
.hero h1 em {
  white-space: nowrap;
}
.hero-description {
  font-size: 21px;
  line-height: 1.5;
  max-width: 400px;
  margin-top: 28px;
}
.hero-audience {
  color: var(--muted);
  font-size: 14px;
  max-width: 395px;
  line-height: 1.7;
  margin-top: 15px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 49px;
  padding: 13px 21px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  transition:
    background 0.15s,
    color 0.15s,
    transform 0.15s;
}
.button span[aria-hidden] {
  font-size: 19px;
  font-weight: 400;
}
.button.primary {
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
}
.button.primary:hover {
  background: var(--green);
  transform: translateY(-2px);
}
.hero .button {
  margin-top: 32px;
}
.concept-note {
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 14px;
}
.hero-instrument {
  border: 1px solid #b7c2b3;
  background: var(--white);
  align-self: center;
  margin-top: 12px;
  box-shadow: 10px 10px 0 #e7eadd;
  position: relative;
}
.instrument-top {
  padding: 19px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--rule);
}
.instrument-top .eyebrow {
  font-size: 9px;
}
.sample-stamp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 7px;
  border: 1px solid #c8bd9d;
  color: #72623e;
  font: 9px/1.4 var(--mono);
  letter-spacing: 0.03em;
  white-space: nowrap;
  background: #f5f0e3;
}
.instrument-period {
  font: 9px/1.6 var(--mono);
  padding: 20px 24px 0;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.instrument-amount {
  padding: 24px 24px 18px;
  position: relative;
  overflow: hidden;
}
.instrument-amount > span:first-child {
  display: block;
  font-size: 12px;
}
.instrument-amount strong {
  display: block;
  font: 61px/1.3 var(--serif);
  letter-spacing: -0.06em;
}
.instrument-line {
  position: absolute;
  right: -9px;
  top: 36px;
  width: 88px;
  height: 88px;
  border: 1px solid #c1c9ba;
  border-radius: 50%;
}
.instrument-line:before {
  content: "";
  position: absolute;
  top: 42px;
  left: -32px;
  width: 150px;
  height: 1px;
  background: #c1c9ba;
}
.preview-ledger {
  padding-inline: 24px;
}
.preview-ledger > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 13px;
  border-top: 1px solid var(--rule);
  gap: 16px;
  font-size: 12px;
}
.preview-ledger small {
  font-size: 10px;
  color: var(--muted);
  margin-left: 9px;
}
.preview-ledger strong {
  font: 12px var(--mono);
}
.preview-ledger .unknown-row {
  color: var(--muted);
}
.instrument-foot {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 17px 24px;
  background: var(--light-green);
  font-size: 10px;
}
.instrument-foot strong {
  font-size: 17px;
  margin-right: 4px;
  font-weight: 500;
}
.instrument-foot > span:last-child {
  color: #6f5939;
  font-size: 9px;
}
.hero-instrument figcaption {
  font: 9px/1.7 var(--mono);
  padding: 13px 24px;
  color: var(--muted);
  border-top: 1px solid var(--rule);
}
.hero-baseline {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  margin-top: 73px;
  padding-block: 21px;
  border-bottom: 1px solid var(--rule);
  font: 9px var(--mono);
  color: var(--muted);
  letter-spacing: 0.04em;
}
.section-intro h2,
.section-heading h2,
.pilot-section h2 {
  font-size: 51px;
  margin-top: 26px;
}
.section-intro > p:last-child {
  max-width: 365px;
  font-size: 15px;
  margin-top: 26px;
  line-height: 1.75;
}
.approach {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 12%;
}
.principles article {
  display: flex;
  gap: 27px;
  border-top: 1px solid var(--rule);
  padding: 25px 0;
}
.principles article:first-child {
  border-color: var(--ink);
}
.principles article:last-child {
  padding-bottom: 0;
}
.index-number {
  font: 11px var(--mono);
  color: var(--rust);
  padding-top: 6px;
}
.principles h3 {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.02em;
}
.principles p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.8;
  max-width: 420px;
}
.local-section {
  background: var(--ink);
  color: var(--paper);
  padding-block: 83px;
  position: relative;
  overflow: hidden;
}
.local-section:before {
  content: "";
  position: absolute;
  bottom: -90px;
  left: -80px;
  width: 340px;
  height: 340px;
  border: 1px solid #456051;
  border-radius: 50%;
  pointer-events: none;
}
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 12%;
  position: relative;
}
.local-section p {
  color: #c7d2c7;
}
.local-section .eyebrow {
  color: #c1cbbd;
}
.local-section h2 {
  font-size: 50px;
  margin-top: 25px;
  line-height: 1.12;
}
.local-section .large-copy {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.4;
  color: var(--paper);
  margin-bottom: 22px;
}
.local-section .large-copy + p {
  font-size: 13px;
  line-height: 1.8;
}
.text-link {
  display: inline-flex;
  gap: 25px;
  align-items: center;
  font-size: 12px;
  border-bottom: 1px solid var(--ink);
  padding-block: 8px;
}
.light-link {
  border-color: #95aa95;
  margin-top: 24px;
  color: var(--paper);
}
.light-link:hover {
  color: white;
  border-color: white;
}
.fine-print {
  font-size: 10px;
  line-height: 1.65;
  color: var(--muted);
}
.local-section .fine-print {
  font-size: 10px;
  margin-top: 15px;
  max-width: 400px;
  color: #b7c6b7;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  align-items: flex-end;
}
.section-heading > p {
  max-width: 370px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 3px;
}
.suite-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 55px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}
.suite-map article {
  padding: 29px 24px 29px 0;
  position: relative;
}
.suite-map article + article {
  border-left: 1px solid var(--rule);
  padding-left: 24px;
}
.suite-map .suite-selected {
  background: #e8ecdf;
  padding-right: 22px;
}
.suite-symbol,
.suite-map .load-mark {
  display: block;
  height: 30px;
  width: 30px;
  margin-bottom: 29px;
}
.suite-symbol {
  font-size: 34px;
  line-height: 30px;
  font-family: var(--serif);
}
.suite-map .load-mark {
  margin-left: 7px;
}
.suite-map .eyebrow {
  font-size: 8px;
  color: var(--muted);
}
.suite-map h3 {
  font-size: 24px;
  font-family: var(--serif);
  line-height: 1.3;
  margin-top: 12px;
  letter-spacing: -0.03em;
}
.suite-map h3 em {
  display: block;
  font-size: 20px;
}
.suite-map p {
  margin-top: 17px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}
.shared-thread {
  padding: 18px 0;
  font: 9px/1.8 var(--mono);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.shared-thread .tiny-mark {
  margin-right: 0;
}
.shared-thread > span:last-child {
  margin-left: auto;
  color: var(--muted);
}
.pilot-section {
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 12%;
  padding-top: 80px;
}
.pilot-section > div > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.8;
  max-width: 360px;
  margin-top: 25px;
  color: var(--muted);
}
.pilot-section .button {
  margin-top: 30px;
}
.pilot-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: pilot;
}
.pilot-list li {
  counter-increment: pilot;
  position: relative;
  border-bottom: 1px solid var(--rule);
  padding: 25px 0 25px 40px;
}
.pilot-list li:first-child {
  padding-top: 0;
}
.pilot-list li:before {
  content: "0" counter(pilot);
  position: absolute;
  left: 0;
  font: 11px/2 var(--mono);
  color: var(--rust);
}
.pilot-list span {
  font: 24px var(--serif);
  letter-spacing: -0.02em;
}
.pilot-list p {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 12px;
  color: var(--muted);
}
.site-footer {
  padding-block: 35px;
  display: flex;
  align-items: center;
  gap: 55px;
  border-top: 1px solid var(--rule);
}
.site-footer .brand {
  font-size: 26px;
}
.site-footer .load-mark {
  width: 24px;
  height: 24px;
}
.site-footer .load-mark:before {
  top: 9px;
  left: -7px;
  width: 34px;
}
.site-footer p {
  font-size: 10px;
  line-height: 1.8;
  color: var(--muted);
}
.site-footer > a:last-child {
  font-size: 11px;
  margin-left: auto;
}

/* Workspace shell */
.dashboard-body {
  background: var(--white);
  font-size: 13px;
}
.sidebar {
  width: 211px;
  position: fixed;
  inset: 0 auto 0 0;
  padding: 35px 23px 23px;
  background: #edf0e7;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  z-index: 10;
}
.sidebar .brand {
  font-size: 29px;
  gap: 13px;
}
.sidebar .load-mark {
  width: 25px;
  height: 25px;
}
.sidebar .load-mark:before {
  width: 38px;
  top: 10px;
  left: -8px;
}
.workspace-label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 47px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}
.workspace-label small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 9px;
}
.workspace-avatar {
  width: 30px;
  height: 33px;
  background: #d9e0d1;
  border: 1px solid #c9d2c2;
  display: grid;
  place-items: center;
  font: 19px var(--serif);
}
.sidebar nav {
  margin: 28px -9px 0;
}
.sidebar nav a {
  display: flex;
  gap: 11px;
  font-size: 12px;
  padding: 11px 10px;
  margin: 4px 0;
  border-left: 2px solid transparent;
  align-items: center;
}
.sidebar nav a span {
  width: 16px;
  text-align: center;
  font-size: 17px;
  line-height: 1;
}
.sidebar nav .current {
  background: #dde4d6;
  border-left-color: var(--green);
  font-weight: 600;
}
.sidebar nav a:hover {
  background: #e2e7dc;
}
.sidebar-suite {
  margin-top: 40px;
  border-top: 1px solid var(--rule);
  padding-top: 25px;
}
.sidebar-suite > .eyebrow {
  font-size: 8px;
  color: var(--muted);
  margin-bottom: 13px;
}
.sidebar-suite > a {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  font-size: 10px;
  padding-block: 9px;
}
.sidebar-suite small {
  font-size: 9px;
  color: var(--muted);
}
.sidebar-suite > p:last-child {
  font: italic 19px/1.4 var(--serif);
  color: #75816e;
  margin-top: 28px;
}
.sidebar-bottom {
  margin-top: auto;
  padding-top: 35px;
  font-size: 10px;
}
.local-dot {
  width: 5px;
  height: 5px;
  background: var(--muted);
  display: inline-block;
  border-radius: 50%;
  margin-right: 5px;
}
.sidebar-bottom small {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin: 3px 0 20px 12px;
}
.sidebar-bottom a {
  font-size: 10px;
}
.dashboard-shell {
  margin-left: 211px;
}
.dashboard-topbar {
  height: 59px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 38px;
  border-bottom: 1px solid var(--rule);
  font-size: 10px;
  color: var(--muted);
}
.breadcrumb-separator {
  color: #adb3a6;
  margin: 0 10px;
}
.dashboard-topbar > a {
  font-size: 10px;
  color: var(--ink);
}
.synthetic-banner {
  background: #f5f0e5;
  border-bottom: 1px solid #e7dece;
  padding: 11px 38px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.synthetic-banner p {
  font-size: 11px;
  line-height: 1.5;
  color: #71664f;
}
.synthetic-banner .sample-stamp {
  font-size: 8px;
  flex-shrink: 0;
}
.dashboard-main {
  max-width: 1410px;
  margin-inline: auto;
  padding: 36px 38px 0;
  outline: none;
}
.dashboard-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.dashboard-heading .eyebrow {
  font-size: 8px;
  margin-bottom: 12px;
}
.dashboard-heading h1 {
  font-size: 41px;
}
.dashboard-heading p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  margin-top: 13px;
}
.report-edition {
  font: 8px/1.9 var(--mono);
  text-align: right;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.report-edition strong {
  font-size: 10px;
  font-weight: 400;
  color: var(--ink);
}
.filter-bar {
  margin-top: 29px;
  padding: 17px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.filters {
  display: flex;
  gap: 14px;
  align-items: center;
}
.filters label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}
select {
  border: 1px solid #b9c4b8;
  min-height: 37px;
  background: var(--white);
  font-size: 11px;
  padding: 8px 29px 8px 11px;
  max-width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='m3 4 3 3 3-3' fill='none' stroke='%23233e35' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 9px center;
  color: var(--ink);
}
.filter-context {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 9px;
  color: var(--muted);
}
.text-button {
  padding: 7px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  line-height: 1.5;
  text-align: left;
}
.text-button:hover {
  color: var(--rust);
}
.filter-context .text-button {
  font-size: 9px;
}
.basis-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.basis-switch {
  padding: 0;
  margin: 0;
  border: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}
.basis-switch legend {
  float: left;
  font-size: 10px;
  margin-right: 13px;
  padding: 8px 0;
  color: var(--muted);
}
.basis-switch > div {
  display: flex;
  padding: 3px;
  background: #edf0e8;
  border: 1px solid var(--rule);
}
.basis-switch button {
  border: 0;
  background: transparent;
  min-height: 36px;
  padding: 7px 13px;
  font-size: 11px;
  color: var(--muted);
}
.basis-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}
.basis-switch button:hover[aria-pressed="false"] {
  background: #dfe5d9;
  color: var(--ink);
}
.help-button {
  border: 0;
  display: flex;
  gap: 7px;
  align-items: center;
}
.help-button span {
  font-size: 13px;
}
.basis-description {
  font-size: 11px;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 13px;
  max-width: 910px;
  min-height: 35px;
}
.metrics {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.15fr;
  margin-top: 23px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}
.metric {
  padding: 22px 20px;
}
.metric:first-child {
  padding-left: 0;
}
.metric + .metric {
  border-left: 1px solid var(--rule);
}
.metric:last-child {
  padding-right: 0;
}
.metric h2 {
  font-family: var(--sans);
  letter-spacing: 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 500;
}
.metric-value {
  display: block;
  font: 40px/1.4 var(--serif);
  letter-spacing: -0.045em;
  margin-top: 7px;
  white-space: nowrap;
}
.metric p {
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 7px;
}
.metric-primary .metric-value {
  color: var(--green);
}
.metric-value.unavailable {
  font: italic 24px/1.4 var(--serif);
  letter-spacing: -0.025em;
  padding-top: 11px;
  padding-bottom: 11px;
  color: #73806d;
}
.coverage-strip {
  background: #f2eee4;
  margin-top: 15px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #756440;
}
.coverage-strip p {
  font-size: 11px;
  line-height: 1.6;
  color: #6d6042;
}
.coverage-symbol {
  border: 1px solid #a18d62;
  line-height: 15px;
  text-align: center;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  font: 11px/15px var(--serif);
}
.coverage-strip .text-button {
  margin-left: auto;
  white-space: nowrap;
  color: #756440;
  flex-shrink: 0;
  font-size: 9px;
}
.overview-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 40px;
  margin-top: 39px;
  padding-bottom: 31px;
  border-bottom: 1px solid var(--rule);
}
.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
}
.panel-heading .eyebrow,
.outcomes-panel .eyebrow {
  font-size: 8px;
  color: var(--muted);
  margin-bottom: 10px;
}
.panel-heading h2,
.outcomes-panel h2 {
  font-size: 27px;
  letter-spacing: -0.035em;
}
.unit-label {
  font: 8px/1.6 var(--mono);
  color: var(--muted);
  text-align: right;
}
.cost-bars {
  margin-top: 24px;
}
.cost-bar-row {
  margin-top: 15px;
  display: grid;
  grid-template-columns: 90px 1fr 73px;
  align-items: center;
  gap: 12px;
  font-size: 10px;
}
.cost-bar-row .bar-name {
  background: transparent;
  border: 0;
  text-align: left;
  padding: 3px 0;
  font-size: 12px;
}
.cost-bar-row .bar-name:hover {
  color: var(--rust);
}
.cost-bar-row .bar-track {
  background: #edf0e8;
  height: 10px;
  min-width: 0;
}
.cost-bar-row .bar-fill {
  height: 100%;
  background: var(--green);
  min-width: 1px;
  transition: width 0.25s ease;
}
.cost-bar-row .bar-amount {
  font: 11px var(--mono);
  text-align: right;
}
.composition-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
  margin-top: 23px;
}
.composition-footer strong {
  font: 11px var(--mono);
}
.composition-panel .fine-print {
  margin-top: 9px;
  font-size: 10px;
}
.outcomes-panel {
  border-left: 1px solid var(--rule);
  padding-left: 31px;
}
.outcomes-panel > p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.8;
  margin-top: 17px;
  color: var(--muted);
  max-width: 310px;
}
.outcome-segments {
  height: 11px;
  background: #e8eade;
  margin-top: 22px;
  display: flex;
  gap: 3px;
}
.outcome-segments span {
  height: 100%;
}
.outcome-legend {
  display: grid;
  grid-template-columns: 1fr auto;
  font-size: 11px;
  gap: 7px;
  margin-top: 17px;
}
.outcome-legend dt {
  display: flex;
  align-items: center;
  gap: 7px;
}
.outcome-legend dd {
  margin: 0;
  font: 10px var(--mono);
}
.legend-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  flex-shrink: 0;
}
.outcomes-panel > p.fine-print {
  font-size: 10px;
  line-height: 1.7;
  margin-top: 19px;
}
.projects-section {
  padding-top: 35px;
  scroll-margin-top: 20px;
}
.table-scroll {
  position: relative;
  margin-top: 23px;
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
th,
td {
  padding: 16px 13px;
  border-bottom: 1px solid var(--rule);
  white-space: nowrap;
}
th {
  font-size: 9px;
  color: var(--muted);
  font-weight: 500;
}
th:first-child,
td:first-child {
  padding-left: 0;
}
th:last-child,
td:last-child {
  padding-right: 0;
}
td:not(:first-child) {
  font-family: var(--mono);
}
thead {
  background: #f2f3ec;
}
thead th:first-child {
  padding-left: 12px;
}
tbody tr:hover {
  background: #f3f5ed;
}
.project-name {
  display: flex;
  gap: 11px;
  align-items: center;
  font: 12px var(--sans);
}
.project-chip {
  width: 27px;
  height: 29px;
  display: grid;
  place-items: center;
  background: #e8ece1;
  font: 8px var(--mono);
  color: var(--ink);
  flex-shrink: 0;
}
.project-name small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 5px;
  font-weight: 400;
}
.project-detail-button {
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  font-size: 13px;
  line-height: 1.5;
  min-height: 36px;
}
.project-detail-button:hover {
  color: var(--rust);
}
.row-arrow {
  font: 18px var(--sans);
}
tfoot th,
tfoot td {
  font-weight: 600;
  color: var(--ink);
  border-bottom: 0;
  font-size: 10px;
}
.projects-section > .fine-print {
  font-size: 10px;
  margin-top: 5px;
}
.refinement-section {
  margin-top: 43px;
  margin-bottom: 40px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  background: #eaf0e4;
  border: 1px solid #d4decc;
}
.refinement-copy .eyebrow {
  font-size: 8px;
}
.refinement-copy h2 {
  font-size: 32px;
  margin-top: 15px;
  line-height: 1.16;
}
.refinement-copy > p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 330px;
  margin-top: 17px;
}
.refinement-copy .sample-stamp {
  margin-top: 22px;
  font-size: 8px;
}
.experiment-preview {
  padding-left: 31px;
  border-left: 1px solid #cbd7c4;
}
.experiment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 9px;
  font: 8px var(--mono);
}
.status-pill {
  display: inline-block;
  border: 1px solid #b8c5b0;
  padding: 4px 7px;
  font: 8px/1.3 var(--mono);
  color: var(--green);
}
.experiment-preview h3 {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.035em;
  margin-top: 18px;
}
.experiment-preview > p {
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
}
.experiment-measures {
  display: flex;
  gap: 30px;
  margin-top: 22px;
  font-size: 11px;
}
.experiment-measures small {
  display: block;
  font-size: 8px;
  color: var(--muted);
  margin-bottom: 5px;
}
.button.outline {
  background: transparent;
  border: 1px solid #8ca182;
  color: var(--ink);
  min-height: 42px;
  font-size: 10px;
}
.button.outline:hover {
  background: #dbe5d3;
}
.experiment-preview .button {
  margin-top: 24px;
  width: 100%;
  padding: 10px 13px;
}
.dashboard-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--rule);
  padding: 21px 0;
  font: 8px/1.6 var(--mono);
  color: var(--muted);
}

/* Native modal keeps focus, Escape and background inertness in the browser. */
dialog {
  color: var(--ink);
  background: var(--white);
  width: min(750px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  padding: 26px 32px 32px;
  border: 1px solid #a9b8a4;
  box-shadow: 0 24px 90px #18282033;
  overflow: auto;
}
dialog::backdrop {
  background: #15291fd1;
  backdrop-filter: blur(3px);
}
body:has(dialog[open]) {
  overflow: hidden;
}
.dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}
.icon-button {
  border: 1px solid var(--rule);
  background: transparent;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
}
.icon-button:hover {
  background: var(--light-green);
}
.dialog-eyebrow {
  font: 9px/1.7 var(--mono);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
dialog h2 {
  font-size: 36px;
  margin: 12px 0 17px;
}
dialog h3 {
  font: 23px/1.2 var(--serif);
  letter-spacing: -0.03em;
  margin-top: 26px;
}
dialog p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 12px;
}
dialog .dialog-lead {
  font-size: 14px;
  color: var(--body);
}
.detail-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--rule);
  margin-top: 24px;
  padding: 20px 0;
  gap: 15px;
}
.detail-metrics span {
  display: block;
  font-size: 9px;
  color: var(--muted);
}
.detail-metrics strong {
  display: block;
  font: 27px/1.4 var(--serif);
  margin-top: 6px;
  letter-spacing: -0.025em;
}
.detail-metrics .unavailable {
  font-size: 20px;
  font-style: italic;
}
.basis-explainer {
  margin-top: 23px;
}
.basis-explainer article {
  padding: 19px 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 25px;
}
.basis-explainer h3 {
  font: 19px var(--serif);
  margin: 0;
}
.basis-explainer p {
  margin: 0;
  font-size: 11px;
}
.basis-explainer strong {
  display: block;
  margin-top: 10px;
  font: 14px var(--mono);
}
.notice {
  background: var(--sand);
  border-left: 2px solid var(--rust);
  padding: 13px 15px;
  font-size: 11px !important;
  color: #75613f !important;
  margin-top: 22px !important;
}
.receipt-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}
.receipt-list li {
  border-top: 1px solid var(--rule);
  padding: 15px 0;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.receipt-code {
  font: 8px/1.7 var(--mono);
  color: var(--muted);
  min-width: 80px;
  padding-top: 3px;
}
.receipt-list h4 {
  font-size: 11px;
  font-weight: 500;
  margin: 0;
}
.receipt-list p {
  font-size: 9px;
  line-height: 1.7;
  margin-top: 5px;
}
.detail-actions {
  display: flex;
  gap: 15px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.experiment-controls {
  display: flex;
  gap: 5px;
  margin-top: 23px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 12px;
  flex-wrap: wrap;
}
.experiment-controls button {
  border: 1px solid var(--rule);
  background: transparent;
  padding: 8px 12px;
  font-size: 10px;
}
.experiment-controls button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}
.experiment-body ol {
  padding-left: 20px;
  color: var(--body);
  font-size: 12px;
  line-height: 1.8;
}
.experiment-body li {
  margin-top: 13px;
}
.experiment-body dl {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 14px;
  font-size: 11px;
  margin-top: 20px;
}
.experiment-body dt {
  color: var(--muted);
}
.experiment-body dd {
  margin: 0;
}
.empty-state {
  padding: 20px 0;
  color: var(--muted);
  font: italic 21px/1.5 var(--serif);
}

@media (min-width: 1600px) {
  .hero {
    padding-top: 100px;
  }
  .hero-baseline {
    margin-top: 96px;
  }
  .dashboard-main {
    padding-top: 47px;
  }
  .metrics {
    margin-top: 28px;
  }
  .overview-grid {
    margin-top: 45px;
  }
}

@media (max-width: 1200px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .hero {
    gap: 5%;
    grid-template-columns: 1.08fr 1fr;
  }
  .hero h1 {
    font-size: 60px;
  }
  .hero-description {
    font-size: 19px;
  }
  .instrument-top {
    padding: 17px;
  }
  .instrument-top .eyebrow {
    font-size: 8px;
  }
  .sample-stamp {
    font-size: 8px;
  }
  .instrument-period {
    padding-inline: 17px;
    font-size: 8px;
  }
  .instrument-amount,
  .hero-instrument figcaption {
    padding-inline: 17px;
  }
  .preview-ledger {
    padding-inline: 17px;
  }
  .preview-ledger small {
    display: block;
    margin: 3px 0 0;
  }
  .instrument-foot {
    padding-inline: 17px;
    font-size: 9px;
  }
  .instrument-foot > span:last-child {
    font-size: 8px;
  }
  .approach,
  .local-grid,
  .pilot-section {
    gap: 8%;
  }
  .sidebar {
    width: 190px;
    padding-inline: 20px;
  }
  .dashboard-shell {
    margin-left: 190px;
  }
  .dashboard-topbar,
  .synthetic-banner {
    padding-inline: 27px;
  }
  .dashboard-main {
    padding-inline: 27px;
  }
  .dashboard-heading h1 {
    font-size: 36px;
  }
  .filter-context {
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
  }
  .metric {
    padding-inline: 14px;
  }
  .metric-value {
    font-size: 34px;
  }
  .metric-value.unavailable {
    font-size: 21px;
    padding-block: 9px;
  }
  .metric h2 {
    font-size: 10px;
  }
  .overview-grid {
    gap: 26px;
    grid-template-columns: 1.35fr 1fr;
  }
  .outcomes-panel {
    padding-left: 23px;
  }
  .panel-heading h2,
  .outcomes-panel h2 {
    font-size: 25px;
  }
  .refinement-section {
    gap: 27px;
    padding: 27px;
  }
  .refinement-copy h2 {
    font-size: 29px;
  }
  .experiment-preview {
    padding-left: 23px;
  }
  .report-edition {
    display: none;
  }
  .cost-bar-row {
    grid-template-columns: 72px 1fr 62px;
    gap: 10px;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 90px;
  }
  .site-header nav {
    gap: 22px;
  }
  .site-header nav > a:not(.nav-cta) {
    display: none;
  }
  .brand-note {
    margin-left: 0;
  }
  .hero {
    padding-top: 55px;
    column-gap: 6%;
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
    margin-bottom: 24px;
  }
  .hero-description {
    font-size: 18px;
  }
  .hero-audience {
    font-size: 12px;
  }
  .hero .button {
    margin-top: 25px;
    gap: 21px;
    font-size: 11px;
  }
  .hero-instrument {
    margin-top: 0;
  }
  .instrument-top {
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
  }
  .instrument-period {
    flex-direction: column;
    gap: 3px;
    padding-top: 15px;
  }
  .instrument-amount {
    padding-top: 17px;
    padding-bottom: 14px;
  }
  .instrument-amount strong {
    font-size: 50px;
  }
  .instrument-amount > span:first-child {
    font-size: 10px;
  }
  .instrument-line {
    width: 70px;
    height: 70px;
    top: 20px;
  }
  .instrument-line:before {
    top: 33px;
  }
  .preview-ledger > div {
    padding-block: 10px;
  }
  .instrument-foot {
    flex-wrap: wrap;
    gap: 3px;
  }
  .instrument-foot > span {
    display: block;
  }
  .section-space {
    padding-block: 72px;
  }
  .section-intro h2,
  .section-heading h2,
  .pilot-section h2,
  .local-section h2 {
    font-size: 42px;
  }
  .principles h3 {
    font-size: 23px;
  }
  .principles p {
    font-size: 12px;
  }
  .section-intro > p:last-child {
    font-size: 13px;
  }
  .local-section {
    padding-block: 65px;
  }
  .local-section .large-copy {
    font-size: 23px;
  }
  .section-heading {
    gap: 40px;
  }
  .section-heading > p {
    max-width: 280px;
    font-size: 12px;
  }
  .suite-map {
    margin-top: 40px;
  }
  .suite-map article + article {
    padding-left: 18px;
  }
  .suite-map h3 {
    font-size: 22px;
  }
  .suite-map h3 em {
    font-size: 18px;
  }
  .suite-map p {
    font-size: 11px;
  }
  .pilot-list span {
    font-size: 22px;
  }
  .site-footer {
    gap: 30px;
  }
  .sidebar {
    width: 171px;
    padding-inline: 18px;
  }
  .sidebar .brand {
    font-size: 25px;
  }
  .sidebar .load-mark {
    width: 21px;
    height: 21px;
  }
  .sidebar .load-mark:before {
    width: 33px;
    top: 8px;
    left: -8px;
  }
  .workspace-label {
    gap: 7px;
    font-size: 10px;
  }
  .workspace-label small {
    font-size: 8px;
  }
  .sidebar-suite small {
    font-size: 8px;
  }
  .dashboard-shell {
    margin-left: 171px;
  }
  .dashboard-main {
    padding-inline: 22px;
  }
  .dashboard-topbar,
  .synthetic-banner {
    padding-inline: 22px;
  }
  .synthetic-banner {
    align-items: flex-start;
    gap: 7px;
    flex-direction: column;
  }
  .dashboard-heading h1 {
    font-size: 34px;
  }
  .dashboard-heading p:not(.eyebrow) {
    font-size: 11px;
  }
  .filter-bar {
    align-items: flex-start;
  }
  .filters {
    gap: 10px;
    align-items: flex-start;
  }
  .filters label {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  select {
    font-size: 10px;
    min-height: 36px;
    max-width: 178px;
  }
  .filter-context {
    padding-top: 19px;
    gap: 8px;
    font-size: 8px;
  }
  .basis-switch legend {
    margin-right: 7px;
    font-size: 9px;
  }
  .basis-switch button {
    padding-inline: 10px;
    font-size: 9px;
  }
  .help-button {
    font-size: 9px;
  }
  .basis-description {
    font-size: 11px;
  }
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .metric {
    padding: 16px 18px;
  }
  .metric:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--rule);
    padding-left: 0;
  }
  .metric:nth-child(4) {
    border-top: 1px solid var(--rule);
  }
  .metric-value {
    font-size: 38px;
    margin-top: 3px;
  }
  .metric-value.unavailable {
    font-size: 25px;
    padding-block: 9px;
  }
  .metric p {
    margin-top: 3px;
  }
  .coverage-strip {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .coverage-strip p {
    flex: 1;
    font-size: 9px;
  }
  .coverage-strip .text-button {
    margin-left: 27px;
  }
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .outcomes-panel {
    border-left: 0;
    border-top: 1px solid var(--rule);
    padding: 26px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 25px;
  }
  .outcomes-panel .eyebrow,
  .outcomes-panel h2 {
    grid-column: 1;
  }
  .outcomes-panel > p:not(.eyebrow) {
    grid-column: 1;
    max-width: none;
  }
  .outcome-segments {
    grid-column: 2;
    grid-row: 1/3;
    align-self: center;
    margin-top: 5px;
  }
  .outcome-legend {
    grid-column: 2;
    grid-row: 3;
    align-self: center;
  }
  .outcomes-panel > p.fine-print {
    grid-column: 1/-1;
    font-size: 9px;
    margin-top: 11px;
    max-width: none;
  }
  .projects-section .panel-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
  .table-scroll {
    margin-top: 17px;
  }
  .refinement-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .experiment-preview {
    border-left: 0;
    border-top: 1px solid #cbd7c4;
    padding: 25px 0 0;
  }
  .refinement-copy > p:not(.eyebrow) {
    max-width: none;
  }
  .refinement-copy h2 br,
  .experiment-preview h3 br {
    display: none;
  }
  .experiment-preview h3 {
    font-size: 25px;
  }
  .dashboard-footer {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 80px;
    gap: 16px;
  }
  .site-header .brand {
    font-size: 28px;
    gap: 12px;
  }
  .site-header .brand-note {
    display: none;
  }
  .site-header .nav-cta {
    font-size: 10px;
    gap: 10px;
  }
  .hero {
    display: block;
    padding-top: 43px;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
  }
  .hero h1 {
    font-size: clamp(48px, 10.8vw, 73px);
  }
  .hero-description {
    font-size: 20px;
    max-width: 380px;
    margin-top: 23px;
  }
  .hero-audience {
    font-size: 13px;
    max-width: 360px;
  }
  .hero .button {
    min-height: 49px;
    margin-top: 26px;
    padding-inline: 18px;
    font-size: 12px;
    gap: 28px;
  }
  .concept-note {
    font-size: 9px;
    margin-top: 12px;
  }
  .hero-instrument {
    margin: 43px 7px 0 0;
  }
  .instrument-top {
    flex-direction: row;
    align-items: center;
    padding: 18px;
  }
  .instrument-top .eyebrow {
    font-size: 9px;
  }
  .instrument-top .sample-stamp {
    font-size: 8px;
  }
  .instrument-period {
    flex-direction: row;
    font-size: 8px;
    padding-inline: 18px;
  }
  .instrument-amount {
    padding: 24px 18px 15px;
  }
  .instrument-amount strong {
    font-size: 60px;
  }
  .instrument-amount > span:first-child {
    font-size: 11px;
  }
  .instrument-line {
    top: 28px;
    right: 3px;
    width: 88px;
    height: 88px;
  }
  .instrument-line:before {
    top: 42px;
  }
  .preview-ledger {
    padding-inline: 18px;
  }
  .preview-ledger > div {
    font-size: 12px;
    padding-block: 13px;
  }
  .preview-ledger small {
    display: inline;
    font-size: 9px;
    margin-left: 8px;
  }
  .instrument-foot {
    padding: 16px 18px;
    justify-content: space-between;
    font-size: 9px;
  }
  .instrument-foot > span:last-child {
    font-size: 8px;
  }
  .hero-instrument figcaption {
    padding: 12px 18px;
    font-size: 8px;
  }
  .hero-baseline {
    margin-top: 41px;
    font-size: 8px;
    line-height: 1.6;
    gap: 20px;
  }
  .hero-baseline > span:last-child {
    text-align: right;
    font-size: 7px;
  }
  .section-space {
    padding-block: 58px;
  }
  .approach,
  .local-grid,
  .pilot-section {
    display: block;
  }
  .section-intro h2,
  .section-heading h2,
  .pilot-section h2,
  .local-section h2 {
    font-size: 43px;
    margin-top: 20px;
  }
  .section-intro > p:last-child {
    font-size: 14px;
    margin-top: 20px;
    max-width: 440px;
  }
  .principles {
    margin-top: 36px;
  }
  .principles article {
    padding-block: 24px;
    gap: 20px;
  }
  .principles p {
    font-size: 13px;
    max-width: none;
  }
  .principles h3 {
    font-size: 25px;
  }
  .local-section {
    padding-block: 56px;
  }
  .local-grid > div + div {
    margin-top: 34px;
  }
  .local-section .large-copy {
    font-size: 25px;
  }
  .local-section .large-copy + p {
    font-size: 13px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    max-width: 420px;
    font-size: 13px;
    margin-top: 23px;
  }
  .suite-map {
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
  }
  .suite-map article {
    padding: 25px 18px 27px 0;
  }
  .suite-map article + article {
    padding-left: 20px;
  }
  .suite-map article:nth-child(3) {
    border-left: 0;
    padding-left: 18px;
    border-top: 1px solid var(--rule);
  }
  .suite-map article:nth-child(4) {
    border-top: 1px solid var(--rule);
  }
  .suite-map h3 {
    font-size: 25px;
  }
  .suite-map h3 em {
    font-size: 20px;
  }
  .suite-map p {
    font-size: 12px;
  }
  .suite-map .suite-symbol,
  .suite-map .load-mark {
    margin-bottom: 23px;
  }
  .shared-thread {
    font-size: 8px;
    gap: 6px;
  }
  .shared-thread > span:last-child {
    flex-basis: 100%;
    margin-left: 0;
  }
  .pilot-section > div > p:not(.eyebrow) {
    max-width: 440px;
  }
  .pilot-list {
    margin-top: 42px;
  }
  .pilot-list span {
    font-size: 24px;
  }
  .pilot-list p {
    font-size: 13px;
  }
  .site-footer {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 25px;
  }
  .site-footer p {
    font-size: 9px;
  }
  .site-footer > a:last-child {
    margin-left: 0;
    flex-basis: 100%;
    font-size: 10px;
  }
  .sidebar {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 21px 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 21px 12px;
  }
  .sidebar .brand {
    font-size: 28px;
  }
  .sidebar .load-mark {
    width: 24px;
    height: 24px;
  }
  .sidebar .load-mark:before {
    top: 9px;
    left: -8px;
    width: 36px;
  }
  .workspace-label {
    margin-top: 0;
    justify-self: end;
  }
  .workspace-avatar {
    width: 27px;
    height: 29px;
    font-size: 17px;
  }
  .sidebar nav {
    grid-column: 1/-1;
    display: flex;
    margin: 0 -5px;
    gap: 14px;
  }
  .sidebar nav a {
    border-left: 0;
    border-bottom: 2px solid transparent;
    padding: 9px 7px;
    margin: 0;
    gap: 7px;
    font-size: 11px;
  }
  .sidebar nav .current {
    border-bottom-color: var(--green);
    background: transparent;
  }
  .sidebar nav a span {
    font-size: 14px;
  }
  .sidebar-suite,
  .sidebar-bottom {
    display: none;
  }
  .dashboard-shell {
    margin-left: 0;
  }
  .dashboard-topbar {
    height: 40px;
    padding-inline: 20px;
    font-size: 8px;
  }
  .dashboard-topbar > a {
    font-size: 9px;
  }
  .breadcrumb-separator {
    margin-inline: 6px;
  }
  .synthetic-banner {
    padding: 12px 20px;
    gap: 7px;
  }
  .synthetic-banner p {
    font-size: 9px;
    line-height: 1.6;
  }
  .dashboard-main {
    padding: 29px 20px 0;
  }
  .dashboard-heading h1 {
    font-size: 35px;
  }
  .dashboard-heading p:not(.eyebrow) {
    font-size: 11px;
    max-width: 340px;
    line-height: 1.7;
    margin-top: 12px;
  }
  .dashboard-heading .eyebrow {
    font-size: 7px;
    margin-bottom: 11px;
  }
  .filter-bar {
    margin-top: 25px;
    display: block;
    padding-block: 15px;
  }
  .filters {
    gap: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .filters label {
    font-size: 9px;
  }
  .filters select {
    max-width: none;
    width: 100%;
    font-size: 10px;
    min-height: 41px;
    padding-left: 9px;
    padding-right: 26px;
  }
  .filter-context {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 11px;
    font-size: 9px;
  }
  .filter-context .text-button {
    padding: 4px 0;
  }
  .basis-row {
    align-items: flex-start;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 17px;
  }
  .basis-switch legend {
    font-size: 9px;
    margin-right: 11px;
  }
  .basis-switch button {
    min-height: 36px;
    padding: 7px 14px;
    font-size: 10px;
  }
  .help-button {
    font-size: 9px;
    margin-top: -7px;
  }
  .basis-description {
    margin-top: 8px;
    font-size: 10px;
    min-height: 0;
    line-height: 1.75;
  }
  .metrics {
    margin-top: 23px;
  }
  .metric {
    padding: 17px 14px;
  }
  .metric h2 {
    font-size: 10px;
  }
  .metric-value {
    font-size: clamp(27px, 8.5vw, 37px);
    margin-top: 6px;
  }
  .metric-value.unavailable {
    font-size: 24px;
    padding-block: 9px;
  }
  .metric p {
    font-size: 11px;
    margin-top: 5px;
    line-height: 1.75;
  }
  .coverage-strip {
    padding: 12px;
    gap: 8px;
  }
  .coverage-strip p {
    font-size: 10px;
  }
  .coverage-strip .text-button {
    margin-left: 24px;
    font-size: 9px;
    padding-top: 1px;
  }
  .overview-grid {
    margin-top: 29px;
    gap: 25px;
    padding-bottom: 23px;
  }
  .panel-heading h2,
  .outcomes-panel h2 {
    font-size: 26px;
  }
  .panel-heading .unit-label {
    font-size: 7px;
    max-width: 90px;
  }
  .cost-bars {
    margin-top: 21px;
  }
  .cost-bar-row {
    grid-template-columns: 76px 1fr 63px;
    font-size: 10px;
    gap: 10px;
    margin-top: 17px;
  }
  .cost-bar-row .bar-name {
    font-size: 11px;
    min-height: 32px;
  }
  .cost-bar-row .bar-track {
    height: 11px;
  }
  .cost-bar-row .bar-amount {
    font-size: 10px;
  }
  .composition-footer {
    font-size: 10px;
    margin-top: 19px;
  }
  .composition-panel .fine-print {
    font-size: 9px;
  }
  .outcomes-panel {
    display: block;
    padding-top: 24px;
  }
  .outcomes-panel > p:not(.eyebrow) {
    font-size: 12px;
    margin-top: 14px;
  }
  .outcome-segments {
    margin-top: 19px;
  }
  .outcome-legend {
    font-size: 11px;
    gap: 9px;
    margin-top: 15px;
  }
  .outcome-legend dd {
    font-size: 11px;
  }
  .outcomes-panel > p.fine-print {
    font-size: 9px;
    margin-top: 17px;
  }
  .projects-section {
    padding-top: 28px;
  }
  .projects-section .unit-label {
    max-width: none;
    font-size: 8px;
  }
  .table-scroll {
    margin-right: -20px;
    padding-right: 20px;
  }
  table {
    min-width: 485px;
  }
  th,
  td {
    padding: 14px 12px;
  }
  .project-chip {
    width: 26px;
  }
  .project-name {
    gap: 9px;
  }
  .project-detail-button {
    font-size: 12px;
  }
  .project-name small {
    font-size: 9px;
  }
  .projects-section > .fine-print {
    font-size: 9px;
  }
  .refinement-section {
    margin: 32px 0 27px;
    padding: 23px 20px;
    gap: 23px;
  }
  .refinement-copy h2 {
    font-size: 32px;
    line-height: 1.13;
  }
  .refinement-copy > p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 15px;
  }
  .refinement-copy .sample-stamp {
    font-size: 8px;
    white-space: normal;
    margin-top: 19px;
  }
  .experiment-preview {
    padding-top: 22px;
  }
  .experiment-preview h3 {
    font-size: 26px;
  }
  .experiment-preview > p {
    font-size: 10px;
  }
  .experiment-measures {
    font-size: 11px;
    gap: 31px;
    margin-top: 20px;
  }
  .experiment-meta {
    font-size: 8px;
  }
  .experiment-preview .button {
    min-height: 44px;
    font-size: 11px;
  }
  .dashboard-footer {
    font-size: 8px;
    padding-block: 20px;
    gap: 7px;
  }
  dialog {
    padding: 19px 20px 25px;
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
  }
  .dialog-top {
    margin-bottom: 21px;
  }
  .dialog-top .sample-stamp {
    font-size: 8px;
  }
  .icon-button {
    width: 40px;
    height: 40px;
  }
  dialog h2 {
    font-size: 32px;
    margin: 11px 0 15px;
  }
  dialog h3 {
    font-size: 23px;
  }
  dialog .dialog-lead {
    font-size: 13px;
  }
  .detail-metrics {
    gap: 12px;
    padding: 17px 0;
  }
  .detail-metrics strong {
    font-size: 24px;
  }
  .detail-metrics .unavailable {
    font-size: 18px;
  }
  .detail-metrics span {
    font-size: 8px;
  }
  .basis-explainer article {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 20px 0;
  }
  .basis-explainer h3 {
    font-size: 22px;
  }
  .basis-explainer p {
    font-size: 12px;
  }
  .receipt-list li {
    gap: 12px;
  }
  .receipt-code {
    min-width: 67px;
    font-size: 7px;
  }
  .receipt-list h4 {
    font-size: 11px;
  }
  .receipt-list p {
    font-size: 9px;
  }
  .experiment-body dl {
    grid-template-columns: 100px 1fr;
    gap: 14px;
    font-size: 11px;
  }
  .experiment-controls button {
    min-height: 40px;
  }
  .detail-actions .button {
    width: 100%;
    min-height: 44px;
  }
}

@media (max-width: 360px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .site-header .brand {
    font-size: 26px;
  }
  .site-header .nav-cta {
    font-size: 9px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .preview-ledger small {
    display: block;
    margin: 3px 0 0;
  }
  .instrument-foot {
    align-items: flex-start;
    flex-direction: column;
  }
  .instrument-period {
    font-size: 7px;
  }
  .dashboard-main {
    padding-inline: 16px;
  }
  .dashboard-heading h1 {
    font-size: 31px;
  }
  .metric-value {
    font-size: 28px;
  }
  .metric-value.unavailable {
    font-size: 22px;
  }
  .basis-switch button {
    padding-inline: 11px;
  }
  .table-scroll {
    margin-right: -16px;
    padding-right: 16px;
  }
  .suite-map h3 {
    font-size: 23px;
  }
  .suite-map h3 em {
    font-size: 18px;
  }
}

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