:root {
  color-scheme: light;
  --ink: #10261c;
  --muted: #5d6a62;
  --paper: #f2efe5;
  --paper-deep: #e8e4d8;
  --panel: #fffdf7;
  --line: #cbd1c7;
  --line-dark: #93a096;
  --orange: #e86f32;
  --orange-dark: #bd4f1f;
  --green: #173d2c;
  --green-soft: #315e48;
  --mint: #d9e6d9;
  --red: #a13a2b;
  --shadow: 12px 14px 0 rgba(23, 61, 44, .1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); line-height: 1.5; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--panel);
  border: 2px solid var(--green);
  padding: 10px 14px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  min-height: 82px;
  padding: 0 clamp(22px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(242, 239, 229, .92);
  position: relative;
  z-index: 10;
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; text-decoration: none; font-size: .94rem; font-weight: 780; letter-spacing: -.015em; }
.brand-mark { width: 35px; height: 35px; border-radius: 50%; background: var(--green); display: grid; place-items: center; position: relative; }
.brand-mark span { width: 3px; height: 3px; border-radius: 50%; background: var(--panel); position: absolute; }
.brand-mark span:first-child { transform: translate(-7px, 4px); }
.brand-mark span:nth-child(2) { transform: translate(0, -6px); }
.brand-mark span:last-child { transform: translate(7px, 4px); }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; width: 10px; height: 1px; background: rgba(255, 253, 247, .7); transform-origin: left center; }
.brand-mark::before { transform: translate(-5px, -2px) rotate(54deg); }
.brand-mark::after { transform: translate(-5px, 3px) rotate(-54deg); }
.site-header nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 38px); }
.site-header nav a { color: #44564c; text-decoration: none; font-size: .79rem; font-weight: 700; }
.site-header nav a:hover { color: var(--orange-dark); }
.status-pill { justify-self: end; display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; border: 1px solid #b8c4ba; border-radius: 99px; font-size: .69rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; }
.status-pill i { width: 7px; height: 7px; border-radius: 50%; background: #3d8b5d; box-shadow: 0 0 0 3px rgba(61, 139, 93, .14); }
.status-pill.disabled i { background: #9a5e48; }

.hero { position: relative; min-height: 760px; overflow: hidden; padding: clamp(72px, 8vw, 120px) clamp(22px, 6.8vw, 110px) 82px; }
.hero::before { content: ""; position: absolute; z-index: -1; width: min(58vw, 860px); height: min(58vw, 860px); right: -18vw; top: -28vw; border: 1px solid #bac7bc; border-radius: 50%; box-shadow: 0 0 0 12vw rgba(222, 227, 216, .32), 0 0 0 calc(12vw + 1px) rgba(149, 163, 151, .25); }
.hero::after { content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%; right: 6vw; top: 47%; background: radial-gradient(circle at center, var(--orange) 0 4px, transparent 5px), repeating-radial-gradient(circle at center, transparent 0 15px, rgba(82, 107, 91, .25) 16px 17px); opacity: .75; }
.hero-copy { max-width: 1040px; position: relative; z-index: 1; }
.eyebrow { margin: 0 0 20px; color: var(--green-soft); text-transform: uppercase; letter-spacing: .14em; font-size: .69rem; font-weight: 820; }
.eyebrow span { display: inline-block; color: var(--orange-dark); margin-right: 16px; }
.eyebrow.light { color: #aec4b6; }
.hero h1, .section h2, .result-region h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.052em; }
.hero h1 { font-size: clamp(3.25rem, 7.4vw, 7.25rem); line-height: .91; max-width: 1040px; margin: 0; }
.hero h1 em { color: var(--orange-dark); font-weight: 400; }
.lede { max-width: 735px; margin: 35px 0 0; color: #40554a; font-size: clamp(1.05rem, 1.55vw, 1.32rem); line-height: 1.62; }
.proof-line { margin-top: 29px; display: flex; flex-wrap: wrap; gap: 10px 24px; color: #68776e; font-size: .77rem; font-weight: 690; }
.proof-line span { display: inline-flex; align-items: center; gap: 8px; }
.proof-line span::before { content: ""; width: 5px; height: 5px; background: var(--green-soft); border-radius: 50%; }

.check-shell { max-width: 940px; margin-top: 54px; background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; z-index: 2; }
.check-heading { padding: 23px 26px 18px; display: flex; justify-content: space-between; gap: 20px; align-items: start; border-bottom: 1px solid #d9ddd4; }
.card-kicker { color: var(--orange-dark); font-size: .68rem; font-weight: 820; letter-spacing: .13em; text-transform: uppercase; margin: 0 0 5px; }
.check-heading h2 { font-family: Georgia, serif; font-size: 1.65rem; font-weight: 400; margin: 0; letter-spacing: -.025em; }
.scope-chip { border: 1px solid #d1d6ce; color: #66736b; border-radius: 99px; padding: 6px 9px; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 750; }
#presence-form { padding: 25px 26px 21px; }
#presence-form > label:first-child { display: block; font-size: .78rem; font-weight: 780; margin-bottom: 8px; }
.input-row { display: grid; grid-template-columns: 43px minmax(0, 1fr) auto; min-height: 58px; border: 1px solid #8f9d93; background: white; }
.input-prefix { display: grid; place-items: center; color: var(--green-soft); border-right: 1px solid #d9ddd6; font-size: 1.1rem; }
.input-row input { min-width: 0; border: 0; outline: 0; padding: 0 16px; color: var(--ink); background: white; }
.input-row input:focus { box-shadow: inset 0 0 0 2px var(--green); }
.input-row input::placeholder { color: #8d9891; }
.input-row button { min-width: 206px; border: 0; border-left: 1px solid #b74f21; padding: 0 20px; background: var(--orange); color: #24140d; font-size: .79rem; font-weight: 850; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.input-row button:hover { background: #f07a3c; }
.input-row button:disabled { opacity: .57; cursor: wait; }
.input-row button b { font-size: 1rem; }
.field-help { color: #718078; font-size: .71rem; margin: 7px 0 15px; }
.consent { display: grid; grid-template-columns: 17px 1fr; align-items: start; gap: 10px; color: #4f5f56; font-size: .76rem; line-height: 1.5; cursor: pointer; }
.consent input { margin: 3px 0 0; accent-color: var(--green); }
.challenge-row { margin-top: 17px; padding-top: 17px; border-top: 1px solid #e0e2db; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.challenge-row > p { max-width: 310px; margin: 0; color: #718078; font-size: .67rem; line-height: 1.45; }
.form-error { color: var(--red); font-size: .78rem; font-weight: 700; margin: 12px 0 0; }
.trust-strip { border-top: 1px solid #d9ddd4; background: #f8f6ef; display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-strip span { min-height: 43px; display: flex; align-items: center; padding: 0 18px; color: #65736a; font-size: .67rem; font-weight: 680; }
.trust-strip span + span { border-left: 1px solid #d9ddd4; }
.trust-strip b { color: var(--green-soft); margin-right: 9px; font-size: .62rem; }

.section { padding: clamp(82px, 10vw, 150px) clamp(22px, 6.8vw, 110px); }
.section-intro h2, .mandate-section h2, .closing-section h2 { font-size: clamp(2.65rem, 5vw, 5.25rem); line-height: .98; margin: 0; }
.section-intro > p:last-child { color: var(--muted); max-width: 540px; font-size: 1rem; line-height: 1.68; margin-top: 25px; }

.process-section { background: var(--panel); display: grid; grid-template-columns: minmax(280px, .8fr) minmax(470px, 1.2fr); gap: clamp(55px, 10vw, 150px); border-block: 1px solid var(--line); }
.process-grid { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.process-grid li { display: grid; grid-template-columns: 52px 1fr auto; align-items: start; gap: 16px; padding: 25px 0; border-bottom: 1px solid var(--line); position: relative; }
.process-grid li::before { content: ""; position: absolute; top: -1px; left: 0; width: 0; height: 2px; background: var(--orange); transition: width .2s ease; }
.process-grid li:hover::before, .process-grid li.active::before { width: 52px; }
.step-number { color: var(--orange-dark); font-size: .7rem; font-weight: 820; letter-spacing: .1em; padding-top: 5px; }
.process-grid h3 { font-family: Georgia, serif; font-size: 1.65rem; font-weight: 400; margin: 0 0 7px; }
.process-grid p { color: var(--muted); font-size: .82rem; line-height: 1.55; margin: 0; max-width: 380px; }
.step-state { align-self: center; border: 1px solid #d1d6cf; border-radius: 99px; padding: 6px 9px; color: #748077; font-size: .59rem; text-transform: uppercase; letter-spacing: .07em; font-weight: 780; white-space: nowrap; }
.process-grid li.active .step-state { color: var(--green); border-color: #9eb2a5; background: var(--mint); }

.evidence-section { display: grid; grid-template-columns: minmax(420px, 1.15fr) minmax(300px, .85fr); align-items: center; gap: clamp(60px, 11vw, 170px); }
.evidence-board { background: var(--green); color: #dbe8df; padding: 28px; min-height: 430px; box-shadow: 18px 20px 0 rgba(23, 61, 44, .1); position: relative; overflow: hidden; }
.evidence-board::after { content: ""; position: absolute; width: 240px; height: 240px; right: -120px; bottom: -120px; border: 1px solid rgba(219, 232, 223, .23); border-radius: 50%; box-shadow: 0 0 0 42px rgba(219, 232, 223, .04), 0 0 0 43px rgba(219, 232, 223, .13); }
.board-top { display: flex; justify-content: space-between; color: #9eb5a7; font: 700 .6rem/1.2 ui-monospace, monospace; letter-spacing: .09em; padding-bottom: 24px; border-bottom: 1px solid rgba(220, 232, 223, .18); }
.signal-line { display: grid; grid-template-columns: 100px 1fr 70px; align-items: center; gap: 16px; min-height: 72px; border-bottom: 1px solid rgba(220, 232, 223, .14); font: .72rem/1.2 ui-monospace, monospace; }
.signal-line b { display: block; height: 2px; background: repeating-linear-gradient(90deg, rgba(218, 231, 222, .16) 0 5px, transparent 5px 9px); position: relative; }
.signal-line b::before { content: ""; position: absolute; height: 2px; left: 0; top: 0; width: 76%; background: #75a584; }
.signal-line b::after { content: ""; position: absolute; width: 7px; height: 7px; left: 76%; top: 50%; transform: translate(-50%, -50%); background: #b9d0bf; border-radius: 50%; box-shadow: 0 0 0 4px rgba(185, 208, 191, .11); }
.signal-line.warn b::before { width: 43%; background: var(--orange); }
.signal-line.warn b::after { left: 43%; background: #f39a69; }
.signal-line em { color: #acc1b3; font-style: normal; text-align: right; text-transform: uppercase; font-size: .58rem; letter-spacing: .08em; }
.board-note { margin-top: 28px; padding: 18px; background: rgba(255, 255, 255, .05); display: flex; justify-content: space-between; gap: 15px; color: #8fa99a; font: .6rem/1.2 ui-monospace, monospace; text-transform: uppercase; letter-spacing: .08em; }
.board-note code { color: #dce8df; }
.feature-list { list-style: none; padding: 0; margin: 38px 0 0; border-top: 1px solid var(--line); }
.feature-list li { display: grid; grid-template-columns: 43px 1fr; gap: 15px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.feature-list li > span { color: var(--orange-dark); font-size: .63rem; font-weight: 820; padding-top: 3px; }
.feature-list strong { display: block; font-family: Georgia, serif; font-size: 1.18rem; font-weight: 400; }
.feature-list small { display: block; color: var(--muted); margin-top: 3px; }

.mandate-section { background: var(--green); color: #f4f0e5; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 12vw, 180px); position: relative; overflow: hidden; }
.mandate-section::before { content: ""; position: absolute; width: 420px; height: 420px; left: -250px; bottom: -260px; border: 1px solid rgba(231, 240, 232, .18); border-radius: 50%; box-shadow: 0 0 0 55px rgba(231, 240, 232, .025), 0 0 0 56px rgba(231, 240, 232, .1); }
.mandate-copy { padding-top: 42px; }
.mandate-copy > p { color: #c4d3c9; font-size: 1.06rem; line-height: 1.7; margin: 0; max-width: 600px; }
.governance-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.governance-row span { border: 1px solid rgba(216, 230, 220, .28); border-radius: 99px; padding: 9px 12px; color: #d8e6dc; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 760; }

.closing-section { text-align: center; min-height: 580px; display: grid; place-content: center; justify-items: center; position: relative; overflow: hidden; }
.closing-section::before, .closing-section::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid #c4ccc3; }
.closing-section::before { width: 410px; height: 410px; left: -260px; top: 50px; }
.closing-section::after { width: 310px; height: 310px; right: -180px; bottom: -140px; box-shadow: 0 0 0 45px rgba(215, 221, 210, .25); }
.primary-link { margin-top: 38px; display: inline-flex; align-items: center; gap: 40px; padding: 17px 20px; background: var(--orange); border: 1px solid var(--orange-dark); text-decoration: none; font-size: .79rem; font-weight: 850; }
.primary-link:hover { background: #f0793b; }

.result-region { padding: clamp(65px, 8vw, 110px) clamp(22px, 6.8vw, 110px); background: var(--panel); border-top: 1px solid var(--line); scroll-margin-top: 20px; }
.run-panel { max-width: 940px; margin: 0 auto; border: 1px solid var(--line); padding: clamp(26px, 5vw, 52px); background: #f9f7f0; }
.progress-panel { display: grid; grid-template-columns: 1fr 160px; gap: 45px; }
.run-intro h2, .failed-panel h2 { margin: 8px 0 9px; font-size: clamp(2.1rem, 4vw, 3.8rem); }
.run-target { color: var(--muted); margin: 0; overflow-wrap: anywhere; }
.progress-orbit { width: 130px; height: 130px; border-radius: 50%; border: 1px solid #9daf9f; position: relative; animation: rotate 6s linear infinite; }
.progress-orbit::before, .progress-orbit::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid #d1d8cf; inset: 18px; }
.progress-orbit::after { inset: 40px; background: var(--green); border: 0; }
.progress-orbit span { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); top: 5px; left: 60px; }
.progress-orbit span:nth-child(2) { top: 92px; left: 9px; background: var(--green-soft); }
.progress-orbit span:nth-child(3) { top: 99px; left: 105px; background: #8ba18f; }
@keyframes rotate { to { transform: rotate(360deg); } }
.run-steps { grid-column: 1 / -1; list-style: none; padding: 0; margin: 20px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.run-steps li { padding: 18px 15px 0 0; opacity: .48; }
.run-steps li.active { opacity: 1; }
.run-steps span { color: var(--orange-dark); font-size: .62rem; font-weight: 800; }
.run-steps p { font-size: .72rem; color: var(--muted); margin: 7px 0 0; }
.result-header { display: flex; justify-content: space-between; gap: 30px; align-items: end; max-width: 1120px; margin: 0 auto; }
.result-header h2 { font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1; margin: 7px 0 11px; }
.verdict { flex: 0 0 auto; padding: 8px 12px; border: 1px solid #aac0af; background: #e8f0e8; border-radius: 99px; color: #2e6645; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 820; }
.verdict.attention { border-color: #d5ae98; background: #f8e9df; color: #9a431f; }
.summary-grid { max-width: 1120px; margin: 42px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.summary-metric { padding: 21px; background: #f8f6ef; }
.summary-metric + .summary-metric { border-left: 1px solid var(--line); }
.summary-metric strong { font-family: Georgia, serif; font-size: 2.2rem; font-weight: 400; display: block; line-height: 1; }
.summary-metric span { color: var(--muted); font-size: .66rem; text-transform: uppercase; letter-spacing: .07em; font-weight: 730; }
.summary-metric.good strong { color: #2f6c48; }
.summary-metric.warn strong { color: var(--orange-dark); }
.result-notice { max-width: 1120px; margin: 18px auto 0; color: #65736a; font-size: .72rem; }
.findings-section { max-width: 1120px; margin: 65px auto 0; }
.section-label { margin: 0 0 16px; font-size: .69rem; color: var(--green-soft); text-transform: uppercase; letter-spacing: .12em; }
.finding-card { border-top: 1px solid var(--line-dark); padding: 25px 0 30px; display: grid; grid-template-columns: 130px minmax(230px, .72fr) minmax(420px, 1.28fr); gap: 26px; }
.finding-top { display: flex; flex-direction: column; align-items: start; gap: 8px; }
.severity { border: 1px solid #c4cec6; border-radius: 99px; padding: 5px 8px; text-transform: uppercase; letter-spacing: .08em; font-size: .59rem; font-weight: 850; }
.severity-critical, .severity-high { background: #f5dfd6; border-color: #d4a08b; color: #8d301e; }
.severity-medium { background: #f5ead8; border-color: #d7bc8e; color: #87561a; }
.severity-low, .severity-info { background: #e7eee7; border-color: #afc0b1; color: #3a6547; }
.finding-confidence { color: #7a867e; font-size: .61rem; text-transform: uppercase; letter-spacing: .08em; }
.finding-card > h3 { font-family: Georgia, serif; font-size: 1.55rem; font-weight: 400; letter-spacing: -.025em; margin: 0; line-height: 1.2; }
.finding-body { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.finding-body h4 { font-size: .67rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 7px; }
.finding-body p { color: var(--muted); font-size: .8rem; line-height: 1.58; margin: 0; }
.empty-result { padding: 28px; background: #eaf0e9; border: 1px solid #c5d2c6; color: #3f5d48; }
.details-grid { max-width: 1120px; margin: 32px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.result-details { border: 1px solid var(--line); background: #f8f6ef; padding: 0 17px; }
.result-details summary { cursor: pointer; font-size: .75rem; font-weight: 780; padding: 15px 0; }
.result-details ul { margin: 0 0 17px; padding-left: 19px; color: var(--muted); font-size: .75rem; }
.result-details li + li { margin-top: 8px; }
.result-actions { max-width: 1120px; margin: 35px auto 0; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.secondary-button { border: 1px solid var(--green); background: var(--green); color: white; padding: 12px 16px; font-size: .74rem; font-weight: 780; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; }
.secondary-button:hover { background: #24533d; }
.text-button { border: 0; background: transparent; padding: 10px; color: var(--green-soft); font-size: .72rem; font-weight: 730; text-decoration: underline; cursor: pointer; }
.text-button.danger { color: var(--red); margin-left: auto; }
.deleted-message { max-width: 1120px; margin: 0 auto; padding: 30px; background: #e8eee7; border: 1px solid #bdcbbf; }
.failed-panel > p:not(.card-kicker) { color: var(--muted); max-width: 620px; }
.failed-panel .secondary-button { margin-top: 16px; }

footer { padding: 30px clamp(22px, 5vw, 72px); border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; color: #66736b; font-size: .68rem; }
footer p:last-child { justify-self: end; }
.footer-links { display: flex; align-items: center; gap: 18px; }
.footer-links a { text-underline-offset: 3px; }

.legal-back { justify-self: end; grid-column: 3; color: var(--green-soft); font-size: .75rem; font-weight: 750; text-underline-offset: 4px; }
.legal-main { width: min(820px, calc(100% - 44px)); margin: 0 auto; padding: clamp(70px, 9vw, 130px) 0; }
.legal-main > h1 { margin: 0; font: 400 clamp(3.4rem, 8vw, 7rem)/.95 Georgia, serif; letter-spacing: -.055em; }
.legal-updated { margin: 20px 0 60px; color: var(--muted); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; }
.legal-main section { display: grid; grid-template-columns: minmax(150px, .55fr) minmax(280px, 1.45fr); gap: 35px; padding: 28px 0; border-top: 1px solid var(--line); }
.legal-main section:last-of-type { border-bottom: 1px solid var(--line); }
.legal-main section h2 { margin: 0; font: 400 1.35rem/1.25 Georgia, serif; }
.legal-main section p { margin: 0; color: var(--muted); line-height: 1.72; }
.legal-main section a { color: var(--green-soft); text-underline-offset: 3px; overflow-wrap: anywhere; }
.footer-brand { color: var(--ink); }

:focus-visible { outline: 3px solid rgba(232, 111, 50, .65); outline-offset: 3px; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .process-section, .evidence-section { grid-template-columns: 1fr; }
  .evidence-board { order: 2; }
  .mandate-section { grid-template-columns: 1fr; gap: 20px; }
  .mandate-copy { padding-top: 0; }
  .finding-card { grid-template-columns: 110px 1fr; }
  .finding-body { grid-column: 2; }
}

@media (max-width: 700px) {
  .site-header { min-height: 68px; padding-inline: 18px; }
  .legal-back { grid-column: 2; }
  .status-pill { font-size: 0; padding: 8px; }
  .status-pill i { margin: 0; }
  .hero { padding: 65px 18px 70px; min-height: auto; }
  .hero::after { display: none; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 5.25rem); }
  .lede { font-size: 1rem; }
  .check-shell { margin-top: 38px; box-shadow: 7px 8px 0 rgba(23, 61, 44, .1); }
  .check-heading { padding: 18px; }
  .scope-chip { display: none; }
  #presence-form { padding: 19px 18px; }
  .input-row { grid-template-columns: 40px 1fr; }
  .input-row button { grid-column: 1 / -1; min-height: 52px; border-left: 0; border-top: 1px solid var(--orange-dark); }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip span + span { border-left: 0; border-top: 1px solid #d9ddd4; }
  .challenge-row { align-items: flex-start; flex-direction: column; }
  .section { padding: 80px 18px; }
  .section-intro h2, .mandate-section h2, .closing-section h2 { font-size: clamp(2.7rem, 13vw, 4.4rem); }
  .process-grid li { grid-template-columns: 39px 1fr; }
  .step-state { grid-column: 2; justify-self: start; margin-top: 8px; }
  .evidence-section { gap: 55px; }
  .evidence-board { min-height: 390px; padding: 20px; }
  .signal-line { grid-template-columns: 78px 1fr 58px; gap: 9px; }
  .board-note { flex-direction: column; }
  .result-region { padding: 65px 18px; }
  .progress-panel { grid-template-columns: 1fr; }
  .progress-orbit { width: 100px; height: 100px; }
  .progress-orbit span:first-child { left: 46px; }
  .progress-orbit span:nth-child(2) { top: 70px; }
  .progress-orbit span:nth-child(3) { top: 73px; left: 78px; }
  .run-steps { grid-template-columns: 1fr 1fr; }
  .result-header { display: block; }
  .verdict { display: inline-flex; margin-top: 18px; }
  .summary-grid { grid-template-columns: 1fr 1fr; }
  .summary-metric:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .summary-metric:nth-child(4) { border-top: 1px solid var(--line); }
  .finding-card { grid-template-columns: 1fr; gap: 15px; }
  .finding-top { flex-direction: row; align-items: center; }
  .finding-body { grid-column: 1; grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .text-button.danger { margin-left: 0; }
  footer { grid-template-columns: 1fr; align-items: start; }
  footer p { margin: 0; }
  footer p:last-child { justify-self: start; }
  .legal-main section { grid-template-columns: 1fr; gap: 10px; }
  .footer-links { flex-wrap: wrap; }
}

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