:root {
  --ink: #11110d;
  --paper: #f2eee6;
  --paper-deep: #e9e5d6;
  --card: #f9f8f3;
  --blue: #36a7ff;
  --blue-dark: #1d8fe8;
  --yellow: #fcc000;
  --muted: #73736b;
  --danger: #d9412d;
  --success: #137a4a;
  --line: rgba(17, 17, 13, 0.1);
  --display: "Bricolage Grotesque", Arial, Helvetica, sans-serif;
  --body: "Bricolage Grotesque", Arial, Helvetica, sans-serif;
  --mono: "DM Mono", Consolas, monospace;
  --page-progress: 0%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    radial-gradient(circle at 78% 12%, rgba(252, 192, 0, 0.12), transparent 31%);
  background-size: 24px 24px, 24px 24px, 100% 100%;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.audit-open {
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

::selection {
  color: var(--ink);
  background: var(--yellow);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--ink);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 100px;
  z-index: 200;
  padding: 10px 15px;
  color: var(--card);
  background: var(--ink);
  border: 2px solid var(--card);
  transform: translateY(-180%);
}

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

.binder-rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 90;
  width: 6px;
  overflow: visible;
  background: rgba(17, 17, 13, 0.16);
  border-right: 1px solid rgba(17, 17, 13, 0.3);
  pointer-events: none;
}

.binder-rail::after {
  display: none;
}

.binder-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--page-progress);
  background: linear-gradient(180deg, var(--yellow), var(--blue) 30%, var(--blue-dark));
  box-shadow: 0 0 12px rgba(54, 167, 255, 0.72);
  transition: height 160ms linear;
}

.binder-line::after {
  position: absolute;
  right: 50%;
  bottom: -5px;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--blue);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(54, 167, 255, 0.2);
  transform: translateX(50%);
  animation: progressPulse 1.6s ease-in-out infinite;
}

@keyframes progressPulse {
  50% {
    box-shadow: 0 0 0 8px rgba(54, 167, 255, 0.05);
    transform: translateX(50%) scale(0.82);
  }
}

.binder-ring {
  position: relative;
  z-index: 2;
  width: 57px;
  height: 14px;
  background: #c6c4b9;
  border: 2px solid #464740;
  border-radius: 999px;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.13);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.binder-ring::before {
  position: absolute;
  left: 17px;
  top: -15px;
  width: 21px;
  height: 37px;
  content: "";
  border: 2px solid #464740;
  border-radius: 50%;
}

.binder-ring.is-active {
  background: var(--blue);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.13), 0 0 17px rgba(54, 167, 255, 0.5);
}

.site-shell {
  width: 100%;
  margin-left: 0;
  padding-top: 51px;
}

.announcement {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 70;
  display: flex;
  min-height: 51px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 7px clamp(20px, 4vw, 58px);
  background: var(--yellow);
  border-bottom: 3px solid var(--ink);
  font: 500 11px/1.2 var(--mono);
  letter-spacing: 0.045em;
}

.announcement-copy {
  display: flex;
  align-items: center;
  gap: 16px;
}

.announcement-copy strong,
.announcement-copy > span:last-child {
  padding: 7px 10px;
  color: var(--card);
  background: var(--ink);
  border-radius: 4px;
}

.status-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  padding: 0 !important;
  background: #426b27 !important;
  border: 2px solid rgba(17, 17, 13, 0.45);
  border-radius: 50% !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}

.announcement > a {
  padding: 9px 14px;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 5px;
  box-shadow: 3px 3px 0 rgba(17, 17, 13, 0.65);
  font-weight: 500;
  text-transform: lowercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.announcement > a:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 rgba(17, 17, 13, 0.65);
}

.site-header {
  position: relative;
  top: auto;
  z-index: 60;
  display: grid;
  min-height: 86px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 14px clamp(20px, 4vw, 58px);
  background: rgba(242, 238, 230, 0.94);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(12px);
}

.compact-nav {
  position: fixed;
  top: 65px;
  right: 18px;
  z-index: 66;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px) scale(0.92);
  transform-origin: top right;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.compact-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.compact-menu-button {
  display: grid;
  width: 52px;
  height: 48px;
  margin-left: auto;
  place-content: center;
  gap: 5px;
  padding: 0;
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: 7px;
  box-shadow: 5px 5px 0 var(--blue);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.compact-menu-button:hover,
.compact-nav.is-open .compact-menu-button {
  background: var(--yellow);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--blue);
}

.compact-menu-button span {
  display: block;
  width: 23px;
  height: 3px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.compact-nav.is-open .compact-menu-button span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.compact-nav.is-open .compact-menu-button span:nth-child(2) {
  opacity: 0;
}

.compact-nav.is-open .compact-menu-button span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.compact-menu-panel {
  position: absolute;
  top: calc(100% + 11px);
  right: 0;
  width: min(280px, calc(100vw - 36px));
  padding: 13px;
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 9px 0 var(--blue);
}

.compact-menu-panel[hidden] {
  display: none;
}

.compact-menu-panel strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 6px 8px 12px;
  border-bottom: 2px solid var(--ink);
  font-size: 17px;
}

.compact-menu-panel small {
  padding: 3px 5px;
  background: var(--yellow);
  border: 1px solid var(--ink);
  font: 500 8px var(--mono);
}

.compact-menu-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 9px;
  border-bottom: 1px solid rgba(17, 17, 13, 0.24);
  font-weight: 750;
}

.compact-menu-panel a:last-child {
  border-bottom: 0;
}

.compact-menu-panel a:hover {
  background: var(--yellow);
}

body.modal-open .compact-nav {
  opacity: 0;
  pointer-events: none;
}

.wordmark {
  display: inline-flex;
  align-items: flex-start;
  gap: 7px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.wordmark small {
  padding: 3px 5px;
  color: var(--ink);
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  font: 500 8px/1 var(--mono);
  letter-spacing: 0.05em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
}

.site-header nav a {
  position: relative;
  font-weight: 680;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
}

.header-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 11px 17px;
  background: var(--blue);
  border: 3px solid var(--ink);
  border-radius: 7px;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

main > section {
  position: relative;
  padding: clamp(48px, 6vw, 84px) clamp(24px, 5.4vw, 84px);
}

#audit,
#method,
#full-result {
  scroll-margin-top: 155px;
}

.hero {
  display: grid;
  min-height: min(680px, calc(100vh - 137px));
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  overflow: hidden;
}

.entry-label,
.mono-label {
  margin: 0;
  color: #5f6059;
  font: 500 11px/1.4 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-block;
  margin: 20px 0 10px;
  padding: 7px 10px;
  background: var(--ink);
  color: var(--card);
  border-radius: 4px;
  box-shadow: 4px 4px 0 var(--yellow);
  font: 500 11px/1.2 var(--mono);
  letter-spacing: 0.06em;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
}

h1 {
  max-width: 950px;
  margin: 10px 0 20px;
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

h1 mark {
  position: relative;
  z-index: 0;
  color: inherit;
  background: transparent;
  white-space: normal;
}

h1 mark::before {
  position: absolute;
  right: -8px;
  bottom: 6px;
  left: -8px;
  z-index: -1;
  height: 31%;
  content: "";
  background: var(--blue);
  transform: rotate(-1deg);
}

h2 {
  max-width: 940px;
  margin: 12px 0 16px;
  font-size: clamp(37px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

h3 {
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.hero-intro {
  max-width: 720px;
  margin: 0;
  color: #3f403a;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
}

.hero-actions,
.closing-actions,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 11px 17px;
  border: 3px solid var(--ink);
  border-radius: 7px;
  box-shadow: 6px 7px 0 rgba(17, 17, 13, 0.82);
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover:not(:disabled) {
  transform: translate(-2px, -2px);
  box-shadow: 9px 10px 0 rgba(17, 17, 13, 0.82);
}

.button:active:not(:disabled) {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 rgba(17, 17, 13, 0.82);
}

.button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.button-primary {
  background: var(--blue);
}

.button-light {
  background: var(--card);
}

.text-link {
  padding: 8px 0;
  border-bottom: 2px solid var(--ink);
  font-weight: 750;
}

.trust-strip {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  background: var(--card);
  border: 2px solid var(--ink);
  box-shadow: 6px 7px 0 rgba(17, 17, 13, 0.17);
}

.trust-strip li {
  display: flex;
  min-width: 120px;
  flex-direction: column;
  padding: 11px 15px;
  border-right: 1px solid var(--ink);
}

.trust-strip li:last-child {
  border-right: 0;
}

.trust-strip strong {
  font-size: 21px;
  line-height: 1;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
  font: 500 9px var(--mono);
  text-transform: uppercase;
}

.hero-specimen {
  position: relative;
  min-height: 410px;
  padding: 40px 28px 27px;
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: 10px;
  box-shadow: 13px 14px 0 var(--blue);
  transform: rotate(2deg);
}

.hero-specimen::before,
.hero-specimen::after {
  position: absolute;
  width: 34px;
  height: 34px;
  content: "";
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.hero-specimen::before {
  top: 14px;
  left: 16px;
  background: var(--yellow);
}

.hero-specimen::after {
  right: 18px;
  bottom: 18px;
  background: var(--blue);
}

.specimen-tape,
.tape {
  position: absolute;
  top: -15px;
  left: 50%;
  width: 82px;
  height: 28px;
  background: rgba(210, 210, 201, 0.88);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  transform: translateX(-50%) rotate(-2deg);
}

.hero-specimen > p {
  margin: 12px 0 28px;
  font: 500 12px/1.35 var(--mono);
  letter-spacing: 0.08em;
}

.specimen-score {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 17px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
}

.specimen-score span {
  grid-column: 1 / -1;
  font: 500 10px var(--mono);
  letter-spacing: 0.08em;
}

.specimen-score strong {
  font-size: 84px;
  letter-spacing: -0.09em;
  line-height: 0.9;
}

.specimen-score small {
  padding-bottom: 11px;
  font: 500 13px var(--mono);
}

.specimen-bars {
  display: flex;
  height: 84px;
  align-items: end;
  gap: 12px;
  margin: 24px 5px 18px;
  padding: 0 0 0 8px;
  border-bottom: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.specimen-bars span {
  width: 19%;
  height: var(--bar);
  background: var(--blue);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 rgba(17, 17, 13, 0.35);
}

.hero-specimen > b {
  font: 500 11px var(--mono);
  letter-spacing: 0.09em;
}

.sticky-note {
  position: absolute;
  z-index: 5;
  padding: 26px 21px 20px;
  background: var(--blue);
  border: 2px solid var(--ink);
  box-shadow: 7px 8px 16px rgba(17, 17, 13, 0.23);
  font: 800 18px/1.2 var(--display);
  transform: rotate(4deg);
}

.hero-note {
  right: 24px;
  bottom: 32px;
}

.kinetic-ribbon {
  width: calc(100% + 26px);
  margin-left: -13px;
  overflow: hidden;
  color: var(--ink);
  background: repeating-linear-gradient(90deg, var(--blue) 0 22px, var(--blue-dark) 22px 39px);
  border-block: 3px solid var(--ink);
  box-shadow: 0 12px 22px rgba(17, 17, 13, 0.13);
  transform: rotate(-0.7deg);
}

.kinetic-ribbon > div {
  width: max-content;
  padding: 11px 0;
  background: rgba(54, 167, 255, 0.82);
  font: 800 13px/1 var(--mono);
  letter-spacing: 0.12em;
  animation: ribbonMove 20s linear infinite;
}

@keyframes ribbonMove {
  to { transform: translateX(-25%); }
}

.audit-section {
  padding-bottom: clamp(58px, 7vw, 88px);
}

.section-heading {
  display: grid;
  max-width: 1060px;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.36fr);
  gap: 18px 44px;
  align-items: end;
}

.section-heading .entry-label,
.section-heading h2 {
  grid-column: 1;
}

.section-heading > p:last-child {
  grid-column: 2;
  grid-row: 2;
  margin: 0 0 7px;
  color: #4d4e47;
  font-size: 15px;
  line-height: 1.48;
}

.section-heading.compact {
  display: block;
}

.audit-shell {
  max-width: 1060px;
  min-height: 0;
  margin-top: 34px;
}

.audit-intro-card,
.question-card,
.analysis-card,
.result-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: 12px;
  box-shadow: 10px 11px 0 rgba(17, 17, 13, 0.18);
}

.audit-intro-card {
  padding: clamp(22px, 3vw, 38px);
}

.audit-card-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  font: 500 10px var(--mono);
  letter-spacing: 0.08em;
}

.audit-card-topline span:last-child {
  color: var(--success);
}

.audit-intro-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(28px, 4vw, 60px);
  padding: 30px 0 26px;
}

.audit-intro-grid h3 {
  max-width: 650px;
  margin: 10px 0 14px;
  font-size: clamp(30px, 3.4vw, 46px);
}

.audit-intro-grid p:last-child {
  max-width: 620px;
  color: #4c4d46;
  font-size: 15px;
}

.audit-deliverables {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--blue);
}

.audit-deliverables li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  border-bottom: 1.5px solid var(--ink);
  font-weight: 720;
}

.audit-deliverables li:last-child {
  border-bottom: 0;
}

.audit-deliverables span {
  display: grid;
  width: 38px;
  height: 34px;
  place-items: center;
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  font: 500 10px var(--mono);
}

.microcopy {
  margin: 15px 0 0;
  color: var(--muted);
  font: 500 10px/1.5 var(--mono);
}

.question-card {
  min-height: 0;
  padding: clamp(23px, 3vw, 38px);
}

.question-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.question-count,
.saved-status {
  font: 500 10px var(--mono);
  letter-spacing: 0.07em;
}

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

.progress-track {
  height: 12px;
  overflow: hidden;
  background: var(--paper-deep);
  border: 2px solid var(--ink);
  border-radius: 999px;
}

.progress-track span {
  display: block;
  width: var(--audit-progress);
  height: 100%;
  background: var(--blue);
  border-right: 2px solid var(--ink);
  transition: width 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.question-copy {
  max-width: 820px;
  padding: 21px 0 15px;
}

.question-copy .mono-label {
  display: inline-block;
  padding: 6px 9px;
  color: var(--card);
  background: var(--ink);
  border-radius: 3px;
}

.question-copy h3 {
  margin: 12px 0 9px;
  font-size: clamp(29px, 3.2vw, 43px);
}

.question-copy p {
  max-width: 700px;
  margin: 0;
  color: #4f5049;
  font-size: 16px;
}

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

.answer-option {
  position: relative;
  display: grid;
  min-height: 68px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 15px;
  padding: 11px 15px;
  text-align: left;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 7px;
  box-shadow: 4px 4px 0 rgba(17, 17, 13, 0.18);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.answer-option:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(17, 17, 13, 0.35);
}

.answer-option.is-selected {
  background: var(--blue);
  box-shadow: 5px 5px 0 var(--ink);
}

.answer-letter {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font: 500 11px var(--mono);
}

.answer-option.is-selected .answer-letter {
  background: var(--yellow);
}

.answer-copy {
  font-weight: 700;
  line-height: 1.35;
}

.question-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
}

.back-button,
.restart-button,
.link-button {
  padding: 10px 0;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--ink);
  font-weight: 750;
  cursor: pointer;
}

.analysis-card {
  display: grid;
  min-height: 440px;
  place-items: center;
  padding: 32px;
  text-align: center;
}

.analysis-inner {
  width: min(620px, 100%);
}

.analysis-icon {
  position: relative;
  display: grid;
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  place-items: center;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 8px 8px 0 var(--blue);
  font: 800 36px var(--display);
  animation: analysisPulse 1.1s ease-in-out infinite alternate;
}

@keyframes analysisPulse {
  to { transform: rotate(5deg) scale(1.04); }
}

.analysis-card h3 {
  margin: 0 0 13px;
  font-size: clamp(35px, 5vw, 62px);
}

.analysis-status {
  min-height: 28px;
  color: var(--muted);
  font: 500 11px/1.6 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.analysis-line {
  height: 16px;
  margin-top: 30px;
  overflow: hidden;
  background: var(--paper-deep);
  border: 2px solid var(--ink);
}

.analysis-line span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--blue);
  animation: analysisFill 1.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes analysisFill {
  to { width: 100%; }
}

.result-card {
  overflow: visible;
}

.result-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px;
  background: var(--yellow);
  border-bottom: 3px solid var(--ink);
  font: 500 10px var(--mono);
  letter-spacing: 0.07em;
}

.result-summary {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(26px, 3.5vw, 44px);
}

.score-gauge {
  --score-angle: 0deg;
  position: relative;
  display: grid;
  width: 220px;
  height: 220px;
  place-items: center;
  background: conic-gradient(var(--blue) var(--score-angle), var(--paper-deep) 0);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 10px 10px 0 var(--ink);
}

.score-gauge::before {
  position: absolute;
  width: 150px;
  height: 150px;
  content: "";
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.score-number {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.score-number strong {
  font-size: 62px;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.score-number span {
  margin-top: 7px;
  font: 500 9px var(--mono);
  letter-spacing: 0.08em;
}

.result-stage {
  margin: 20px 0 0;
  text-align: center;
  font: 500 10px/1.5 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.result-copy .mono-label {
  display: inline-block;
  padding: 6px 9px;
  color: var(--card);
  background: var(--ink);
}

.result-copy h3 {
  margin: 12px 0 11px;
  font-size: clamp(36px, 4vw, 56px);
}

.result-diagnosis {
  max-width: 650px;
  margin: 0;
  color: #3f403a;
  font-size: 17px;
  line-height: 1.48;
}

.instant-action {
  margin-top: 18px;
  padding: 14px 17px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-left: 12px solid var(--blue);
}

.instant-action strong {
  display: block;
  margin-bottom: 5px;
  font: 500 10px var(--mono);
  letter-spacing: 0.07em;
}

.lead-unlock {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 30px;
  padding: clamp(25px, 3.5vw, 42px);
  background: var(--paper-deep);
  border-top: 3px solid var(--ink);
}

.lead-unlock h4 {
  max-width: 570px;
  margin: 10px 0 12px;
  font: 800 clamp(27px, 2.8vw, 38px)/1.02 var(--display);
  letter-spacing: -0.04em;
}

.lead-unlock p {
  max-width: 590px;
  color: #4b4c45;
}

.privacy-promise {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 17, 13, 0.3);
  font-size: 13px;
}

.privacy-promise span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 14px;
}

.lead-form {
  padding: 19px;
  background: var(--card);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--blue);
}

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

.field {
  margin-bottom: 15px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font: 500 9px var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  min-height: 47px;
  padding: 10px 12px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 4px;
  outline: 0;
}

.field input:focus {
  box-shadow: inset 0 -4px 0 var(--blue);
}

.field input[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: inset 0 -3px 0 var(--danger);
}

.field-error {
  min-height: 17px;
  margin: 5px 0 0;
  color: var(--danger);
  font-size: 12px;
}

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

.consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin: 4px 0 18px;
  color: #4c4d46;
  font-size: 12px;
  line-height: 1.45;
}

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

.consent-field a {
  text-decoration: underline;
}

.lead-form .button {
  width: 100%;
}

.form-status {
  min-height: 21px;
  margin: 13px 0 0;
  font-size: 13px;
}

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

.full-result {
  padding: clamp(25px, 3.5vw, 42px);
  border-top: 3px solid var(--ink);
}

.full-result[hidden],
.lead-unlock[hidden] {
  display: none;
}

.delivery-notice {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  padding: 13px 15px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-left: 9px solid var(--blue);
}

.delivery-notice > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: var(--blue);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-weight: 800;
}

.delivery-notice strong {
  font: 700 10px/1.2 var(--mono);
  letter-spacing: 0.07em;
}

.delivery-notice p {
  margin: 3px 0 0;
  color: #4f5049;
  font-size: 13px;
}

.delivery-sandboxed {
  border-left-color: var(--yellow);
}

.delivery-sandboxed > span {
  background: var(--yellow);
}

.delivery-failed {
  border-left-color: var(--danger);
}

.delivery-failed > span {
  color: var(--card);
  background: var(--danger);
}

.full-result-heading {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 25px;
  align-items: end;
}

.full-result-heading h4 {
  margin: 12px 0 0;
  font: 800 clamp(30px, 3.5vw, 46px)/1.02 var(--display);
  letter-spacing: -0.045em;
}

.full-result-heading p:last-child {
  margin: 0;
  color: #4f5049;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.action-card {
  position: relative;
  min-height: 190px;
  padding: 19px 17px;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 6px 7px 0 rgba(17, 17, 13, 0.16);
}

.action-card span {
  display: grid;
  width: 42px;
  height: 38px;
  place-items: center;
  background: var(--blue);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  font: 500 10px var(--mono);
}

.action-card h5 {
  margin: 18px 0 8px;
  font: 800 20px/1.05 var(--display);
  letter-spacing: -0.035em;
}

.action-card p {
  margin: 0;
  color: #4d4e47;
  font-size: 14px;
}

.content-prescription {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 0;
  margin-top: 26px;
  border: 3px solid var(--ink);
  box-shadow: 8px 9px 0 var(--blue);
}

.prescription-label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: var(--card);
  background: var(--ink);
}

.prescription-label span {
  font: 500 10px var(--mono);
  letter-spacing: 0.08em;
}

.prescription-label strong {
  margin-top: 20px;
  font-size: 24px;
  line-height: 1.05;
}

.prescription-copy {
  padding: 21px;
  background: var(--yellow);
}

.prescription-copy small {
  font: 500 9px var(--mono);
  letter-spacing: 0.08em;
}

.prescription-copy p {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  align-items: stretch;
  gap: 30px;
  margin-top: 30px;
  padding: 23px;
  color: var(--card);
  background: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 9px 10px 0 var(--yellow);
}

.service-panel h4 {
  margin: 17px 0 11px;
  font: 800 clamp(27px, 3vw, 39px)/1 var(--display);
  letter-spacing: -0.04em;
}

.service-panel-copy > p:last-child {
  max-width: 650px;
  margin: 0;
  color: #d8d6cd;
}

.service-match {
  display: inline-block;
  margin-top: 13px;
  padding: 7px 9px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--card);
  box-shadow: 3px 3px 0 var(--blue);
  font: 700 10px/1.2 var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-panel-action {
  padding: 20px;
  color: var(--ink);
  background: var(--card);
  border: 2px solid var(--card);
  border-radius: 7px;
}

.service-panel-action .mono-label {
  color: #55564f;
}

.service-panel-action ul {
  display: grid;
  gap: 0;
  margin: 13px 0 17px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(17, 17, 13, 0.25);
}

.service-panel-action li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 9px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17, 17, 13, 0.25);
  font-size: 14px;
  font-weight: 680;
  line-height: 1.35;
}

.service-panel-action li span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  background: var(--blue);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 11px;
}

.service-panel-action .button {
  width: 100%;
}

.service-panel-action small {
  display: block;
  margin-top: 12px;
  color: #5c5d55;
  font: 500 9px/1.45 var(--mono);
}

.service-panel .button {
  color: var(--ink);
}

.dimension-breakdown {
  margin-top: 32px;
}

.dimension-breakdown h4 {
  margin: 0 0 17px;
  font-size: 25px;
}

.dimension-row {
  display: grid;
  grid-template-columns: 190px 1fr 46px;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.dimension-row strong {
  font-size: 14px;
}

.dimension-track {
  height: 14px;
  overflow: hidden;
  background: var(--paper-deep);
  border: 2px solid var(--ink);
}

.dimension-track span {
  display: block;
  width: var(--dimension-score);
  height: 100%;
  background: var(--blue);
  border-right: 2px solid var(--ink);
}

.dimension-row b {
  font: 500 11px var(--mono);
  text-align: right;
}

.result-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding-top: 21px;
  border-top: 2px solid var(--ink);
}

.result-tools > div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.method-section {
  background: rgba(249, 248, 243, 0.55);
  border-top: 2px solid var(--ink);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1120px;
  margin-top: 34px;
  border: 3px solid var(--ink);
  box-shadow: 10px 11px 0 rgba(17, 17, 13, 0.18);
}

.method-grid article {
  min-height: 220px;
  padding: 24px 22px;
  background: var(--card);
  border-right: 2px solid var(--ink);
}

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

.method-grid article > span {
  display: grid;
  width: 44px;
  height: 39px;
  place-items: center;
  background: var(--blue);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  font: 500 11px var(--mono);
}

.method-grid h3 {
  margin: 32px 0 10px;
  font-size: 24px;
}

.method-grid p {
  margin: 0;
  color: #51524b;
}

.method-note {
  right: 38px;
  bottom: 32px;
  background: var(--yellow);
}

.closing-section {
  color: var(--card);
  background: var(--ink);
  border-top: 3px solid var(--ink);
}

.entry-label.light {
  color: #c0beb6;
}

.closing-section h2 {
  max-width: 850px;
}

.closing-section > p:not(.entry-label) {
  max-width: 760px;
  color: #d6d4cd;
  font-size: 17px;
}

.closing-section .button-primary,
.closing-section .button-light {
  color: var(--ink);
  box-shadow: 6px 7px 0 #55564f;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 20px clamp(24px, 5.4vw, 84px);
  background: var(--paper-deep);
  border-top: 2px solid var(--ink);
}

.footer-mark {
  font-size: 21px;
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

footer > div {
  display: flex;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  max-width: 360px;
  padding: 13px 16px;
  color: var(--card);
  background: var(--ink);
  border: 2px solid var(--card);
  border-radius: 5px;
  box-shadow: 5px 5px 0 var(--blue);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.audit-modal[hidden] {
  display: none;
}

.audit-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: 18px;
}

.audit-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(17, 17, 13, 0.78);
  border: 0;
  backdrop-filter: blur(7px);
  cursor: default;
}

.audit-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100vw - 36px));
  max-height: calc(100dvh - 36px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  box-shadow: 14px 16px 0 rgba(54, 167, 255, 0.82);
}

.audit-modal-dialog:focus {
  outline: 0;
}

.audit-modal-header {
  position: sticky;
  top: 0;
  z-index: 25;
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 13px 8px 18px;
  background: var(--yellow);
  border-bottom: 3px solid var(--ink);
}

.audit-modal-header > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal-kicker {
  font: 500 8px var(--mono);
  letter-spacing: 0.08em;
}

.audit-modal-header strong {
  font-size: 18px;
  line-height: 1;
}

.modal-close {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 13px;
  padding: 7px 7px 7px 13px;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 5px;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.modal-close:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.modal-close b {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--card);
  background: var(--ink);
  border-radius: 3px;
  font: 500 20px/1 var(--body);
}

.audit-modal-content {
  padding: 13px;
}

.audit-modal-content .question-card,
.audit-modal-content .analysis-card {
  min-height: 0;
}

.audit-modal-content .result-card {
  box-shadow: 8px 9px 0 rgba(17, 17, 13, 0.18);
}

.audit-modal-content #full-result {
  scroll-margin-top: 96px;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.noscript {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 130;
  max-width: 420px;
  padding: 18px;
  color: var(--card);
  background: var(--danger);
  border: 3px solid var(--ink);
}

.privacy-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
}

.privacy-card {
  width: min(820px, 100%);
  padding: clamp(28px, 6vw, 70px);
  background: var(--card);
  border: 3px solid var(--ink);
  box-shadow: 12px 13px 0 var(--blue);
}

.privacy-card .entry-label {
  margin-top: 50px;
}

.privacy-card h1 {
  font-size: clamp(43px, 7vw, 72px);
}

.privacy-card h2 {
  margin: 35px 0 9px;
  font-size: 27px;
}

.privacy-card p {
  color: #4d4e47;
}

.privacy-card .button {
  margin-top: 28px;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .site-header nav {
    justify-self: end;
  }

  .header-button {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.55fr;
    gap: 45px;
  }

  .hero-specimen {
    min-height: 410px;
    padding: 42px 23px 25px;
  }

  .specimen-score strong {
    font-size: 82px;
  }

  .hero-note,
  .method-note {
    display: none;
  }

  .result-summary {
    grid-template-columns: 245px 1fr;
    gap: 45px;
  }

  .score-gauge {
    width: 220px;
    height: 220px;
  }

  .score-gauge::before {
    width: 150px;
    height: 150px;
  }

  .lead-unlock {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .binder-rail {
    width: 4px;
  }

  .site-shell {
    width: 100%;
    margin-left: 0;
  }

  .announcement {
    justify-content: center;
  }

  .announcement-copy > span:last-child,
  .announcement > a {
    display: none;
  }

  .site-header {
    top: auto;
    min-height: 71px;
    padding-block: 11px;
  }

  .site-header nav {
    gap: 15px;
    font-size: 13px;
  }

  .site-header nav a:nth-child(2) {
    display: none;
  }

  .wordmark {
    font-size: 23px;
  }

  main > section {
    padding-inline: clamp(18px, 5vw, 40px);
    padding-block: 40px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 42px;
    padding-bottom: 52px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-specimen {
    display: none;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p:last-child {
    margin-top: 18px;
  }

  .audit-intro-grid,
  .result-summary,
  .full-result-heading,
  .service-panel {
    grid-template-columns: 1fr;
  }

  .score-column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

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

  .method-grid article {
    min-height: 0;
    padding: 19px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

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

  .method-grid h3 {
    margin-top: 18px;
  }

  .content-prescription {
    grid-template-columns: 1fr;
  }

  .service-panel .button {
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .announcement {
    min-height: 44px;
    padding-inline: 12px;
  }

  .site-shell {
    padding-top: 44px;
  }

  .compact-nav {
    top: 56px;
    right: 12px;
  }

  .compact-menu-button {
    width: 47px;
    height: 44px;
  }

  .announcement-copy {
    gap: 9px;
  }

  .announcement-copy strong {
    font-size: 9px;
  }

  .status-dot {
    width: 10px;
    height: 10px;
  }

  .site-header {
    top: auto;
    min-height: 64px;
    gap: 15px;
    padding-inline: 14px;
  }

  .site-header nav a:first-child {
    display: none;
  }

  .wordmark {
    font-size: 21px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(40px, 12.5vw, 54px);
  }

  .hero-intro {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    width: 100%;
  }

  .trust-strip {
    display: grid;
    width: 100%;
  }

  .trust-strip li {
    min-width: 0;
    padding: 11px 10px;
  }

  .trust-strip strong {
    font-size: 21px;
  }

  .trust-strip span {
    font-size: 7px;
  }

  .audit-shell {
    min-height: 0;
    margin-top: 26px;
  }

  .audit-card-topline span:last-child,
  .saved-status {
    display: none;
  }

  .audit-intro-grid {
    padding-block: 24px 21px;
  }

  .audit-intro-grid h3 {
    font-size: 30px;
  }

  .audit-deliverables li {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 10px 11px;
    font-size: 14px;
  }

  .audit-deliverables span {
    width: 30px;
    height: 28px;
  }

  .question-card {
    min-height: 0;
    padding: 17px 14px;
  }

  .question-header {
    grid-template-columns: auto 1fr;
  }

  .question-copy {
    padding-block: 21px 16px;
  }

  .question-copy h3 {
    font-size: 30px;
  }

  .answer-option {
    min-height: 66px;
    padding: 9px 11px;
  }

  .question-footer {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .back-button {
    align-self: flex-start;
  }

  .analysis-card {
    min-height: 390px;
    padding: 22px;
  }

  .result-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .result-summary,
  .lead-unlock,
  .full-result {
    padding: 24px 17px;
  }

  .score-gauge {
    width: 205px;
    height: 205px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lead-form {
    padding: 18px 14px;
  }

  .action-card {
    min-height: 175px;
  }

  .audit-modal {
    padding: 0;
  }

  .audit-modal-dialog {
    width: 100%;
    height: 100dvh;
    max-height: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .audit-modal-header {
    min-height: 64px;
    padding: 9px 10px 9px 14px;
    border-bottom-width: 2px;
  }

  .audit-modal-header strong {
    font-size: 15px;
  }

  .modal-close {
    min-height: 40px;
    padding-left: 8px;
  }

  .modal-close span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .audit-modal-content {
    padding: 10px;
  }

  .audit-modal-content .question-card {
    padding: 14px 12px;
  }

  .audit-modal-content .question-card,
  .audit-modal-content .analysis-card {
    min-height: 0;
  }

  .audit-modal-content .question-copy {
    padding-block: 14px 11px;
  }

  .audit-modal-content .question-copy h3 {
    margin-block: 8px 6px;
    font-size: 26px;
  }

  .audit-modal-content .question-copy p {
    font-size: 13px;
    line-height: 1.35;
  }

  .audit-modal-content .answer-list {
    gap: 8px;
  }

  .audit-modal-content .answer-option {
    min-height: 56px;
    grid-template-columns: 34px 1fr;
    gap: 9px;
    padding: 8px 9px;
  }

  .audit-modal-content .answer-letter {
    width: 32px;
    height: 32px;
  }

  .audit-modal-content .answer-copy {
    font-size: 14px;
    line-height: 1.25;
  }

  .audit-modal-content .question-footer {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    margin-top: 14px;
  }

  .audit-modal-content .question-footer .button {
    width: auto;
    min-height: 44px;
    flex: 1;
  }

  .audit-modal-content .question-card > .microcopy {
    display: none;
  }

  .dimension-row {
    grid-template-columns: 1fr 42px;
    gap: 7px 12px;
  }

  .dimension-track {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .dimension-row b {
    grid-column: 2;
    grid-row: 1;
  }

  .result-tools,
  .result-tools > div {
    align-items: stretch;
    flex-direction: column;
  }

  .restart-button,
  .link-button {
    align-self: flex-start;
  }

  .toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .binder-rail,
  .announcement,
  .site-header,
  .kinetic-ribbon,
  .hero,
  .method-section,
  .closing-section,
  footer,
  .lead-unlock,
  .result-tools {
    display: none !important;
  }

  .site-shell {
    width: 100%;
    margin: 0;
  }

  .audit-section {
    padding: 0;
  }

  .section-heading {
    display: none;
  }

  .audit-shell {
    margin: 0;
  }

  .result-card {
    border: 0;
    box-shadow: none;
  }
}
