:root {
  --ink: #20221f;
  --muted: #686c65;
  --faint: #70746d;
  --paper: #f6f6f2;
  --surface: #ffffff;
  --line: #dbddd7;
  --line-dark: #c8cbc4;
  --green: #183d31;
  --green-2: #225b47;
  --green-soft: #e5eee9;
  --orange: #a95818;
  --orange-soft: #f7e9db;
  --red: #a33b32;
  --red-soft: #f6e5e3;
  --shadow-border: 0 0 0 1px rgba(20, 24, 20, 0.07), 0 1px 2px rgba(20, 24, 20, 0.05), 0 3px 8px rgba(20, 24, 20, 0.04);
  color-scheme: light;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", sans-serif;
  font-synthesis: none;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background: var(--paper);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

body,
button,
input,
select,
textarea {
  font-family: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font-size: 16px;
}

button,
select {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.65;
}

:focus-visible {
  outline: 3px solid rgba(34, 91, 71, 0.3);
  outline-offset: 2px;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  text-wrap: balance;
}

p,
li,
dd {
  text-wrap: pretty;
}

.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;
}

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

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition-property: background-color, color, box-shadow, scale;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.button:active {
  scale: 0.96;
}

.button--primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 1px 2px rgba(10, 30, 23, 0.22);
}

.button--primary:hover {
  background: var(--green-2);
}

.button--light {
  background: #fff;
  color: var(--green);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.button--light:hover {
  background: #f4f4ef;
}

.button--secondary {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-border);
}

.button--secondary:hover {
  background: #f8f8f5;
  box-shadow: 0 0 0 1px rgba(20, 24, 20, 0.12), 0 2px 6px rgba(20, 24, 20, 0.07);
}

.button--small {
  min-height: 40px;
  padding: 8px 13px;
  font-size: 14px;
}

.button--wide {
  width: 100%;
}

.icon-button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
  line-height: 1.35;
  transition-property: border-color, box-shadow;
  transition-duration: 140ms;
  transition-timing-function: ease-out;
}

input,
select {
  min-height: 46px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 3px rgba(34, 91, 71, 0.13);
  outline: 0;
}

input::placeholder,
textarea::placeholder {
  color: #93978f;
}

.optional {
  color: var(--faint);
  font-weight: 500;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 21px;
  font-weight: 800;
  text-decoration: none;
}

.wordmark-mark {
  width: 26px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 6px;
  position: relative;
  flex: 0 0 auto;
}

.wordmark-mark::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 7px;
  left: 6px;
  top: 6px;
  border-left: 3px solid #4ca078;
  border-bottom: 3px solid #4ca078;
  rotate: -45deg;
}

.wordmark-mark--large {
  width: 34px;
  height: 34px;
}

.site-header {
  width: min(100% - 40px, 1360px);
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  position: relative;
  z-index: 10;
}

.site-header--hero {
  color: #fff;
}

.public-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 650;
}

.public-nav > a:not(.button) {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.88;
  transition-property: opacity;
  transition-duration: 150ms;
}

.public-nav > a:not(.button):hover {
  opacity: 1;
}

.site-header--hero .public-nav .button {
  background: #fff;
  color: var(--green);
}

.mobile-menu-button {
  display: none;
}

.hero {
  min-height: 720px;
  max-height: 800px;
  position: relative;
  isolation: isolate;
  background-image: url("/assets/quoteproof-hero.webp");
  background-size: cover;
  background-position: center center;
  color: #fff;
  overflow: hidden;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(12, 20, 16, 0.59);
  z-index: -1;
}

.hero-content {
  width: min(100% - 40px, 1360px);
  margin: 0 auto;
  padding-top: 132px;
  padding-bottom: 80px;
  max-width: 1360px;
}

.hero-brand {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 26px;
}

.hero h1 {
  max-width: 750px;
  margin-bottom: 24px;
  font-size: 68px;
  font-weight: 750;
  line-height: 1.01;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  font-size: 21px;
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.text-link {
  font-weight: 700;
}

.text-link--light {
  color: #fff;
}

.hero-trust {
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.upload-band {
  width: min(100% - 40px, 1360px);
  margin: 0 auto;
  padding: 76px 0 88px;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(600px, 1.28fr);
  gap: 88px;
  align-items: start;
}

.upload-intro {
  position: sticky;
  top: 30px;
  padding-top: 8px;
}

.upload-intro h2,
.section-heading h2,
.source-band h2,
.price-band h2,
.faq-band h2,
.guides-band h2 {
  margin-bottom: 14px;
  font-size: 40px;
}

.upload-intro p,
.section-heading p {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
}

.quote-form {
  position: relative;
  border-radius: 8px;
  background: #fff;
  padding: 26px;
  box-shadow: var(--shadow-border);
  display: grid;
  gap: 22px;
}

.file-drop {
  min-height: 172px;
  border: 1px dashed #9ca39b;
  border-radius: 4px;
  background: #fafaf7;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  cursor: pointer;
  transition-property: background-color, border-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.file-drop:hover {
  background: #f4f7f4;
  border-color: var(--green-2);
}

.file-drop-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  color: var(--green-2);
}

.file-drop strong {
  font-size: 17px;
}

.file-drop > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.file-drop .file-name {
  margin-top: 7px;
  color: var(--green);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.paste-option {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.paste-option summary {
  min-height: 40px;
  display: flex;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
  list-style-position: inside;
}

.paste-option[open] summary {
  margin-bottom: 14px;
}

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

.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.consent-row input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.form-privacy {
  margin: -3px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.proof-band,
.guides-band,
.faq-band {
  padding: 92px max(20px, calc((100% - 1360px) / 2));
}

.proof-band {
  background: #eeefea;
}

.section-heading {
  margin-bottom: 48px;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(520px, 1.08fr) minmax(360px, 0.92fr);
  gap: 76px;
  align-items: center;
}

.sample-sheet {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 0 0 1px rgba(20, 24, 20, 0.08), 0 2px 6px rgba(20, 24, 20, 0.06);
  rotate: -0.7deg;
}

.sample-sheet-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.sample-sheet-head span {
  font-weight: 700;
}

.sample-sheet-head strong {
  font-size: 26px;
  font-variant-numeric: tabular-nums;
}

.risk-label {
  display: inline-block;
  margin: 18px 0;
  font-size: 13px;
  font-weight: 800;
}

.risk-label--low {
  color: var(--green-2);
}

.risk-label--moderate {
  color: var(--orange);
}

.risk-label--high {
  color: var(--red);
}

.sample-sheet h3 {
  margin-bottom: 20px;
  font-size: 25px;
}

.sample-findings {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  counter-reset: sample;
}

.sample-findings li {
  counter-increment: sample;
  padding: 16px 0 16px 42px;
  border-top: 1px solid var(--line);
  position: relative;
}

.sample-findings li::before {
  content: counter(sample);
  position: absolute;
  left: 0;
  top: 17px;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}

.sample-findings strong,
.sample-findings span {
  display: block;
}

.sample-findings span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.sample-sheet > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 800;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-top: 1px solid var(--line-dark);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.process-list > li > span {
  width: 36px;
  height: 36px;
  border: 1px solid #aeb3ab;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.process-list h3 {
  margin-bottom: 7px;
  font-size: 20px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.source-band {
  min-height: 470px;
  background: var(--green);
  color: #fff;
  padding: 90px max(20px, calc((100% - 1360px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
  gap: 100px;
  align-items: center;
}

.source-band > div > p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.source-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #fff;
  font-weight: 750;
}

.source-band blockquote {
  margin: 0;
  padding-left: 30px;
  border-left: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 30px;
  line-height: 1.28;
  text-wrap: balance;
}

.price-band {
  padding: 82px max(20px, calc((100% - 1360px) / 2));
  display: grid;
  grid-template-columns: 1.1fr 160px 1.1fr auto;
  gap: 38px;
  align-items: center;
  background: #fff;
}

.price-band > div:first-child p {
  margin: 0;
  color: var(--muted);
}

.price-line {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.price-line strong,
.price-line span {
  display: block;
}

.price-line strong {
  font-size: 44px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.price-line span {
  color: var(--muted);
  font-size: 13px;
}

.price-band ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  color: var(--muted);
  font-size: 14px;
}

.price-band li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.price-band li .icon {
  width: 15px;
  height: 15px;
  color: var(--green-2);
}

.guides-band {
  background: #eeefea;
}

.guide-links {
  border-top: 1px solid var(--line-dark);
}

.guide-links a {
  min-height: 76px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 21px;
  font-weight: 720;
  text-decoration: none;
  transition-property: color, padding-left;
  transition-duration: 150ms;
}

.guide-links a:hover {
  color: var(--green-2);
  padding-left: 8px;
}

.faq-band {
  background: #fff;
}

.faq-list {
  max-width: 920px;
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  min-height: 70px;
  padding: 20px 40px 20px 0;
  position: relative;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 720;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 19px;
  font-size: 26px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

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

.site-footer {
  padding: 54px max(20px, calc((100% - 1360px) / 2)) 30px;
  background: #202522;
  color: rgba(255, 255, 255, 0.78);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px 60px;
}

.wordmark--footer {
  color: #fff;
}

.footer-main p {
  margin: 8px 0 0;
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}

.site-footer nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.flash {
  max-width: 1180px;
  margin: 18px auto;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.flash--success {
  background: var(--green-soft);
  color: var(--green);
}

.flash--error {
  background: var(--red-soft);
  color: var(--red);
}

.flash--info {
  background: var(--orange-soft);
  color: #774010;
}

.analysis-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(18, 25, 21, 0.82);
}

.analysis-status {
  width: min(100%, 420px);
  padding: 32px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.analysis-status strong {
  display: block;
  margin: 18px 0 8px;
  font-size: 22px;
}

.analysis-status p {
  margin: 0;
  color: var(--muted);
}

.analysis-spinner {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  border: 3px solid #dce4df;
  border-top-color: var(--green-2);
  border-radius: 50%;
  animation: spin 850ms linear infinite;
}

@keyframes spin {
  to { rotate: 360deg; }
}

/* Reports */
.report-shell {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
  padding: 34px 0 80px;
}

.sample-notice,
.basic-notice {
  margin-bottom: 22px;
  padding: 12px 14px;
  border: 1px solid #d6c39d;
  border-radius: 6px;
  background: #fff8e8;
  color: #65471a;
  font-size: 14px;
}

.basic-notice {
  border-color: #a9c4b6;
  background: var(--green-soft);
  color: var(--green);
}

.report-toolbar {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
}

.report-toolbar > div {
  display: flex;
  gap: 9px;
}

.report-header {
  padding: 38px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-border);
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 42px;
  align-items: center;
}

.report-title {
  min-width: 0;
}

.report-title h1 {
  margin-bottom: 8px;
  font-size: 46px;
  overflow-wrap: anywhere;
}

.report-title > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  overflow-wrap: anywhere;
}

.report-meta {
  margin-bottom: 18px;
  color: var(--faint);
  font-size: 13px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.score-block {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.score-block > strong {
  display: block;
  margin-bottom: 2px;
  font-size: 44px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.score-block > strong span {
  color: var(--faint);
  font-size: 18px;
  font-weight: 600;
}

.score-block .risk-label {
  margin: 8px 0 12px;
}

.score-block progress {
  width: 100%;
  height: 7px;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  appearance: none;
}

.score-block progress::-webkit-progress-bar {
  background: #e5e7e1;
}

.score-block progress::-webkit-progress-value {
  background: var(--green-2);
}

.score-block progress::-moz-progress-bar {
  background: var(--green-2);
}

.score-block > span {
  display: block;
  margin-top: 7px;
  color: var(--faint);
  font-size: 11px;
}

.report-summary {
  padding: 44px 38px;
  border-bottom: 1px solid var(--line);
}

.report-summary > h2,
.findings-section h2,
.report-list-section h2,
.contractor-note h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.report-summary > p {
  max-width: 920px;
  color: #4f534d;
  font-size: 18px;
}

.document-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 14px;
  background: var(--line);
  border: 1px solid var(--line);
}

.document-facts > div {
  min-width: 0;
  padding: 18px;
  background: #fff;
}

.document-facts dt {
  margin-bottom: 6px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 750;
}

.document-facts dd {
  margin: 0;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.confidence-note {
  margin-bottom: 0;
  color: var(--faint) !important;
  font-size: 12px !important;
}

.report-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 54px;
  padding: 48px 38px 0;
}

.section-heading--report {
  margin-bottom: 24px;
}

.section-heading--report p {
  margin-bottom: 0;
  font-size: 15px;
}

.finding-list {
  display: grid;
  gap: 14px;
}

.finding {
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-border);
  position: relative;
}

.finding::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 8px 0 0 8px;
  background: var(--line-dark);
}

.finding--high::before {
  background: var(--red);
}

.finding--medium::before {
  background: var(--orange);
}

.finding--low::before,
.finding--good::before {
  background: var(--green-2);
}

.finding-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 750;
}

.finding--high .finding-label strong {
  color: var(--red);
}

.finding--medium .finding-label strong {
  color: var(--orange);
}

.finding--low .finding-label strong,
.finding--good .finding-label strong {
  color: var(--green-2);
}

.finding h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.finding > p {
  margin-bottom: 17px;
  color: var(--muted);
}

.ask-line {
  padding: 13px 14px;
  border-radius: 6px;
  background: #f2f3ef;
  font-size: 14px;
}

.ask-line span {
  color: var(--green);
  font-weight: 800;
}

.report-list-section,
.contractor-note {
  margin-top: 48px;
}

.check-list,
.question-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.check-list li,
.question-list li {
  min-height: 54px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 11px;
}

.check-list li .icon {
  color: var(--green-2);
}

.check-list--missing li::before {
  content: "—";
  color: var(--orange);
  font-weight: 800;
}

.question-list {
  counter-reset: question;
}

.question-list li {
  counter-increment: question;
  display: grid;
  grid-template-columns: 34px 1fr;
}

.question-list li::before {
  content: counter(question);
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.contractor-note {
  padding: 26px;
  border: 1px solid #c8d3cd;
  border-radius: 8px;
  background: var(--green-soft);
}

.contractor-note > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.contractor-note h2 {
  margin-bottom: 0;
}

.contractor-note > p {
  margin: 20px 0 0;
  white-space: normal;
}

.unlock-panel {
  margin-top: 28px;
  padding: 28px;
  border-radius: 8px;
  background: #202522;
  color: #fff;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
}

.unlock-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
}

.unlock-panel h2 {
  margin-bottom: 8px;
  font-size: 26px;
}

.unlock-panel p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.unlock-panel form,
.unlock-panel > span {
  grid-column: 2;
}

.unlock-panel > span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.report-side {
  border-left: 1px solid var(--line);
  align-self: start;
}

.side-section {
  padding: 0 0 26px 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.side-section h2 {
  margin-bottom: 10px;
  font-size: 16px;
}

.side-section p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
}

.side-section a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 750;
}

.report-boundary {
  margin: 54px 38px 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 12px;
}

/* Account, support, guides, and legal */
.narrow-page {
  width: min(100% - 40px, 920px);
  min-height: 64vh;
  margin: 0 auto;
  padding: 70px 0 100px;
}

.auth-panel {
  width: min(100%, 480px);
  margin: 0 auto;
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-border);
}

.auth-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
  color: var(--green-2);
}

.auth-panel h1,
.account-heading h1,
.support-layout h1,
.empty-state h1 {
  margin-bottom: 12px;
  font-size: 38px;
}

.auth-panel > p {
  color: var(--muted);
}

.auth-panel form,
.support-form {
  display: grid;
  gap: 18px;
}

.auth-fine {
  margin: 18px 0 0;
  color: var(--faint) !important;
  font-size: 12px;
  text-align: center;
}

.account-heading {
  min-height: 72px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.account-heading h1,
.account-heading p {
  margin-bottom: 0;
}

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

.account-report-list {
  border-top: 1px solid var(--line-dark);
}

.account-report-list > a {
  min-height: 88px;
  padding: 16px 6px;
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  text-decoration: none;
}

.account-report-list > a > div:first-child {
  min-width: 0;
}

.account-report-list strong,
.account-report-list span {
  display: block;
}

.account-report-list strong {
  overflow-wrap: anywhere;
}

.account-report-list span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.account-report-score {
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
}

.account-report-score span {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.account-report-score em {
  color: var(--green-2);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}

.empty-state {
  min-height: 390px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

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

.support-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: start;
}

.support-layout > div {
  padding-top: 8px;
}

.support-layout > div > p {
  color: var(--muted);
}

.support-note {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.support-form {
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-border);
}

.article-page {
  width: min(100% - 40px, 840px);
  margin: 0 auto;
  padding: 60px 0 100px;
}

.article-page > header {
  padding: 34px 0 46px;
  border-bottom: 1px solid var(--line-dark);
}

.article-page > header h1 {
  margin-bottom: 20px;
  font-size: 52px;
  overflow-wrap: anywhere;
}

.article-page > header p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.article-page > section:not(.article-cta),
.legal-article > h2 {
  margin-top: 48px;
}

.article-page > section h2,
.legal-article > h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.article-page > section p,
.legal-article > p {
  color: #52564f;
  font-size: 17px;
  line-height: 1.72;
}

.article-source {
  margin-top: 54px;
  padding: 24px;
  border-left: 4px solid var(--green-2);
  background: var(--green-soft);
}

.article-source h2 {
  font-size: 20px;
}

.article-source p {
  color: #4e5d55;
}

.article-source a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 750;
}

.article-cta {
  margin-top: 60px;
  padding: 30px;
  border-radius: 8px;
  background: #202522;
  color: #fff;
}

.article-cta h2 {
  font-size: 27px;
}

.article-cta p {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Admin */
.admin-body {
  background: #f1f2ef;
  color: #222521;
  font-size: 14px;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
}

.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 248px;
  padding: 22px 14px 18px;
  background: #202521;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  z-index: 30;
}

.admin-brand {
  min-height: 52px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 17px;
}

.admin-brand .wordmark-mark {
  width: 24px;
  height: 24px;
}

.admin-sidebar nav {
  display: grid;
  gap: 3px;
  margin-top: 30px;
}

.admin-sidebar nav a,
.admin-sidebar > form button {
  min-height: 44px;
  width: 100%;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  text-align: left;
  transition-property: background-color, color;
  transition-duration: 140ms;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active,
.admin-sidebar > form button:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.admin-sidebar nav a.active {
  font-weight: 800;
}

.admin-sidebar > form {
  margin-top: auto;
}

.admin-main {
  grid-column: 2;
  min-width: 0;
  padding: 0 28px 60px;
}

.admin-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.admin-header h1 {
  margin: 0;
  font-size: 28px;
}

.admin-header p {
  margin: 4px 0 0;
  color: var(--muted);
}

.admin-menu-button {
  display: none;
}

.admin-summary {
  min-height: 90px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
}

.admin-summary > div {
  padding: 19px 20px;
  border-right: 1px solid var(--line);
}

.admin-summary > div:last-child {
  border-right: 0;
}

.admin-summary span,
.admin-summary strong {
  display: block;
}

.admin-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.admin-summary strong {
  margin-top: 5px;
  font-size: 23px;
  font-variant-numeric: tabular-nums;
}

.admin-toolbar {
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-search {
  width: min(100%, 330px);
  position: relative;
}

.admin-search .icon {
  position: absolute;
  left: 12px;
  top: 13px;
  color: var(--faint);
}

.admin-search input {
  min-height: 42px;
  padding-left: 40px;
  font-size: 14px;
}

.stage-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
}

.stage-tabs a {
  min-height: 40px;
  padding: 0 11px;
  border-bottom: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.stage-tabs a:hover,
.stage-tabs a.active {
  color: var(--ink);
  border-bottom-color: var(--green-2);
}

.admin-toolbar > .button {
  margin-left: auto;
}

.admin-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
}

.admin-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-table th {
  height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-align: left;
}

.admin-table td {
  height: 66px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-table tbody tr:hover {
  background: #f8f9f6;
}

.admin-table td strong,
.admin-table td span {
  display: block;
}

.admin-table td strong {
  font-weight: 720;
}

.admin-table td > span:not(.score-cell):not(.payment-text):not(.stage-text) {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.score-cell {
  width: 36px;
  height: 30px;
  border-radius: 5px;
  display: grid !important;
  place-items: center;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.score-cell--low {
  background: var(--green-soft);
  color: var(--green);
}

.score-cell--moderate {
  background: var(--orange-soft);
  color: #774010;
}

.score-cell--high {
  background: var(--red-soft);
  color: var(--red);
}

.payment-text,
.stage-text {
  font-size: 12px;
  font-weight: 750;
}

.payment-text--paid {
  color: var(--green-2);
}

.payment-text--preview {
  color: var(--muted);
}

.row-action {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.table-empty {
  padding: 42px !important;
  color: var(--muted);
  text-align: center !important;
}

.admin-login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-login-form {
  width: min(100%, 390px);
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-border);
  display: grid;
  gap: 18px;
}

.admin-login-form h1 {
  margin: 0;
  font-size: 28px;
}

.admin-login-form > p {
  margin: 0;
  color: var(--faint);
  font-size: 11px;
  text-align: center;
}

.admin-detail-top {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 700;
}

.admin-detail-top a:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.admin-detail-main,
.admin-detail-side > section,
.support-ticket,
.automation-section {
  background: #fff;
  border: 1px solid var(--line);
}

.admin-detail-main {
  padding: 28px;
}

.admin-report-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.admin-report-title h2 {
  margin-bottom: 5px;
  font-size: 26px;
  overflow-wrap: anywhere;
}

.admin-report-title p {
  margin: 0;
  color: var(--muted);
}

.admin-report-title > strong {
  font-size: 24px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.admin-summary-copy {
  margin: 24px 0;
  color: #50544e;
  font-size: 16px;
}

.admin-facts {
  margin: 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-facts > div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.admin-facts > div:nth-child(odd) {
  padding-right: 18px;
}

.admin-facts dt,
.admin-detail-side dt {
  color: var(--faint);
  font-size: 11px;
  font-weight: 700;
}

.admin-facts dd,
.admin-detail-side dd {
  margin: 3px 0 0;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.admin-section-title {
  margin: 32px 0 14px;
  font-size: 20px;
}

.admin-finding-list {
  border-top: 1px solid var(--line);
}

.admin-finding-list article {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
}

.admin-finding-list h3 {
  margin-bottom: 5px;
  font-size: 15px;
}

.admin-finding-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.severity-mark {
  font-size: 11px;
  font-weight: 800;
}

.severity-mark--high {
  color: var(--red);
}

.severity-mark--medium {
  color: var(--orange);
}

.severity-mark--low,
.severity-mark--good {
  color: var(--green-2);
}

.admin-detail-side {
  display: grid;
  gap: 16px;
}

.admin-detail-side > section {
  padding: 20px;
}

.admin-detail-side h2 {
  margin-bottom: 14px;
  font-size: 16px;
}

.admin-detail-side form {
  display: grid;
  gap: 12px;
}

.admin-detail-side dl {
  margin: 0;
}

.admin-detail-side dt:not(:first-child) {
  margin-top: 13px;
}

.plain-list,
.notes-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li,
.notes-list li {
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.plain-list li span {
  display: block;
  color: var(--faint);
  font-size: 11px;
}

.notes-list {
  margin-top: 16px;
}

.notes-list p {
  margin-bottom: 4px;
}

.notes-list time {
  color: var(--faint);
  font-size: 11px;
}

.support-tabs {
  margin-bottom: 18px;
}

.support-queue {
  display: grid;
  gap: 12px;
}

.support-ticket {
  padding: 22px;
}

.support-ticket > header,
.support-ticket > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.support-ticket > header span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.support-ticket > header time {
  color: var(--faint);
  font-size: 11px;
  white-space: nowrap;
}

.support-ticket > p {
  margin: 20px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-ticket > footer form {
  display: flex;
  gap: 8px;
}

.support-ticket > footer select {
  min-height: 40px;
  font-size: 13px;
}

.automation-grid {
  display: grid;
  gap: 24px;
}

.automation-section {
  padding: 22px;
}

.automation-section h2 {
  font-size: 18px;
}

@media (max-width: 1100px) {
  .hero h1 { font-size: 58px; }
  .upload-band { grid-template-columns: 0.65fr 1.35fr; gap: 46px; }
  .proof-layout { gap: 44px; }
  .price-band { grid-template-columns: 1fr 130px 1fr; }
  .price-band > .button { grid-column: 3; justify-self: start; }
  .admin-summary { grid-template-columns: repeat(5, minmax(100px, 1fr)); }
  .admin-summary > div { padding: 16px 13px; }
}

@media (max-width: 900px) {
  .site-header { width: min(100% - 28px, 1360px); }
  .mobile-menu-button { display: inline-flex; }
  .public-nav {
    display: none;
    position: absolute;
    top: 66px;
    right: 0;
    width: min(300px, calc(100vw - 28px));
    padding: 12px;
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
  }
  .public-nav.is-open { display: flex; }
  .public-nav > a:not(.button) { padding: 0 10px; }
  .site-header--hero .public-nav .button { background: var(--green); color: #fff; }
  .hero { min-height: 690px; }
  .hero-content { width: min(100% - 32px, 1360px); padding-top: 115px; }
  .hero h1 { max-width: 650px; font-size: 50px; }
  .hero-copy { max-width: 600px; font-size: 19px; }
  .upload-band { width: min(100% - 32px, 1360px); grid-template-columns: 1fr; gap: 28px; padding: 60px 0 72px; }
  .upload-intro { position: static; }
  .proof-layout { grid-template-columns: 1fr; }
  .sample-sheet { rotate: 0deg; }
  .source-band { grid-template-columns: 1fr; gap: 50px; }
  .source-band blockquote { max-width: 650px; }
  .price-band { grid-template-columns: 1fr 170px; }
  .price-band ul { grid-column: 1 / -1; }
  .price-band > .button { grid-column: 1; }
  .report-header { grid-template-columns: 1fr 230px; padding: 28px; }
  .report-title h1 { font-size: 38px; }
  .report-columns { grid-template-columns: 1fr; padding: 38px 28px 0; }
  .report-side { border-left: 0; border-top: 1px solid var(--line); padding-top: 26px; }
  .side-section { padding-left: 0; }
  .support-layout { grid-template-columns: 1fr; gap: 28px; }
  .admin-shell { display: block; }
  .admin-main { padding: 0 16px 50px; }
  .admin-sidebar { translate: -100% 0; transition-property: translate; transition-duration: 180ms; transition-timing-function: ease-out; box-shadow: 4px 0 12px rgba(0, 0, 0, 0.18); }
  .admin-sidebar.is-open { translate: 0 0; }
  .admin-menu-button { display: inline-flex; position: fixed; top: 16px; right: 16px; z-index: 25; border-radius: 6px; background: #fff; box-shadow: var(--shadow-border); }
  .admin-header { padding-right: 55px; }
  .admin-summary { grid-template-columns: repeat(3, minmax(120px, 1fr)); overflow-x: auto; }
  .admin-summary > div:nth-child(3) { border-right: 0; }
  .admin-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .site-header { min-height: 64px; }
  .wordmark { font-size: 19px; }
  .hero { min-height: 660px; max-height: none; background-position: 62% center; }
  .hero-shade { background: rgba(10, 18, 14, 0.66); }
  .hero-content { padding-top: 88px; padding-bottom: 64px; }
  .hero-brand { margin-bottom: 18px; font-size: 16px; }
  .hero h1 { font-size: 42px; line-height: 1.03; }
  .hero-copy { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero-actions .button { width: 100%; }
  .text-link--light { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; }
  .hero-trust { margin-top: 24px; font-size: 12px; }
  .upload-intro h2,
  .section-heading h2,
  .source-band h2,
  .price-band h2,
  .faq-band h2,
  .guides-band h2 { font-size: 32px; }
  .upload-intro p,
  .section-heading p { font-size: 16px; }
  .quote-form { padding: 18px; }
  .file-drop { min-height: 150px; padding: 18px; }
  .form-grid { grid-template-columns: 1fr; gap: 15px; }
  .form-privacy { align-items: flex-start; text-align: left; }
  .proof-band,
  .guides-band,
  .faq-band { padding-top: 66px; padding-bottom: 66px; }
  .section-heading { margin-bottom: 32px; }
  .sample-sheet { padding: 20px; }
  .sample-sheet h3 { font-size: 21px; }
  .sample-sheet-head { align-items: flex-start; flex-direction: column; }
  .process-list li { grid-template-columns: 38px 1fr; gap: 13px; }
  .source-band { min-height: 0; padding-top: 66px; padding-bottom: 66px; gap: 40px; }
  .source-band blockquote { padding-left: 20px; font-size: 24px; }
  .price-band { padding-top: 62px; padding-bottom: 68px; grid-template-columns: 1fr; gap: 28px; }
  .price-line { padding: 18px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .price-band ul { grid-column: 1; grid-template-columns: 1fr; }
  .price-band > .button { width: 100%; }
  .guide-links a { min-height: 68px; font-size: 17px; }
  .faq-list summary { font-size: 16px; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { flex-wrap: wrap; gap: 10px 22px; }
  .footer-disclaimer { grid-column: 1; }
  .report-shell { width: min(100% - 24px, 1240px); padding-top: 18px; }
  .report-toolbar { align-items: flex-start; flex-direction: column; }
  .report-toolbar > div { width: 100%; }
  .report-toolbar .button { flex: 1; }
  .report-header { grid-template-columns: 1fr; gap: 25px; padding: 22px; }
  .report-title h1 { font-size: 34px; }
  .score-block { padding: 22px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .report-summary { padding: 32px 4px; }
  .report-summary > h2,
  .findings-section h2,
  .report-list-section h2,
  .contractor-note h2 { font-size: 24px; }
  .report-summary > p { font-size: 16px; }
  .document-facts { grid-template-columns: 1fr; }
  .report-columns { gap: 38px; padding: 34px 0 0; }
  .finding { padding: 20px; }
  .finding h3 { font-size: 20px; }
  .unlock-panel { grid-template-columns: 1fr; }
  .unlock-panel form,
  .unlock-panel > span { grid-column: 1; }
  .unlock-panel .button { width: 100%; }
  .contractor-note { padding: 20px; }
  .contractor-note > div { align-items: flex-start; flex-direction: column; }
  .report-boundary { margin: 44px 0 0; }
  .narrow-page { width: min(100% - 28px, 920px); padding-top: 42px; }
  .auth-panel,
  .support-form { padding: 22px; }
  .account-heading { align-items: flex-start; flex-direction: column; }
  .account-report-list > a { align-items: flex-start; flex-direction: column; gap: 14px; }
  .account-report-score { width: 100%; justify-content: space-between; }
  .article-page { width: min(100% - 32px, 840px); padding-top: 34px; }
  .article-page > header h1 { font-size: 39px; }
  .article-page > header p { font-size: 18px; }
  .article-page > section h2,
  .legal-article > h2 { font-size: 24px; }
  .admin-summary { grid-template-columns: repeat(5, 130px); }
  .admin-header h1 { font-size: 24px; }
  .admin-toolbar { align-items: stretch; flex-direction: column; }
  .admin-toolbar > * { min-width: 0; max-width: 100%; }
  .admin-search { width: 100%; }
  .stage-tabs { width: 100%; }
  .admin-toolbar > .button { margin-left: 0; align-self: flex-start; }
  .admin-detail-main { padding: 20px; }
  .admin-report-title { flex-direction: column; }
  .admin-facts { grid-template-columns: 1fr; }
  .admin-finding-list article { grid-template-columns: 1fr; gap: 5px; }
  .support-ticket > header,
  .support-ticket > footer { align-items: flex-start; flex-direction: column; }
  .support-ticket > footer form { width: 100%; }
}

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

@media print {
  body { background: #fff; color: #000; font-size: 12pt; }
  .site-header,
  .site-footer,
  .report-toolbar,
  .sample-notice,
  .unlock-panel,
  .report-side,
  .flash { display: none !important; }
  .report-shell { width: 100%; padding: 0; }
  .report-header { box-shadow: none; border: 1px solid #bbb; }
  .report-columns { display: block; padding: 30px 0 0; }
  .finding { break-inside: avoid; box-shadow: none; border: 1px solid #ccc; }
  .report-list-section,
  .contractor-note { break-inside: avoid; }
  .report-boundary { margin-left: 0; margin-right: 0; }
  a { text-decoration: none; }
}
