:root {
  color-scheme: light;
  --ink: #102c43;
  --navy: #102c43;
  --navy-2: #254b66;
  --accent: #d98c14;
  --accent-hover: #b96f08;
  --accent-ink: #8a5200;
  --accent-soft: #fff4df;
  --teal: #176b52;
  --teal-soft: #eaf4f0;
  --slate: #526574;
  --line: #d5dee5;
  --paper: #ffffff;
  --wash: #f4f7f9;
  --amber: #d98c14;
  --amber-soft: #fff4df;
  --green: #176b52;
  --green-soft: #eaf4f0;
  --red: #a53e45;
  --red-soft: #faecee;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(16, 44, 67, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
}
a { color: inherit; }
img, svg { max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, .button { min-height: 48px; }

.shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(213,222,229,.9);
  backdrop-filter: blur(14px);
}
.nav { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 760; letter-spacing: -.02em; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: white; font-weight: 850; box-shadow: inset 0 -3px 0 var(--accent); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { text-decoration: none; color: var(--slate); font-size: .94rem; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--ink); }
.nav-links a.button, .nav-links a.button:hover, .nav-links a.button:focus-visible { color: white; }
.nav-links a.button.secondary, .nav-links a.button.secondary:hover, .nav-links a.button.secondary:focus-visible { color: var(--navy); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--navy);
  border-radius: 12px;
  padding: 11px 20px;
  background: var(--navy);
  color: white;
  text-decoration: none;
  font-weight: 720;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}
.button:hover { transform: translateY(-1px); background: var(--navy-2); box-shadow: 0 10px 24px rgba(16,44,67,.22); }
.button.secondary { background: white; color: var(--navy); }
.button.secondary:hover { background: var(--wash); }
.button.amber { background: var(--accent); border-color: var(--accent); color: var(--navy); }
.button.small { min-height: 40px; padding: 8px 14px; font-size: .9rem; }
.button:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

.access-stage { min-height: calc(100vh - 73px); display: grid; align-items: center; padding: 58px 0 66px; background: linear-gradient(145deg, #fff 0%, var(--wash) 68%, #eaf1f4 100%); }
.access-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(430px, .9fr); gap: 72px; align-items: center; }
.access-intro h1 { max-width: 650px; font-size: clamp(2.65rem, 5vw, 4.5rem); }
.access-intro > p:not(.eyebrow) { max-width: 650px; margin: 24px 0 0; color: var(--slate); font-size: 1.08rem; }
.access-reassurance { display: grid; gap: 4px; max-width: 620px; margin-top: 28px; padding: 17px 19px; border-left: 4px solid var(--accent); background: rgba(255,255,255,.82); }
.access-reassurance span { color: var(--slate); font-size: .9rem; }
.access-card { overflow: hidden; border: 1px solid var(--line); border-radius: 21px; background: white; box-shadow: var(--shadow); }
.access-card-head { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 20px 23px; color: white; background: var(--navy); }
.access-card-head span { color: #b9cbd7; font-size: .68rem; font-weight: 850; letter-spacing: .11em; }
.access-card-head strong { font-size: .9rem; }
.access-option { padding: 23px; border-top: 1px solid var(--line); }
.access-option.selected { background: linear-gradient(135deg, var(--accent-soft), #fff 62%); box-shadow: inset 5px 0 0 var(--accent); }
.access-option > div { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start; }
.access-option-number { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; color: white; background: var(--navy); font-size: .72rem; font-weight: 850; }
.access-option h2 { margin: 0 0 6px; font-size: 1.23rem; }
.access-option p { margin: 0; color: var(--slate); font-size: .88rem; line-height: 1.48; }
.access-option .button { width: 100%; margin-top: 17px; }
.access-provider-note { margin: 0; padding: 16px 23px 19px; border-top: 1px solid var(--line); color: var(--slate); background: var(--wash); font-size: .76rem; line-height: 1.5; }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, var(--wash) 100%);
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  top: -280px;
  right: -190px;
  background: radial-gradient(circle, rgba(217,140,20,.18), rgba(217,140,20,0) 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 64px; align-items: center; padding: 82px 0 72px; }
.market-hero .hero-grid { grid-template-columns: 1.25fr .75fr; gap: 44px; align-items: start; padding: 30px 0 34px; }
.market-hero h1 { max-width: 720px; font-size: clamp(2.3rem, 4vw, 3.25rem); }
.market-hero h1 span { display: block; white-space: nowrap; }
.eyebrow { margin: 0 0 14px; color: var(--accent-ink); font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
h1 { margin: 0; font-size: clamp(2.5rem, 5.6vw, 4.6rem); max-width: 780px; }
h2 { margin: 0 0 18px; font-size: clamp(1.8rem, 3.2vw, 2.7rem); }
h3 { margin: 0 0 10px; font-size: 1.18rem; }
.hero-copy { margin: 17px 0 0; max-width: 690px; color: var(--slate); font-size: 1.06rem; }
.marketplace-pills { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; margin: 0 0 16px; padding: 0; }
.marketplace-pills li { padding: 6px 11px; border: 1px solid #cbd6dd; border-radius: 999px; background: rgba(255,255,255,.82); color: var(--navy); font-size: .76rem; font-weight: 720; line-height: 1.3; }
.risk-line { max-width: 690px; margin: 15px 0 17px; padding: 10px 13px; border-left: 4px solid var(--accent); background: rgba(255,255,255,.75); color: var(--ink); font-size: .9rem; font-weight: 680; line-height: 1.45; }
.price-line { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 28px 0; align-items: baseline; }
.price { font-size: 2rem; font-weight: 820; letter-spacing: -.04em; }
.muted { color: var(--slate); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.micro { margin: 9px 0 0; color: var(--slate); font-size: .84rem; }
.source-groups { display: grid; gap: 9px; margin: 25px 0; }
.source-groups > div { display: grid; grid-template-columns: 84px 1fr; gap: 12px; align-items: start; }
.source-groups > div > span { padding-top: 5px; color: var(--slate); font-size: .75rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.source-groups ul { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; margin: 0; padding: 0; }
.source-groups li { padding: 5px 10px; border: 1px solid #cbd6dd; border-radius: 999px; background: rgba(255,255,255,.78); color: var(--navy); font-size: .78rem; font-weight: 720; line-height: 1.35; }

.decision-card { position: relative; border: 1px solid var(--line); border-radius: 22px; background: white; padding: 24px; box-shadow: var(--shadow); }
.decision-card::before { content: ""; position: absolute; top: 0; left: 28px; right: 28px; height: 4px; background: linear-gradient(90deg, var(--accent), var(--teal)); border-radius: 0 0 8px 8px; }
.decision-card .label { color: var(--slate); font-size: .83rem; font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }
.case-ref { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.case-ref span, .decision-line span { color: var(--slate); font-size: .74rem; font-weight: 800; letter-spacing: .12em; }
.case-ref strong { font-size: .88rem; }
.chain-list { display: grid; gap: 0; margin: 10px 0 18px; }
.chain-row { display: grid; grid-template-columns: 34px 1fr auto; gap: 12px; align-items: center; padding: 16px 4px; border-bottom: 1px solid var(--line); }
.chain-row.alert { margin: 8px -8px 0; padding-inline: 12px; border: 1px solid #efc474; border-radius: 11px; background: var(--amber-soft); }
.chain-key { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 8px; background: var(--wash); color: var(--navy); font-size: .72rem; font-weight: 850; }
.chain-row strong, .chain-row div span { display: block; }
.chain-row div span { color: var(--slate); font-size: .78rem; line-height: 1.4; }
.state-chip { border-radius: 999px; padding: 4px 8px; font-size: .7rem; font-weight: 820; }
.state-chip.good { color: var(--green); background: var(--green-soft); }
.state-chip.warning { color: #845100; background: #ffe8b7; }
.decision-line { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 15px 17px; border-radius: 11px; color: #6f4300; background: #ffe9bd; }
.decision-line strong { letter-spacing: .03em; }
.quick-gate { align-self: start; margin-top: 0; padding: 22px; }
.identity-stack { display: grid; margin: 12px 0 18px; }
.identity-stack > div { position: relative; display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: center; padding: 14px 2px; border-bottom: 1px solid var(--line); }
.identity-stack > div::after { content: ""; position: absolute; left: 19px; bottom: -9px; width: 1px; height: 17px; background: #bac8d1; }
.identity-stack > div:last-child::after { display: none; }
.identity-stack > div > span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; color: white; background: var(--navy); font-size: .78rem; font-weight: 850; }
.identity-stack p, .identity-stack strong, .identity-stack small { display: block; margin: 0; }
.identity-stack small { color: var(--slate); font-size: .78rem; }
.identity-stack .identity-warning { margin: 7px -9px 0; padding-inline: 11px; border: 1px solid #98d8d3; border-radius: 11px; background: var(--teal-soft); }
.identity-stack .identity-warning > span { background: var(--teal); color: white; }
.gate-note { margin: 0; padding: 14px 16px; border-radius: 11px; color: var(--accent-ink); background: var(--accent-soft); font-size: .84rem; line-height: 1.48; }
.verdicts { display: grid; gap: 11px; margin-top: 20px; }
.verdict { display: grid; grid-template-columns: 12px 1fr; gap: 13px; align-items: start; padding: 14px; border: 1px solid var(--line); border-radius: 12px; }
.dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 8px; }
.dot.green { background: var(--green); }
.dot.amber { background: var(--amber); }
.dot.red { background: var(--red); }
.verdict strong { display: block; }
.verdict span { display: block; color: var(--slate); font-size: .9rem; line-height: 1.45; }

.section { padding: 78px 0; }
.section.alt { background: var(--wash); border-block: 1px solid var(--line); }
.trust-rail { border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 92px; display: flex; flex-direction: column; justify-content: center; padding: 18px 22px; border-left: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 1px solid var(--line); }
.trust-grid span, .trust-grid strong { display: block; }
.trust-grid span { color: var(--slate); font-size: .73rem; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.trust-grid strong { margin-top: 5px; font-size: .91rem; }
.trust-grid a { text-decoration: none; }
.trust-grid a:hover { color: var(--amber); }
.section-intro { max-width: 730px; margin-bottom: 34px; color: var(--slate); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: white; }
.card p { margin: 0; color: var(--slate); }
.sample-link { display: block; text-decoration: none; }
.sample-link:hover { border-color: var(--accent); box-shadow: 0 12px 28px rgba(16,44,67,.12); }
.sample-link h3 { margin-top: 15px; }
.report-choice-head { padding: 72px 0 58px; background: linear-gradient(145deg, #fff 0%, var(--wash) 100%); }
.report-choice-head h1 { max-width: 820px; }
.report-sample-head { padding: 56px 0 46px; background: linear-gradient(145deg, #fff 0%, var(--wash) 100%); }
.report-sample-head h1 { max-width: 900px; font-size: clamp(2.5rem, 5.4vw, 4.25rem); }
.report-sample-head p:last-child { max-width: 760px; margin: 18px 0 0; color: var(--slate); font-size: 1.06rem; }
.report-decision-section { padding: 62px 0 68px; }
.selected-report-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); gap: 68px; align-items: center; }
.sample-document-preview { display: grid; place-items: center; min-height: 520px; margin: 0; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: #e9eef2; box-shadow: 0 18px 48px rgba(16,44,67,.11); }
.sample-document-preview img { width: auto; max-width: 100%; max-height: 620px; object-fit: contain; filter: drop-shadow(0 12px 20px rgba(16,44,67,.2)); }
.sample-report-details > p:not(.eyebrow):not(.sample-disclaimer) { color: var(--slate); font-size: 1.03rem; }
.sample-report-includes { display: grid; gap: 10px; margin: 25px 0 28px; padding: 0; list-style: none; }
.sample-report-includes li { position: relative; padding-left: 29px; color: var(--ink); font-weight: 680; }
.sample-report-includes li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.sample-disclaimer { margin: 13px 0 0; color: var(--slate); font-size: .78rem; line-height: 1.5; }
.report-concept-section { padding-top: 52px; }
.report-concepts { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.concept-card { position: relative; display: flex; flex-direction: column; min-height: 410px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: 0 12px 34px rgba(16,44,67,.06); }
.concept-card.recommended { border-color: #aab8c3; box-shadow: 0 18px 48px rgba(16,44,67,.12); }
.concept-card.recommended::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: var(--accent); }
.concept-card > header { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 22px 24px 17px; border-bottom: 1px solid var(--line); }
.concept-preview { display: grid; place-items: center; height: 300px; margin: 0; padding: 18px; overflow: hidden; border-bottom: 1px solid var(--line); background: #edf2f5; }
.concept-preview img { width: auto; max-width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 14px rgba(16,44,67,.14)); }
.concept-card > div { flex: 1; padding: 24px; }
.concept-card h2 { margin-bottom: 12px; font-size: 1.65rem; }
.concept-card p { margin: 0; color: var(--slate); }
.concept-card > .button { align-self: flex-start; margin: 0 24px 24px; }
.concept-number { color: var(--navy); font-size: 1.05rem; font-weight: 900; letter-spacing: .08em; }
.concept-tag { display: inline-flex; padding: 5px 9px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-ink); font-size: .68rem; font-weight: 850; letter-spacing: .055em; text-transform: uppercase; }
.concept-tag.neutral { background: var(--wash); color: var(--slate); }
.concept-spec { display: grid; grid-template-columns: repeat(3, 1fr); margin: 24px 0 0; border-block: 1px solid var(--line); }
.concept-spec > div { padding: 14px 10px 14px 0; }
.concept-spec > div + div { padding-left: 12px; border-left: 1px solid var(--line); }
.concept-spec dt, .concept-spec dd { margin: 0; }
.concept-spec dt { color: var(--slate); font-size: .68rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.concept-spec dd { margin-top: 5px; color: var(--ink); font-size: .86rem; font-weight: 720; line-height: 1.35; }
.outcome-preview h2 { max-width: 800px; margin-bottom: 30px; }
.number { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; background: var(--navy); color: white; font-weight: 800; margin-bottom: 18px; box-shadow: inset 0 -3px 0 var(--accent); }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 28px; list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 29px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.callout { border-left: 5px solid var(--amber); background: var(--amber-soft); padding: 20px 22px; border-radius: 0 12px 12px 0; }
.callout strong { display: block; margin-bottom: 4px; }
.proof-section { background: var(--navy); color: white; }
.proof-section .eyebrow { color: #f2b85d; }
.proof-section .section-intro { color: #c5d5e0; }
.proof-section .button.secondary { border-color: #8fa5b4; color: white; background: transparent; }
.proof-section .button.secondary:hover { background: rgba(255,255,255,.08); }
.proof-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.proof-list { display: grid; gap: 12px; }
.proof-list a { display: grid; grid-template-columns: 92px 1fr; gap: 3px 15px; align-items: center; padding: 17px 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 13px; color: white; text-decoration: none; background: rgba(255,255,255,.04); }
.proof-list a:hover { border-color: #f3b452; background: rgba(255,255,255,.07); }
.proof-list a > span:last-child { grid-column: 2; color: #b9cbd7; font-size: .84rem; }
.proof-list .badge { justify-self: start; grid-row: 1 / span 2; }
.price-panel { display: grid; grid-template-columns: 1.05fr .62fr 1fr; gap: 32px; align-items: center; }
.price-panel p { color: var(--slate); }
.price-box { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: 0 12px 32px rgba(17,34,53,.07); }
.price-box span, .price-box strong, .price-box small { display: block; }
.price-box span { color: var(--slate); font-size: .8rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.price-box strong { margin: 7px 0; font-size: 2.45rem; letter-spacing: -.045em; }
.price-box small { color: var(--slate); line-height: 1.45; }
.price-features { list-style: none; padding: 0; margin: 0; }
.price-features li { position: relative; padding: 9px 0 9px 28px; border-bottom: 1px solid var(--line); }
.price-features li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.company-section { background: #eef2f7; }
.company-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; }
.company-grid p { margin-top: 0; color: var(--slate); font-size: 1.06rem; }
.company-links { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 22px; }
.company-links a { color: var(--navy); font-weight: 760; text-decoration: none; }
.company-links a:hover { color: var(--amber); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr .82fr; gap: 16px; margin-top: 30px; }
.audience-card { padding: 24px; border: 1px solid var(--line); border-radius: 15px; background: white; }
.audience-card h3 { margin: 13px 0 11px; font-size: 1.22rem; }
.audience-card p { margin: 0; color: var(--slate); font-size: .94rem; }
.audience-tag { color: var(--navy-2); font-size: .72rem; font-weight: 850; letter-spacing: .1em; }
.audience-card.warning-card { border-color: #e5bd6b; background: var(--amber-soft); }
.audience-card.warning-card .audience-tag { color: #815200; }
.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: 0 12px 32px rgba(17,34,53,.06); }
.comparison-wrap:focus-visible { outline: 3px solid rgba(217,140,20,.25); outline-offset: 3px; }
.comparison-table { width: 100%; min-width: 880px; border-collapse: collapse; font-size: .9rem; }
.comparison-table th, .comparison-table td { padding: 16px 17px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; line-height: 1.45; }
.comparison-table thead th { color: #d8e4ec; background: var(--navy); font-size: .75rem; letter-spacing: .045em; text-transform: uppercase; }
.comparison-table tbody th { width: 18%; color: var(--ink); font-size: .95rem; }
.comparison-table tbody td { color: var(--slate); }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table .featured-row th, .comparison-table .featured-row td { background: #edf6f2; }
.comparison-table .featured-row th { color: var(--green); }
.compare-varies, .compare-yes { display: inline-flex; border-radius: 999px; padding: 4px 8px; font-size: .73rem; font-weight: 820; }
.compare-varies { color: #76500f; background: var(--amber-soft); }
.compare-yes { color: var(--green); background: #dff3eb; }
.comparison-note { margin: 16px 0 0; color: var(--slate); font-size: .79rem; line-height: 1.5; }
.comparison-note a { color: var(--navy); font-weight: 700; }
.offer-section { background: white; }
.offer-grid { display: grid; grid-template-columns: 1fr 390px; gap: 70px; align-items: center; }
.offer-grid > div:first-child > p:last-of-type { max-width: 660px; color: var(--slate); }
.verdict-line { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.compact-offer { padding: 27px; border: 1px solid var(--line); border-radius: 18px; background: var(--wash); }
.compact-offer > span, .compact-offer > strong, .compact-offer > small { display: block; }
.compact-offer > span { color: var(--slate); font-size: .75rem; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.compact-offer > strong { margin: 7px 0 3px; font-size: 2.5rem; letter-spacing: -.045em; }
.compact-offer > small { color: var(--slate); line-height: 1.45; }
.compact-offer ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 15px; list-style: none; margin: 20px 0; padding: 17px 0; border-block: 1px solid var(--line); }
.compact-offer li { position: relative; padding-left: 20px; color: var(--slate); font-size: .84rem; }
.compact-offer li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.compact-offer .button { width: 100%; }
.compact-proof { padding: 64px 0; }
.mini-proof-list { display: grid; gap: 9px; }
.mini-proof-list a { display: grid; grid-template-columns: 13px 1fr auto; gap: 13px; align-items: center; padding: 14px 16px; border: 1px solid rgba(255,255,255,.17); border-radius: 12px; color: white; text-decoration: none; background: rgba(255,255,255,.04); }
.mini-proof-list a:hover { border-color: #f3b452; background: rgba(255,255,255,.07); }
.mini-proof-list .dot { margin: 0; }
.mini-proof-list strong, .mini-proof-list small { display: block; }
.mini-proof-list small { color: #b9cbd7; }
.mini-proof-list b { color: #f2b85d; font-size: .75rem; }
.short-faq { padding: 62px 0; }
.short-faq .faq { max-width: 880px; }
.trademark-note { max-width: 560px; margin: 9px 0 0; font-size: .72rem; line-height: 1.4; }
.source-line { max-width: 720px; margin: 24px 0; padding: 12px 15px; border-left: 4px solid var(--accent); color: var(--slate); background: rgba(255,255,255,.72); font-size: .88rem; line-height: 1.55; }
.source-line strong { color: var(--ink); margin-right: 5px; }
.compact-identity { margin-bottom: 14px; }
.compact-identity > div { min-height: 63px; }
.compact-identity .identity-warning { margin-top: 7px; }
.compact-identity + .gate-note { text-align: center; }

.compare-stage { padding: 68px 0 62px; border-top: 7px solid var(--accent); background: var(--navy); color: white; }
.compare-stage .eyebrow { color: #f2b85d; }
.compare-stage h2 { max-width: 820px; margin-bottom: 28px; font-size: clamp(2.15rem, 4vw, 3.35rem); }
.compare-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.compare-option { display: flex; min-height: 350px; flex-direction: column; padding: 24px; border: 1px solid #ced9e0; border-radius: 17px; background: white; color: var(--ink); box-shadow: 0 16px 36px rgba(0,0,0,.17); }
.compare-option.featured { border: 3px solid #5fb99d; background: var(--teal-soft); box-shadow: 0 22px 48px rgba(0,0,0,.28); transform: translateY(-8px); }
.compare-option-top { display: flex; justify-content: space-between; gap: 12px; align-items: center; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.compare-option-top span { display: grid; place-items: center; width: 33px; height: 33px; border-radius: 50%; background: var(--navy); color: white; font-size: .72rem; font-weight: 900; }
.compare-option.featured .compare-option-top span { background: var(--teal); }
.compare-option-top strong { color: var(--slate); font-size: .7rem; letter-spacing: .055em; text-align: right; text-transform: uppercase; }
.compare-option h3 { margin: 23px 0 11px; font-size: 1.25rem; }
.compare-question { min-height: 76px; margin: 0; color: var(--navy); font-size: 1.12rem; font-weight: 790; line-height: 1.4; }
.compare-scope { margin: 13px 0 24px; color: var(--slate); font-size: .91rem; line-height: 1.48; }
.compare-result { display: grid; gap: 4px; margin-top: auto; padding-top: 17px; border-top: 1px solid var(--line); }
.compare-result span { color: var(--slate); font-size: .68rem; font-weight: 820; letter-spacing: .075em; text-transform: uppercase; }
.compare-result strong { color: var(--navy); font-size: .94rem; }
.compare-option.featured .compare-result strong { color: var(--teal); }
.inverse-note { max-width: 890px; color: #bacbd6; }
.inverse-note a { color: #f2b85d; }

.home-offer { padding: 72px 0 64px; }
.home-offer .offer-grid { grid-template-columns: 1fr 340px; gap: 60px; }
.home-offer .offer-grid p { max-width: 670px; margin-bottom: 0; color: var(--slate); }
.offer-action { display: grid; gap: 11px; }
.offer-action .button { width: 100%; min-height: 56px; }
.offer-action span { color: var(--slate); font-size: .78rem; line-height: 1.45; text-align: center; }
.proof-links-bar { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 50px; border-block: 1px solid var(--line); }
.proof-links-bar a { display: flex; justify-content: space-between; gap: 15px; padding: 19px 21px; color: var(--ink); text-decoration: none; }
.proof-links-bar a + a { border-left: 1px solid var(--line); }
.proof-links-bar a:hover { background: var(--wash); }
.proof-links-bar strong, .proof-links-bar span { display: block; }
.proof-links-bar span { color: var(--slate); font-size: .78rem; }
.scope-table { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.scope-table > div { padding: 22px; }
.scope-table > div + div { border-left: 1px solid var(--line); }
.scope-table ul { margin: 10px 0 0; padding-left: 22px; }
.scope-table li + li { margin-top: 6px; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 19px 0; }
.faq summary { cursor: pointer; font-weight: 740; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--amber); font-size: 1.35rem; }
.faq details[open] summary::after { content: "−"; }
.faq p { color: var(--slate); margin: 12px 0 0; max-width: 800px; }

.final-cta { background: var(--navy); color: white; }
.final-cta .shell { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; padding-top: 54px; padding-bottom: 54px; }
.final-cta h2 { margin-bottom: 8px; }
.final-cta p { margin: 0; color: #c9d6df; }

.page-head { padding: 58px 0 32px; border-bottom: 1px solid var(--line); background: var(--wash); }
.page-head h1 { font-size: clamp(2.25rem, 5vw, 3.7rem); }
.page-head p { max-width: 760px; margin: 16px 0 0; color: var(--slate); }
.method-head, .company-head { padding: 74px 0 62px; }
.method-head h1, .company-head h1 { max-width: 970px; }
.method-head p, .company-head p { max-width: 850px; font-size: 1.08rem; }
.method-layers .card { border-top: 4px solid var(--accent); }
.method-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 68px; align-items: start; }
.method-grid.compact { align-items: center; }
.method-grid.compact p { color: var(--slate); }
.method-check-stage { padding: 76px 0 82px; background: var(--navy); color: white; }
.check-stage-head { display: grid; grid-template-columns: 185px 1fr; gap: 38px; align-items: center; margin-bottom: 38px; }
.check-stage-head .eyebrow { color: #f2b85d; }
.check-stage-head h2 { max-width: 780px; margin-bottom: 9px; }
.check-stage-head p:last-child { margin: 0; color: #afbbc6; }
.check-total { display: grid; place-items: center; align-content: center; min-height: 150px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: linear-gradient(145deg, #183d58, #0d2639); box-shadow: inset 0 -5px 0 var(--accent); }
.check-total strong { font-size: 4.7rem; line-height: .9; letter-spacing: -.07em; }
.check-total span { margin-top: 9px; color: #aebbc7; font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.check-clusters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.check-cluster { overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: white; color: var(--ink); box-shadow: 0 16px 38px rgba(0,0,0,.17); }
.check-cluster header { display: grid; grid-template-columns: 42px 1fr auto; gap: 12px; align-items: center; min-height: 92px; padding: 18px; color: white; }
.check-cluster header > span { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.4); border-radius: 11px; font-size: .76rem; font-weight: 850; }
.check-cluster header strong, .check-cluster header small { display: block; }
.check-cluster header strong { font-size: 1.16rem; }
.check-cluster header small { color: rgba(255,255,255,.76); font-size: .72rem; }
.check-cluster header b { padding: 5px 8px; border-radius: 999px; background: rgba(255,255,255,.16); font-size: .66rem; letter-spacing: .045em; text-transform: uppercase; }
.company-checks header { background: var(--navy-2); }
.transaction-checks header { background: var(--teal); }
.payment-checks header { background: #27364a; }
.check-cluster ol { margin: 0; padding: 4px 18px 12px; list-style: none; }
.check-cluster li { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: center; min-height: 55px; border-bottom: 1px solid var(--line); font-size: .9rem; font-weight: 670; line-height: 1.3; }
.check-cluster li:last-child { border-bottom: 0; }
.check-cluster li span { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 8px; background: var(--wash); color: var(--slate); font-size: .66rem; font-weight: 850; }
.company-checks li span { color: var(--navy); background: #eaf0f4; }
.transaction-checks li span { color: #087b74; background: var(--teal-soft); }
.numbered-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 0 22px; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.numbered-checks li { display: grid; grid-template-columns: 31px 1fr; gap: 11px; align-items: center; min-height: 50px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.numbered-checks li span { color: var(--navy-2); font-size: .72rem; font-weight: 850; }
.state-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 26px; }
.state-grid article { padding: 19px; border: 1px solid var(--line); border-radius: 13px; background: white; }
.state-grid p { margin: 13px 0 0; color: var(--slate); font-size: .88rem; line-height: 1.48; }
.badge.neutral { background: #e9eef2; color: var(--navy); }
.decision-section { background: #eef2f7; }
.decision-outcome { border-radius: 15px; padding: 25px; background: white; border: 1px solid var(--line); border-top-width: 5px; }
.decision-outcome > span { font-size: .73rem; font-weight: 850; letter-spacing: .08em; }
.decision-outcome h3 { margin-top: 13px; }
.decision-outcome p { margin-bottom: 0; color: var(--slate); }
.decision-outcome.proceed { border-top-color: var(--green); }
.decision-outcome.proceed > span { color: var(--green); }
.decision-outcome.hold { border-top-color: var(--amber); }
.decision-outcome.hold > span { color: #8c5700; }
.decision-outcome.escalate { border-top-color: var(--red); }
.decision-outcome.escalate > span { color: var(--red); }
.company-profile { display: grid; grid-template-columns: 1fr 420px; gap: 68px; align-items: center; }
.company-profile > div > p:last-child { color: var(--slate); font-size: 1.05rem; }
.registry-card { padding: 26px; border-radius: 18px; color: white; background: var(--navy); box-shadow: var(--shadow); }
.registry-card > span { color: #b9cbd7; font-size: .72rem; font-weight: 820; letter-spacing: .11em; }
.registry-card dl { margin: 20px 0; }
.registry-card dl div { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.registry-card dt { color: #bed0dc; }
.registry-card dd { margin: 0; font-weight: 740; text-align: right; }
.registry-card .button { width: 100%; border-color: #9eb2c0; }
.status-inline { display: inline-flex; align-items: center; gap: 7px; }
.status-inline::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #5ed6a6; }
.company-dark { color: white; background: var(--navy); }
.company-dark .eyebrow { color: #f3b452; }
.company-dark p { color: #c6d5df; }
.light-proof .proof-list a { color: var(--ink); border-color: var(--line); background: var(--wash); }
.light-proof .proof-list a:hover { border-color: var(--accent); background: white; }
.light-proof .proof-list a > span:last-child { color: var(--slate); }
.button.on-dark { border-color: #8fa5b4; color: white; background: transparent; }
.button.on-dark:hover { background: rgba(255,255,255,.08); }
.content { padding: 50px 0 76px; }
.content.narrow { width: min(820px, calc(100% - 40px)); margin: 0 auto; }
.content section + section { margin-top: 42px; }
.content h2 { font-size: 1.7rem; }
.content h3 { margin-top: 24px; }

.form-shell { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 30px; align-items: start; }
.form-card { border: 1px solid var(--line); border-radius: 18px; background: white; padding: 28px; box-shadow: 0 12px 34px rgba(17,34,53,.06); }
.form-section + .form-section { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--line); }
.form-section h2 { margin-bottom: 8px; font-size: 1.5rem; }
.form-section > p { margin: 0 0 20px; color: var(--slate); }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field.full { grid-column: 1 / -1; }
label { display: block; font-weight: 700; font-size: .92rem; }
label:not(.checkbox):not(.file-drop) > span { color: var(--red); }
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #b9c6cf;
  border-radius: 10px;
  padding: 11px 12px;
  color: var(--ink);
  background: white;
}
textarea { min-height: 112px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(217,140,20,.22); border-color: var(--accent); }
.hint { margin: 6px 0 0; color: var(--slate); font-size: .82rem; font-weight: 450; }
.checkbox { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; font-weight: 500; }
.checkbox input { width: 18px; height: 18px; margin: 5px 0 0; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.status { display: none; margin-top: 18px; padding: 14px 16px; border-radius: 10px; }
.status.show { display: block; }
.status.success { background: var(--green-soft); color: var(--green); }
.status.error { background: var(--red-soft); color: var(--red); }
.side-note { position: sticky; top: 98px; border: 1px solid var(--line); border-radius: 16px; padding: 22px; background: var(--wash); }
.side-note h2 { font-size: 1.2rem; }
.side-note ol { padding-left: 22px; margin-bottom: 0; }
.side-note li + li { margin-top: 8px; }

.intake-head { padding-bottom: 38px; }
.intake-head h1 { max-width: 850px; }
.intake-content { padding-top: 36px; background: var(--wash); }
.guided-form-shell { width: min(920px, 100%); margin: 0 auto; }
.wizard-card { overflow: hidden; padding: 0; border-color: #ced7e3; box-shadow: 0 22px 60px rgba(16,44,67,.10); }
.wizard-header { padding: 25px 30px 23px; background: var(--navy); color: white; }
.wizard-status { display: flex; justify-content: space-between; gap: 18px; align-items: baseline; }
.wizard-status span { color: #90a2b6; font-size: .72rem; font-weight: 830; letter-spacing: .09em; text-transform: uppercase; }
.wizard-status strong { font-size: 1.08rem; }
.wizard-meter { height: 5px; margin: 15px 0 22px; overflow: hidden; border-radius: 999px; background: #2d3947; }
.wizard-meter span { display: block; width: 33.333%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--accent), var(--teal)); transition: width .24s ease; }
.wizard-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; }
.wizard-steps li { position: relative; display: flex; gap: 9px; align-items: center; color: #8191a2; font-size: .8rem; }
.wizard-steps li::after { content: ""; position: absolute; top: 15px; left: 39px; right: 10px; height: 1px; background: #394654; }
.wizard-steps li:last-child::after { display: none; }
.wizard-steps li span { position: relative; z-index: 1; display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid #536171; border-radius: 50%; background: var(--navy); font-size: .72rem; font-weight: 850; }
.wizard-steps li b { position: relative; z-index: 1; padding-right: 10px; background: var(--navy); }
.wizard-steps li.active { color: white; }
.wizard-steps li.active span { border-color: var(--accent); background: var(--accent); color: var(--navy); }
.wizard-steps li.complete { color: #a9e2de; }
.wizard-steps li.complete span { border-color: var(--teal); background: var(--teal); color: white; }
.privacy-note { margin: 25px 32px 0; padding: 13px 16px; border: 1px solid #e8c58b; border-radius: 11px; background: var(--accent-soft); color: #6f4a10; font-size: .82rem; line-height: 1.48; }
.form-step { margin: 0; padding: 31px 32px 34px; border: 0; }
.form-step[hidden] { display: none; }
.form-step legend { width: 100%; margin: 0; padding: 0; color: var(--ink); font-size: 1.65rem; font-weight: 800; letter-spacing: -.03em; }
.form-step legend span { display: block; margin-bottom: 4px; color: var(--accent); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.step-intro { margin: 6px 0 25px; color: var(--slate); }
.wizard-actions { display: flex; justify-content: space-between; gap: 14px; margin-top: 31px; padding-top: 24px; border-top: 1px solid var(--line); }
.wizard-actions .button { min-width: 190px; }
.wizard-primary span { color: inherit; }
.payment-focus { margin-bottom: 25px; padding: 16px 18px; border: 1px solid #e8c58b; border-radius: 13px; background: linear-gradient(135deg, var(--accent-soft), var(--teal-soft)); }
.payment-focus > span { color: var(--accent); font-size: .68rem; font-weight: 850; letter-spacing: .09em; }
.payment-focus div { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 8px; }
.payment-focus b { font-size: .88rem; }
.payment-focus i { color: var(--teal); font-style: normal; font-weight: 900; }
.document-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; align-items: center; margin-top: 28px; padding-top: 27px; border-top: 1px solid var(--line); }
.document-panel > div > span { color: var(--accent); font-size: .68rem; font-weight: 850; letter-spacing: .09em; }
.document-panel h2 { margin: 5px 0 7px; font-size: 1.3rem; }
.document-panel p { margin: 0; color: var(--slate); font-size: .84rem; line-height: 1.45; }
.file-drop { display: grid; place-items: center; min-height: 135px; padding: 20px; border: 2px dashed #aebed1; border-radius: 14px; color: var(--accent-ink); background: #fbfcfd; text-align: center; cursor: pointer; }
.file-drop:hover, .file-drop:focus-within { border-color: var(--accent); background: var(--accent-soft); }
.file-drop input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.file-drop strong { font-size: .9rem; }
.file-drop small { display: block; margin-top: 6px; color: var(--slate); font-weight: 550; }
.final-consent { margin-top: 27px; padding: 17px; border-radius: 12px; background: var(--wash); }
.final-actions { margin-top: 18px; }

.report { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: white; }
.report-head { padding: 30px; background: var(--navy); color: white; }
.report-head p { margin: 8px 0 0; color: #cad8e2; }
.report-body { padding: 30px; }
.facts, .findings { width: 100%; border-collapse: collapse; }
.facts th, .facts td, .findings th, .findings td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.facts th { width: 28%; color: var(--slate); font-weight: 650; }
.findings thead th { background: var(--wash); }
.badge { display: inline-flex; border-radius: 999px; padding: 4px 9px; font-size: .76rem; font-weight: 800; letter-spacing: .04em; }
.badge.hold, .badge.unresolved { background: var(--amber-soft); color: #8c5700; }
.badge.contradicted { background: var(--red-soft); color: var(--red); }
.badge.consistent { background: var(--green-soft); color: var(--green); }
.report-section { margin-top: 30px; }
.report-section h2 { font-size: 1.45rem; }
.print-bar { display: flex; justify-content: flex-end; margin-bottom: 18px; }

.operator-grid { display: grid; grid-template-columns: 320px 1fr; gap: 24px; }
.case-list { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.case-button { width: 100%; text-align: left; border: 0; border-bottom: 1px solid var(--line); background: white; padding: 14px; cursor: pointer; }
.case-button:hover { background: var(--wash); }
.case-button strong, .case-button span { display: block; }
.case-button span { color: var(--slate); font-size: .85rem; }
.case-button .badge { display: inline-flex; margin-top: 8px; }
.case-detail { min-height: 320px; }
.data-grid { display: grid; grid-template-columns: 180px 1fr; gap: 8px 18px; }
.data-grid dt { color: var(--slate); }
.data-grid dd { margin: 0; overflow-wrap: anywhere; }
.admin-login { max-width: 520px; }
.empty-state { padding: 16px; color: var(--slate); }
.metric-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }
.metric-strip > div { border: 1px solid var(--line); border-radius: 13px; background: var(--wash); padding: 15px 17px; }
.metric-strip strong, .metric-strip span { display: block; }
.metric-strip strong { font-size: 1.35rem; }
.metric-strip span { color: var(--slate); font-size: .82rem; }
.case-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.case-heading h2 { margin: 0; }
.score-card { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 22px 0; padding: 14px; border: 1px solid var(--line); border-radius: 13px; background: var(--wash); }
.score-card span, .score-card strong { display: block; }
.score-card span { color: var(--slate); font-size: .78rem; }
.score-card strong { font-size: .98rem; }
.score-card strong.consistent { color: var(--green); }
.score-card strong.unresolved { color: #8c5700; }
.score-card strong.contradicted { color: var(--red); }
.detail-panel { border: 1px solid var(--line); border-radius: 12px; padding: 14px 17px; }
.detail-panel summary { cursor: pointer; font-weight: 740; }
.detail-panel[open] summary { margin-bottom: 18px; }
.review-form .form-section { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); }
.review-form .form-section > p { color: var(--slate); }
.check-editor { border: 1px solid var(--line); border-radius: 13px; padding: 16px; margin: 14px 0; }
.check-editor legend { width: 100%; display: flex; justify-content: space-between; gap: 16px; padding: 0 5px; font-weight: 760; }
.check-editor legend small { color: var(--slate); font-weight: 650; }
.check-fields { display: grid; grid-template-columns: 1fr 160px; gap: 13px; }
.check-fields textarea { min-height: 82px; }
.trigger-row { border: 1px solid var(--line); border-radius: 12px; padding: 14px; margin: 10px 0; }
.trigger-row > input { margin-top: 10px; }
.text-button { border: 0; background: none; color: var(--navy); text-decoration: underline; padding: 0; cursor: pointer; font: inherit; }
.sticky-actions { position: sticky; bottom: 0; display: flex; align-items: center; gap: 14px; padding: 14px; margin: 24px -14px -14px; background: rgba(255,255,255,.96); border-top: 1px solid var(--line); backdrop-filter: blur(8px); }
.sticky-actions span { color: var(--slate); font-size: .88rem; }

.site-footer { padding: 34px 0; border-top: 1px solid var(--line); color: var(--slate); }
.footer-row { display: flex; justify-content: space-between; gap: 22px; align-items: flex-start; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: var(--slate); }

@media (max-width: 860px) {
  .hero-grid, .form-shell, .operator-grid, .final-cta .shell, .proof-grid, .price-panel, .company-grid, .method-grid, .company-profile, .offer-grid, .selected-report-grid, .access-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 34px; padding: 60px 0; }
  .market-hero .hero-grid { grid-template-columns: 1fr; gap: 30px; padding: 38px 0 44px; }
  .quick-gate { margin-top: 0; }
  .compare-options { grid-template-columns: 1fr; }
  .compare-option { min-height: 0; }
  .compare-option.featured { transform: none; }
  .selected-report-grid { gap: 38px; }
  .sample-document-preview { min-height: 0; }
  .access-stage { align-items: start; padding: 46px 0 56px; }
  .access-grid { gap: 36px; }
  .access-intro h1 { max-width: 760px; }
  .access-card { max-width: 620px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(odd) { border-left: 1px solid var(--line); }
  .trust-grid > div { border-bottom: 1px solid var(--line); }
  .grid-3 { grid-template-columns: 1fr; }
  .report-concepts { grid-template-columns: 1fr; }
  .grid-2, .check-list { grid-template-columns: 1fr; }
  .side-note { position: static; }
  .scope-table { grid-template-columns: 1fr; }
  .scope-table > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .metric-strip, .score-card { grid-template-columns: repeat(2, 1fr); }
  .state-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .audience-card.warning-card { grid-column: 1 / -1; }
  .home-offer .offer-grid { grid-template-columns: 1fr; gap: 34px; }
  .offer-action { max-width: 420px; }
  .proof-links-bar { grid-template-columns: 1fr; }
  .proof-links-bar a + a { border-left: 0; border-top: 1px solid var(--line); }
  .check-stage-head { grid-template-columns: 140px 1fr; }
  .check-total { min-height: 125px; }
  .check-total strong { font-size: 3.8rem; }
  .check-clusters { grid-template-columns: 1fr; }
  .check-cluster ol { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
}

@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 1px solid var(--line); min-height: 76px; }
  .proof-list a { grid-template-columns: 1fr; }
  .proof-list a > span:last-child { grid-column: 1; }
  .proof-list .badge { grid-row: auto; margin-bottom: 5px; }
  .chain-row { grid-template-columns: 30px 1fr; }
  .state-chip { grid-column: 2; justify-self: start; }
  .numbered-checks, .state-grid { grid-template-columns: 1fr; }
  .source-groups > div { grid-template-columns: 1fr; gap: 5px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card.warning-card { grid-column: auto; }
  .compact-offer ul { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .shell, .content.narrow { width: min(100% - 28px, 1160px); }
  .nav { min-height: 64px; }
  .nav-links > a:not(.button) { display: none; }
  .brand-text { max-width: 175px; line-height: 1.15; }
  .fields { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-card, .report-body { padding: 20px; }
  .data-grid { grid-template-columns: 1fr; }
  .data-grid dt { margin-top: 8px; }
  .metric-strip, .score-card, .check-fields { grid-template-columns: 1fr; }
  .case-heading { display: block; }
  .case-heading .button { margin-top: 12px; }
  .footer-row { flex-direction: column; }
  .table-scroll { overflow-x: auto; }
  .findings { min-width: 720px; }
  .check-stage-head { grid-template-columns: 1fr; gap: 22px; }
  .check-total { width: 130px; min-height: 118px; }
  .check-cluster ol { grid-template-columns: 1fr; }
  .wizard-header { padding: 22px 20px; }
  .wizard-steps li { display: grid; justify-items: center; gap: 5px; text-align: center; }
  .wizard-steps li::after { top: 15px; left: calc(50% + 20px); right: calc(-50% + 20px); }
  .wizard-steps li b { padding: 0; background: transparent; font-size: .72rem; }
  .privacy-note { margin: 19px 20px 0; }
  .form-step { padding: 26px 20px 28px; }
  .wizard-actions { align-items: stretch; }
  .wizard-actions .button { min-width: 0; padding-inline: 14px; }
  .document-panel { grid-template-columns: 1fr; }
  .concept-card { min-height: 0; }
  .concept-card > div { padding: 22px 20px; }
  .concept-card > header { padding: 20px; }
  .concept-card > .button { align-self: stretch; margin: 0 20px 20px; }
  .concept-spec { grid-template-columns: 1fr; }
  .concept-spec > div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .access-stage { min-height: calc(100vh - 65px); padding: 34px 0 44px; }
  .access-intro h1 { font-size: clamp(2.3rem, 12vw, 3.35rem); }
  .access-intro > p:not(.eyebrow) { margin-top: 18px; font-size: 1rem; }
  .access-reassurance { margin-top: 21px; }
  .access-card-head, .access-option, .access-provider-note { padding-inline: 19px; }
}

@media (max-width: 720px) {
  .market-hero h1 { font-size: clamp(2.15rem, 10.5vw, 3rem); }
  .market-hero h1 span { white-space: normal; }
  .compare-stage { padding: 55px 0 48px; }
  .proof-links-bar a { flex-direction: column; gap: 2px; }
}

@media print {
  .site-header, .site-footer, .print-bar, .no-print { display: none !important; }
  body { font-size: 11pt; }
  .content, .content.narrow { width: 100%; padding: 0; }
  .report { border: 0; }
  .report-head { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .report-body { padding: 22px 0; }
  .report-section { break-inside: avoid; }
}
