:root {
  color-scheme: dark;
  --black: #0b0d0d;
  --ink: #151612;
  --panel: #1a1b17;
  --line: #34352f;
  --line-soft: rgba(194, 188, 176, 0.18);
  --bone: #f7f2e8;
  --silver: #c5c2b8;
  --muted: #85847b;
  --cyan: #62c9cc;
  --red: #d56a58;
  --green: #8fb99b;
  --paper: #e2d3b8;
  --paper-surface: #e9dfcf;
  --paper-surface-soft: #d9cebc;
  --paper-ink: #171614;
  --paper-muted: #676357;
  --paper-line: rgba(34, 28, 20, 0.16);
  --radius: 8px;
  --font: "Inter", "IBM Plex Sans", "Noto Sans SC", "Microsoft YaHei", system-ui, sans-serif;
  --font-data: "Space Grotesk", "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--black);
}

::selection {
  color: #061014;
  background: var(--cyan);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--bone);
  background:
    linear-gradient(90deg, rgba(242, 239, 231, 0.035), transparent 18%, rgba(98, 201, 204, 0.024) 56%, transparent 82%),
    linear-gradient(180deg, #111413 0%, #0b0d0d 46%, #13120f 100%);
  background-size: auto;
  font-family: var(--font);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11, 13, 13, 0), rgba(11, 13, 13, 0.66)),
    linear-gradient(90deg, rgba(242, 239, 231, 0.03) 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(247, 242, 232, 0.018) 0, rgba(247, 242, 232, 0.018) 1px, transparent 1px, transparent 5px);
  background-size: auto, 96px 96px, auto;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(57, 213, 232, 0.9);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

main:focus {
  outline: none;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 100;
  padding: 10px 12px;
  border: 1px solid rgba(57, 213, 232, 0.62);
  border-radius: 4px;
  color: var(--black);
  background: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 11, 0.88);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(57, 213, 232, 0.2);
  background: rgba(8, 9, 11, 0.94);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 700;
}

.brand-en {
  color: var(--silver);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--silver);
  font-size: 14px;
}

.site-nav a {
  position: relative;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  color: var(--cyan);
}

.site-nav a.is-active {
  color: var(--bone);
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.nav-cta {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--paper) !important;
}

.nav-cta:hover {
  background: transparent;
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--bone);
  background: transparent;
  padding: 8px 10px;
}

.section-grid,
.section-wrap {
  width: min(1200px, calc(100vw - 44px));
  margin: 0 auto;
}

section[id],
.section-grid[id],
.section-wrap[id] {
  scroll-margin-top: 92px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.hero {
  min-height: min(880px, calc(100svh - 72px));
  padding: clamp(70px, 9vh, 96px) 0 clamp(72px, 10vh, 108px);
}

.eyebrow,
.slice-index {
  color: var(--paper);
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(64px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.28;
}

.headline-break {
  display: block;
}

.hero-lede,
.section-copy p,
.section-head p,
.cta-copy p,
.lab-line p {
  color: var(--silver);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.72;
}

.section-head .eyebrow,
.section-copy .eyebrow,
.cta-copy .eyebrow,
.lab-line .eyebrow {
  color: var(--paper);
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--bone);
  background: transparent;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.form-submit:hover {
  transform: translateY(-1px);
  border-color: rgba(57, 213, 232, 0.76);
  background: rgba(57, 213, 232, 0.08);
}

.button.primary,
.form-submit {
  border-color: rgba(242, 239, 231, 0.78);
  color: #08090b;
  background: var(--bone);
}

.button.primary:hover,
.form-submit:hover {
  background: #fffaf0;
}

.calibration-line,
.section-note {
  margin-top: 24px;
  color: var(--silver);
  font-size: 14px;
  line-height: 1.7;
}

.calibration-line::before,
.section-note::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--cyan);
}

.blackbox-visual,
.specimen-visual,
.briefing-visual,
.question-lab,
.annotation-board,
.answer-slice,
.observe-form,
.lab-line {
  border: 1px solid rgba(217, 203, 182, 0.14);
  border-radius: var(--radius);
  background: rgba(17, 19, 24, 0.78);
}

.blackbox-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background:
    linear-gradient(rgba(57, 213, 232, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 213, 232, 0.05) 1px, transparent 1px),
    rgba(17, 19, 24, 0.84);
  background-size: 34px 34px;
  box-shadow:
    inset 0 0 0 1px rgba(242, 239, 231, 0.02),
    0 24px 80px rgba(0, 0, 0, 0.26);
}

.blackbox-visual::before,
.blackbox-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.blackbox-visual::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(57, 213, 232, 0.08), transparent),
    radial-gradient(circle at 62% 40%, rgba(57, 213, 232, 0.1), transparent 32%);
  opacity: 0.7;
}

.blackbox-visual::after {
  left: -20%;
  right: -20%;
  top: 34%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57, 213, 232, 0.42), transparent);
  transform: rotate(-6deg);
  opacity: 0.54;
}

.visual-readout {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 16px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.signal-line {
  position: absolute;
  left: 32px;
  top: 94px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--silver);
  font-family: var(--font-data);
  font-size: 12px;
}

.signal-line i {
  position: relative;
  display: block;
  width: 130px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}

.signal-line i::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--cyan);
  border-right: 1px solid var(--cyan);
  transform: rotate(45deg);
}

.blackbox {
  position: absolute;
  z-index: 4;
  left: 46%;
  top: 54px;
  width: 210px;
  height: 150px;
  border: 1px solid rgba(57, 213, 232, 0.46);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(57, 213, 232, 0.04), transparent),
    #0c0e12;
  box-shadow: 0 0 40px rgba(57, 213, 232, 0.1), inset 0 0 30px rgba(57, 213, 232, 0.03);
  transform: translateX(-50%);
}

.blackbox::before,
.blackbox::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.blackbox::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57, 213, 232, 0.5), transparent);
  animation: scanLine 3.6s ease-in-out infinite;
}

.blackbox::after {
  inset: 10px;
  border: 1px solid rgba(242, 239, 231, 0.05);
  border-radius: 4px;
}

.box-label {
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--bone);
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.source-tag {
  position: absolute;
  left: 18px;
  color: var(--muted);
  font-family: var(--font-data);
  font-size: 10px;
}

.tag-official { bottom: 46px; }
.tag-third { bottom: 28px; }
.tag-old { bottom: 10px; color: var(--red); }

.output-ray {
  position: absolute;
  z-index: 2;
  left: 51%;
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, rgba(57, 213, 232, 0.68), transparent);
  transform-origin: left center;
  opacity: 0.56;
}

.ray-a {
  top: 190px;
  transform: rotate(20deg);
}

.ray-b {
  top: 205px;
  transform: rotate(37deg);
}

.ray-c {
  top: 220px;
  transform: rotate(52deg);
  background: linear-gradient(90deg, rgba(224, 90, 71, 0.46), transparent);
}

.coordinate-plane {
  position: absolute;
  z-index: 3;
  left: 52px;
  right: 38px;
  bottom: 44px;
  height: 210px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 58% 42%, rgba(57, 213, 232, 0.08), transparent 24%),
    linear-gradient(90deg, transparent 49%, rgba(242, 239, 231, 0.03) 50%, transparent 51%);
}

.plane-label {
  position: absolute;
  left: 12px;
  top: -26px;
  color: var(--muted);
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.axis {
  position: absolute;
  background: rgba(166, 173, 184, 0.12);
}

.x-axis {
  left: 0;
  right: 0;
  top: 52%;
  height: 1px;
}

.y-axis {
  left: 42%;
  top: 0;
  bottom: 0;
  width: 1px;
}

.coord-point {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--silver);
  font-family: var(--font-data);
  font-size: 11px;
}

.coord-point b {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(57, 213, 232, 0.6);
}

.coord-point em {
  font-style: normal;
}

.point-a {
  right: 16%;
  top: 24%;
}

.point-a b {
  background: var(--green);
  box-shadow: 0 0 16px rgba(102, 209, 158, 0.5);
}

.point-b {
  right: 28%;
  top: 54%;
}

.point-b i {
  position: absolute;
  left: 3px;
  top: 12px;
  width: 44px;
  height: 1px;
  background: var(--cyan);
  transform: rotate(18deg);
  opacity: 0.65;
}

.point-b::after {
  content: "Δ";
  position: absolute;
  left: -18px;
  top: -20px;
  color: var(--cyan);
  font-family: var(--font-data);
  font-size: 10px;
}

.point-c {
  right: 10%;
  bottom: 12%;
}

.point-c b {
  background: var(--red);
  box-shadow: 0 0 14px rgba(224, 90, 71, 0.46);
}

.briefing-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.briefing-visual::before {
  content: "";
  position: absolute;
  left: 42px;
  right: 10px;
  top: 44px;
  bottom: 18px;
  border: 1px solid rgba(226, 211, 184, 0.14);
  background: rgba(233, 223, 207, 0.16);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
  transform: rotate(1.2deg);
}

.briefing-cover {
  position: absolute;
  inset: 18px 0 0;
  padding: 34px;
  border: 1px solid rgba(34, 28, 20, 0.18);
  border-radius: 2px;
  color: var(--paper-ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), transparent 38%),
    repeating-linear-gradient(0deg, rgba(34, 28, 20, 0.026) 0, rgba(34, 28, 20, 0.026) 1px, transparent 1px, transparent 6px),
    var(--paper-surface);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.36),
    0 30px 80px rgba(0, 0, 0, 0.32);
}

.briefing-cover::before,
.briefing-cover::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.briefing-cover::before {
  inset: 18px;
  border: 1px solid rgba(34, 28, 20, 0.08);
}

.briefing-cover::after {
  left: 34px;
  right: 34px;
  bottom: 164px;
  height: 1px;
  background: linear-gradient(90deg, rgba(34, 28, 20, 0.22), transparent);
}

.briefing-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--paper-muted);
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.briefing-mark {
  position: absolute;
  right: 34px;
  top: 78px;
  color: rgba(34, 28, 20, 0.045);
  font-family: var(--font);
  font-size: clamp(42px, 5.6vw, 78px);
  font-weight: 700;
  letter-spacing: 0;
}

.briefing-title {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin-top: 74px;
}

.briefing-title span,
.briefing-question span,
.briefing-snapshot span {
  display: block;
  color: #705f43;
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.briefing-title p {
  margin: 14px 0 0;
  color: var(--paper-ink);
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.08;
}

.briefing-question {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 300px;
  padding-top: 24px;
  border-top: 1px solid rgba(34, 28, 20, 0.12);
}

.briefing-question strong {
  display: block;
  margin-top: 10px;
  color: var(--paper-ink);
  font-size: 18px;
  line-height: 1.5;
}

.briefing-snapshot {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 214px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(34, 28, 20, 0.12);
  border-bottom: 1px solid rgba(34, 28, 20, 0.12);
}

.briefing-snapshot strong {
  color: var(--paper-ink);
  font-size: 22px;
  line-height: 1.25;
}

.briefing-snapshot small {
  align-self: end;
  color: var(--red);
  font-size: 12px;
}

.briefing-measure {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 154px;
  height: 48px;
}

.measure-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(11, 111, 120, 0.68), rgba(112, 95, 67, 0.42), rgba(161, 74, 61, 0.54));
}

.measure-point {
  position: absolute;
  top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--paper-muted);
  font-size: 12px;
}

.measure-point b {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0b6f78;
}

.measure-point em {
  font-style: normal;
}

.point-left {
  left: 8%;
}

.point-center {
  left: 45%;
}

.point-center b {
  background: #705f43;
}

.point-right {
  right: 0;
  color: #9e4438;
}

.point-right b {
  background: #9e4438;
}

.briefing-notes {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.briefing-notes p {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(34, 28, 20, 0.12);
  color: var(--paper-muted);
  font-size: 13px;
  line-height: 1.6;
}

.specimen-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  padding: 26px;
  border-color: rgba(217, 203, 182, 0.18);
  background:
    radial-gradient(circle at 78% 24%, rgba(86, 196, 207, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(217, 203, 182, 0.055), transparent 34%),
    rgba(13, 15, 18, 0.9);
  box-shadow:
    inset 0 0 0 1px rgba(242, 239, 231, 0.018),
    0 28px 90px rgba(0, 0, 0, 0.32);
}

.specimen-visual::before,
.specimen-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.specimen-visual::before {
  inset: 18px;
  border: 1px solid rgba(217, 203, 182, 0.065);
}

.specimen-visual::after {
  left: 26px;
  right: 26px;
  bottom: 84px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 203, 182, 0.24), transparent);
}

.specimen-header,
.specimen-question,
.specimen-layer,
.offset-field,
.evidence-item {
  position: relative;
  z-index: 2;
}

.specimen-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.specimen-question {
  width: min(360px, 72%);
  margin-top: 34px;
  padding-left: 18px;
  border-left: 1px solid rgba(86, 196, 207, 0.56);
}

.specimen-question span,
.specimen-layer span,
.field-label {
  display: block;
  color: var(--cyan);
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.specimen-question p {
  margin: 8px 0 0;
  color: var(--bone);
  font-size: 20px;
  line-height: 1.45;
}

.specimen-stack {
  position: absolute;
  z-index: 2;
  left: 128px;
  right: 34px;
  top: 132px;
  height: 252px;
}

.specimen-layer {
  position: absolute;
  width: min(390px, 78%);
  min-height: 116px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(217, 203, 182, 0.18);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(242, 239, 231, 0.06), rgba(242, 239, 231, 0.018)),
    rgba(8, 9, 11, 0.96);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.specimen-layer::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 48%;
  width: 32px;
  height: 1px;
  background: rgba(86, 196, 207, 0.5);
}

.specimen-layer p {
  margin: 12px 0 14px;
  color: var(--bone);
  font-size: 16px;
  line-height: 1.52;
}

.specimen-layer small {
  color: var(--muted);
  font-size: 12px;
}

.layer-front {
  left: 0;
  top: 0;
  z-index: 5;
}

.layer-middle {
  left: 54px;
  top: 74px;
  z-index: 4;
  border-color: rgba(86, 196, 207, 0.18);
  opacity: 0.88;
}

.layer-back {
  left: 108px;
  top: 148px;
  z-index: 3;
  border-color: rgba(215, 101, 85, 0.24);
  opacity: 0.82;
}

.offset-field {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 76px;
  height: 116px;
  border-left: 1px solid rgba(217, 203, 182, 0.12);
  border-bottom: 1px solid rgba(217, 203, 182, 0.12);
}

.field-label {
  position: absolute;
  left: 12px;
  top: -24px;
  color: var(--muted);
}

.field-line {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  transform-origin: left center;
}

.base-line {
  top: 58%;
  background: rgba(217, 203, 182, 0.2);
}

.drift-line {
  top: 48%;
  background: linear-gradient(90deg, rgba(86, 196, 207, 0.72), rgba(215, 101, 85, 0.48), transparent);
  transform: rotate(-8deg);
}

.field-dot {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--silver);
  font-size: 12px;
}

.field-dot b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(86, 196, 207, 0.42);
}

.field-dot em {
  font-style: normal;
}

.dot-current {
  left: 26%;
  top: 42%;
}

.dot-competitor {
  left: 54%;
  top: 24%;
}

.dot-competitor b {
  background: var(--paper);
  box-shadow: 0 0 14px rgba(217, 203, 182, 0.36);
}

.dot-risk {
  right: 8%;
  top: 62%;
  color: rgba(242, 239, 231, 0.74);
}

.dot-risk b {
  background: var(--red);
  box-shadow: 0 0 14px rgba(215, 101, 85, 0.42);
}

.evidence-strip {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.evidence-item {
  min-height: 38px;
  padding: 10px 12px;
  border: 1px solid rgba(217, 203, 182, 0.12);
  border-radius: 4px;
  color: var(--silver);
  background: rgba(8, 9, 11, 0.54);
  font-size: 12px;
}

.evidence-item.risk {
  border-color: rgba(215, 101, 85, 0.28);
  color: #e6a096;
}

@keyframes scanLine {
  0%,
  100% {
    transform: translateY(-44px);
    opacity: 0.2;
  }
  50% {
    transform: translateY(44px);
    opacity: 0.72;
  }
}

.section-wrap,
.question-section,
.status-section,
.observe-section,
.method-section,
.slices-section,
.cta-section,
.lab-section {
  padding: clamp(76px, 11vw, 132px) 0;
}

.section-copy strong {
  display: block;
  margin-top: 28px;
  color: var(--bone);
  font-size: 18px;
  line-height: 1.55;
}

.question-lab {
  position: relative;
  min-height: 500px;
  padding: 28px;
  overflow: hidden;
}

.question-lab::before {
  content: "";
  position: absolute;
  right: 102px;
  top: 70px;
  bottom: 120px;
  width: 1px;
  background: linear-gradient(transparent, rgba(57, 213, 232, 0.4), transparent);
}

.question-sample {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 64px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(8, 9, 11, 0.54);
  box-shadow: inset 0 0 0 1px rgba(242, 239, 231, 0.015);
}

.question-sample::after {
  content: "";
  position: absolute;
  right: -96px;
  top: 50%;
  width: 96px;
  height: 1px;
  background: linear-gradient(90deg, rgba(57, 213, 232, 0.56), transparent);
}

.question-sample span {
  justify-self: center;
  color: var(--cyan);
  font-family: var(--font-data);
  font-size: 12px;
}

.question-sample p {
  margin: 0;
  color: var(--bone);
  line-height: 1.5;
}

.question-blackbox {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 160px;
  height: 104px;
  border: 1px solid rgba(57, 213, 232, 0.46);
  border-radius: 6px;
  color: var(--muted);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.16em;
  background: #0c0e12;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(217, 203, 182, 0.12);
}

.status-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
  gap: 28px;
  align-items: stretch;
}

.status-axis {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(217, 203, 182, 0.14);
  border-bottom: 1px solid rgba(217, 203, 182, 0.14);
  background: linear-gradient(180deg, rgba(217, 203, 182, 0.035), rgba(8, 9, 11, 0.18));
}

.status-axis::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 78px;
  height: 1px;
  background: linear-gradient(90deg, var(--green), rgba(217, 203, 182, 0.44), var(--cyan), var(--red));
  opacity: 0.48;
}

.state {
  position: relative;
  min-height: 260px;
  padding: 26px 20px 24px;
  border-right: 1px solid var(--line-soft);
}

.state::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 71px;
  width: 12px;
  height: 12px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.45;
}

.state:last-child {
  border-right: 0;
}

.state span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 60px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: var(--black);
  font-family: var(--font-data);
}

.state-recommended span { color: var(--green); }
.state-mentioned span { color: var(--silver); }
.state-replaced span { color: var(--cyan); }
.state-misread span { color: var(--red); }

.state p {
  color: var(--silver);
  line-height: 1.66;
}

.answer-slice {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(217, 203, 182, 0.042), transparent),
    rgba(13, 15, 18, 0.82);
}

.answer-slice::before,
.answer-slice::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  opacity: 0.7;
}

.answer-slice::before {
  left: 12px;
  top: 12px;
  border-left: 1px solid rgba(217, 203, 182, 0.28);
  border-top: 1px solid rgba(217, 203, 182, 0.28);
}

.answer-slice::after {
  right: 12px;
  bottom: 12px;
  border-right: 1px solid rgba(217, 203, 182, 0.18);
  border-bottom: 1px solid rgba(217, 203, 182, 0.18);
}

.slice-state {
  position: absolute;
  right: 20px;
  top: 22px;
  color: var(--muted);
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.answer-slice h3 {
  margin: 20px 0 24px;
}

.answer-slice dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.answer-slice div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.answer-slice dt {
  margin-bottom: 7px;
  color: var(--cyan);
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.answer-slice dd {
  margin: 0;
  color: var(--silver);
  line-height: 1.6;
}

.risk-text {
  color: var(--red) !important;
}

.annotation-board {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(86, 196, 207, 0.07), transparent 34%),
    linear-gradient(180deg, rgba(217, 203, 182, 0.035), transparent),
    rgba(13, 15, 18, 0.84);
  background-size: auto;
  box-shadow: inset 0 0 0 1px rgba(242, 239, 231, 0.02);
}

.annotation-board::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(242, 239, 231, 0.04);
  pointer-events: none;
}

.answer-sample {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(430px, 64vw);
  padding: 24px;
  border: 1px solid rgba(217, 203, 182, 0.18);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(217, 203, 182, 0.05), transparent),
    rgba(8, 9, 11, 0.86);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
}

.answer-sample p {
  color: var(--silver);
  line-height: 1.72;
}

.annotation {
  position: absolute;
  min-width: 150px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(8, 9, 11, 0.72);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.annotation::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 1px;
  background: rgba(217, 203, 182, 0.34);
}

.annotation span,
.annotation small {
  display: block;
}

.annotation span {
  margin-bottom: 6px;
  font-weight: 700;
}

.annotation small {
  color: var(--silver);
}

.annotation-visibility {
  left: 8%;
  top: 24%;
}

.annotation-visibility::after {
  right: -106px;
  top: 50%;
}

.annotation-position {
  right: 8%;
  top: 22%;
}

.annotation-position::after {
  left: -106px;
  top: 50%;
}

.annotation-competitor {
  left: 10%;
  bottom: 24%;
}

.annotation-competitor::after {
  right: -106px;
  top: 50%;
}

.annotation-source {
  right: 10%;
  bottom: 26%;
}

.annotation-source::after {
  left: -106px;
  top: 50%;
}

.annotation-risk {
  left: 50%;
  bottom: 8%;
  border-color: rgba(224, 90, 71, 0.5);
  transform: translateX(-50%);
}

.annotation-risk::after {
  left: 50%;
  top: -70px;
  width: 1px;
  height: 70px;
  background: rgba(224, 90, 71, 0.58);
}

.method-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(217, 203, 182, 0.14);
  border-bottom: 1px solid rgba(217, 203, 182, 0.14);
  list-style: none;
  background: linear-gradient(180deg, rgba(17, 19, 24, 0.32), rgba(8, 9, 11, 0.14));
}

.method-line li {
  position: relative;
  min-height: 230px;
  padding: 24px 18px;
  border-right: 1px solid var(--line-soft);
}

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

.method-line li::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 203, 182, 0.46), transparent);
}

.method-line li::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 67px;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(217, 203, 182, 0.5);
  border-radius: 50%;
  background: var(--black);
  box-shadow: 0 0 14px rgba(217, 203, 182, 0.16);
}

.method-line span {
  color: var(--paper);
  font-family: var(--font-data);
  font-size: 12px;
}

.method-line strong,
.method-line em {
  display: block;
}

.method-line strong {
  margin-top: 76px;
  line-height: 1.45;
}

.method-line em {
  margin-top: 14px;
  color: var(--silver);
  font-style: normal;
  font-size: 13px;
}

.sample-disclaimer {
  max-width: 800px;
  padding: 14px 16px;
  border: 1px solid rgba(217, 203, 182, 0.16);
  border-radius: 4px;
  background: rgba(217, 203, 182, 0.045);
  box-shadow: inset 0 0 0 1px rgba(242, 239, 231, 0.018);
}

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

.cta-section {
  align-items: start;
  padding-top: clamp(96px, 12vw, 150px);
  border-top: 1px solid rgba(217, 203, 182, 0.12);
}

.cta-proof {
  display: grid;
  gap: 0;
  max-width: 620px;
  margin-top: 34px;
  border-top: 1px solid rgba(217, 203, 184, 0.14);
  border-bottom: 1px solid rgba(217, 203, 184, 0.14);
}

.cta-proof div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(217, 203, 184, 0.1);
}

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

.cta-proof span {
  color: var(--paper);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.cta-proof strong {
  color: var(--bone);
  font-size: 18px;
  line-height: 1.45;
}

.observe-form {
  --bone: var(--paper-ink);
  --silver: #3d3c36;
  --muted: var(--paper-muted);
  --paper: #705f43;
  --cyan: #0b6f78;
  --red: #a14a3d;
  --green: #55735a;
  display: grid;
  gap: 18px;
  padding: 28px 30px 32px;
  border: 1px solid rgba(34, 28, 20, 0.18);
  border-radius: 2px;
  color: var(--paper-ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 40%),
    repeating-linear-gradient(0deg, rgba(34, 28, 20, 0.022) 0, rgba(34, 28, 20, 0.022) 1px, transparent 1px, transparent 6px),
    var(--paper-surface);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.form-coverline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(34, 28, 20, 0.12);
  color: var(--paper-muted);
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.observe-form h3 {
  margin-bottom: 0;
  color: var(--paper-ink);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.16;
}

.observe-form p {
  color: var(--paper-muted);
  line-height: 1.6;
}

.observe-form label {
  display: grid;
  gap: 8px;
}

.observe-form label span {
  color: #5a4d37;
  font-size: 13px;
  font-weight: 650;
}

.observe-form input,
.observe-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(34, 28, 20, 0.24);
  border-radius: 0;
  color: var(--paper-ink);
  background: rgba(34, 28, 20, 0.035);
  outline: none;
}

.observe-form input::placeholder,
.observe-form textarea::placeholder {
  color: rgba(103, 99, 87, 0.82);
}

.observe-form input {
  min-height: 44px;
  padding: 0 12px;
}

.observe-form textarea {
  resize: vertical;
  padding: 12px;
}

.observe-form input:focus,
.observe-form textarea:focus {
  border-color: rgba(11, 111, 120, 0.78);
}

.observe-form textarea[aria-invalid="true"] {
  border-color: rgba(161, 74, 61, 0.78);
  box-shadow: inset 0 0 0 1px rgba(161, 74, 61, 0.14);
}

.form-hint {
  justify-self: end;
  color: #6f675b;
  font-family: var(--font-data);
  font-size: 11px;
}

.form-hint.is-warn {
  color: var(--red);
}

.form-submit {
  width: min(240px, 100%);
  margin-top: 4px;
  border-radius: 0;
  border-color: var(--paper-ink);
  color: var(--paper-surface);
  background: var(--paper-ink);
}

.form-submit:hover {
  color: var(--paper-surface);
  background: #050504;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--paper-muted) !important;
  font-size: 13px;
}

.form-status.is-success {
  color: var(--green) !important;
}

.form-status.is-error {
  color: var(--red) !important;
}

.observe-form.is-submitted {
  border-color: rgba(85, 115, 90, 0.42);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(85, 115, 90, 0.14);
}

.lab-section {
  padding-top: 0;
}

.lab-line {
  padding: 28px;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--cyan);
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 22px;
  width: min(1200px, calc(100vw - 44px));
  margin: 0 auto;
  padding: 42px 0 56px;
  border-top: 1px solid var(--line);
  color: var(--silver);
  font-size: 14px;
}

.site-footer strong {
  color: var(--bone);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.site-footer a:hover {
  color: var(--cyan);
}

.site-footer p,
.site-footer span {
  margin: 0;
}

.noscript-note {
  width: min(1200px, calc(100vw - 44px));
  margin: 0 auto 28px;
  padding: 12px 14px;
  border: 1px solid rgba(57, 213, 232, 0.24);
  border-radius: 4px;
  color: var(--silver);
  background: rgba(17, 19, 24, 0.78);
  font-size: 13px;
  line-height: 1.6;
}

.mobile-copy {
  display: none;
}

/* Report-mode sections: reduce product UI and make the middle read like an intelligence brief. */
.question-lab {
  min-height: auto;
  padding: 0;
  border-inline: 0;
  border-radius: 0;
  background: transparent;
}

.question-lab::before,
.question-sample::after {
  display: none;
}

.question-sample {
  grid-template-columns: 82px 1fr;
  min-height: 72px;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid rgba(217, 203, 182, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.question-sample:last-of-type {
  border-bottom: 1px solid rgba(217, 203, 182, 0.14);
}

.question-sample span {
  justify-self: start;
  color: var(--paper);
}

.question-sample p {
  color: var(--silver);
  font-size: 17px;
}

.question-blackbox {
  position: relative;
  right: auto;
  bottom: auto;
  display: block;
  width: auto;
  height: auto;
  margin-top: 24px;
  padding-top: 16px;
  border: 0;
  border-top: 1px solid rgba(86, 196, 207, 0.36);
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  letter-spacing: 0.08em;
}

.status-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.status-axis {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 0;
  border-top: 1px solid rgba(217, 203, 182, 0.16);
  border-bottom: 1px solid rgba(217, 203, 182, 0.16);
  background: transparent;
}

.status-axis::before {
  display: none;
}

.state {
  min-height: 0;
  padding: 22px 22px 24px 0;
  border-right: 0;
  border-left: 1px solid rgba(217, 203, 182, 0.12);
}

.state:first-child {
  border-left: 0;
}

.state::after {
  display: none;
}

.state span {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 18px;
}

.state h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.compact-slice {
  width: min(620px, 100%);
  margin-left: auto;
  border-inline: 0;
  border-radius: 0;
  background: transparent;
}

.annotation-board {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0;
  min-height: auto;
  border-inline: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.annotation-board::before {
  display: none;
}

.answer-sample,
.annotation {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  width: auto;
  min-width: 0;
  transform: none;
  border: 0;
  border-top: 1px solid rgba(217, 203, 182, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.answer-sample {
  grid-row: span 5;
  padding: 22px 40px 22px 0;
  border-bottom: 1px solid rgba(217, 203, 182, 0.14);
}

.annotation {
  padding: 18px 0 18px 24px;
  border-left: 1px solid rgba(217, 203, 182, 0.12);
}

.annotation::after {
  display: none;
}

.annotation-risk {
  border-color: rgba(217, 203, 182, 0.14);
}

.method-line {
  display: grid;
  grid-template-columns: 1fr;
  border: 0;
  background: transparent;
}

.method-line li {
  display: grid;
  grid-template-columns: 80px minmax(0, 0.86fr) minmax(180px, 0.4fr);
  align-items: baseline;
  min-height: 0;
  padding: 22px 0;
  border-right: 0;
  border-bottom: 1px solid rgba(217, 203, 182, 0.14);
}

.method-line li:first-child {
  border-top: 1px solid rgba(217, 203, 182, 0.14);
}

.method-line li::before,
.method-line li::after {
  display: none;
}

.method-line strong {
  margin-top: 0;
  font-size: 22px;
}

.method-line em {
  margin-top: 0;
  text-align: right;
}

.sample-disclaimer {
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid rgba(217, 203, 182, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sample-report-section,
.decision-section {
  padding: clamp(86px, 11vw, 136px) 0;
}

.sample-report {
  --bone: var(--paper-ink);
  --silver: #3d3c36;
  --muted: var(--paper-muted);
  --paper: #705f43;
  --cyan: #0d6d75;
  --red: #a14a3d;
  --green: #55735a;
  padding: 0 clamp(20px, 3vw, 36px);
  border: 1px solid var(--paper-line);
  border-radius: 2px;
  color: var(--paper-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0) 46%),
    repeating-linear-gradient(0deg, rgba(34, 28, 20, 0.026) 0, rgba(34, 28, 20, 0.026) 1px, transparent 1px, transparent 6px),
    var(--paper-surface);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.sample-report .report-coverline,
.sample-report .report-summary,
.sample-report .report-kpis,
.sample-report .report-table,
.sample-report .report-evidence,
.sample-report .report-actions {
  border-color: var(--paper-line);
}

.sample-report .report-kpis div,
.sample-report .report-row,
.sample-report .evidence-cards,
.sample-report .evidence-cards article,
.sample-report .evidence-cards div {
  border-color: rgba(34, 28, 20, 0.12);
}

.report-coverline,
.report-summary,
.report-kpis,
.report-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 1fr);
  gap: 28px;
}

.report-coverline {
  padding: 18px 0;
  color: var(--muted);
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(217, 203, 182, 0.12);
}

.report-coverline span:last-child {
  text-align: right;
}

.report-summary {
  padding: 34px 0;
  border-bottom: 1px solid rgba(217, 203, 182, 0.12);
}

.report-label,
.report-verdict span,
.report-kpis span,
.report-actions span {
  color: var(--paper);
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.report-summary h3 {
  max-width: 520px;
  margin: 12px 0 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
}

.report-verdict {
  align-self: end;
  padding-left: 28px;
  border-left: 1px solid rgba(217, 203, 182, 0.14);
}

.report-verdict strong {
  display: block;
  max-width: 560px;
  margin-top: 12px;
  color: var(--bone);
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.18;
}

.report-kpis {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 24px 0;
  border-bottom: 1px solid rgba(217, 203, 182, 0.12);
}

.report-kpis div {
  min-height: 124px;
  padding-right: 18px;
  border-right: 1px solid rgba(217, 203, 182, 0.1);
}

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

.report-kpis strong,
.report-kpis small {
  display: block;
}

.report-kpis strong {
  margin-top: 22px;
  color: var(--bone);
  font-size: 24px;
  line-height: 1.2;
}

.report-kpis small {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.report-table {
  padding: 18px 0;
  border-bottom: 1px solid rgba(217, 203, 182, 0.12);
}

.report-row {
  display: grid;
  grid-template-columns: 150px 1.1fr 1fr 1fr;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid rgba(217, 203, 182, 0.1);
  color: var(--silver);
}

.report-row-head {
  color: var(--paper);
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.08em;
  border-top: 0;
}

.report-evidence {
  padding: 30px 0;
  border-bottom: 1px solid rgba(217, 203, 182, 0.12);
}

.report-evidence-head {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 22px;
}

.report-evidence-head span,
.evidence-id {
  color: var(--paper);
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.report-evidence-head p {
  max-width: 640px;
  margin: 0;
  color: var(--silver);
  line-height: 1.7;
}

.evidence-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(217, 203, 182, 0.12);
  border-bottom: 1px solid rgba(217, 203, 182, 0.12);
}

.evidence-cards article {
  min-height: 300px;
  padding: 24px 22px;
  border-right: 1px solid rgba(217, 203, 182, 0.1);
}

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

.evidence-cards h4 {
  margin: 54px 0 12px;
  color: var(--bone);
  font-size: 22px;
  line-height: 1.28;
}

.evidence-cards p {
  margin: 0;
  color: var(--silver);
  line-height: 1.68;
}

.evidence-cards dl {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.evidence-cards div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(217, 203, 182, 0.1);
}

.evidence-cards dt {
  color: var(--paper);
  font-size: 13px;
}

.evidence-cards dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.report-actions {
  padding: 26px 0 30px;
}

.report-actions p {
  max-width: 760px;
  margin: 0;
  color: var(--bone);
  font-size: 22px;
  line-height: 1.55;
}

.report-action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.report-action-links a {
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--paper);
  font-size: 14px;
  font-weight: 700;
}

.report-action-links a:last-child {
  color: var(--cyan);
}

.decision-list {
  border-top: 1px solid rgba(217, 203, 182, 0.16);
}

.compressed-section {
  padding-top: clamp(70px, 9vw, 112px);
  padding-bottom: clamp(70px, 9vw, 112px);
}

.compressed-brief {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
}

.compact-decision-list article {
  grid-template-columns: 58px minmax(0, 0.72fr) minmax(260px, 1fr);
  gap: 18px;
  padding: 20px 0;
}

.compact-decision-list h3 {
  font-size: 22px;
}

.compact-decision-list p {
  font-size: 16px;
  line-height: 1.58;
}

.chain-panel {
  position: sticky;
  top: 104px;
  padding-top: 20px;
  border-top: 1px solid rgba(217, 203, 182, 0.16);
}

.chain-panel h3 {
  max-width: 360px;
  margin: 16px 0 24px;
  font-size: 32px;
  line-height: 1.14;
}

.decision-list article {
  display: grid;
  grid-template-columns: 90px minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(217, 203, 182, 0.14);
}

.decision-list span,
.evidence-chain span {
  color: var(--paper);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.decision-list h3 {
  margin: 0;
  font-size: 26px;
}

.decision-list p {
  margin: 0;
  color: var(--silver);
  font-size: 18px;
  line-height: 1.65;
}

.evidence-chain {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(217, 203, 182, 0.16);
  border-bottom: 1px solid rgba(217, 203, 182, 0.16);
  list-style: none;
}

.evidence-chain li {
  min-height: 240px;
  padding: 24px 18px;
  border-right: 1px solid rgba(217, 203, 182, 0.12);
}

.evidence-chain li:last-child {
  border-right: 0;
}

.evidence-chain p {
  margin: 86px 0 0;
  color: var(--silver);
  line-height: 1.65;
}

.compact-chain {
  grid-template-columns: 1fr;
  border-bottom: 0;
}

.compact-chain li {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  min-height: auto;
  padding: 18px 0;
  border-right: 0;
  border-bottom: 1px solid rgba(217, 203, 182, 0.12);
}

.compact-chain li:last-child {
  border-bottom: 0;
}

.compact-chain p {
  margin: 0;
  font-size: 15px;
  line-height: 1.58;
}

.question-section,
.status-section,
.observe-section,
.method-section,
.slices-section {
  padding-top: clamp(66px, 8vw, 104px);
  padding-bottom: clamp(66px, 8vw, 104px);
}

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

.answer-slice {
  display: grid;
  grid-template-columns: 160px minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 24px;
  padding: 26px 0;
  border: 0;
  border-bottom: 1px solid rgba(217, 203, 182, 0.14);
  border-radius: 0;
  background: transparent;
}

.answer-slice::before,
.answer-slice::after {
  display: none;
}

.slice-state {
  position: static;
  grid-column: 1;
  align-self: end;
  color: var(--muted);
}

.answer-slice h3 {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
}

.answer-slice dl {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.answer-slice div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 16px;
  padding-top: 10px;
  border-top-color: rgba(217, 203, 182, 0.1);
}

.answer-slice dt {
  color: var(--paper);
}

.lab-line {
  padding: 28px 0 0;
  border-inline: 0;
  border-radius: 0;
  background: transparent;
}

body.report-page-body {
  color-scheme: light;
  --black: #ece5d8;
  --ink: #171614;
  --panel: #e5dccd;
  --line: rgba(30, 25, 18, 0.18);
  --line-soft: rgba(30, 25, 18, 0.12);
  --bone: #171614;
  --silver: #4f514b;
  --muted: #747064;
  --cyan: #0b6f78;
  --red: #9e4438;
  --green: #536f58;
  --paper: #725f3f;
  --paper-surface: #f0e8da;
  --paper-line: rgba(30, 25, 18, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.38), transparent 28%, rgba(112, 95, 67, 0.08) 72%, transparent),
    linear-gradient(180deg, #f1eadf 0%, #e7ddce 100%);
}

body.report-page-body::before {
  background:
    repeating-linear-gradient(0deg, rgba(30, 25, 18, 0.028) 0, rgba(30, 25, 18, 0.028) 1px, transparent 1px, transparent 5px),
    linear-gradient(90deg, rgba(30, 25, 18, 0.03) 1px, transparent 1px);
  background-size: auto, 104px 104px;
  opacity: 0.72;
}

.report-page-body .site-header {
  border-bottom-color: rgba(30, 25, 18, 0.16);
  background: rgba(238, 231, 218, 0.88);
  box-shadow: none;
}

.report-page-body .site-header.is-scrolled {
  border-bottom-color: rgba(30, 25, 18, 0.22);
  background: rgba(238, 231, 218, 0.94);
  box-shadow: 0 14px 42px rgba(50, 40, 28, 0.1);
}

.report-page-body .menu-button {
  border-color: rgba(30, 25, 18, 0.2);
  color: var(--bone);
}

.report-page-body .site-nav {
  color: var(--silver);
}

.report-page-body .site-nav a:hover,
.report-page-body .text-link {
  color: var(--cyan);
}

.report-page-body .nav-cta {
  color: var(--bone) !important;
}

.report-page-body .site-nav a.is-active {
  color: var(--bone);
}

.report-page-body .site-nav a.is-active::after {
  background: linear-gradient(90deg, transparent, rgba(11, 111, 120, 0.7), transparent);
}

.report-page-body .site-nav.is-open {
  border-color: rgba(30, 25, 18, 0.18);
  background: #eee7da;
}

.report-page-body .site-nav.is-open a {
  border-bottom-color: rgba(30, 25, 18, 0.12);
}

.report-page-body .button.primary {
  border-color: var(--paper-ink);
  color: var(--paper-surface);
  background: var(--paper-ink);
}

.report-page-body .button.primary:hover {
  background: #050504;
}

.report-page-body .button.secondary {
  border-color: rgba(30, 25, 18, 0.22);
  color: var(--paper-ink);
  background: rgba(255, 255, 255, 0.22);
}

.report-page-body .site-footer {
  border-top-color: rgba(30, 25, 18, 0.16);
  color: var(--silver);
}

.report-page-body .site-footer strong {
  color: var(--bone);
}

.report-page {
  padding-bottom: clamp(42px, 7vw, 86px);
}

.report-page-hero {
  padding: clamp(64px, 8vw, 108px) 0 clamp(46px, 7vw, 72px);
  border-bottom: 1px solid rgba(217, 203, 182, 0.16);
}

.report-page-body .report-page-hero,
.report-page-body .report-detail-section,
.report-page-body .report-meta-strip,
.report-page-body .report-findings,
.report-page-body .detail-table,
.report-page-body .report-chain,
.report-page-body .action-ledger {
  border-color: var(--paper-line);
}

.report-page-body .report-meta-strip div,
.report-page-body .report-findings article,
.report-page-body .detail-row,
.report-page-body .report-chain li,
.report-page-body .action-ledger article {
  border-color: rgba(30, 25, 18, 0.13);
}

.report-page-body .risk-text {
  color: var(--red);
}

.report-page-hero.reveal,
.report-page-hero.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.report-page h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(50px, 7vw, 88px);
}

.report-page-hero > p {
  max-width: 780px;
  color: var(--silver);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.78;
}

.report-meta-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(42px, 6vw, 70px);
  border-top: 1px solid rgba(217, 203, 182, 0.16);
  border-bottom: 1px solid rgba(217, 203, 182, 0.16);
}

.report-meta-strip div {
  min-height: 146px;
  padding: 22px 20px 24px 0;
  border-right: 1px solid rgba(217, 203, 182, 0.1);
}

.report-meta-strip div:last-child {
  border-right: 0;
}

.report-meta-strip span,
.report-detail-heading .eyebrow,
.detail-row-head,
.report-chain span,
.action-ledger span {
  color: var(--paper);
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.report-meta-strip strong {
  display: block;
  margin-top: 42px;
  color: var(--bone);
  font-size: 22px;
  line-height: 1.25;
}

.report-detail-section {
  padding: clamp(76px, 10vw, 118px) 0;
  border-bottom: 1px solid rgba(217, 203, 182, 0.12);
}

.report-detail-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 32px;
  margin-bottom: 34px;
}

.report-detail-heading h2 {
  margin-bottom: 0;
}

.report-findings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(217, 203, 182, 0.16);
  border-bottom: 1px solid rgba(217, 203, 182, 0.16);
}

.report-findings article {
  min-height: 260px;
  padding: 24px 22px 26px 0;
  border-right: 1px solid rgba(217, 203, 182, 0.1);
}

.report-findings article:last-child {
  border-right: 0;
}

.report-findings span {
  color: var(--paper);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.report-findings p {
  margin: 82px 0 0;
  color: var(--bone);
  font-size: 22px;
  line-height: 1.55;
}

.detail-table {
  border-top: 1px solid rgba(217, 203, 182, 0.16);
  border-bottom: 1px solid rgba(217, 203, 182, 0.16);
}

.detail-row {
  display: grid;
  grid-template-columns: 140px minmax(320px, 1.1fr) minmax(220px, 0.72fr) minmax(140px, 0.44fr);
  gap: 22px;
  padding: 18px 0;
  border-top: 1px solid rgba(217, 203, 182, 0.1);
  color: var(--silver);
  line-height: 1.6;
}

.detail-row-head {
  border-top: 0;
  line-height: 1.3;
}

.report-chain {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(217, 203, 182, 0.16);
  border-bottom: 1px solid rgba(217, 203, 182, 0.16);
  list-style: none;
}

.report-chain li {
  min-height: 260px;
  padding: 24px 18px;
  border-right: 1px solid rgba(217, 203, 182, 0.1);
}

.report-chain li:last-child {
  border-right: 0;
}

.report-chain p {
  margin: 92px 0 0;
  color: var(--silver);
  line-height: 1.65;
}

.action-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(217, 203, 182, 0.16);
}

.action-ledger article {
  display: grid;
  grid-template-columns: 70px minmax(0, 0.62fr) minmax(260px, 1fr);
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(217, 203, 182, 0.12);
}

.action-ledger article:nth-child(odd) {
  padding-right: 24px;
  border-right: 1px solid rgba(217, 203, 182, 0.1);
}

.action-ledger article:nth-child(even) {
  padding-left: 24px;
}

.action-ledger h3 {
  margin: 0;
  font-size: 24px;
}

.action-ledger p {
  margin: 0;
  color: var(--silver);
  line-height: 1.62;
}

.report-page-cta {
  padding: clamp(76px, 10vw, 118px) 0 0;
}

.report-page-cta h2 {
  max-width: 860px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.blackbox-visual.reveal,
.blackbox-visual.reveal.is-visible,
.specimen-visual.reveal,
.specimen-visual.reveal.is-visible,
.briefing-visual.reveal,
.briefing-visual.reveal.is-visible {
  transform: none;
}

.motion-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms ease var(--delay, 0ms), transform 620ms ease var(--delay, 0ms), border-color 220ms ease;
}

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

@media (max-width: 1040px) {
  .section-grid,
  .status-layout,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .blackbox-visual {
    min-height: 420px;
  }

  .specimen-visual {
    min-height: 600px;
  }

  .briefing-visual {
    min-height: 580px;
  }

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

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

  .method-line li {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

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

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

  .report-meta-strip div:nth-child(even) {
    border-right: 0;
  }

  .report-findings,
  .report-chain,
  .action-ledger {
    grid-template-columns: 1fr;
  }

  .report-findings article,
  .report-chain li,
  .action-ledger article:nth-child(odd),
  .action-ledger article:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .detail-table {
    overflow-x: auto;
  }

  .detail-row {
    min-width: 900px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    padding: 0 16px;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #0c0e12;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    position: static;
    padding: 12px;
    border-bottom: 1px solid var(--line-soft);
  }

  .site-nav a.is-active {
    color: var(--cyan);
  }

  .site-nav a.is-active::after {
    display: none;
  }

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

  .nav-cta {
    border: 0;
    border-radius: 0;
  }

  .section-grid,
  .section-wrap {
    width: min(100vw - 28px, 560px);
  }

  .hero {
    min-height: auto;
    padding: 58px 0 70px;
  }

  h1 {
    font-size: clamp(38px, 11.2vw, 46px);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(28px, 8.2vw, 34px);
  }

  .desktop-copy,
  .desktop-field {
    display: none !important;
  }

  .mobile-copy {
    display: inline;
  }

  .hero-lede,
  .section-copy p,
  .section-head p,
  .cta-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    width: 100%;
    padding-inline: 10px;
  }

  .blackbox-visual {
    min-height: 360px;
  }

  .specimen-visual {
    min-height: 700px;
    padding: 18px;
  }

  .briefing-visual {
    min-height: 740px;
  }

  .briefing-visual::before {
    left: 22px;
    right: 2px;
    top: 34px;
    bottom: 12px;
  }

  .briefing-cover {
    padding: 18px;
  }

  .briefing-cover::before {
    inset: 10px;
  }

  .briefing-cover::after {
    left: 18px;
    right: 18px;
    bottom: 178px;
  }

  .briefing-top {
    font-size: 10px;
  }

  .briefing-mark {
    right: 18px;
    top: 62px;
    font-size: 42px;
  }

  .briefing-title {
    margin-top: 74px;
  }

  .briefing-title p {
    font-size: 28px;
  }

  .briefing-question {
    left: 18px;
    right: 18px;
    bottom: 394px;
  }

  .briefing-question strong {
    font-size: 16px;
  }

  .briefing-snapshot {
    left: 18px;
    right: 18px;
    bottom: 288px;
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .briefing-snapshot strong {
    font-size: 20px;
  }

  .briefing-snapshot small {
    align-self: start;
  }

  .briefing-measure {
    left: 18px;
    right: 18px;
    bottom: 224px;
  }

  .measure-point {
    font-size: 11px;
  }

  .point-left {
    left: 0;
  }

  .point-center {
    left: 34%;
  }

  .briefing-notes {
    left: 18px;
    right: 18px;
    bottom: 18px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .briefing-notes p {
    padding-top: 10px;
  }

  .specimen-visual::before {
    inset: 10px;
  }

  .specimen-header {
    font-size: 10px;
  }

  .specimen-question {
    width: 100%;
    margin-top: 28px;
  }

  .specimen-question p {
    font-size: 18px;
  }

  .specimen-stack {
    left: 18px;
    right: 18px;
    top: 138px;
    height: 318px;
  }

  .specimen-layer {
    width: 88%;
    min-height: 104px;
    padding: 14px;
  }

  .specimen-layer::before {
    display: none;
  }

  .specimen-layer p {
    margin: 10px 0 12px;
    font-size: 14px;
  }

  .layer-front {
    left: 0;
    top: 0;
  }

  .layer-middle {
    left: 22px;
    top: 84px;
  }

  .layer-back {
    left: 44px;
    top: 168px;
  }

  .offset-field {
    left: 18px;
    right: 18px;
    bottom: 102px;
    height: 112px;
  }

  .field-dot {
    font-size: 11px;
  }

  .dot-current {
    left: 12%;
  }

  .dot-competitor {
    left: 42%;
  }

  .dot-risk {
    right: 0;
  }

  .evidence-strip {
    left: 18px;
    right: 18px;
    bottom: 18px;
    grid-template-columns: 1fr 1fr;
  }

  .visual-readout {
    left: 12px;
    right: 12px;
    top: 10px;
    font-size: 8px;
  }

  .signal-line {
    left: 18px;
    top: 64px;
    font-size: 10px;
  }

  .signal-line i {
    width: 72px;
  }

  .blackbox {
    left: 56%;
    top: 44px;
    width: 150px;
    height: 116px;
  }

  .box-label {
    left: 12px;
    top: 12px;
    font-size: 11px;
  }

  .source-tag {
    left: 12px;
    font-size: 9px;
  }

  .output-ray {
    left: 52%;
    width: 90px;
    opacity: 0.38;
  }

  .ray-c {
    display: none;
  }

  .coordinate-plane {
    left: 18px;
    right: 18px;
    bottom: 26px;
    height: 176px;
  }

  .plane-label {
    top: -20px;
    font-size: 8px;
  }

  .coord-point {
    font-size: 10px;
  }

  .coord-point em {
    max-width: 120px;
  }

  .slice-state {
    position: static;
    display: block;
    margin-top: 8px;
  }

  .question-lab {
    min-height: auto;
    padding: 16px;
  }

  .question-sample {
    grid-template-columns: 44px 1fr;
  }

  .question-sample::after,
  .question-blackbox {
    display: none;
  }

  .status-axis {
    grid-template-columns: 1fr;
  }

  .status-axis::before {
    left: 17px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(var(--green), var(--silver), var(--cyan), var(--red));
  }

  .state {
    display: grid;
    grid-template-columns: 44px 1fr;
    min-height: auto;
    padding: 18px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .state::after {
    left: 17px;
    top: 53px;
  }

  .state:last-child {
    border-bottom: 0;
  }

  .state span {
    margin-bottom: 0;
  }

  .state h3 {
    margin-bottom: 8px;
  }

  .state p {
    grid-column: 2;
  }

  .annotation-board {
    display: grid;
    gap: 10px;
    min-height: auto;
    padding: 14px;
  }

  .answer-sample,
  .annotation {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    min-width: 0;
    transform: none;
  }

  .annotation::after {
    display: none;
  }

  .annotation-board::before {
    inset: 8px;
  }

  .method-line strong {
    margin-top: 52px;
  }

  .observe-form {
    padding: 22px 18px 24px;
    border: 1px solid rgba(34, 28, 20, 0.18);
  }

  .form-coverline {
    flex-direction: column;
    gap: 6px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .question-sample {
    grid-template-columns: 56px 1fr;
    min-height: 68px;
  }

  .status-axis {
    grid-template-columns: 1fr;
  }

  .state {
    display: block;
    padding: 20px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(217, 203, 182, 0.12);
  }

  .state span {
    margin-bottom: 14px;
  }

  .state p {
    grid-column: auto;
  }

  .annotation-board {
    grid-template-columns: 1fr;
  }

  .answer-sample {
    grid-row: auto;
    padding: 18px 0;
  }

  .annotation {
    padding: 16px 0;
    border-left: 0;
  }

  .method-line li {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .method-line em {
    grid-column: 2;
    text-align: left;
  }

  .answer-slice {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .slice-state,
  .answer-slice h3,
  .answer-slice dl {
    grid-column: auto;
    grid-row: auto;
  }

  .answer-slice div {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .report-coverline,
  .report-summary,
  .report-actions {
    grid-template-columns: 1fr;
  }

  .report-coverline span:last-child {
    text-align: left;
  }

  .report-verdict {
    padding-left: 0;
    border-left: 0;
  }

  .report-kpis {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .report-kpis div {
    min-height: 118px;
    padding: 18px 12px 18px 0;
    border-top: 1px solid rgba(217, 203, 182, 0.1);
  }

  .report-kpis div:nth-child(even) {
    border-right: 0;
  }

  .report-table {
    overflow-x: auto;
  }

  .report-row {
    min-width: 780px;
  }

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

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

  .evidence-cards article {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(217, 203, 182, 0.12);
  }

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

  .evidence-cards h4 {
    margin-top: 28px;
  }

  .report-actions p {
    font-size: 18px;
  }

  .report-page h1 {
    font-size: clamp(38px, 11.2vw, 48px);
  }

  .report-page-hero {
    padding-top: 58px;
  }

  .report-detail-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .report-meta-strip {
    grid-template-columns: 1fr;
  }

  .report-meta-strip div,
  .report-meta-strip div:nth-child(even) {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(217, 203, 182, 0.1);
  }

  .report-meta-strip div:last-child {
    border-bottom: 0;
  }

  .report-meta-strip strong,
  .report-findings p,
  .report-chain p {
    margin-top: 24px;
  }

  .report-findings article {
    min-height: auto;
    padding: 22px 0;
    border-bottom: 1px solid rgba(217, 203, 182, 0.12);
  }

  .report-findings article:last-child {
    border-bottom: 0;
  }

  .report-findings p {
    font-size: 18px;
  }

  .detail-row {
    min-width: 820px;
  }

  .report-chain li {
    min-height: auto;
    padding: 20px 0;
    border-bottom: 1px solid rgba(217, 203, 182, 0.12);
  }

  .report-chain li:last-child {
    border-bottom: 0;
  }

  .action-ledger article {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .action-ledger p {
    grid-column: 2;
  }

  .decision-list article {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .decision-list p {
    grid-column: 2;
    font-size: 16px;
  }

  .compressed-brief {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .chain-panel {
    position: static;
  }

  .chain-panel h3 {
    font-size: 26px;
  }

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

  .evidence-chain li {
    min-height: auto;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(217, 203, 182, 0.12);
  }

  .evidence-chain li:last-child {
    border-bottom: 0;
  }

  .evidence-chain p {
    margin-top: 24px;
  }

  .compact-chain li {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0;
  }

  .compact-chain p {
    margin-top: 0;
  }
}

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