:root {
  color-scheme: light;
  --bg: #f3f7f4;
  --surface: #ffffff;
  --surface-soft: #f8faf8;
  --ink: #10251f;
  --muted: #60716a;
  --line: #d8e2dc;
  --brand: #087c73;
  --brand-dark: #0b4f4d;
  --brand-soft: #e4f4f0;
  --good: #078578;
  --good-soft: #e0f4ef;
  --mid: #b46d05;
  --mid-soft: #fff2d9;
  --low: #d54242;
  --low-soft: #ffebeb;
  --blue: #226d9a;
  --shadow: 0 18px 55px rgba(18, 50, 40, .09);
  --shadow-strong: 0 28px 90px rgba(11, 49, 42, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 7%, rgba(84, 187, 173, .13), transparent 28rem),
    radial-gradient(circle at 94% 18%, rgba(229, 196, 105, .12), transparent 25rem),
    var(--bg);
  font: 16px/1.65 ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.lead-modal-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 10px max(4vw, 24px);
  border-bottom: 1px solid rgba(16, 37, 31, .08);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  display: block;
  width: 168px;
  height: auto;
}

.brand-divider {
  width: 1px;
  height: 30px;
  background: var(--line);
}

.brand strong {
  font-size: 15px;
  letter-spacing: .02em;
}

main {
  flex: 1 0 auto;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 64px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 6px 0 12px;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 18px;
  right: 4px;
  width: 360px;
  height: 208px;
  background:
    repeating-linear-gradient(90deg, transparent 0 43px, rgba(8, 124, 115, .1) 43px 44px),
    repeating-linear-gradient(0deg, transparent 0 27px, rgba(8, 124, 115, .1) 27px 28px),
    repeating-linear-gradient(135deg, transparent 0 61px, rgba(8, 124, 115, .05) 61px 62px);
  -webkit-mask-image: linear-gradient(115deg, transparent 2%, #000 32%, #000 68%, transparent 98%);
  mask-image: linear-gradient(115deg, transparent 2%, #000 32%, #000 68%, transparent 98%);
  opacity: .78;
  transform: skewX(-7deg);
  content: "";
}

.hero-signals {
  position: absolute;
  z-index: -1;
  top: 8px;
  right: 0;
  width: 390px;
  height: 230px;
  color: var(--brand);
  opacity: .48;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(105deg, transparent 0, #000 24%, #000 82%, transparent 100%);
  mask-image: linear-gradient(105deg, transparent 0, #000 24%, #000 82%, transparent 100%);
}

.hero-signals svg {
  display: block;
  width: 100%;
  height: 100%;
}

.signal-route {
  fill: none;
  stroke: currentColor;
  stroke-dasharray: 3 7;
  stroke-width: 1.5;
}

.signal-node rect {
  fill: rgba(255, 255, 255, .72);
  stroke: rgba(8, 124, 115, .32);
  stroke-width: 1;
}

.signal-node circle,
.signal-node path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(50px, 7vw, 78px);
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: 1.02;
}

h1 em {
  color: var(--brand);
  font-style: normal;
}

.hero-line {
  white-space: nowrap;
}

.hero-sub {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.fomo-callout {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 38px;
  padding: 20px 24px;
  border-left: 4px solid var(--low);
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 10px 36px rgba(18, 50, 40, .06);
}

.fomo-callout span {
  color: var(--low);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .06em;
}

.fomo-callout strong {
  font-size: 18px;
  line-height: 1.5;
}

.scan-panel,
.summary,
.full-report {
  scroll-margin-top: 92px;
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.scan-panel {
  margin-top: 42px;
  padding: 28px;
  border-radius: 14px;
}

.scan-panel label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 800;
}

.scan-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #c8d5ce;
  border-radius: 8px;
  outline: none;
  color: var(--ink);
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}

input {
  min-height: 54px;
  padding: 13px 15px;
}

textarea {
  min-height: 104px;
  padding: 13px 15px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #94a29c;
}

input:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(8, 124, 115, .11);
}

button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 13px 22px;
  color: #fff;
  background: var(--brand);
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

button:hover {
  background: var(--brand-dark);
  box-shadow: 0 8px 22px rgba(8, 124, 115, .18);
  transform: translateY(-1px);
}

button:disabled {
  cursor: wait;
  opacity: .58;
  box-shadow: none;
  transform: none;
}

.scan-row button {
  min-width: 156px;
}

.hint,
.status,
.form-status {
  color: var(--muted);
  font-size: 13px;
}

.hint {
  margin: 9px 0 0;
}

.status {
  min-height: 24px;
  margin-top: 13px;
}

.status.is-loading {
  color: var(--blue);
}

.status.is-success {
  color: var(--good);
}

.status.is-error,
.form-status.is-error {
  color: var(--low);
}

.scan-progress {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.progress-track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7ede9;
}

.progress-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), #4ab6aa);
  transition: width .5s ease;
}

.progress-stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.progress-stages li {
  position: relative;
  padding-left: 25px;
  color: #8a9892;
  font-size: 12px;
  font-weight: 700;
}

.progress-stages li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid #cbd7d1;
  border-radius: 50%;
  color: #7e8b85;
  background: #fff;
  content: counter(list-item);
  font-size: 10px;
}

.progress-stages li.is-active {
  color: var(--brand);
}

.progress-stages li.is-active::before {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
}

.progress-stages li.is-done {
  color: var(--ink);
}

.progress-stages li.is-done::before {
  border-color: var(--good);
  color: transparent;
  background:
    linear-gradient(135deg, transparent 43%, #fff 43% 55%, transparent 55%) 5px 8px / 6px 4px no-repeat,
    var(--good);
}

.summary,
.full-report {
  margin-top: 32px;
  padding: 34px;
  border-radius: 18px;
}

.summary-head {
  display: flex;
  align-items: center;
  gap: 26px;
}

.score-ring {
  --pct: 0;
  --band: var(--brand);
  position: relative;
  flex: 0 0 126px;
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: conic-gradient(var(--band) calc(var(--pct) * 1%), #e8eeea 0);
}

.score-ring::before {
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.score-value {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
}

.score-value strong {
  font-size: 43px;
  letter-spacing: -.04em;
  line-height: 1;
}

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

.summary-copy {
  flex: 1;
  min-width: 0;
}

.summary-title-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.summary-title-line h2,
.report-title h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: -.03em;
  line-height: 1.2;
}

.summary-copy > p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
}

.grade-chip {
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--band);
  background: var(--band-soft);
  font-size: 12px;
  font-weight: 850;
}

.band-good {
  --band: var(--good);
  --band-soft: var(--good-soft);
}

.band-mid {
  --band: var(--mid);
  --band-soft: var(--mid-soft);
}

.band-low {
  --band: var(--low);
  --band-soft: var(--low-soft);
}

.dimension-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.dimension-row {
  min-width: 0;
  padding: 19px 16px 16px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--band);
  background: var(--surface-soft);
}

.dimension-score {
  display: flex;
  align-items: baseline;
  color: var(--band);
  font-variant-numeric: tabular-nums;
}

.dimension-score strong {
  font-size: 34px;
  letter-spacing: -.04em;
  line-height: 1;
}

.dimension-score span {
  margin-left: 2px;
  color: var(--muted);
  font-size: 12px;
}

.dimension-row h3 {
  margin: 14px 0 5px;
  font-size: 16px;
  line-height: 1.25;
}

.dimension-row p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lead-gate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 26px;
  color: #effbf8;
  background:
    linear-gradient(120deg, rgba(60, 169, 155, .16), transparent 55%),
    #103f3d;
}

.lock-copy {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.lock-icon {
  position: relative;
  flex: 0 0 38px;
  width: 38px;
  height: 34px;
  margin-top: 10px;
  border-radius: 6px;
  background: #61c4b5;
}

.lock-icon::before {
  position: absolute;
  left: 8px;
  top: -15px;
  width: 18px;
  height: 20px;
  border: 3px solid #61c4b5;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  content: "";
}

.lead-gate .eyebrow {
  color: #8be1d4;
}

.lead-gate h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.3;
}

.lead-gate p:last-child {
  margin: 7px 0 0;
  color: #c6ddd8;
}

.lead-gate > button {
  color: #10413d;
  background: #fff;
}

.lead-gate > button:hover {
  background: #e9f8f4;
}

.report-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.pdf-button {
  color: #fff;
  background: var(--brand);
}

.report-overview,
.top-fixes,
.report-details {
  padding-top: 32px;
}

.section-heading {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 18px;
}

.section-heading h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -.02em;
}

.section-index {
  margin: 0;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.standard-note {
  padding: 19px 20px;
  border-left: 4px solid var(--brand);
  background: var(--brand-soft);
}

.standard-note strong {
  font-size: 18px;
}

.standard-note p {
  margin: 7px 0 0;
  color: #41645b;
}

.quality-flags {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.quality-flags:empty {
  display: none;
}

.quality-flags p {
  margin: 0;
  padding: 11px 14px;
  border-left: 3px solid var(--mid);
  color: #78500f;
  background: var(--mid-soft);
  font-size: 13px;
}

.inventory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.inventory article {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.inventory strong {
  overflow: hidden;
  font-size: 25px;
  font-variant-numeric: tabular-nums;
  text-overflow: ellipsis;
}

.inventory span {
  color: var(--muted);
  font-size: 12px;
}

.report-tally {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.report-tally span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  font-size: 12px;
}

.report-tally strong {
  color: var(--ink);
  font-size: 16px;
}

.report-tally .t-pass {
  border-color: rgba(7, 133, 120, .28);
  background: var(--good-soft);
}

.report-tally .t-partial {
  border-color: rgba(180, 109, 5, .28);
  background: var(--mid-soft);
}

.report-tally .t-fail {
  border-color: rgba(213, 66, 66, .28);
  background: var(--low-soft);
}

.top-fixes-list {
  margin: 0;
  padding: 0;
  counter-reset: fix;
  list-style: none;
}

.top-fixes-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: start;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  counter-increment: fix;
}

.top-fixes-list li::before {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--low);
  content: counter(fix);
  font-size: 13px;
  font-weight: 900;
}

.top-fixes-list li > div > strong {
  display: block;
  font-size: 16px;
}

.top-fixes-list li p {
  margin: 4px 0 0;
  color: var(--muted);
}

.top-fixes-list li > span {
  padding: 4px 8px;
  color: var(--low);
  background: var(--low-soft);
  font-size: 11px;
  font-weight: 850;
}

.top-fixes-empty {
  margin: 0;
  padding: 17px;
  color: #27675d;
  background: var(--good-soft);
}

.checks {
  display: grid;
  gap: 28px;
}

.check-group {
  display: grid;
  gap: 9px;
}

.check-group > h4 {
  margin: 0 0 3px;
  font-size: 20px;
}

.check-card {
  --state-color: var(--blue);
  border: 1px solid var(--line);
  border-left: 4px solid var(--state-color);
  background: #fff;
}

.check-card.status-pass {
  --state-color: var(--good);
}

.check-card.status-partial {
  --state-color: var(--mid);
}

.check-card.status-fail {
  --state-color: var(--low);
}

.check-card summary {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 16px 17px;
  cursor: pointer;
  list-style: none;
}

.check-card summary::-webkit-details-marker {
  display: none;
}

.check-card summary::after {
  margin-left: 2px;
  color: var(--muted);
  content: "＋";
  font-weight: 700;
}

.check-card details[open] summary::after {
  content: "－";
}

.check-card summary strong {
  flex: 1;
  min-width: 0;
}

.state,
.confidence {
  flex: 0 0 auto;
  padding: 3px 8px;
  color: var(--state-color);
  background: color-mix(in srgb, var(--state-color) 11%, white);
  font-size: 11px;
  font-weight: 850;
}

.confidence {
  color: var(--muted);
  background: #eef2ef;
}

.points {
  color: var(--muted);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.check-body {
  padding: 2px 17px 18px;
  border-top: 1px solid var(--line);
}

.check-body h5 {
  margin: 15px 0 3px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
}

.check-body p {
  margin: 0;
}

.evidence {
  display: grid;
  gap: 7px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.evidence li {
  display: grid;
  grid-template-columns: minmax(180px, .8fr) 1.4fr;
  gap: 12px;
  padding: 10px 11px;
  background: var(--surface-soft);
}

.evidence code,
.evidence span {
  overflow-wrap: anywhere;
}

.evidence code {
  color: var(--brand-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

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

.bottom-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
  padding: 28px;
  color: #edf9f6;
  background: #103f3d;
}

.bottom-cta .eyebrow {
  color: #8be1d4;
}

.bottom-cta h3 {
  max-width: 650px;
  margin: 0;
  font-size: 25px;
}

.bottom-cta a {
  flex: 0 0 auto;
  padding: 13px 18px;
  border-radius: 8px;
  color: #103f3d;
  background: #fff;
  font-weight: 850;
  text-decoration: none;
}

.bottom-cta a:hover {
  background: #e9f8f4;
}

.lead-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 29, 25, .66);
  backdrop-filter: blur(6px);
}

.lead-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(90vh, 900px);
  overflow: auto;
  border-top: 5px solid var(--brand);
  background: #fff;
  box-shadow: var(--shadow-strong);
}

.lead-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  color: var(--muted);
  background: #eef3f0;
  font-size: 24px;
  line-height: 1;
}

.lead-modal-close:hover {
  color: var(--ink);
  background: #e2ebe6;
}

.lead-modal-header {
  padding: 30px 68px 18px 30px;
}

.lead-modal-header h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -.03em;
}

.lead-modal-header > p:last-child {
  margin: 9px 0 0;
  color: var(--muted);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  padding: 8px 30px 30px;
}

.lead-form > label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 750;
}

.lead-form .form-wide,
.lead-form .consent,
.lead-form > button,
.lead-form .form-status {
  grid-column: 1 / -1;
}

.lead-form .consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 500;
}

.consent input {
  flex: 0 0 auto;
  width: 17px;
  min-height: 17px;
  margin-top: 4px;
}

.lead-form > button {
  margin-top: 3px;
}

.form-status {
  min-height: 22px;
  margin: -2px 0 0;
}

footer {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
  min-height: 96px;
  padding: 22px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, .66);
  font-size: 13px;
}

footer a {
  display: inline-flex;
}

footer img {
  display: block;
  width: 145px;
  height: auto;
}

[hidden] {
  display: none !important;
}

@media (max-width: 940px) {
  main {
    padding-top: 58px;
  }

  .hero::after,
  .hero-signals {
    display: none;
  }

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

  .dimension-row:last-child {
    grid-column: 1 / -1;
  }

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

  .lead-gate,
  .bottom-cta {
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .topbar {
    min-height: 62px;
    padding: 9px 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 126px;
  }

  .brand-divider {
    height: 25px;
  }

  .brand strong {
    font-size: 13px;
  }

  main {
    width: min(100% - 28px, 1120px);
    padding: 42px 0 48px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.06;
  }

  .hero-sub {
    margin-top: 18px;
    font-size: 17px;
  }

  .fomo-callout {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 28px;
    padding: 17px 18px;
  }

  .fomo-callout strong {
    font-size: 16px;
  }

  .scan-panel,
  .summary,
  .full-report {
    padding: 21px;
  }

  .scan-row,
  .lead-form {
    grid-template-columns: 1fr;
  }

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

  .progress-stages {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
  }

  .summary-head {
    align-items: flex-start;
    gap: 17px;
  }

  .score-ring {
    flex-basis: 94px;
    width: 94px;
    height: 94px;
  }

  .score-ring::before {
    inset: 7px;
  }

  .score-value strong {
    font-size: 32px;
  }

  .summary-title-line h2,
  .report-title h2 {
    font-size: 27px;
  }

  .dimension-list {
    grid-template-columns: 1fr;
  }

  .dimension-row:last-child {
    grid-column: auto;
  }

  .lead-gate,
  .bottom-cta {
    grid-template-columns: 1fr;
    display: grid;
  }

  .lead-gate > button,
  .bottom-cta a {
    width: 100%;
    text-align: center;
  }

  .report-title {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .top-fixes-list li {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .top-fixes-list li > span {
    grid-column: 2;
    justify-self: start;
  }

  .check-card summary {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .check-card summary strong {
    flex-basis: calc(100% - 80px);
  }

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

  .lead-modal {
    padding: 12px;
  }

  .lead-modal-dialog {
    max-height: 94vh;
  }

  .lead-modal-header {
    padding: 26px 58px 16px 20px;
  }

  .lead-modal-header h2 {
    font-size: 26px;
  }

  .lead-form {
    padding: 7px 20px 24px;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 112px;
  }

  .brand-divider {
    display: none;
  }

  .brand strong {
    max-width: none;
    line-height: 1.3;
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(31px, 9.7vw, 39px);
  }

  .summary-head {
    display: grid;
    grid-template-columns: 84px 1fr;
  }

  .score-ring {
    width: 84px;
    height: 84px;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
