:root {
  color-scheme: dark;
  --page: #111110;
  --surface: #181816;
  --surface-raised: #201f1c;
  --line: #2b2a27;
  --line-soft: #232220;
  --text: #eceae4;
  --muted: #aaa79f;
  --quiet: #77756f;
  --accent: #d9ae43;
  --accent-soft: #edcf77;
  --danger: #d98b79;
  --radius: 9px;
  --font-body: "Atkinson Hyperlegible", Arial, sans-serif;
  --font-display: "Recursive", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", monospace;
  font-family: var(--font-body);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  background: var(--page);
  color: var(--text);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 78px; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

button, input { font: inherit; }

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

a:hover { color: var(--accent-soft); }

button:focus-visible, input:focus-visible, a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--accent);
  color: #17140c;
  padding: 8px 12px;
  font-weight: 650;
}

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

.site-header {
  height: 56px;
  border-bottom: 1px solid #292825;
  background: #111110;
}

.header-inner {
  width: min(100% - 48px, 1240px);
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  gap: 34px;
}

.brand { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; font-size: 13px; font-weight: 650; }

.brand-mark {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: var(--accent);
  color: #17140c;
  font-size: 12px;
  font-weight: 800;
}

.top-nav { display: flex; align-items: center; gap: 29px; color: #a29f97; font-size: 12px; }
.top-nav a, .header-cta { white-space: nowrap; }
.top-nav a:hover { color: var(--text); }

.header-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #eceae4;
  border-radius: 6px;
  background: #e8e6df;
  color: #171715;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
}

.header-cta:hover { background: #fff; color: #171715; }
.header-cta span { font-size: 13px; }

.page-shell {
  width: min(100% - 48px, 1240px);
  display: grid;
  grid-template-columns: minmax(0, 850px) 276px;
  gap: 48px;
  align-items: start;
  margin: 0 auto;
  padding: 26px 0 112px;
}

.main-column { min-width: 0; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: var(--quiet);
  font: 11px/1.4 var(--font-mono);
}

.breadcrumbs a { color: #b6b2a8; }
.breadcrumbs span:last-child { color: var(--text); }

.hero-block { padding-top: 35px; }

.hero-block h1 {
  max-width: 760px;
  margin: 0 0 14px;
  color: #efeee9;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.hero-block > p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.hero-block > p strong { color: #e9e7e0; font-weight: 650; }

.scan-form {
  margin-top: 27px;
  padding: 0;
}

.scan-input-row { display: flex; gap: 6px; }

.scan-input-row input {
  min-width: 0;
  flex: 1;
  height: 43px;
  border: 1px solid #292825;
  border-radius: 7px;
  background: #201f1c;
  color: var(--text);
  padding: 0 13px;
  font: 13px var(--font-mono);
}

.scan-input-row input::placeholder { color: #74716a; opacity: 1; }
.scan-input-row input:disabled { opacity: .65; }

.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.button:hover { transform: translateY(-1px); }
.button:disabled { opacity: .6; cursor: wait; transform: none; }
.button-primary { background: #e7e5de; color: #161614; padding: 0 16px; }
.button-primary:hover { background: #fff; color: #161614; }
.button-arrow { font-size: 14px; font-weight: 500; }
.button-secondary { background: #e7e5de; color: #161614; padding: 0 13px; }
.button-secondary:hover { background: #fff; color: #161614; }
.button-quiet { border-color: var(--line); background: transparent; color: #d0cdc5; padding: 0 13px; }
.button-quiet:hover { border-color: #57544d; background: #1c1b19; color: var(--text); }

.scan-note {
  padding: 7px 5px 1px;
  color: var(--quiet);
  font-size: 11px;
  line-height: 1.45;
}

.scan-note span { color: #b0ada5; }

.text-link { color: var(--accent-soft); text-decoration: underline; text-decoration-color: #6c592d; text-underline-offset: 3px; }
.text-link:hover { text-decoration-color: currentColor; }
.status-mark { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--accent); }

.scan-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid #36342f;
  border-radius: 7px;
  background: #191916;
  color: #d4d0c5;
  font-size: 12px;
}

.scan-status[hidden] { display: none; }
.scan-status.status-error { align-items: flex-start; border-color: #533f38; color: #e0b9aa; }
.scan-status.status-error .status-mark { margin-top: 6px; background: var(--danger); }
.spinner { width: 14px; height: 14px; flex: 0 0 auto; border: 1.5px solid #59564d; border-top-color: var(--accent); border-radius: 50%; animation: spin 800ms linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.examples-section { margin-top: 39px; }
.section-kicker-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.section-kicker-row h2, .guide-section h2, .found-section h2, .badge-section h2, .report-method-note h2, .check-another h2 {
  margin: 0;
  color: #e6e4de;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.35;
}

.section-kicker-row p { margin: 5px 0 0; color: var(--quiet); font-size: 12px; line-height: 1.5; }
.micro-label { color: #73716b; font: 10px var(--font-mono); letter-spacing: .08em; white-space: nowrap; }

.example-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 30px; margin-top: 14px; border-top: 1px solid var(--line); }

.example-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  border-radius: 0;
  background: transparent;
  padding: 7px 4px;
  transition: background-color 150ms ease, border-color 150ms ease;
}

.example-card:nth-last-child(-n + 2) { border-bottom: 0; }
.example-card:hover { border-color: #49463e; background: transparent; color: var(--text); }
.site-favicon { width: 25px; height: 25px; display: grid; place-items: center; color: #aaa69b; font: 10px var(--font-mono); }
.example-copy { display: grid; min-width: 0; gap: 1px; }
.example-copy strong { overflow: hidden; color: #dad8d1; font: 12px var(--font-mono); text-overflow: ellipsis; white-space: nowrap; }
.example-copy small { color: #77756e; font-size: 10px; }
.example-score { color: #dedbd3; font: 19px var(--font-mono); letter-spacing: -.08em; }
.example-score small { font-size: 10px; letter-spacing: 0; }
.source-note { margin: 8px 2px 0; color: #64625c; font-size: 10px; }

.guide-content { margin-top: 69px; }
.guide-section { margin: 0 0 48px; scroll-margin-top: 80px; }
.guide-section h2 { margin-bottom: 11px; font-size: 22px; letter-spacing: -.015em; }
.guide-section > p { max-width: 720px; margin: 0; color: #b6b3ab; font-size: 13px; line-height: 1.7; }
.guide-section a { color: #d5c48f; text-decoration: underline; text-decoration-color: #625637; text-underline-offset: 3px; }

.method-list { display: grid; gap: 17px; margin: 16px 0 0; padding: 0; list-style: none; }
.method-list li { display: grid; grid-template-columns: 68px minmax(0, 1fr); gap: 10px; }
.method-index { padding-top: 2px; color: #77746c; font: 9px var(--font-mono); letter-spacing: .035em; }
.method-list h3 { margin: 0 0 4px; color: #d9d6ce; font-size: 13px; font-weight: 640; }
.method-list p { max-width: 690px; margin: 0; color: #96938b; font-size: 12px; line-height: 1.62; }

.score-table { margin-top: 18px; border-top: 1px solid var(--line); }
.score-table-head, .score-row { display: grid; grid-template-columns: 88px minmax(130px, .8fr) minmax(0, 1.4fr); gap: 16px; align-items: center; }
.score-table-head { min-height: 35px; color: #77746d; font: 10px var(--font-mono); }
.score-row { min-height: 43px; border-top: 1px solid var(--line-soft); font-size: 11px; }
.score-range { color: #c2beb4; font: 12px var(--font-mono); }
.score-range i { padding: 0 4px; color: #6f6c64; font-style: normal; }
.score-row strong { color: #dcd9d1; font-weight: 620; }
.score-row > span:last-child { color: #8c8981; }
.formula-note { margin: 12px 0 0 !important; color: #77746c !important; font-size: 11px !important; }

.rubric-heading { align-items: flex-start; }
.rubric-heading p { max-width: 660px; margin-top: 7px; color: #8e8b83; font-size: 11px; line-height: 1.6; }
.rubric-category { margin-top: 24px; }
.rubric-category > h3, .result-category > h3 { margin: 0; padding-bottom: 9px; border-bottom: 1px solid var(--line); color: #c8c5bd; font-size: 13px; font-weight: 650; }
.tells-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 22px; }
.tell-card { min-width: 0; padding: 12px 0 13px; border-bottom: 1px solid var(--line-soft); }
.tell-card h4 { margin: 0 0 4px; color: #d0cdc5; font-size: 11px; font-weight: 620; line-height: 1.45; }
.tell-card p { margin: 0; color: #827f77; font-size: 10.5px; line-height: 1.55; }
.tell-card p span { color: #a9a59b; font-weight: 650; }
.tell-rule-details { margin: 5px 0; }
.tell-rule-details summary { width: fit-content; color: #a9a59b; font-size: 10px; cursor: pointer; }
.tell-rule-details summary:hover { color: var(--accent-soft); }
.tell-rule-details p { padding: 5px 0 2px; color: #aaa79f; }
.tell-card .tell-fix { margin-top: 5px; }

.side-column { padding-top: 44px; }
.side-card { border: 1px solid #3d3828; border-radius: 9px; background: #1d1b15; padding: 15px; }
.side-card + .side-card { margin-top: 14px; }
.side-column .side-card { border: 0; border-top: 1px solid var(--line); border-radius: 0; background: transparent; padding: 15px 0 17px; }
.side-column .side-card + .side-card { margin-top: 10px; }
.side-card-heading, .key-card-top { display: flex; align-items: center; gap: 8px; color: #cbb066; font: 10px var(--font-mono); letter-spacing: .06em; }
.side-icon { color: #d5b044; font-size: 14px; }
.fact-item { display: grid; grid-template-columns: 42px 1fr; gap: 8px; align-items: start; margin-top: 17px; }
.fact-number { padding-top: 2px; color: #d5ad49; font: 9px var(--font-mono); }
.fact-item strong, .fact-item small { display: block; }
.fact-item strong { color: #dedbd3; font-size: 11px; font-weight: 620; }
.fact-item small { margin-top: 2px; color: #8a877e; font-size: 10px; line-height: 1.45; }
.side-card-link { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; padding: 8px 10px; border: 1px solid #4b432d; border-radius: 5px; color: #e0c46f; font-size: 10px; font-weight: 650; }
.side-card-link:hover { background: #2a261b; color: #f3d880; }
.side-column .side-card-link { display: inline-flex; justify-content: flex-start; gap: 10px; margin-top: 13px; padding: 0; border: 0; border-radius: 0; background: transparent; text-decoration: underline; text-decoration-color: #6c592d; text-underline-offset: 3px; }
.side-column .side-card-link:hover { background: transparent; color: var(--accent-soft); }
.key-card { border-color: #2c2b26; background: #181816; }
.key-card-top { color: #aaa69b; }
.key-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.key-card h2 { margin: 13px 0 6px; color: #e2dfd8; font-size: 15px; font-weight: 620; }
.key-card p { margin: 0; color: #99968e; font-size: 11px; line-height: 1.6; }
.key-card .side-card-link { border-color: #32312b; color: #d0cdc4; }
.key-card .side-card-link:hover { background: #21201d; }
.side-column .key-card { border-bottom: 1px solid var(--line); }
.side-disclaimer { margin: 13px 2px 0; color: #6f6c65; font-size: 10px; line-height: 1.55; }

.site-footer { border-top: 1px solid #242320; background: #10100f; }
.footer-inner { width: min(100% - 48px, 1240px); display: grid; grid-template-columns: minmax(220px, 1fr) auto; gap: 20px 35px; margin: 0 auto; padding: 26px 0 30px; }
.footer-inner strong { color: #d0cdc5; font-size: 12px; }
.footer-inner p { margin: 5px 0 0; color: #77746d; font-size: 10px; }
.footer-links { display: flex; align-items: flex-start; gap: 20px; color: #96938b; font-size: 10px; }
.footer-note { grid-column: 1 / -1; padding-top: 12px; border-top: 1px solid #22211f; }

.report-loading { min-height: 45vh; display: block; }
.loading-line { display: flex; align-items: center; gap: 10px; color: #bdb9b0; }
.report-summary { display: grid; grid-template-columns: 160px minmax(0, 1fr); align-items: center; gap: 24px; margin-top: 34px; }
.report-score-block { display: grid; justify-items: center; gap: 9px; }
.score-ring { width: 138px; height: 138px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--accent) calc(var(--score) * 1%), #292824 0); }
.score-ring-inner { width: 120px; height: 120px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #141412; }
.score-ring-inner strong { color: #f0eee7; font: 39px/1 var(--font-mono); letter-spacing: -.08em; }
.score-ring-inner span { align-self: center; margin: 9px 0 0 5px; color: #87847c; font: 10px var(--font-mono); }
.score-band { color: #d2bf7d; font-size: 11px; font-weight: 650; }
.report-title-copy { min-width: 0; }
.report-domain { display: inline-block; color: #d1cdc3; font: 13px var(--font-mono); }
.report-domain span { color: #88857d; font-size: 11px; }
.report-title-copy h1 { margin: 8px 0; color: #e8e6df; font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); font-weight: 500; letter-spacing: -.025em; line-height: 1.15; }
.report-title-copy h1 span { color: #e4c46b; }
.report-verdict { max-width: 530px; margin: 0; color: #aaa69e; font-size: 13px; line-height: 1.55; }
.report-actions { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.report-meta-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 26px; margin-top: 30px; border-top: 1px solid var(--line); }
.report-meta-grid > div { min-width: 0; display: grid; gap: 4px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.report-meta-grid span { color: #77746d; font: 10px var(--font-mono); }
.report-meta-grid strong { overflow-wrap: anywhere; color: #c2bfb6; font-size: 11px; font-weight: 560; line-height: 1.45; }
.found-section { margin-top: 42px; }
.found-list { margin-top: 17px; border-top: 1px solid var(--line); }
.found-item { display: grid; grid-template-columns: minmax(0, 1fr) 44px; gap: 15px; align-items: start; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.found-item h3 { margin: 0; color: #d9d6ce; font-size: 12px; font-weight: 640; }
.found-item p { margin: 4px 0 0; color: #89867e; font-size: 11px; line-height: 1.5; }
.found-item > strong { color: #e2c56e; font: 17px var(--font-mono); text-align: right; }
.found-item > strong small { margin-left: 2px; color: #9e9164; font-size: 10px; }
.low-score-note { display: flex; align-items: center; gap: 10px; margin-top: 17px; padding: 12px 14px; border: 1px solid #2d2c27; border-radius: 7px; background: #171715; }
.low-score-mark { color: #9ab783; font-size: 17px; }
.low-score-note p { margin: 0; color: #b4b1a8; font-size: 11px; }
.badge-section { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 22px; align-items: start; margin-top: 37px; padding: 18px; border: 1px solid #302e29; border-radius: 8px; background: #171715; }
.badge-section h2 { font-size: 14px; }
.badge-section p { margin: 6px 0 0; color: #8f8c84; font-size: 11px; line-height: 1.55; }
.badge-preview { min-width: 0; display: grid; gap: 10px; }
.badge-preview img { display: block; max-width: 100%; }
.badge-preview code { display: block; overflow-wrap: anywhere; color: #9f9b91; font: 9px/1.55 var(--font-mono); }
.all-results-section { margin-top: 42px; }
.result-category { margin-top: 25px; }
.result-list { border-bottom: 1px solid var(--line-soft); }
.result-row { padding: 12px 0; border-bottom: 1px solid var(--line-soft); opacity: .73; }
.result-row:last-child { border-bottom: 0; }
.result-row.is-found { opacity: 1; }
.result-row-top { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; }
.result-row-top strong { color: #cecbc3; font-size: 11px; font-weight: 600; }
.result-row.is-found .result-row-top strong { color: #e3dbbc; }
.result-row-top span { color: #a9a59b; font: 12px var(--font-mono); }
.result-row.is-found .result-row-top span { color: #e1c56d; }
.result-row-top small { margin-left: 2px; font-size: 9px; }
.result-row p { margin: 3px 0 0; color: #7f7c74; font-size: 10px; line-height: 1.5; }
.report-method-note { margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--line); }
.report-method-note h2 { font-size: 14px; }
.report-method-note p { margin: 7px 0 10px; color: #8f8c83; font-size: 11px; line-height: 1.65; }
.report-method-note .text-link { font-size: 11px; }
.check-another { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); }
.check-another h2 { font-size: 15px; }
.check-another p { margin: 4px 0 0; color: #8a877e; font-size: 11px; }
.report-aside-card { border-color: #38352c; background: #191916; }
.summary-score { display: flex; align-items: baseline; margin-top: 18px; color: #e9e6dc; }
.summary-score strong { font: 46px/1 var(--font-mono); letter-spacing: -.1em; }
.summary-score > span { margin-left: 4px; color: #c8b56e; font-size: 14px; }
.summary-score small { align-self: center; margin-left: 10px; color: #89867e; font-size: 10px; }
.summary-band { display: flex; align-items: center; gap: 7px; margin-top: 12px; color: #d0c080; font-size: 11px; }
.summary-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.summary-divider { margin: 16px 0 7px; border-top: 1px solid #30302a; }
.summary-row { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; color: #858279; font-size: 10px; }
.summary-row strong { color: #c9c5bb; font: 10px var(--font-mono); text-align: right; }
.report-aside-cta { border-color: #2d2c27; background: #181816; }
.report-aside-cta h2 { margin: 0; color: #dcd9d1; font-size: 13px; font-weight: 640; }
.report-aside-cta p { margin: 6px 0 0; color: #929087; font-size: 10px; line-height: 1.55; }
.report-aside-cta .side-card-link { border-color: #393832; color: #dedbd1; }
.report-side-column { padding-top: 43px; }

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

@media (max-width: 1260px) {
  .page-shell, .header-inner, .footer-inner { width: min(100% - 40px, 1120px); }
  .page-shell { grid-template-columns: minmax(0, 1fr) 254px; gap: 35px; }
}

@media (max-width: 900px) {
  .page-shell { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .side-column { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding-top: 0; }
  .side-card + .side-card { margin-top: 0; }
  .side-disclaimer { grid-column: 1 / -1; }
  .report-side-column { grid-row: 1; }
}

@media (max-width: 650px) {
  .site-header { height: 54px; }
  .header-inner, .page-shell, .footer-inner { width: min(100% - 32px, 560px); }
  .header-inner { gap: 16px; }
  .brand { font-size: 12px; }
  .top-nav { gap: 14px; margin-left: auto; font-size: 10px; }
  .top-nav a:nth-child(2) { display: none; }
  .header-cta { gap: 7px; margin-left: 0; padding: 7px 8px; font-size: 10px; }
  .page-shell { padding-top: 21px; padding-bottom: 75px; }
  .hero-block { padding-top: 27px; }
  .hero-block h1 { font-size: clamp(33px, 9vw, 43px); letter-spacing: -.03em; }
  .hero-block > p { font-size: 13px; }
  .scan-form { margin-top: 21px; }
  .scan-input-row { flex-direction: column; }
  .scan-input-row input { flex: none; width: 100%; }
  .scan-input-row .button { width: 100%; }
  .scan-note { padding-top: 8px; }
  .examples-section { margin-top: 32px; }
  .example-grid { grid-template-columns: minmax(0, 1fr); }
  .example-card:nth-last-child(-n + 2) { border-bottom: 1px solid var(--line-soft); }
  .example-card:last-child { border-bottom: 0; }
  .guide-content { margin-top: 55px; }
  .guide-section { margin-bottom: 38px; }
  .guide-section h2 { font-size: 21px; }
  .score-table-head, .score-row { grid-template-columns: 64px minmax(102px, .9fr) minmax(0, 1.3fr); gap: 9px; }
  .score-row { font-size: 10px; }
  .score-range { font-size: 10px; }
  .tells-grid { grid-template-columns: minmax(0, 1fr); }
  .side-column { grid-template-columns: minmax(0, 1fr); }
  .side-disclaimer { grid-column: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 15px; }
  .footer-links { flex-wrap: wrap; }
  .footer-note { grid-column: auto; }
  .report-summary { grid-template-columns: 102px minmax(0, 1fr); gap: 15px; margin-top: 26px; }
  .score-ring { width: 98px; height: 98px; }
  .score-ring-inner { width: 84px; height: 84px; }
  .score-ring-inner strong { font-size: 29px; }
  .score-ring-inner span { font-size: 8px; }
  .score-band { font-size: 9px; text-align: center; }
  .report-title-copy h1 { font-size: 25px; letter-spacing: -.02em; }
  .report-verdict { font-size: 11px; }
  .report-actions { gap: 5px; }
  .report-actions .button { min-height: 35px; padding: 0 9px; font-size: 10px; }
  .report-meta-grid { gap: 0 15px; margin-top: 22px; }
  .report-meta-grid > div { padding: 10px 0; }
  .report-meta-grid strong { font-size: 10px; }
  .badge-section { grid-template-columns: 1fr; }
  .check-another { align-items: flex-start; flex-direction: column; }
  .check-another .button { width: 100%; }
  .report-side-column { grid-row: auto; }
}

@media (max-width: 390px) {
  .header-inner, .page-shell, .footer-inner { width: min(100% - 24px, 560px); }
  .top-nav { gap: 9px; }
  .top-nav a:first-child { display: none; }
  .header-cta { font-size: 9px; }
  .report-summary { grid-template-columns: 84px minmax(0, 1fr); gap: 12px; }
  .score-ring { width: 80px; height: 80px; }
  .score-ring-inner { width: 68px; height: 68px; }
  .score-ring-inner strong { font-size: 24px; }
  .score-ring-inner span { display: none; }
  .score-band { max-width: 86px; }
  .report-title-copy h1 { font-size: 22px; }
}

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