:root {
  --paper: #f7f8fa;
  --panel: #ffffff;
  --ink: #10182b;
  --muted: #56607a;
  --line: #e2e6ed;
  --line-soft: #edf0f4;
  --trust: #2554e8;
  --trust-dark: #1b3fbf;
  --trust-tint: #eaf0fe;
  --success: #157a47;
  --success-tint: #e9f6ef;
  --critical: #d14343;
  --critical-tint: #fbeaea;
  --warning: #c97a1f;
  --warning-tint: #fbf1e3;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 16px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  font-family: Manrope, system-ui, sans-serif;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

a { color: inherit; }

header { padding: 12px 0 4px; }

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  height: 80px;
  width: auto;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

nav a {
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

nav a:hover {
  color: var(--trust);
  border-bottom-color: var(--trust);
}

.demo {
  padding: 28px 0 32px;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 400px);
  gap: 20px 36px;
  align-items: center;
}

.demo-result:not([hidden]) {
  grid-column: 1 / -1;
}

.demo-copy { max-width: none; }

.demo-copy h2 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
  margin: 6px 0 10px;
}

.demo-copy p { margin: 0; color: var(--muted); }

.eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--trust);
}

.demo-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(16, 24, 43, 0.05);
}

.demo-result.report-frame {
  transform: none;
  padding: 0;
}

.demo-card .btn-primary { width: 100%; }

.demo-note,
.demo-extra,
.demo-url-out {
  font-size: 13px;
  color: var(--muted);
  margin: 12px 0 0;
}

.demo-error {
  margin: 12px 0 0;
  color: var(--critical);
  font-size: 14px;
  font-weight: 600;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.demo-score {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}

.score-ring {
  --offset: 226;
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  border-radius: 50%;
  background: conic-gradient(var(--trust) calc(100% - (var(--offset) / 226 * 100%)), var(--line-soft) 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.score-ring::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: #fff;
  border-radius: 50%;
}

.score-ring strong,
.score-ring span {
  position: relative;
  z-index: 1;
}

.score-ring strong {
  font-family: Manrope, system-ui, sans-serif;
  font-size: 28px;
  line-height: 1;
}

.score-ring span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.demo-score h3 {
  font-size: 20px;
  line-height: 1.25;
  margin: 4px 0 8px;
}

.demo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.demo-cards .card {
  border-radius: 12px;
  padding: 16px 16px 14px;
  border: 1px solid var(--line);
}

.demo-cards .card.critical { background: var(--critical-tint); border-color: #f0c8c8; }
.demo-cards .card.warning { background: var(--warning-tint); border-color: #f0ddb8; }
.demo-cards .card.ok { background: var(--success-tint); border-color: #c8e6d4; }

.demo-cards .tag {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.demo-cards .card.critical .tag { color: var(--critical); }
.demo-cards .card.warning .tag { color: var(--warning); }
.demo-cards .card.ok .tag { color: var(--success); }

.demo-cards h3 { font-size: 16px; margin: 0 0 8px; }
.demo-cards p { margin: 0 0 8px; font-size: 14px; color: var(--muted); }
.demo-cards p:last-child { margin-bottom: 0; }

.demo-result .btn-primary { margin-top: 18px; display: inline-flex; }

.demo-result.is-down .ring-num { color: var(--warning); }

.brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #f4f7ff, #fff);
}

.demo-result:not(.is-branded) .brand-mark { opacity: 0.35; filter: grayscale(1); }
.demo-result:not(.is-branded) .brand-logo-slot { border-style: solid; }

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.brand-logo-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 220px;
  min-height: 36px;
  padding: 6px 12px;
  border: 1.5px dashed var(--trust);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--trust);
  background: #fff;
}

.brand-logo-slot img {
  max-height: 40px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}

.brand-logo-slot:has(img:not([hidden])) {
  border-style: solid;
  padding: 4px 8px;
}

.brand-mark strong {
  font-family: Manrope, system-ui, sans-serif;
  font-size: 16px;
}

.brand-mark em {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
}

.brand-toggle {
  display: flex;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.brand-toggle button {
  border: 0;
  background: transparent;
  padding: 8px 12px;
  font: 600 12px Inter, system-ui, sans-serif;
  color: var(--muted);
  cursor: pointer;
}

.brand-toggle button.is-on {
  background: var(--trust);
  color: #fff;
}

.demo-benchmark {
  margin: 8px 0 0;
  font-size: 13.5px;
  color: var(--ink);
}

.demo-tabs {
  display: flex;
  gap: 8px;
  margin: 8px 0 16px;
}

.demo-tabs button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font: 600 13px Inter, system-ui, sans-serif;
  color: var(--muted);
  cursor: pointer;
}

.demo-tabs button.is-on {
  background: var(--trust);
  border-color: var(--trust);
  color: #fff;
}

.demo-pane-lead {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
}

.demo-tasks {
  margin: 0;
  padding-left: 20px;
}

.demo-tasks li { margin-bottom: 14px; }

.demo-tasks strong { display: block; }

.demo-tasks span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin: 2px 0 4px;
}

.demo-tasks p { margin: 0; font-size: 14px; color: var(--muted); }

[hidden] { display: none !important; }

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 8px;
}

.demo-actions .btn-ghost { width: auto; }

.rescan-compare {
  margin: 20px 0 0;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--success-tint);
  border: 1px solid #c8e6d4;
}

.rescan-compare-line {
  font-family: Manrope, system-ui, sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin: 4px 0 8px;
}

.rescan-lock {
  margin: 22px 0 0;
  padding: 18px 18px 16px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(247, 248, 250, 0.4), rgba(247, 248, 250, 0.85)),
    repeating-linear-gradient(-12deg, transparent, transparent 8px, rgba(16, 24, 43, 0.02) 8px, rgba(16, 24, 43, 0.02) 16px);
  position: relative;
}

.rescan-lock-preview {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  filter: blur(0.4px);
}

.rescan-lock-preview .is-ghost {
  color: var(--success);
  filter: blur(3px);
  user-select: none;
}

.rescan-lock p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--muted);
}

.rescan-lock a {
  font-size: 14px;
  font-weight: 700;
  color: var(--trust);
  text-decoration: none;
}

.rescan-lock a:hover { text-decoration: underline; }

.demo-findings { margin-top: 4px; }

.demo-findings .why,
.demo-findings .next {
  margin: 6px 0 0;
  font-size: 13.5px;
  color: var(--muted);
}

.demo-retell {
  margin: 0 0 18px;
  padding: 14px 16px;
  background: var(--trust-tint);
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}

.cloak-verdict {
  margin: 0 0 18px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid #bfe3cc;
  background: var(--success-tint);
}

.cloak-verdict .tag {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--success);
}

.cloak-verdict h3 {
  font-size: 17px;
  margin: 0 0 6px;
}

.cloak-verdict p:last-child {
  margin: 0;
  font-size: 14px;
  color: var(--ink);
}

.cloak-verdict.is-bad {
  background: var(--critical-tint);
  border-color: #f0b4b4;
}

.cloak-verdict.is-bad .tag { color: var(--critical); }

.cloak-verdict.is-skip {
  background: var(--warning-tint);
  border-color: #ecd3a4;
}

.cloak-verdict.is-skip .tag { color: var(--warning); }

.demo-checks-wrap { margin: 0 0 20px; }

.demo-checks-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}

.demo-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.demo-checks li {
  margin: 0;
  padding-left: 18px;
  position: relative;
}

.demo-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--trust);
}

.demo-result.is-down .score-ring {
  background: conic-gradient(var(--critical) 100%, var(--critical) 0);
}

.demo-result.is-down .score-ring strong {
  font-size: 22px;
}

.demo-result.is-down #demo-headline {
  color: var(--critical);
}

.hero { padding: 24px 0 36px; }

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: start;
}

.kicker {
  color: var(--trust);
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 8px;
}

.hero h1 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero .lede {
  color: var(--muted);
  font-size: 16px;
  max-width: 46ch;
  margin: 0 0 18px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 11px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--trust);
  color: #fff;
  box-shadow: 0 1px 2px rgba(16, 24, 43, 0.06), 0 8px 20px -10px rgba(37, 84, 232, 0.55);
}

.btn-primary:hover {
  background: var(--trust-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--panel);
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--trust);
  color: var(--trust);
  background: var(--trust-tint);
}

.report-frame {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 1px 1px rgba(16, 24, 43, 0.02), 0 24px 48px -24px rgba(16, 24, 43, 0.22);
  overflow: hidden;
  transform: rotate(0.6deg);
}

.report-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #fcfcfd, #f8f9fb);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dadfe8;
}

.report-url {
  margin-left: 8px;
  font-size: 12.5px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  padding: 5px 12px;
  flex: 1;
}

.report-body { padding: 20px 20px 16px; }

.score-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 12px;
}

.ring {
  position: relative;
  width: 84px;
  height: 84px;
  flex-shrink: 0;
}

.ring svg { transform: rotate(-90deg); }

.ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 800;
  font-size: 24px;
}

.score-meta h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.score-meta p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
}

.before-after {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--success);
  background: var(--success-tint);
  padding: 4px 10px;
  border-radius: 20px;
}

.finding {
  display: flex;
  gap: 12px;
  padding: 8px 0;
}

.finding + .finding { border-top: 1px solid var(--line-soft); }

.badge {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.badge svg { width: 12px; height: 12px; }
.badge.critical { background: var(--critical-tint); color: var(--critical); }
.badge.warning { background: var(--warning-tint); color: var(--warning); }
.badge.ok { background: var(--success-tint); color: var(--success); }

.finding-text b { font-size: 13.5px; font-weight: 700; }
.finding-text p { margin: 2px 0 0; font-size: 13.5px; color: var(--muted); }

.cloak-story {
  padding: 40px 0;
  background: var(--panel);
  border-top: 1px solid var(--line-soft);
}

.cloak-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.cloak-story h2 {
  font-family: Manrope, system-ui, sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 10px;
}

.cloak-story p { color: var(--muted); margin: 0 0 14px; }
.cloak-story p:last-child { margin-bottom: 0; }

.cloak-compare {
  display: grid;
  gap: 12px;
}

.cloak-pane {
  background: var(--success-tint);
  border: 1px solid #bfe3cc;
  border-radius: 16px;
  padding: 18px 20px;
}

.cloak-pane span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--success);
  margin-bottom: 6px;
}

.cloak-pane strong {
  display: block;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 18px;
  margin-bottom: 6px;
}

.cloak-pane p { margin: 0; font-size: 14px; }

.cloak-pane.is-bad {
  background: var(--critical-tint);
  border-color: #f0b4b4;
}

.cloak-pane.is-bad span { color: var(--critical); }

.cloak-arrow {
  text-align: center;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--critical);
}

.steps { padding: 40px 0; }

.section-head { max-width: 640px; margin-bottom: 24px; }
.section-head h2 { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.section-head p { color: var(--muted); font-size: 16px; margin: 0; }

.step-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.step-path::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 8.5%;
  right: 8.5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 15px);
}

.step { position: relative; padding-right: 36px; }
.step:last-child { padding-right: 0; }

.step-node {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--panel);
  border: 2px solid var(--trust);
  color: var(--trust);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 800;
  font-size: 15px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.step:nth-child(2) .step-node {
  background: var(--trust);
  color: #fff;
}

.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; }

.deliverables {
  padding: 40px 0;
  background: var(--panel);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.deliv-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: center;
}

.doc-stack {
  position: relative;
  height: 240px;
}

.doc {
  position: absolute;
  width: 78%;
  height: 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 30px -18px rgba(16, 24, 43, 0.25);
  padding: 20px;
}

.doc-1 { left: 0; top: 22px; transform: rotate(-3.5deg); }
.doc-2 { left: 20%; top: 0; transform: rotate(2.5deg); background: var(--panel); }

.doc-line {
  height: 8px;
  border-radius: 4px;
  background: var(--line);
  margin-bottom: 10px;
}

.w60 { width: 60%; }
.w80 { width: 80%; }
.w40 { width: 40%; }

.doc-tag {
  display: inline-block;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  padding: 4px 9px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.doc-1 .doc-tag { background: var(--trust-tint); color: var(--trust); }
.doc-2 .doc-tag { background: var(--success-tint); color: var(--success); }

.deliv-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.deliv-item { display: flex; gap: 16px; }

.deliv-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--trust-tint);
  color: var(--trust);
  display: flex;
  align-items: center;
  justify-content: center;
}

.deliv-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.deliv-item p { margin: 0; color: var(--muted); font-size: 14.5px; }

.pricing { padding: 40px 0; }

.price-panel {
  background: var(--ink);
  color: #fff;
  border-radius: 20px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.price-panel::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 84, 232, 0.35), transparent 70%);
}

.price-left { position: relative; }
.price-left .kicker { color: #8fb0ff; }
.price-left h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.price-left > p {
  color: #a9b2c9;
  font-size: 15px;
  max-width: 42ch;
  margin: 0 0 26px;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 22px;
}

.price-tag .num {
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 800;
  font-size: 46px;
  color: #fff;
}

.price-tag .unit { color: #a9b2c9; font-size: 14px; }

.perk-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.perk-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: #e7eaf3;
}

.perk-list svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: #6fe3a6;
}

.order-card {
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 26px;
  position: relative;
}

.order-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.order-card > p {
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--muted);
}

.field { margin-bottom: 14px; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.field input,
.field select {
  width: 100%;
  padding: 11px 13px;
  border-radius: 9px;
  border: 1px solid var(--line);
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  background: var(--paper);
  color: var(--ink);
}

.check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.check-row input { margin-top: 3px; }

.check-row label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 500;
}

.order-card .btn-primary { width: 100%; }

footer { padding: 4px 0 32px; }

footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

footer .brand img { height: 72px; }

.foot-note {
  font-size: 13px;
  color: var(--muted);
  max-width: 42ch;
  margin: 0;
}

@media (max-width: 880px) {
  .demo-grid { grid-template-columns: 1fr; }
  .demo-cards,
  .demo-checks { grid-template-columns: 1fr; }
  .demo-score { flex-direction: column; align-items: flex-start; }
  .brand-bar { flex-direction: column; align-items: flex-start; }
  .hero { padding: 16px 0 24px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 24px; }
  .step-path { grid-template-columns: 1fr; gap: 28px; }
  .step-path::before { display: none; }
  .step { padding-right: 0; }
  .cloak-grid,
  .deliv-grid { grid-template-columns: 1fr; }
  .doc-stack { height: 230px; margin-bottom: 10px; }
  .price-panel { grid-template-columns: 1fr; padding: 32px 24px; }
  header .wrap { gap: 16px; flex-wrap: wrap; }
  nav { font-size: 15px; gap: 14px; }
  .demo { padding-bottom: 32px; }
  .cloak-story,
  .steps,
  .deliverables,
  .pricing { padding: 28px 0; }
  footer .wrap { flex-direction: column; align-items: flex-start; }
}
