:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --cp-primary: #0f887a;
  --cp-primary-hover: #0b7468;
  --cp-primary-dark: #082f2a;
  --cp-cyan: #2ebbc4;
  --cp-coral: #ff7d88;
  --cp-yellow: #ffe28a;
  --cp-blue-soft: #a8d1d9;
  --cp-logo-bg: #181818;
  --cp-bg: #f5f8f6;
  --cp-surface: #ffffff;
  --cp-surface-muted: #eef4f1;
  --cp-border: #d8e2de;
  --cp-text: #10211e;
  --cp-muted: #66756f;
  --cp-dark: #111c19;
  --cp-success: #13795b;
  --cp-warning: #a15c00;
  --cp-danger: #b42318;
  --cp-radius-card: 16px;
  --cp-radius-control: 10px;
  --cp-shadow-card: 0 8px 28px rgba(16, 33, 30, 0.08);
  background: var(--cp-bg);
  color: var(--cp-text);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 92px;
}

.anchorAlias {
  display: block;
  height: 0;
  pointer-events: none;
  position: relative;
  top: -92px;
  visibility: hidden;
}

html,
body {
  overflow-x: hidden;
}

body {
  background: var(--cp-bg);
  margin: 0;
}

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

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

img {
  display: block;
  height: auto;
  max-width: 100%;
}

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

h1 {
  font-size: 64px;
  letter-spacing: 0;
  line-height: 0.98;
  max-width: 760px;
}

h2 {
  font-size: 44px;
  letter-spacing: 0;
  line-height: 1.05;
  max-width: 820px;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.siteHeader {
  align-items: center;
  background: rgba(245, 248, 246, 0.96);
  border-bottom: 1px solid var(--cp-border);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.skipLink {
  background: var(--cp-primary-dark);
  border-radius: var(--cp-radius-control);
  color: #fff;
  font-weight: 820;
  left: 16px;
  min-height: 44px;
  opacity: 0;
  padding: 12px 16px;
  position: fixed;
  top: 14px;
  transform: translateY(-140%);
  z-index: 100;
}

.skipLink:focus {
  opacity: 1;
  transform: translateY(0);
}

.brand,
.mockBrand,
.footerBrand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.brand {
  flex: 0 0 auto;
  font-weight: 850;
}

.brandWordmark {
  font-size: 18px;
}

.brandTile {
  background: var(--cp-surface);
  border: 1px solid rgba(16, 33, 30, 0.14);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(16, 33, 30, 0.08);
  display: inline-flex;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 5px;
}

.brandTile img {
  aspect-ratio: 1;
  border-radius: 10px;
  object-fit: contain;
  width: 100%;
}

.headerBrandTile {
  height: 44px;
  width: 44px;
}

.siteNav,
.footerLinks {
  align-items: center;
  display: flex;
  gap: 6px;
}

.siteNav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.siteNav a,
.footerLinks a {
  align-items: center;
  border-radius: var(--cp-radius-control);
  color: #34443f;
  display: inline-flex;
  font-size: 14px;
  font-weight: 760;
  min-height: 44px;
  padding: 0 12px;
}

.siteNav a:hover,
.footerLinks a:hover {
  color: var(--cp-primary-dark);
}

.siteNav .navTextCta {
  color: var(--cp-primary-dark);
}

.siteNav .navCta {
  background: var(--cp-primary);
  color: #fff;
  gap: 9px;
  padding: 0 16px;
}

.siteNav .navCta::before {
  background: url("./brand/chrome-web-store.png") center / contain no-repeat;
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  height: 24px;
  width: 24px;
}

.siteNav .navCta:hover {
  background: var(--cp-primary-hover);
  color: #fff;
}

.siteNav .navCta.isDisabled {
  cursor: default;
}

.siteNav .navUtilityLink {
  display: none;
}

.menuButton {
  align-items: center;
  background: var(--cp-surface);
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius-control);
  color: var(--cp-text);
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.menuIcon,
.menuIcon::before,
.menuIcon::after {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 18px;
}

.menuIcon {
  position: relative;
}

.menuIcon::before,
.menuIcon::after {
  content: "";
  left: 0;
  position: absolute;
}

.menuIcon::before {
  top: -6px;
}

.menuIcon::after {
  top: 6px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  margin: 0 auto;
  max-width: 1240px;
  padding: 88px 32px 76px;
}

.eyebrow {
  color: var(--cp-primary);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.heroCopy {
  color: #3e514b;
  font-size: 20px;
  line-height: 1.5;
  margin-top: 20px;
  max-width: 660px;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primaryAction,
.secondaryAction,
.mockExportButton,
.textAction {
  align-items: center;
  border-radius: var(--cp-radius-control);
  display: inline-flex;
  font-weight: 820;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
}

.primaryAction {
  background: var(--cp-primary);
  border: 1px solid var(--cp-primary);
  color: #fff;
}

.primaryAction:hover {
  background: var(--cp-primary-hover);
}

.secondaryAction {
  background: var(--cp-surface);
  border: 1px solid var(--cp-border);
  color: var(--cp-text);
}

.secondaryAction:hover {
  border-color: rgba(15, 136, 122, 0.45);
}

.primaryAction[aria-disabled="true"],
.secondaryAction[aria-disabled="true"],
.primaryAction.isDisabled,
.secondaryAction.isDisabled {
  background: #e7efec;
  border-color: #d7e2de;
  color: #6c7a75;
  cursor: not-allowed;
  pointer-events: none;
}

.textAction {
  color: var(--cp-primary-dark);
  min-height: 46px;
  padding: 0 4px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.trustStrip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.trustStrip li {
  align-items: center;
  background: var(--cp-surface);
  border: 1px solid var(--cp-border);
  border-radius: 999px;
  color: #34443f;
  display: inline-flex;
  font-size: 13px;
  font-weight: 760;
  min-height: 34px;
  padding: 0 12px;
}

.heroVisual {
  min-width: 0;
}

.browserMockup {
  background: var(--cp-dark);
  border: 1px solid rgba(17, 28, 25, 0.18);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(17, 28, 25, 0.2);
  overflow: hidden;
  padding: 12px;
}

.browserBar {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: 8px 8px 8px minmax(0, 1fr);
  min-height: 30px;
  padding: 0 4px 10px;
}

.browserBar span {
  background: #6f7d77;
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.browserBar span:first-child {
  background: var(--cp-coral);
}

.browserBar span:nth-child(2) {
  background: var(--cp-yellow);
}

.browserBar span:nth-child(3) {
  background: var(--cp-cyan);
}

.browserBar p {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #d6e2de;
  font-size: 12px;
  line-height: 1;
  overflow: hidden;
  padding: 8px 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auditPanelMockup {
  background: var(--cp-bg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  display: grid;
  gap: 12px;
  padding: 14px;
}

.mockHeader,
.reportPreviewHeader,
.featuredHeader,
.siteFooter {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.mockBrandTile {
  height: 40px;
  padding: 4px;
  width: 40px;
}

.mockBrand strong,
.footerBrand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.mockBrand div > span,
.microLabel,
.reportMetaGrid span,
.printBadge,
.priceHeader span {
  color: var(--cp-muted);
  display: block;
  font-size: 12px;
  font-weight: 780;
  line-height: 1.3;
  text-transform: uppercase;
}

.mockPlanBadge,
.exampleBadge,
.printBadge,
.featuredHeader em {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-style: normal;
  font-weight: 820;
  min-height: 30px;
  padding: 0 10px;
  white-space: nowrap;
}

.mockPlanBadge {
  background: #e5f4ef;
  border: 1px solid #c8e8de;
  color: #0b6a52;
}

.sampleDisclosure {
  color: var(--cp-muted);
  font-size: 12px;
  font-weight: 780;
  text-align: center;
}

.miniCard,
.proofCard,
.modeCard,
.workflowGrid article,
.useCaseGrid article,
.priceBox,
.faqItem,
.contactForm,
.contactNotes div,
.exampleReportPreview,
.trustGrid div {
  background: var(--cp-surface);
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius-card);
  box-shadow: var(--cp-shadow-card);
}

.miniCard {
  padding: 14px;
}

.storeCard strong {
  display: block;
  font-size: 18px;
  margin-top: 4px;
}

.storeCard p {
  color: var(--cp-muted);
  margin-top: 4px;
}

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

.metric,
.reportPreviewSummary div {
  background: #f8fbfa;
  border: 1px solid #e1e9e5;
  border-radius: 12px;
  padding: 12px;
}

.metric strong,
.reportPreviewSummary strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.metric span,
.reportPreviewSummary span {
  color: var(--cp-muted);
  display: block;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.25;
  margin-top: 7px;
}

.metric.pass,
.reportPreviewSummary .pass {
  border-left: 4px solid var(--cp-success);
}

.metric.warning,
.reportPreviewSummary .warning {
  border-left: 4px solid var(--cp-warning);
}

.metric.fail,
.reportPreviewSummary .fail {
  border-left: 4px solid var(--cp-danger);
}

.metric.evidence {
  border-left: 4px solid var(--cp-cyan);
}

.resultList {
  display: grid;
  gap: 8px;
}

.resultRow {
  background: #f8fbfa;
  border: 1px solid #e1e9e5;
  border-left: 4px solid var(--cp-success);
  border-radius: 12px;
  padding: 11px 12px;
}

.resultRow.warning {
  border-left-color: var(--cp-warning);
}

.resultRow.fail {
  border-left-color: var(--cp-danger);
}

.resultRow span {
  color: #32443e;
  display: block;
  font-size: 12px;
  font-weight: 820;
  margin-bottom: 4px;
}

.resultRow p {
  color: var(--cp-muted);
  font-size: 14px;
  line-height: 1.4;
}

.mockExportButton {
  background: var(--cp-primary);
  border: 1px solid var(--cp-primary);
  color: #fff;
  width: 100%;
}

.mockExportButton:hover {
  background: var(--cp-primary-hover);
}

.mockCaption {
  color: var(--cp-muted);
  font-size: 13px;
  font-weight: 760;
  margin-top: 12px;
  text-align: center;
}

.band {
  padding: 74px 32px;
}

.sectionIntro,
.proofGrid,
.workflowGrid,
.modeGrid,
.useCaseGrid,
.priceGrid,
.trustGrid,
.exampleReportPreview,
.faqList {
  margin: 0 auto;
  max-width: 1180px;
}

.sectionIntro {
  margin-bottom: 34px;
}

.compactIntro {
  margin-bottom: 22px;
}

.bodyText,
.privacyNote,
.workflowGrid p,
.proofCard li,
.priceBox li,
.issue p,
.faqAnswer p,
.footerBrand p,
.legal p {
  color: var(--cp-muted);
  line-height: 1.58;
}

.bodyText {
  font-size: 18px;
  margin-top: 16px;
  max-width: 740px;
}

.checksBand,
.reportPreviewBand {
  background: var(--cp-surface);
}

.useCaseBand {
  background: var(--cp-bg);
  padding-bottom: 56px;
  padding-top: 56px;
}

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

.useCaseGrid article {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 20px;
}

.useCaseGrid p {
  color: var(--cp-muted);
  line-height: 1.55;
}

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

.proofCard {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.proofIcon {
  border-radius: 12px;
  display: block;
  height: 38px;
  width: 38px;
}

.accentCyan .proofIcon {
  background: var(--cp-cyan);
}

.accentCoral .proofIcon {
  background: var(--cp-coral);
}

.accentYellow .proofIcon {
  background: var(--cp-yellow);
}

.accentBlue .proofIcon {
  background: var(--cp-blue-soft);
}

.proofCard ul,
.priceBox ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.proofCard li,
.priceBox li {
  padding-left: 18px;
  position: relative;
}

.proofCard li::before,
.priceBox li::before {
  background: var(--cp-primary);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 6px;
}

.workflowBand,
.pricingBand,
.faqBand {
  background: var(--cp-surface-muted);
}

.workflowGrid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
}

.workflowGrid::before {
  background: var(--cp-border);
  content: "";
  height: 2px;
  left: 8%;
  position: absolute;
  right: 8%;
  top: 38px;
}

.workflowGrid article {
  display: grid;
  min-height: 100%;
  padding: 22px;
  position: relative;
  z-index: 1;
}

.workflowGrid span {
  align-items: center;
  background: var(--cp-primary-dark);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  height: 32px;
  justify-content: center;
  margin-bottom: 16px;
  width: 32px;
}

.workflowGrid p {
  margin-top: 10px;
}

.modesBand {
  background: var(--cp-surface);
}

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

.modeCard {
  align-content: start;
  display: grid;
  gap: 14px;
  padding: 22px;
}

.modeLabel {
  align-items: center;
  background: #e5f4ef;
  border: 1px solid #c8e8de;
  border-radius: 999px;
  color: #0b6a52;
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  min-height: 30px;
  padding: 0 10px;
  text-transform: uppercase;
  width: fit-content;
}

.modeCard ul,
.comparisonList,
.reportScopeList {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.modeCard li,
.comparisonList li,
.reportScopeList li {
  color: var(--cp-muted);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.modeCard li::before,
.comparisonList li::before,
.reportScopeList li::before {
  background: var(--cp-primary);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 6px;
}

.sectionAction {
  margin: 24px auto 0;
  max-width: 1180px;
}

.exampleReportPreview {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.reportPreviewHeader {
  border-bottom: 1px solid #e1e9e5;
  gap: 18px;
  padding-bottom: 18px;
}

.reportPreviewHeader h3 {
  font-size: 32px;
  margin-top: 8px;
}

.reportHeaderActions {
  align-items: flex-end;
  display: grid;
  gap: 8px;
  justify-items: end;
}

.compactTextAction {
  font-size: 14px;
  min-height: 32px;
}

.exampleBadge {
  background: #e5f4ef;
  border: 1px solid #c8e8de;
  color: #0b6a52;
}

.printBadge {
  background: #f8fbfa;
  border: 1px solid #e1e9e5;
  color: #45554f;
}

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

.reportMetaGrid div {
  background: #f8fbfa;
  border: 1px solid #e1e9e5;
  border-radius: 12px;
  padding: 14px;
}

.reportMetaGrid strong {
  display: block;
  margin-top: 5px;
}

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

.reportPreviewBody {
  align-items: stretch;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
}

.issueListPreview {
  display: grid;
  gap: 10px;
}

.issue {
  background: #f8fbfa;
  border: 1px solid #e1e9e5;
  border-left: 4px solid var(--cp-warning);
  border-radius: 12px;
  padding: 14px;
}

.issue.fail {
  border-left-color: var(--cp-danger);
}

.issue p {
  margin-top: 6px;
}

.sampleHandoffDecision {
  border: 1px solid #dbe6e1;
  border-left-width: 5px;
  border-radius: 14px;
  padding: 16px 18px;
}

.sampleHandoffDecision.warning {
  border-left-color: var(--cp-warning);
}

.sampleHandoffDecision.fail {
  border-left-color: var(--cp-danger);
}

.sampleHandoffDecision.pass {
  border-left-color: var(--cp-success);
}

.sampleHandoffDecision span,
.sampleFindingDetails dt {
  color: var(--cp-muted);
  display: block;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.sampleHandoffDecision strong {
  display: block;
  font-size: 24px;
  line-height: 1.25;
  margin-top: 4px;
}

.sampleHandoffDecision p {
  color: var(--cp-muted);
  line-height: 1.5;
  margin-top: 6px;
}

.sampleFindingDetails {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
}

.sampleFindingDetails div {
  display: grid;
  gap: 4px;
}

.sampleFindingDetails dd {
  color: var(--cp-text);
  line-height: 1.45;
  margin: 0;
}

.evidenceThumb {
  background: #f8fbfa;
  border: 1px solid #e1e9e5;
  border-radius: 14px;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 12px;
}

.evidenceThumb figcaption {
  color: var(--cp-muted);
  font-size: 13px;
  font-weight: 760;
}

.storefrontEvidencePreview {
  background: #ffffff;
  border: 1px solid #dce6e2;
  border-radius: 12px;
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 12px;
}

.evidenceBrowserBar {
  align-items: center;
  border-bottom: 1px solid #e6eeea;
  display: flex;
  gap: 5px;
  padding-bottom: 8px;
}

.evidenceBrowserBar span {
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.evidenceBrowserBar span:first-child {
  background: var(--cp-coral);
}

.evidenceBrowserBar span:nth-child(2) {
  background: var(--cp-yellow);
}

.evidenceBrowserBar span:nth-child(3) {
  background: var(--cp-cyan);
}

.evidenceProductTitle {
  color: var(--cp-text);
  font-weight: 850;
}

.evidenceVariantRow {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.evidenceVariantRow span {
  background: #f1f6f4;
  border: 1px solid #dbe6e2;
  border-radius: 999px;
  color: #33443f;
  font-size: 12px;
  font-weight: 760;
  padding: 5px 8px;
}

.evidenceVariantRow .selected {
  border-color: var(--cp-primary);
  color: var(--cp-primary-dark);
}

.evidencePrice {
  font-size: 18px;
  font-weight: 850;
}

.evidenceAction {
  background: var(--cp-primary);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 820;
  padding: 9px 10px;
  text-align: center;
}

.evidenceWarning {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-left: 4px solid var(--cp-warning);
  border-radius: 8px;
  color: #704214;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.35;
  padding: 8px;
}

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

.priceBox {
  align-content: start;
  display: grid;
  gap: 20px;
  padding: 24px;
}

.priceBox.featured {
  border-color: rgba(15, 136, 122, 0.45);
}

.priceHeader {
  display: grid;
  gap: 8px;
}

.priceHeader strong {
  display: block;
  font-size: 44px;
  line-height: 1;
}

.priceHeader p,
.priceNote {
  color: var(--cp-muted);
  line-height: 1.45;
}

.featuredHeader {
  align-items: flex-start;
  gap: 14px;
}

.featuredHeader em {
  background: #fff8dc;
  border: 1px solid #f1d778;
  color: #5e4400;
  justify-self: start;
  max-width: max-content;
  width: fit-content;
}

.priceNote {
  border-top: 1px solid #e1e9e5;
  font-size: 14px;
  padding-top: 14px;
}

.priceFinePrint,
.productDisclaimer,
.footerDisclaimer {
  color: var(--cp-muted);
  font-size: 13px;
  line-height: 1.5;
}

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

.trustGrid div {
  color: #34443f;
  line-height: 1.45;
  padding: 18px;
}

.trustBand {
  padding-bottom: 48px;
}

.privacyNote {
  margin-top: 18px;
  max-width: 820px;
}

.trustBand .privacyNote {
  margin: 18px auto 0;
  max-width: 1180px;
}

.productDisclaimer {
  margin: 10px auto 0;
  max-width: 1180px;
}

.privacyNote.compact {
  font-size: 14px;
}

.privacyNote a {
  color: #0d615b;
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faqList {
  display: grid;
  gap: 22px;
  max-width: 980px;
}

.faqGroup {
  display: grid;
  gap: 10px;
}

.faqGroupTitle {
  color: var(--cp-primary);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.faqItem {
  overflow: hidden;
}

.faqItem h4 {
  font-size: 17px;
  margin: 0;
}

.faqItem button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--cp-text);
  cursor: pointer;
  display: flex;
  font-weight: 830;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 18px;
  text-align: left;
  width: 100%;
}

.faqItem button::after {
  color: var(--cp-primary);
  content: "+";
  flex: 0 0 auto;
  font-size: 24px;
  font-weight: 500;
  margin-left: 18px;
}

.faqItem button[aria-expanded="true"]::after {
  content: "-";
}

.faqAnswer {
  border-top: 1px solid #e3ebe7;
  padding: 0 18px 18px;
}

.faqAnswer p {
  padding-top: 14px;
}

.contactFormHeader p,
.contactNotes span {
  color: var(--cp-muted);
  line-height: 1.55;
}

.finalCtaBand {
  background: var(--cp-primary-dark);
  color: #ecf7f4;
  padding: 72px 32px;
}

.finalCtaInner {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 1180px;
}

.finalCtaLogo {
  height: 58px;
  padding: 6px;
  width: 58px;
}

.finalCtaBand .eyebrow {
  color: var(--cp-cyan);
}

.finalCtaBand h2 {
  color: #fff;
  font-size: 40px;
}

.finalCtaBand p:not(.eyebrow) {
  color: #cfe0db;
  line-height: 1.55;
  margin-top: 12px;
  max-width: 680px;
}

.finalCtaActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.finalCtaActions .secondaryAction {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.finalCtaActions .textAction {
  color: #d8fffa;
}

.contactPageBand {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.contactIntro h1 {
  font-size: 56px;
  max-width: 720px;
}

.contactNotes {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contactNotes div {
  padding: 18px;
}

.contactNotes strong,
.contactNotes span {
  display: block;
}

.contactNotes span {
  margin-top: 6px;
}

.contactFormHeader {
  border-bottom: 1px solid #e1e9e5;
  display: grid;
  gap: 10px;
  padding-bottom: 16px;
}

.contactFormHeader h2 {
  font-size: 30px;
  line-height: 1.12;
}

.contactPageForm {
  align-content: start;
}

.contactForm {
  display: grid;
  gap: 14px;
  padding: 22px;
}

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

.contactForm label,
.contactForm label > span {
  display: grid;
  gap: 7px;
}

.contactForm label > span {
  color: #33413d;
  font-size: 14px;
  font-weight: 820;
}

.contactForm input,
.contactForm select,
.contactForm textarea {
  background: #fff;
  border: 1px solid #cddbd5;
  border-radius: var(--cp-radius-control);
  color: var(--cp-text);
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

.humanCheck {
  min-width: 0;
}

.captchaRow {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: auto minmax(0, 1fr);
  min-width: 0;
}

.captchaQuestion {
  align-items: center;
  background: #f3f8f6;
  border: 1px solid #cddbd5;
  border-radius: var(--cp-radius-control);
  color: var(--cp-dark);
  display: inline-flex;
  font-weight: 860;
  justify-content: center;
  min-height: 44px;
  min-width: 88px;
  padding: 10px 14px;
  text-align: center;
  white-space: nowrap;
}

.captchaRow input {
  min-width: 0;
}

.contactForm textarea {
  min-height: 136px;
  resize: vertical;
}

.contactForm button {
  cursor: pointer;
  width: fit-content;
}

.contactForm button:disabled {
  background: #a7b8b3;
  border-color: #a7b8b3;
  cursor: wait;
}

.formStatus {
  color: var(--cp-muted);
  font-weight: 760;
  min-height: 24px;
}

.formStatus.success {
  color: var(--cp-success);
}

.formStatus.error {
  color: var(--cp-danger);
}

.siteFooter {
  background: var(--cp-dark);
  color: #e7efec;
  gap: 24px;
  padding: 28px 32px;
}

.footerBrand {
  max-width: 560px;
}

.footerBrandTile {
  height: 40px;
  padding: 4px;
  width: 40px;
}

.footerBrand p {
  color: #b8c9c3;
  margin-top: 4px;
}

.footerLinks {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footerLinks a {
  color: #dce8e4;
}

.footerDisclaimer {
  color: #b8c9c3;
  flex-basis: 100%;
  margin: 0;
}

.legal {
  background: var(--cp-surface);
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius-card);
  box-shadow: var(--cp-shadow-card);
  margin: 36px auto;
  max-width: 920px;
  padding: 42px;
}

.legal h1 {
  font-size: 46px;
  line-height: 1;
}

.legal h2 {
  font-size: 24px;
  line-height: 1.18;
  margin-top: 32px;
}

.legal p {
  margin-top: 14px;
}

.orderSuccessPage {
  background: #f3f7f5;
}

.orderSuccessBand {
  align-items: stretch;
  column-gap: clamp(32px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(360px, 0.78fr);
  margin-left: auto;
  margin-right: auto;
  min-height: 62vh;
  max-width: 1280px;
  row-gap: 28px;
}

.orderSuccessHero {
  align-content: center;
  display: grid;
  gap: 18px;
}

.orderSuccessTile {
  height: 72px;
  width: 72px;
}

.orderSuccessHero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  max-width: 720px;
}

.orderSuccessHero .bodyText {
  max-width: 680px;
}

.orderSuccessActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.orderFinePrint {
  color: var(--cp-muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 620px;
}

.orderSteps {
  align-content: center;
  display: grid;
  gap: 12px;
  justify-self: stretch;
  max-width: 620px;
  width: 100%;
}

.orderStep {
  background: #fff;
  border: 1px solid #e1e9e5;
  border-radius: var(--cp-radius-card);
  box-shadow: var(--cp-shadow-card);
  display: grid;
  gap: 10px;
  padding: 20px;
}

.orderStep span {
  align-items: center;
  background: #e5f4ef;
  border: 1px solid #c8e8de;
  border-radius: 10px;
  color: var(--cp-primary-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 42px;
}

.orderStep h2 {
  font-size: 20px;
}

.orderStep p {
  color: var(--cp-muted);
  line-height: 1.55;
  margin: 0;
}

.breadcrumb {
  color: var(--cp-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 8px;
  margin: 0 auto 24px;
  max-width: 1180px;
}

.breadcrumb a {
  color: var(--cp-primary-dark);
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contentPage {
  margin: 0 auto;
  max-width: 1180px;
  padding: 56px 32px 76px;
}

.contentHero {
  max-width: 800px;
}

.contentHero h1 {
  font-size: 54px;
}

.contentGrid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  margin-top: 34px;
}

.contentArticle,
.contentAside,
.sampleReportShell,
.reportSectionCard {
  background: var(--cp-surface);
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius-card);
  box-shadow: var(--cp-shadow-card);
}

.contentArticle,
.contentAside {
  align-content: start;
  display: grid;
  gap: 22px;
  padding: 26px;
}

.contentArticle h2,
.contentAside h2 {
  font-size: 28px;
}

.contentArticle p,
.contentArticle li,
.contentAside p,
.contentAside li {
  color: var(--cp-muted);
  line-height: 1.62;
}

.contentArticle ul,
.contentAside ul,
.checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.contentCta {
  align-items: center;
  background: var(--cp-surface-muted);
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius-card);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding: 18px;
}

.sampleReportPage {
  background: #ffffff;
}

.sampleReportShell {
  display: grid;
  gap: 22px;
  margin: 36px auto;
  max-width: 1120px;
  padding: 28px;
}

.sampleReportTop {
  align-items: center;
  border-bottom: 1px solid #e1e9e5;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-bottom: 24px;
}

.sampleReportTop .mockBrand {
  align-items: flex-start;
  gap: 18px;
}

.sampleReportTop .mockBrand > div {
  display: grid;
  gap: 14px;
}

.sampleReportTop .exampleBadge {
  justify-content: center;
  justify-self: center;
  text-align: center;
  width: fit-content;
}

.sampleReportTop .bodyText {
  margin-top: 0;
}

.sampleReportTop h1 {
  font-size: 44px;
}

.sampleReportActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

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

.reportSectionCard {
  align-content: start;
  display: grid;
  gap: 16px;
  padding: 22px;
}

.reportSectionCard h2 {
  font-size: 24px;
}

.reportSectionCard p,
.reportSectionCard li,
.reportFooterNote {
  color: var(--cp-muted);
  line-height: 1.58;
}

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

.reportStatus {
  background: #f8fbfa;
  border: 1px solid #e1e9e5;
  border-left: 4px solid var(--cp-success);
  border-radius: 12px;
  padding: 14px;
}

.reportStatus.warning {
  border-left-color: var(--cp-warning);
}

.reportStatus.fail {
  border-left-color: var(--cp-danger);
}

.reportStatus.evidence {
  border-left-color: var(--cp-cyan);
}

.reportStatus strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.reportStatus span {
  color: var(--cp-muted);
  display: block;
  font-size: 13px;
  font-weight: 760;
  margin-top: 6px;
}

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

.printFooter {
  border-top: 1px solid #dce6e2;
  color: var(--cp-muted);
  font-size: 12px;
  padding-top: 14px;
}

.notFound {
  min-height: 58vh;
}

.visuallyHidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(15, 136, 122, 0.34);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .siteHeader {
    padding-left: 24px;
    padding-right: 24px;
  }

  .siteNav a {
    padding-left: 9px;
    padding-right: 9px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 460px);
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }
}

@media (max-width: 1180px) {
  .siteHeader {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 66px;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .menuButton {
    display: inline-flex;
  }

  .siteNav {
    align-items: stretch;
    display: none;
    flex-direction: column;
    gap: 4px;
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-top: 10px;
  }

  .siteNav[data-open="true"] {
    display: flex;
  }

  .siteNav .navUtilityLink {
    display: inline-flex;
  }

  .siteNav a {
    justify-content: flex-start;
    width: 100%;
  }

  .siteNav .navCta {
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .heroVisual {
    margin: 0 auto;
    max-width: 540px;
    width: 100%;
  }

  .proofGrid,
  .modeGrid,
  .trustGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 760px) {
  .siteHeader,
  .hero,
  .band,
  .siteFooter {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .heroCopy {
    font-size: 18px;
  }

  .workflowGrid,
  .modeGrid,
  .useCaseGrid,
  .priceGrid,
  .contentGrid,
  .orderSuccessBand,
  .reportSectionGrid,
  .sampleEvidenceGrid,
  .fieldGrid {
    grid-template-columns: 1fr;
  }

  .workflowGrid::before {
    display: none;
  }

  .reportPreviewHeader,
  .featuredHeader,
  .sampleReportTop,
  .finalCtaInner,
  .siteFooter {
    align-items: flex-start;
    flex-direction: column;
  }

  .finalCtaInner {
    display: flex;
  }

  .finalCtaActions,
  .reportHeaderActions,
  .orderSuccessActions,
  .sampleReportActions {
    justify-content: flex-start;
    justify-items: start;
  }

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

  .footerLinks {
    justify-content: flex-start;
  }

  .legal {
    border-left: 0;
    border-radius: 0;
    border-right: 0;
    margin: 0;
    padding: 30px 20px;
  }

  .contentPage {
    padding: 42px 20px 58px;
  }

  .contentHero h1,
  .orderSuccessHero h1,
  .sampleReportTop h1 {
    font-size: 38px;
  }
}

@media (max-width: 520px) {
  .hero,
  .band {
    padding-bottom: 54px;
    padding-top: 54px;
  }

  .headerBrandTile {
    height: 42px;
    width: 42px;
  }

  .brandWordmark {
    font-size: 17px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .heroActions .primaryAction,
  .heroActions .secondaryAction,
  .heroActions .textAction,
  .priceBox .primaryAction,
  .priceBox .secondaryAction,
  .contentCta .primaryAction,
  .contentCta .secondaryAction,
  .orderSuccessActions .primaryAction,
  .orderSuccessActions .secondaryAction,
  .sampleReportActions .primaryAction,
  .sampleReportActions .secondaryAction,
  .contactForm button,
  .finalCtaActions .primaryAction,
  .finalCtaActions .secondaryAction,
  .finalCtaActions .textAction {
    width: 100%;
  }

  .trustStrip {
    flex-direction: column;
  }

  .trustStrip li {
    width: 100%;
  }

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

  .captchaQuestion {
    justify-content: flex-start;
    width: 100%;
  }

  .browserMockup {
    border-radius: 18px;
    padding: 8px;
  }

  .auditPanelMockup {
    padding: 10px;
  }

  .mockHeader {
    align-items: flex-start;
    flex-direction: column;
  }

  .metricGrid,
  .proofGrid,
  .reportMetaGrid,
  .reportPreviewSummary,
  .reportStatusGrid,
  .trustGrid {
    grid-template-columns: 1fr;
  }

  .priceHeader strong {
    font-size: 36px;
  }

  .exampleReportPreview,
  .sampleReportShell,
  .reportSectionCard,
  .contentArticle,
  .contentAside,
  .contactForm,
  .contactNotes div,
  .priceBox,
  .proofCard,
  .modeCard,
  .useCaseGrid article,
  .workflowGrid article {
    padding: 18px;
  }

  .contactIntro h1 {
    font-size: 38px;
  }
}

@media (max-width: 360px) {
  .siteHeader,
  .hero,
  .band,
  .siteFooter {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 34px;
  }

  .contactIntro h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .heroCopy {
    font-size: 17px;
  }

  .reportPreviewHeader h3 {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media print {
  @page {
    margin: 12mm;
  }

  :root,
  body,
  .sampleReportPage {
    background: #fff;
    color: #111;
  }

  .siteHeader,
  .siteFooter,
  .sampleReportActions,
  .skipLink,
  .breadcrumb,
  .finalCtaBand {
    display: none !important;
  }

  .sampleReportShell {
    border: 0;
    box-shadow: none;
    margin: 0;
    max-width: none;
    padding: 0;
  }

  .sampleReportTop,
  .reportSectionCard,
  .issue,
  .evidenceThumb {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .reportSectionGrid,
  .sampleEvidenceGrid {
    grid-template-columns: 1fr;
  }

  .reportStatusGrid {
    grid-template-columns: repeat(4, 1fr);
  }

  .reportFooterNote,
  .printFooter {
    display: none;
  }

  a {
    color: #111;
    text-decoration: none;
  }
}
