:root {
  --ink: #14201c;
  --muted: #5d6964;
  --quiet: #7a8681;
  --paper: #f6f5f0;
  --surface: #ffffff;
  --surface-soft: #edf1ed;
  --line: #d8ddd8;
  --line-strong: #bfc8c2;
  --forest: #102f27;
  --forest-2: #1b493b;
  --mint: #d7f0e5;
  --mint-strong: #8ad0b3;
  --cream: #f1ead9;
  --danger: #a53227;
  --danger-soft: #f9e8e5;
  --warning: #995400;
  --warning-soft: #fff1dd;
  --low: #315f7d;
  --low-soft: #e7f1f7;
  --info: #626a66;
  --info-soft: #eef0ee;
  --success: #16623f;
  --success-soft: #e2f4ea;
  --shadow: 0 24px 70px rgba(25, 47, 38, 0.1);
  --shadow-small: 0 10px 30px rgba(25, 47, 38, 0.08);
  --radius: 24px;
  --radius-small: 14px;
  --shell: 1180px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--paper); color: var(--ink); line-height: 1.55; }
button, input { font: inherit; }
a { color: inherit; }
img, svg { display: block; }
button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--forest);
  color: #fff;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(20, 32, 28, 0.08);
  background: rgba(246, 245, 240, 0.9);
  backdrop-filter: blur(18px);
}
.header-inner { height: 72px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 760; letter-spacing: -0.02em; text-decoration: none; }
.brand img { flex: 0 0 auto; }
.nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 620; }
.nav a { color: var(--muted); text-decoration: none; }
.nav a:hover, .nav a:focus-visible { color: var(--ink); }

.hero { padding-top: 92px; padding-bottom: 56px; text-align: center; }
.eyebrow, .section-kicker {
  margin: 0 0 16px;
  color: var(--forest-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border: 1px solid #cadecf; border-radius: 999px; background: #f9fbf8; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #2b9464; box-shadow: 0 0 0 4px #dff3e9; }
.hero h1 {
  max-width: 1020px;
  margin: 0 auto;
  font-size: clamp(44px, 7.2vw, 86px);
  font-weight: 740;
  letter-spacing: -0.065em;
  line-height: 0.98;
}
.hero h1 em { color: var(--forest-2); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.hero-copy { max-width: 780px; margin: 28px auto 0; color: var(--muted); font-size: clamp(17px, 2vw, 21px); line-height: 1.65; }
.trust-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin-top: 30px; color: #4d5b55; font-size: 13px; font-weight: 650; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { width: 17px; height: 17px; fill: var(--forest-2); }

.scanner-section { scroll-margin-top: 96px; padding-bottom: 104px; }
.scanner-card { overflow: hidden; border: 1px solid #cfd7d1; border-radius: 30px; background: var(--surface); box-shadow: var(--shadow); }
.scanner-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 30px 32px 18px; }
.scanner-heading h2 { margin: 0; font-size: clamp(25px, 3vw, 34px); letter-spacing: -0.035em; }
.scanner-heading .section-kicker { margin-bottom: 7px; }
.local-badge { display: inline-flex; align-items: center; gap: 7px; margin-top: 4px; padding: 8px 11px; border-radius: 999px; background: var(--success-soft); color: var(--success); font-size: 12px; font-weight: 780; white-space: nowrap; }
.local-badge svg { width: 15px; height: 15px; fill: currentColor; }

.drop-zone {
  position: relative;
  margin: 0 32px;
  padding: 54px 24px;
  border: 2px dashed #adbbb2;
  border-radius: 20px;
  background: linear-gradient(135deg, #f8faf7, #eef3ef);
  text-align: center;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}
.drop-zone:hover, .drop-zone:focus-visible, .drop-zone.is-dragging { border-color: var(--forest-2); background: #e8f2ed; outline: none; transform: translateY(-1px); }
.drop-icon { display: grid; width: 58px; height: 58px; margin: 0 auto 17px; place-items: center; border-radius: 17px; background: var(--forest); box-shadow: 0 9px 24px rgba(16, 47, 39, 0.18); }
.drop-icon svg { width: 31px; height: 31px; fill: none; stroke: #fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.6; }
.drop-title { margin: 0; font-size: 19px; font-weight: 760; letter-spacing: -0.02em; }
.drop-help { margin: 7px 0 0; color: var(--muted); font-size: 13px; }
.sample-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px 16px; padding: 18px 24px 26px; color: var(--quiet); font-size: 12px; }
.sample-row a { color: var(--forest-2); font-weight: 700; text-underline-offset: 3px; }
.scanner-disclaimer { max-width: 760px; margin: 18px auto 0; color: var(--quiet); font-size: 12px; text-align: center; }

.queue { padding: 0 32px 30px; }
.queue-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: #fafbf9; }
.queue-item + .queue-item { margin-top: 8px; }
.file-mark { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border-radius: 11px; background: var(--surface-soft); color: var(--forest-2); font-size: 10px; font-weight: 900; letter-spacing: .06em; }
.queue-copy { min-width: 0; display: flex; flex: 1; flex-direction: column; }
.queue-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; }
.queue-meta { color: var(--quiet); font-size: 12px; }
.spinner { width: 20px; height: 20px; flex: 0 0 auto; border: 2px solid #cad5ce; border-top-color: var(--forest-2); border-radius: 50%; animation: spin 800ms linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.results { border-top: 1px solid var(--line); background: #f4f6f3; padding: 28px 32px 32px; }
.report-card { border: 1px solid #ccd4ce; border-radius: 20px; background: var(--surface); box-shadow: var(--shadow-small); }
.report-card + .report-card { margin-top: 22px; }
.report-header { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 18px; padding: 25px 26px 20px; }
.verdict-mark { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 15px; }
.verdict-mark::before { color: #fff; font-size: 23px; font-weight: 900; }
.report-card[data-verdict="DO_NOT_SEND"] .verdict-mark { background: var(--danger); }
.report-card[data-verdict="DO_NOT_SEND"] .verdict-mark::before { content: "!"; }
.report-card[data-verdict="REVIEW"] .verdict-mark, .report-card[data-verdict="INCOMPLETE"] .verdict-mark { background: var(--warning); }
.report-card[data-verdict="REVIEW"] .verdict-mark::before, .report-card[data-verdict="INCOMPLETE"] .verdict-mark::before { content: "!"; }
.report-card[data-verdict="NO_OBVIOUS_RISKS"] .verdict-mark { background: var(--success); }
.report-card[data-verdict="NO_OBVIOUS_RISKS"] .verdict-mark::before { content: "✓"; }
.report-title-wrap { min-width: 0; }
.report-file { margin: 0 0 2px; overflow: hidden; color: var(--quiet); font-size: 12px; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.report-verdict { margin: 0; font-size: 23px; letter-spacing: -0.03em; }
.report-summary { max-width: 700px; margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.report-counts { display: grid; min-width: 90px; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.count-pill { min-width: 42px; padding: 6px 7px; border-radius: 8px; background: var(--surface-soft); text-align: center; }
.count-pill strong { display: block; font-size: 15px; line-height: 1.1; }
.count-pill span { color: var(--quiet); font-size: 9px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.count-pill.high strong { color: var(--danger); }
.count-pill.medium strong { color: var(--warning); }
.count-pill.low strong { color: var(--low); }

.report-actions { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 26px 22px; }
.button { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 10px; padding: 10px 15px; font-size: 13px; font-weight: 750; cursor: pointer; transition: transform 120ms ease, background 120ms ease, border-color 120ms ease; }
.button:hover { transform: translateY(-1px); }
.button:focus-visible { outline: 3px solid rgba(38, 105, 82, 0.28); outline-offset: 2px; }
.button.primary { background: var(--forest); color: #fff; }
.button.primary:hover { background: var(--forest-2); }
.button.secondary { border-color: var(--line); background: #fff; color: #3f4c46; }
.button.secondary:hover { border-color: var(--line-strong); background: #f7f8f6; }

.coverage-alert { margin: 0 26px 20px; padding: 13px 15px; border: 1px solid #e7c49a; border-radius: 10px; background: var(--warning-soft); color: #754000; font-size: 13px; font-weight: 650; }
.finding-groups { border-top: 1px solid var(--line); }
.finding-group { border-bottom: 1px solid var(--line); }
.finding-group:last-child { border-bottom: 0; }
.finding-group > summary { display: flex; align-items: center; gap: 10px; padding: 17px 26px; cursor: pointer; list-style: none; font-size: 14px; font-weight: 760; }
.finding-group > summary::-webkit-details-marker { display: none; }
.finding-group > summary::after { width: 8px; height: 8px; margin-left: auto; border-right: 2px solid #76817c; border-bottom: 2px solid #76817c; content: ""; transform: rotate(45deg); transition: transform 120ms ease; }
.finding-group[open] > summary::after { transform: rotate(225deg); }
.severity-dot { width: 9px; height: 9px; border-radius: 50%; }
.severity-dot.high { background: var(--danger); }
.severity-dot.medium { background: var(--warning); }
.severity-dot.low { background: var(--low); }
.severity-dot.info { background: var(--info); }
.group-count { color: var(--quiet); font-weight: 600; }
.findings-list { padding: 0 26px 23px; }
.finding { position: relative; padding: 17px 18px; border: 1px solid var(--line); border-left-width: 4px; border-radius: 12px; background: #fbfcfa; }
.finding + .finding { margin-top: 10px; }
.finding.high { border-left-color: var(--danger); }
.finding.medium { border-left-color: var(--warning); }
.finding.low { border-left-color: var(--low); }
.finding.info { border-left-color: var(--info); }
.finding-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.finding h4 { margin: 0; font-size: 15px; letter-spacing: -0.015em; }
.confidence { flex: 0 0 auto; color: var(--quiet); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.finding > p { margin: 7px 0 0; color: var(--muted); font-size: 13px; }
.finding dl { display: grid; grid-template-columns: 82px minmax(0, 1fr); gap: 7px 10px; margin: 14px 0 0; font-size: 12px; }
.finding dt { color: var(--quiet); font-weight: 700; }
.finding dd { margin: 0; overflow-wrap: anywhere; }
.finding .fix { color: #254b3d; }
.rule-id { display: block; margin-top: 13px; color: #87908c; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 10px; }
.empty-findings { padding: 24px 26px; border-top: 1px solid var(--line); color: var(--success); font-size: 14px; font-weight: 700; }

.coverage-details { border-top: 1px solid var(--line); }
.coverage-details > summary { padding: 16px 26px; color: var(--muted); cursor: pointer; font-size: 12px; font-weight: 700; }
.coverage-content { padding: 0 26px 22px; font-size: 12px; }
.coverage-content dl { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 7px 10px; margin: 0 0 14px; }
.coverage-content dt { color: var(--quiet); }
.coverage-content dd { margin: 0; overflow-wrap: anywhere; }
.coverage-content ul { margin: 8px 0 0; padding-left: 18px; color: var(--muted); }
.coverage-content li + li { margin-top: 4px; }

.proof-section { padding: 104px 0; background: var(--surface); }
.proof-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: start; }
.proof-copy { position: sticky; top: 120px; }
.proof-copy h2, .section-intro h2, .cli-inner h2, .final-cta h2 { margin: 0; font-size: clamp(34px, 4.7vw, 58px); line-height: 1.06; letter-spacing: -0.05em; }
.proof-copy > p:not(.section-kicker) { margin: 22px 0; color: var(--muted); font-size: 17px; }
.text-link { color: var(--forest-2); font-size: 14px; font-weight: 760; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 4px; transition: transform 120ms ease; }
.text-link:hover span { transform: translateX(4px); }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.check-grid article { min-height: 270px; padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: #fafbf9; }
.check-number { color: #82a091; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 11px; font-weight: 800; }
.check-grid h3 { margin: 52px 0 10px; font-size: 21px; letter-spacing: -0.025em; }
.check-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.how-section { padding: 110px 0; }
.section-intro { max-width: 780px; }
.section-intro > p:not(.section-kicker) { max-width: 680px; margin: 20px 0 0; color: var(--muted); font-size: 17px; }
.section-intro.compact h2 { font-size: clamp(32px, 4.2vw, 50px); }
.steps { margin: 52px 0 0; padding: 0; border-top: 1px solid var(--line-strong); list-style: none; }
.steps li { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 30px; padding: 30px 0; border-bottom: 1px solid var(--line-strong); }
.steps li > span { color: #7f9088; font-family: Georgia, "Times New Roman", serif; font-size: 31px; font-style: italic; }
.steps h3 { margin: 0 0 7px; font-size: 21px; letter-spacing: -0.025em; }
.steps p { max-width: 690px; margin: 0; color: var(--muted); }

.cli-callout { padding: 105px 0; background: var(--forest); color: #fff; }
.cli-inner { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: center; }
.section-kicker.light { color: #9dd2bd; }
.cli-inner > div:first-child > p:not(.section-kicker) { max-width: 480px; margin: 20px 0 0; color: #b9ccc4; font-size: 17px; }
.terminal { position: relative; overflow: hidden; border: 1px solid #3e5c51; border-radius: 18px; background: #091a15; box-shadow: 0 24px 70px rgba(0, 0, 0, .28); }
.terminal-bar { display: flex; gap: 7px; padding: 13px 15px; border-bottom: 1px solid #263d34; }
.terminal-bar span { width: 9px; height: 9px; border-radius: 50%; background: #385047; }
.terminal pre { min-height: 260px; margin: 0; padding: 27px; color: #d9e8e1; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 13px; line-height: 1.7; white-space: pre-wrap; }
.terminal code > span:first-child { color: #79c6a7; }
.terminal-danger { color: #ff8e83; font-weight: 800; }
.copy-command { position: absolute; top: 12px; right: 12px; border: 1px solid #39564b; border-radius: 8px; padding: 7px 10px; background: #132a22; color: #bad3c8; font-size: 11px; font-weight: 700; cursor: pointer; }
.copy-command:hover { background: #1b382e; }

.faq { padding: 110px 0; }
.faq .section-intro { margin-bottom: 45px; }
.faq details { border-top: 1px solid var(--line-strong); }
.faq details:last-child { border-bottom: 1px solid var(--line-strong); }
.faq summary { display: flex; align-items: center; gap: 20px; padding: 24px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 720; letter-spacing: -0.02em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { margin-left: auto; color: #68766f; content: "+"; font-size: 25px; font-weight: 350; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 800px; margin: -7px 0 25px; color: var(--muted); font-size: 15px; }

.final-cta { display: flex; align-items: center; justify-content: space-between; gap: 48px; margin-bottom: 110px; padding: 48px; border: 1px solid #cfd9d2; border-radius: 24px; background: linear-gradient(135deg, #e8f2ed, #f8f5ea); }
.final-cta h2 { max-width: 790px; font-size: clamp(30px, 4vw, 48px); }
.final-cta .button { flex: 0 0 auto; min-height: 50px; padding-inline: 22px; }

.site-footer { padding-top: 66px; background: #0d201a; color: #eef5f1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 50px; padding-bottom: 55px; }
.footer-brand { color: #fff; }
.footer-grid > div:first-child p { max-width: 310px; color: #9fb6ac; font-size: 13px; }
.footer-grid h2 { margin: 4px 0 14px; color: #fff; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid a { color: #a9beb5; font-size: 13px; text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0 22px; border-top: 1px solid #284038; color: #859d93; font-size: 11px; }
.footer-bottom a { color: #afc7bc; }

/* Supporting pages */
.page-hero { padding: 86px 0 58px; }
.page-hero h1 { max-width: 900px; margin: 0; font-size: clamp(44px, 6.4vw, 78px); line-height: 1; letter-spacing: -0.06em; }
.page-hero > p:not(.section-kicker) { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: 19px; }
.prose-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); gap: 80px; align-items: start; padding-bottom: 110px; }
.prose-nav { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 8px; padding: 16px 0; border-top: 1px solid var(--line-strong); }
.prose-nav a { color: var(--muted); font-size: 12px; font-weight: 650; text-decoration: none; }
.prose-nav a:hover { color: var(--ink); }
.prose { min-width: 0; }
.prose h2 { margin: 60px 0 14px; scroll-margin-top: 100px; font-size: 32px; line-height: 1.15; letter-spacing: -0.04em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 34px 0 10px; font-size: 20px; letter-spacing: -0.025em; }
.prose p, .prose li { color: #46534d; }
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li + li { margin-top: 8px; }
.prose code { border: 1px solid #d8ddd8; border-radius: 5px; padding: 2px 5px; background: #fff; color: #244a3d; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .88em; }
.prose pre { overflow: auto; margin: 20px 0 28px; border-radius: 14px; padding: 20px; background: #10231d; color: #d9e8e1; }
.prose pre code { border: 0; padding: 0; background: transparent; color: inherit; }
.prose table { width: 100%; border-collapse: collapse; margin: 22px 0 30px; font-size: 13px; }
.prose th, .prose td { padding: 11px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose th { color: #27352f; background: #eef1ed; }
.callout { margin: 24px 0; padding: 18px 20px; border-left: 4px solid var(--forest-2); border-radius: 0 10px 10px 0; background: #edf3ef; }
.callout.warning { border-left-color: var(--warning); background: var(--warning-soft); }
.callout p:last-child { margin-bottom: 0; }
.guide-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; color: var(--quiet); font-size: 12px; }
.guide-meta span { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }

.toast { position: fixed; z-index: 50; right: 20px; bottom: 20px; max-width: 330px; padding: 12px 15px; border-radius: 10px; background: var(--forest); color: #fff; box-shadow: var(--shadow-small); font-size: 12px; font-weight: 650; animation: toast-in 180ms ease; }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } }

@media (max-width: 900px) {
  .proof-grid, .cli-inner { grid-template-columns: 1fr; gap: 50px; }
  .proof-copy { position: static; }
  .check-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
  .prose-layout { grid-template-columns: 1fr; gap: 24px; }
  .prose-nav { position: static; display: none; }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 24px), var(--shell)); }
  .header-inner { height: 62px; }
  .nav { gap: 15px; }
  .nav a:nth-child(1), .nav a:nth-child(2) { display: none; }
  .hero { padding-top: 64px; padding-bottom: 42px; }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-copy { font-size: 17px; }
  .trust-row { gap: 13px; }
  .scanner-heading { padding: 23px 20px 15px; }
  .local-badge { display: none; }
  .drop-zone { margin: 0 20px; padding: 42px 17px; }
  .sample-row { justify-content: flex-start; padding-inline: 20px; }
  .queue { padding: 0 20px 24px; }
  .results { padding: 20px; }
  .report-header { grid-template-columns: auto minmax(0, 1fr); padding: 20px; }
  .report-counts { grid-column: 1 / -1; width: 100%; grid-template-columns: repeat(4, 1fr); }
  .report-actions { padding: 0 20px 18px; }
  .report-actions .button { flex: 1 1 calc(50% - 4px); }
  .coverage-alert { margin-inline: 20px; }
  .finding-group > summary, .findings-list { padding-inline: 20px; }
  .finding dl { grid-template-columns: 1fr; gap: 3px; }
  .finding dt:not(:first-child) { margin-top: 7px; }
  .coverage-details > summary, .coverage-content { padding-inline: 20px; }
  .proof-section, .how-section, .faq, .cli-callout { padding-block: 78px; }
  .check-grid { grid-template-columns: 1fr; }
  .check-grid article { min-height: 0; }
  .check-grid h3 { margin-top: 32px; }
  .steps li { grid-template-columns: 52px minmax(0, 1fr); gap: 14px; }
  .terminal pre { min-height: 230px; padding: 22px 16px; font-size: 11px; }
  .copy-command { position: static; width: calc(100% - 28px); margin: 0 14px 14px; }
  .final-cta { align-items: flex-start; flex-direction: column; margin-bottom: 78px; padding: 30px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding-top: 64px; }
  .prose table { display: block; overflow-x: auto; }
}

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