:root {
  color: #102238;
  background: #f7f6f1;
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --paper: #f7f6f1;
  --paper-bright: #fffefa;
  --paper-deep: #efeee8;
  --navy: #102238;
  --navy-deep: #071b2d;
  --ink: #13263c;
  --muted: #536273;
  --line: #cfd4d2;
  --line-strong: #9ca9ad;
  --teal: #087f89;
  --teal-dark: #05616a;
  --teal-soft: #dceff0;
  --oxblood: #9a3928;
  --oxblood-soft: #f2e4df;
  --amber: #9a651b;
  --amber-soft: #f4ead8;
  --max-width: 1360px;
  --text-width: 720px;
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--teal-dark);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2 {
  color: var(--navy-deep);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.1vw, 5.55rem);
  line-height: 0.99;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.2vw, 3.65rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 1.06rem;
  line-height: 1.25;
  letter-spacing: -0.012em;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 50;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy-deep);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.status-strip {
  color: #e8f1f2;
  background: var(--navy-deep);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.status-strip__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 7px 0 6px;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 246, 241, 0.97);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(100% - 40px, var(--max-width));
  min-height: 84px;
  margin: 0 auto;
}

.brand {
  flex: none;
  color: var(--navy-deep);
  font-size: 1.55rem;
  font-weight: 750;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.brand:hover {
  color: var(--navy-deep);
}

.product-label {
  flex: none;
  padding-left: 24px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  margin-left: auto;
}

.site-nav a {
  padding: 10px 13px;
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--teal);
}

.site-nav .nav-cta {
  margin-left: 8px;
  padding: 11px 16px;
  border: 1px solid var(--navy);
}

.site-nav .nav-cta:hover {
  color: #fff;
  background: var(--navy);
}

.mobile-nav {
  display: none;
  margin-left: auto;
}

.mobile-nav summary {
  padding: 9px 12px;
  border: 1px solid var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav nav {
  position: absolute;
  top: 100%;
  right: 20px;
  left: 20px;
  display: grid;
  padding: 12px;
  border: 1px solid var(--line-strong);
  background: var(--paper-bright);
  box-shadow: 0 18px 40px rgba(7, 27, 45, 0.13);
}

.mobile-nav nav a {
  padding: 11px 8px;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
  text-decoration: none;
}

.mobile-nav nav a:last-child {
  border-bottom: 0;
}

.home-hero {
  border-bottom: 1px solid var(--line);
  background: var(--paper-bright);
}

.home-hero__inner {
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(620px, 1.22fr);
  gap: clamp(44px, 5vw, 82px);
  align-items: center;
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: clamp(64px, 7vw, 104px) 0;
}

.home-hero__copy h1 {
  max-width: 700px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__lead,
.page-intro p {
  max-width: var(--text-width);
  color: #35475b;
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.62;
}

.hero__lead {
  margin-bottom: 28px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 19px;
  border: 1px solid var(--navy);
  color: #fff;
  background: var(--navy);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.button:hover {
  color: #fff;
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}

.button--light,
.button--outline {
  color: var(--navy);
  background: transparent;
}

.button--light:hover,
.button--outline:hover {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.boundary-note {
  max-width: 620px;
  margin: 27px 0 0;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.boundary-note strong {
  color: var(--navy);
}

.record {
  border: 1px solid var(--line-strong);
  background: #fbfbf8;
  box-shadow: 0 20px 48px rgba(7, 27, 45, 0.07);
}

.record__top,
.record__meta,
.record__coverage,
.record__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 19px;
  border-bottom: 1px solid var(--line);
}

.record__top strong {
  color: var(--teal-dark);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.record__top span,
.record__footer {
  color: var(--muted);
  font-size: 0.75rem;
}

.record__meta {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 1fr;
  padding: 0;
}

.record__meta div {
  min-height: 75px;
  padding: 15px 18px;
  border-right: 1px solid var(--line);
}

.record__meta div:last-child {
  border-right: 0;
}

.record__meta span,
.record__coverage span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.7rem;
}

.record__meta strong {
  display: block;
  color: var(--navy);
  font-size: 0.84rem;
  line-height: 1.35;
}

.record__coverage {
  justify-content: flex-start;
  gap: 0;
  overflow: hidden;
}

.record__coverage div {
  flex: 1;
  min-width: 84px;
  padding: 0 12px;
  border-right: 1px solid var(--line);
}

.record__coverage div:first-child {
  padding-left: 0;
}

.record__coverage div:last-child {
  border-right: 0;
}

.record__coverage strong {
  color: var(--teal-dark);
  font-size: 0.76rem;
}

.record-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.record-table th,
.record-table td {
  padding: 14px 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.record-table th {
  color: var(--muted);
  background: var(--paper-deep);
  font-size: 0.63rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.record-table td:first-child {
  width: 31%;
  color: var(--navy);
  font-weight: 750;
}

.record-table small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
}

.confidence-label strong,
.confidence-label small {
  display: block;
}

.confidence-label strong {
  color: var(--navy);
  font-size: 0.72rem;
  line-height: 1.25;
}

.confidence-label small {
  max-width: 112px;
}

.priority {
  font-weight: 750;
}

.priority--high {
  color: var(--oxblood);
}

.priority--medium {
  color: var(--amber);
}

.status-text {
  color: var(--teal-dark);
  font-weight: 750;
}

.record__footer {
  border-bottom: 0;
}

.record__footer strong {
  color: var(--navy);
}

.record__footer span:last-child {
  color: var(--teal-dark);
  font-weight: 750;
}

.evidence-band {
  color: #e8eef1;
  border-bottom: 1px solid #405365;
  background: var(--navy-deep);
}

.evidence-band__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(42px, 6vw, 88px);
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 88px) 0;
}

.evidence-band h2 {
  max-width: 610px;
  color: #fff;
}

.evidence-band .eyebrow {
  color: #72c5ca;
}

.evidence-band__copy > p:not(.eyebrow) {
  max-width: 630px;
  color: #becbd3;
}

.evidence-band__copy .evidence-note {
  color: #93a6b4;
  font-size: 0.78rem;
}

.evidence-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #405365;
  border-bottom: 1px solid #405365;
}

.evidence-stats article {
  min-height: 188px;
  padding: 27px 23px;
  border-right: 1px solid #405365;
}

.evidence-stats article:last-child {
  border-right: 0;
}

.evidence-stats strong,
.evidence-stats span {
  display: block;
}

.evidence-stats strong {
  margin-bottom: 22px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.4vw, 2.55rem);
  line-height: 1.02;
}

.evidence-stats span {
  color: #becbd3;
  font-size: 0.82rem;
}

.evidence-band__footer {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 2px;
}

.evidence-band__footer p {
  max-width: 860px;
  margin: 0;
  color: #93a6b4;
  font-size: 0.76rem;
}

.evidence-band__footer a:not(.button) {
  color: #d8f0f1;
}

.evidence-band__footer .button--light {
  flex: none;
  color: #fff;
  border-color: #c8d5dc;
}

.evidence-band__footer .button--light:hover {
  border-color: #fff;
  background: #fff;
  color: var(--navy-deep);
}

.section {
  border-bottom: 1px solid var(--line);
}

.section__inner {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 108px) 0;
}

.section--surface {
  background: var(--paper-deep);
}

.section--dark {
  color: #e8eef1;
  background: var(--navy-deep);
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section--dark .eyebrow {
  color: #72c5ca;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(42px, 6vw, 94px);
  align-items: end;
  margin-bottom: 44px;
}

.section-heading p {
  max-width: var(--text-width);
  color: var(--muted);
  font-size: 1.02rem;
}

.section--dark .section-heading p {
  color: #becbd3;
}

.section-heading h2 {
  max-width: 760px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper-bright);
}

.card--plain {
  background: transparent;
}

.card__label,
.status {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.status {
  padding: 5px 8px;
  background: var(--teal-soft);
}

.status--planned {
  color: #6d5225;
  background: var(--amber-soft);
}

.section--dark .card {
  border-color: #405365;
  background: #0d263b;
}

.section--dark .card p {
  color: #becbd3;
}

.section--dark .card__label {
  color: #72c5ca;
}

.method-chain {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.method-step {
  min-height: 190px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.method-step:last-child {
  border-right: 0;
}

.method-step__number {
  display: block;
  margin-bottom: 34px;
  color: var(--teal-dark);
  font-family: var(--display);
  font-size: 1.4rem;
}

.method-step p {
  color: var(--muted);
  font-size: 0.82rem;
}

.page-intro {
  border-bottom: 1px solid var(--line);
  background: var(--paper-bright);
}

.page-intro__inner {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: clamp(62px, 7vw, 100px) 0;
}

.page-intro h1 {
  max-width: 920px;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
}

.steps {
  counter-reset: step;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step {
  counter-increment: step;
  position: relative;
  padding-left: 82px;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 24px;
  left: 25px;
  color: var(--teal-dark);
  font-family: var(--display);
  font-size: 1.4rem;
}

.list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.list li {
  margin: 8px 0;
  padding-left: 5px;
}

.notice {
  padding: 19px 22px;
  border-left: 4px solid var(--teal);
  background: var(--teal-soft);
}

.notice strong {
  display: block;
  margin-bottom: 4px;
}

.finding {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.finding:last-child {
  border-bottom: 1px solid var(--line);
}

.finding__status {
  color: var(--oxblood);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finding p {
  color: var(--muted);
}

.finding small {
  color: var(--teal-dark);
}

.scheme-register {
  border-top: 1px solid var(--line-strong);
}

.scheme-row {
  display: grid;
  grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.25fr) 170px;
  gap: 34px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}

.scheme-row h2 {
  margin-bottom: 7px;
  font-family: inherit;
  font-size: 1.28rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.scheme-row p,
.scheme-row li {
  color: var(--muted);
  font-size: 0.9rem;
}

.scheme-row__meta {
  color: var(--muted);
  font-size: 0.75rem;
}

.scheme-row__meta strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.governance-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper-bright);
}

.governance-table th,
.governance-table td {
  padding: 18px 20px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.governance-table th {
  width: 27%;
  color: var(--navy);
  font-size: 0.82rem;
}

.governance-table td {
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: center;
  padding: clamp(32px, 5vw, 62px);
  border: 1px solid var(--line-strong);
  background: var(--paper-bright);
}

.brief-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(560px, 1fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 24px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line-strong);
  background: var(--paper-bright);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 750;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 11px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.field input:focus,
.field select:focus,
.checkbox-field input:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

.field-help {
  color: var(--muted);
  font-size: 0.76rem;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--ink);
  font-size: 0.86rem;
  cursor: pointer;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal-dark);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cf-turnstile {
  min-height: 65px;
}

.lead-form .button {
  justify-self: start;
}

.result-panel .button-row {
  margin-top: 28px;
}

.contact-panel--dark {
  border-color: #405365;
  background: #0d263b;
}

.contact-panel--dark h2 {
  color: #fff;
}

.contact-panel--dark p {
  color: #becbd3;
}

.contact-email {
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.5vw, 2.2rem);
}

.email-draft-meta {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  margin: 22px 0 16px;
  border-top: 1px solid var(--line);
}

.email-draft-meta dt,
.email-draft-meta dd {
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.email-draft-meta dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.email-draft-meta dd {
  overflow-wrap: anywhere;
  color: var(--navy);
  font-weight: 650;
}

.email-draft {
  margin: 0;
  padding: 20px;
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper-deep);
  font: inherit;
  white-space: pre-wrap;
}

.email-actions {
  display: grid;
  gap: 10px;
}

.email-actions .button {
  width: 100%;
}

.faq {
  border-top: 1px solid var(--line-strong);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  padding: 22px 4px;
  color: var(--navy);
  font-weight: 750;
  cursor: pointer;
}

.faq details p {
  max-width: 850px;
  padding: 0 4px 24px;
  color: var(--muted);
}

.site-footer {
  color: #becbd3;
  background: var(--navy-deep);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 60px;
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 44px 0;
}

.site-footer strong {
  color: #fff;
}

.site-footer p {
  max-width: 760px;
  margin: 9px 0 0;
  font-size: 0.8rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.8rem;
}

.footer-nav a:hover {
  color: #fff;
}

.small-muted {
  color: var(--muted);
  font-size: 0.82rem;
}

.space-top-16 {
  margin-top: 16px;
}

.space-top-24 {
  margin-top: 24px;
}

@media (max-width: 1120px) {
  .product-label {
    display: none;
  }

  .home-hero__inner {
    grid-template-columns: minmax(330px, 0.82fr) minmax(500px, 1.18fr);
    gap: 34px;
  }

  .record-table th:nth-child(3),
  .record-table td:nth-child(3) {
    display: none;
  }

  .method-chain {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .method-step:nth-child(3) {
    border-right: 0;
  }

  .method-step:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
  }

  .evidence-band__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .evidence-band__footer {
    grid-column: auto;
  }

  .home-hero__copy h1 {
    max-width: 800px;
  }

  .section-heading,
  .contact-panel,
  .brief-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .grid,
  .grid--two {
    grid-template-columns: 1fr;
  }

  .scheme-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .status-strip__inner {
    justify-content: center;
    width: min(100% - 28px, var(--max-width));
    text-align: center;
  }

  .status-strip__inner span:last-child {
    display: none;
  }

  .site-header__inner {
    width: min(100% - 28px, var(--max-width));
    min-height: 68px;
  }

  .brand {
    font-size: 1.3rem;
  }

  .home-hero__inner,
  .evidence-band__inner,
  .section__inner,
  .page-intro__inner,
  .site-footer__inner {
    width: min(100% - 28px, var(--max-width));
  }

  .home-hero__inner {
    padding: 50px 0 58px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
    line-height: 1.01;
  }

  h2 {
    font-size: 2.25rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .evidence-stats {
    grid-template-columns: 1fr;
  }

  .evidence-stats article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #405365;
  }

  .evidence-stats article:last-child {
    border-bottom: 0;
  }

  .evidence-band__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--wide {
    grid-column: auto;
  }

  .lead-form .button {
    justify-self: stretch;
  }

  .record__top,
  .record__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .record__meta {
    grid-template-columns: 1fr;
  }

  .record__meta div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .record__meta div:last-child {
    border-bottom: 0;
  }

  .record__coverage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 0;
  }

  .record__coverage div {
    padding: 0 12px 0 0;
    border-right: 0;
  }

  .record-table,
  .record-table tbody,
  .record-table tr,
  .record-table td {
    display: block;
    width: 100%;
  }

  .record-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .record-table tr {
    padding: 15px 17px;
    border-bottom: 1px solid var(--line);
  }

  .record-table td,
  .record-table td:first-child {
    padding: 3px 0;
    border: 0;
  }

  .record-table td::before {
    display: inline;
    margin-right: 7px;
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .record-table td:nth-child(2)::before {
    content: "Priority";
  }

  .record-table td:nth-child(3) {
    display: none;
  }

  .record-table td:nth-child(4)::before {
    content: "Evidence";
  }

  .record-table td:nth-child(5)::before {
    content: "Status";
  }

  .method-chain {
    grid-template-columns: 1fr;
  }

  .method-step,
  .method-step:nth-child(3) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-step:last-child {
    border-bottom: 0;
  }

  .method-step__number {
    margin-bottom: 16px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .finding {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .governance-table,
  .governance-table tbody,
  .governance-table tr,
  .governance-table th,
  .governance-table td {
    display: block;
    width: 100%;
  }

  .governance-table th {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .governance-table td {
    padding-top: 4px;
  }

  .card,
  .contact-panel {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
