:root {
  color-scheme: light;
  --ink: #18211f;
  --ink-soft: #303a37;
  --muted: #63716d;
  --paper: #f5f3ed;
  --white: #ffffff;
  --mist: #e9ede6;
  --line: #d8ddd4;
  --teal: #214f5e;
  --teal-dark: #14343f;
  --olive: #40513c;
  --amber: #89601f;
  --wine: #763337;
  --blue-grey: #617681;
  --shadow: 0 22px 60px rgba(24, 33, 31, 0.14);
}

* {
  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;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 66px;
  padding: 0 40px;
  background: rgba(245, 243, 237, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 760;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--teal);
  color: var(--white);
  border-radius: 6px;
  font-size: 17px;
  line-height: 1;
}

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

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a:focus {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.34;
  filter: saturate(0.82) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245, 243, 237, 0.99) 0%, rgba(245, 243, 237, 0.95) 52%, rgba(245, 243, 237, 0.7) 100%),
    rgba(245, 243, 237, 0.2);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 80px));
  min-height: 720px;
  margin: 0 auto;
  padding: 72px 0;
}

.hero-content {
  max-width: 740px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 76px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 21px;
}

.hero-actions,
.brief-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--teal);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 720;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--teal);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--teal-dark);
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.microcopy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.panel-topline strong {
  color: var(--teal);
}

.snapshot-list {
  margin-bottom: 0;
}

.snapshot-list div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.snapshot-list div:last-child {
  border-bottom: 0;
}

.snapshot-list dt {
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 760;
}

.snapshot-list dd {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--teal-dark);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.signal-item {
  min-height: 118px;
  padding: 28px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.signal-item:last-child {
  border-right: 0;
}

.signal-item span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.signal-item strong {
  display: block;
  max-width: 260px;
  font-size: 18px;
  line-height: 1.25;
}

.section {
  padding: 86px 40px;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.muted {
  background: var(--mist);
}

.intro-section {
  background: var(--white);
}

.intro-grid,
.brief-layout,
.policy-layout,
.faq-layout,
.sample-layout,
.agency-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: start;
}

.section-heading {
  max-width: 720px;
}

.section-heading.wide {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading p:not(.section-kicker),
.brief-copy p,
.sample-copy p,
.intro-copy p {
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.path-grid,
.pricing-grid,
.agency-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.path-card,
.price-card,
.agency-grid article,
.claim-card,
.method-grid article,
.policy-list article,
.trigger-grid article,
.compare-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.path-card,
.price-card,
.agency-grid article,
.method-grid article,
.policy-list article,
.trigger-grid article,
.compare-card {
  padding: 24px;
}

.path-card {
  min-height: 250px;
}

.card-index,
.method-grid span,
.claim-card span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.path-card p,
.price-card p,
.agency-grid p,
.method-grid p,
.policy-list p,
.claim-card p,
.trigger-grid p,
.compare-card p {
  color: var(--muted);
}

.path-card a,
.price-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal);
  font-weight: 760;
  text-decoration: none;
}

.path-card a::after,
.price-card a::after {
  content: ">";
  margin-left: 8px;
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(480px, 1fr);
  gap: 58px;
  align-items: start;
}

.compare-section {
  background: var(--white);
}

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

.compare-card {
  min-height: 270px;
}

.compare-card span {
  display: block;
  min-height: 38px;
  margin-bottom: 24px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.compare-card.setorin-card {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.compare-card.setorin-card span {
  color: #d7b06a;
}

.compare-card.setorin-card p {
  color: rgba(255, 255, 255, 0.78);
}

.context-section {
  background: var(--mist);
}

.context-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(520px, 1fr);
  gap: 58px;
  align-items: start;
}

.context-grid {
  display: grid;
  gap: 14px;
}

.context-grid a {
  display: grid;
  gap: 10px;
  min-height: 128px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.context-grid a:hover,
.context-grid a:focus {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.context-grid span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.context-grid strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.28;
}

.urgency-section {
  background: var(--paper);
}

.urgency-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(520px, 1fr);
  gap: 54px;
  align-items: start;
}

.trigger-grid {
  display: grid;
  gap: 16px;
}

.trigger-grid article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
}

.trigger-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--teal);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 820;
}

.trigger-grid h3,
.trigger-grid p {
  grid-column: 2;
}

.sticky-heading {
  position: sticky;
  top: 100px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.method-grid article {
  min-height: 260px;
}

.method-grid span {
  color: var(--teal);
}

.library-section {
  background: var(--teal-dark);
  color: var(--white);
}

.library-section .section-kicker {
  color: #d2a556;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 40px;
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus {
  color: var(--teal-dark);
  background: var(--white);
}

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

.claim-card {
  min-height: 210px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.claim-card.is-hidden {
  display: none;
}

.sample-section {
  background: var(--paper);
}

.sample-layout {
  align-items: center;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  background: var(--olive);
  border-radius: 50%;
}

.audit-preview-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.audit-preview-card img {
  display: block;
  width: 100%;
  height: auto;
}

.sample-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sample-link {
  margin-top: 0;
}

.button.ghost {
  background: transparent;
  color: var(--teal);
}

.audit-demo {
  margin-top: 38px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.demo-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: start;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.demo-header h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.demo-header p {
  margin-bottom: 0;
  color: var(--muted);
}

.demo-score {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--mist);
  border-radius: 8px;
}

.demo-score span,
.finding-card span,
.rewrite-panel .label {
  color: var(--amber);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.demo-score strong {
  color: var(--teal);
  font-size: 22px;
  line-height: 1.15;
}

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

.finding-card {
  min-height: 220px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.finding-card.high {
  border-color: rgba(118, 51, 55, 0.34);
  background: #fbf3f2;
}

.finding-card.medium {
  border-color: rgba(137, 96, 31, 0.34);
  background: #fbf7ed;
}

.finding-card.source {
  border-color: rgba(33, 79, 94, 0.34);
  background: #eef6f7;
}

.finding-card p {
  color: var(--muted);
}

.finding-card strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.rewrite-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.rewrite-panel div {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.rewrite-panel p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.table-wrap {
  margin-top: 36px;
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sample-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.sample-table th,
.sample-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.sample-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.sample-table tr:last-child td {
  border-bottom: 0;
}

.brief-layout {
  align-items: start;
}

.brief-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brief-form label,
.brief-form legend {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 740;
}

.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfbf7;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.brief-form textarea {
  min-height: 112px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

fieldset {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkbox-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 14px !important;
  font-weight: 620 !important;
}

.checkbox-row input {
  width: 16px;
  min-height: 16px;
  padding: 0;
}

.form-status {
  min-height: 22px;
  margin-bottom: 0;
  color: var(--olive);
  font-size: 14px;
  font-weight: 700;
}

.privacy-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.button[aria-busy="true"] {
  opacity: 0.72;
  pointer-events: none;
}

.agency-layout {
  grid-template-columns: minmax(280px, 0.6fr) minmax(560px, 1fr);
}

.agency-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-section {
  background: var(--white);
}

.promise-section {
  background: var(--teal-dark);
  color: var(--white);
}

.promise-section .section-kicker {
  color: #d7b06a;
}

.promise-section .section-heading p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.74);
}

.promise-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(520px, 1fr);
  gap: 58px;
  align-items: start;
}

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

.promise-grid article {
  min-height: 240px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
}

.promise-grid span {
  display: block;
  margin-bottom: 28px;
  color: #d7b06a;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.promise-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.price-card.highlighted {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.price {
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 36px;
  font-weight: 820;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 720;
  line-height: 1.25;
}

.pricing-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.policy-section {
  background: var(--olive);
  color: var(--white);
}

.policy-section .section-kicker {
  color: #d7b06a;
}

.policy-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.policy-list article {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.policy-list p {
  color: rgba(255, 255, 255, 0.78);
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 760;
  cursor: pointer;
}

details p {
  padding: 0 22px 22px;
  margin-bottom: 0;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 40px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.footer .brand {
  color: var(--white);
}

.footer-brand p {
  max-width: 420px;
  margin: 12px 0 0;
}

.footer-links {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.footer a {
  color: var(--white);
  text-decoration: none;
}

.checkout-status-page {
  display: grid;
  min-height: 100vh;
  padding: 32px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(20, 52, 63, 0.96), rgba(33, 79, 94, 0.92)),
    var(--teal-dark);
}

.checkout-status-card {
  width: min(680px, 100%);
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.checkout-status-card .brand {
  margin-bottom: 40px;
}

.checkout-status-card h1 {
  margin-bottom: 18px;
  font-size: 46px;
  line-height: 1.03;
}

.checkout-status-card p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
}

.privacy-page {
  background: var(--paper);
}

.privacy-hero {
  padding: 82px 40px 42px;
  background: var(--teal-dark);
  color: var(--white);
}

.privacy-hero .section-kicker {
  color: #d7b06a;
}

.privacy-hero h1,
.privacy-hero p {
  width: min(860px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.privacy-hero h1 {
  font-size: 58px;
}

.privacy-hero p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.privacy-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1080px, calc(100% - 80px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.privacy-content article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.privacy-content h2 {
  margin-bottom: 12px;
  font-size: 26px;
}

.privacy-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.report-page {
  background: #f1f2ed;
}

.report-page .site-header {
  position: static;
}

.report-nav {
  display: flex;
}

.report-hero {
  padding: 72px 40px 58px;
  background: var(--teal-dark);
  color: var(--white);
}

.report-hero .eyebrow {
  color: #d2a556;
}

.report-hero h1 {
  max-width: 860px;
  font-size: 64px;
}

.report-hero p {
  max-width: 840px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.report-actions .button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
}

.report-section {
  padding: 42px 40px 80px;
}

.report-container {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.audit-sheet {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.sheet-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.sheet-label {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.sheet-header h2 {
  font-size: 34px;
}

.sheet-meta {
  display: grid;
  gap: 6px;
  min-width: 260px;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

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

.summary-grid article {
  min-height: 164px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.summary-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.summary-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 24px;
  line-height: 1.1;
}

.summary-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.executive-note {
  padding: 22px;
  margin-bottom: 22px;
  background: #eef6f7;
  border: 1px solid rgba(33, 79, 94, 0.22);
  border-radius: 8px;
}

.executive-note p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.report-table-wrap {
  margin-top: 0;
  box-shadow: none;
}

.audit-matrix {
  min-width: 1120px;
}

.audit-matrix th,
.audit-matrix td {
  font-size: 14px;
}

.risk-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 820;
}

.risk-high {
  color: #fff;
  background: var(--wine);
}

.risk-medium {
  color: #fff;
  background: var(--amber);
}

.risk-low {
  color: #fff;
  background: var(--blue-grey);
}

.report-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.rewrite-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.rewrite-card span {
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.before-card {
  background: #fbf3f2;
  border-color: rgba(118, 51, 55, 0.22);
}

.before-card span {
  color: var(--wine);
}

.after-card {
  background: #edf4ec;
  border-color: rgba(64, 81, 60, 0.22);
}

.after-card span {
  color: var(--olive);
}

.rewrite-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.supplier-pack {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(360px, 1fr);
  gap: 28px;
  padding: 24px;
  margin-top: 22px;
  background: var(--teal-dark);
  color: var(--white);
  border-radius: 8px;
}

.supplier-pack p,
.supplier-pack li {
  color: rgba(255, 255, 255, 0.78);
}

.supplier-pack ol {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0;
}

.decision-log {
  margin-top: 22px;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.decision-grid div {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.decision-grid strong {
  color: var(--teal);
}

.decision-grid span {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1060px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-inner,
  .method-layout,
  .sample-layout,
  .brief-layout,
  .policy-layout,
  .faq-layout,
  .agency-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 560px;
  }

  .sticky-heading {
    position: static;
  }

  .signal-band,
  .claim-grid,
  .path-grid,
  .pricing-grid,
  .agency-grid,
  .policy-list,
  .compare-grid,
  .summary-grid,
  .decision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-header,
  .report-columns,
  .supplier-pack,
  .urgency-layout,
  .promise-layout,
  .context-layout {
    grid-template-columns: 1fr;
  }

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

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

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 62px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 18px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .nav {
    display: grid;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .hero,
  .hero-inner {
    min-height: 650px;
  }

  .hero-inner {
    width: min(100% - 36px, 1180px);
    padding: 56px 0 46px;
  }

  h1 {
    font-size: 48px;
    line-height: 1;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-copy,
  .section-heading p:not(.section-kicker),
  .brief-copy p,
  .sample-copy p,
  .intro-copy p {
    font-size: 17px;
  }

  .section {
    padding: 58px 18px;
  }

  .signal-band,
  .intro-grid,
  .path-grid,
  .method-grid,
  .claim-grid,
  .sample-layout,
  .brief-layout,
  .form-grid,
  .agency-grid,
  .pricing-grid,
  .policy-list,
  .summary-grid,
  .decision-grid,
  .rewrite-panel,
  .compare-grid,
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .demo-header {
    grid-template-columns: 1fr;
  }

  .report-hero,
  .report-section,
  .privacy-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .report-hero h1,
  .privacy-hero h1 {
    font-size: 42px;
  }

  .privacy-content {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 1080px);
    padding: 32px 0 58px;
  }

  .audit-sheet {
    padding: 18px;
  }

  .sheet-header {
    flex-direction: column;
  }

  .sheet-meta {
    min-width: 0;
    text-align: left;
  }

  .signal-item {
    min-height: auto;
    padding: 22px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .signal-item:last-child {
    border-bottom: 0;
  }

  .brief-form {
    padding: 20px;
  }

  .hero-panel {
    display: none;
  }

  .path-card,
  .price-card,
  .method-grid article,
  .claim-card {
    min-height: auto;
  }

  .card-index,
  .method-grid span,
  .claim-card span {
    margin-bottom: 20px;
  }

  .footer {
    flex-direction: column;
    padding: 30px 18px;
  }

  .footer-links {
    justify-items: start;
  }

  .report-actions .button {
    width: 100%;
  }
}

@media print {
  .site-header,
  .report-hero,
  .report-actions {
    display: none;
  }

  body,
  .report-page {
    background: #ffffff;
  }

  .report-section {
    padding: 0;
  }

  .audit-sheet {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
}
