:root {
  color-scheme: light;
  --ink: #17211b;
  --muted: #5c685f;
  --line: #d9e3dc;
  --paper: #f7faf7;
  --panel: #ffffff;
  --accent: #0f7a5a;
  --accent-dark: #0a553f;
  --gold: #e7ad36;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.topbar {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 250, 247, 0.92);
  position: sticky;
  top: 0;
  z-index: 2;
}

.brand {
  font-weight: 750;
}

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

nav a {
  text-decoration: none;
}

.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 56px;
  align-items: center;
  padding: 7vh 6vw 9vh;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-weight: 700;
}

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

h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 24px;
  max-width: 820px;
}

.subhead {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  max-width: 680px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

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

.button.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: var(--panel);
}

.product-shot {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(23, 33, 27, 0.16);
  overflow: hidden;
}

.window-bar {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.window-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d9e3dc;
}

.score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.score-row strong {
  display: block;
  font-size: 34px;
}

.score-row small {
  color: var(--muted);
}

.risk {
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 750;
}

.risk.low {
  background: #e3f4ec;
  color: var(--accent-dark);
}

.report-list {
  padding: 10px 18px 18px;
}

.report-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
}

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

.report-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.report-item span {
  font-weight: 760;
}

.band,
.scan-band,
.sample-band,
.pricing,
.faq {
  padding: 72px 6vw;
}

.scan-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px) auto;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.scan-band p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.terminal {
  min-height: 52px;
  display: flex;
  align-items: center;
  overflow-x: auto;
  background: #17211b;
  color: #e9f4ec;
  border-radius: 8px;
  padding: 0 16px;
  white-space: nowrap;
}

.terminal code {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
}

.scan-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sample-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.sample-band p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
  max-width: 680px;
}

.band {
  background: #eef5f0;
}

.analyzer-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: start;
  padding: 72px 6vw;
  background: #f1f7f3;
  border-bottom: 1px solid var(--line);
}

.team-preview-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: start;
  padding: 72px 6vw;
  background: #f1f7f3;
  border-bottom: 1px solid var(--line);
}

.diagnosis-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: start;
  padding: 72px 6vw;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.diagnosis-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
  max-width: 620px;
}

.lead-form {
  display: grid;
  gap: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 16px 50px rgba(23, 33, 27, 0.08);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 720;
}

.optional-field {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfdfb;
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form .button {
  width: 100%;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.hidden-field {
  display: none;
}

.analyzer-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
  max-width: 640px;
}

.upload-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.scan-paste-label {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  font-weight: 720;
}

.scan-paste-label textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  color: var(--ink);
  background: #fbfdfb;
  font: 13px/1.45 "SFMono-Regular", Consolas, monospace;
  resize: vertical;
}

.upload-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 720;
  cursor: pointer;
}

.upload-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.analysis-panel {
  min-height: 340px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 16px 50px rgba(23, 33, 27, 0.08);
}

.inline-diagnosis-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbf8;
}

.inline-diagnosis-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 760;
}

.inline-diagnosis-form input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.inline-diagnosis-form .button {
  min-height: 44px;
  white-space: nowrap;
}

.empty-state {
  height: 296px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  margin: 0;
}

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

.analysis-summary div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fbfdfb;
}

.analysis-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.analysis-summary strong {
  font-size: 22px;
}

.analysis-note {
  color: var(--muted);
  line-height: 1.5;
  margin: 16px 0;
  font-size: 14px;
}

.analysis-note.strong {
  color: var(--accent-dark);
  font-weight: 720;
}

.analysis-table-wrap {
  overflow-x: auto;
}

.analysis-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

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

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

.diagnosis-preview {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
  padding: 18px;
}

.diagnosis-preview span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.diagnosis-preview h3 {
  margin-bottom: 8px;
}

.diagnosis-preview p,
.diagnosis-preview li {
  color: var(--muted);
  line-height: 1.55;
}

.diagnosis-preview ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.generated-policy {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbf8;
  padding: 18px;
}

.generated-policy span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.generated-policy h3,
.generated-policy p {
  margin: 0;
}

.generated-policy p {
  color: var(--muted);
  line-height: 1.5;
  margin-top: 8px;
}

.generated-policy pre {
  max-height: 360px;
  overflow: auto;
  margin: 0;
}

.risk-chip {
  display: inline-flex;
  border-radius: 999px;
  background: #e3f4ec;
  color: var(--accent-dark);
  padding: 4px 8px;
  font-weight: 760;
  white-space: nowrap;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  margin-bottom: 28px;
}

.steps,
.price-grid {
  display: grid;
  gap: 18px;
}

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

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

.steps article,
.price-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  font-weight: 800;
  margin-bottom: 18px;
}

.steps p,
.price-card p,
.faq p {
  color: var(--muted);
  line-height: 1.55;
}

.team-roi {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 28px;
  align-items: start;
  padding: 72px 6vw;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-roi h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  margin-bottom: 18px;
}

.team-roi p {
  color: var(--muted);
  line-height: 1.55;
}

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

.roi-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
}

.roi-grid strong {
  display: block;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  margin-bottom: 10px;
}

.roi-grid span {
  display: block;
  font-weight: 760;
  margin-bottom: 12px;
}

.roi-grid p {
  font-size: 14px;
  margin-bottom: 0;
}

.price {
  font-size: 38px;
  color: var(--ink) !important;
  font-weight: 800;
  margin-bottom: 10px;
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 18px 54px rgba(15, 122, 90, 0.14);
}

.price-card .button {
  width: 100%;
  margin-top: 18px;
}

.faq {
  max-width: 940px;
}

details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 760;
}

details p {
  margin: 12px 0 0;
}

.article {
  max-width: 860px;
  padding: 72px 6vw;
}

.article h1 {
  font-size: clamp(40px, 6vw, 68px);
}

.article h2 {
  font-size: 28px;
  margin-top: 42px;
}

.article li,
.article p {
  color: var(--muted);
  line-height: 1.7;
}

.article pre {
  overflow-x: auto;
  background: #17211b;
  color: #e9f4ec;
  border-radius: 8px;
  padding: 18px;
}

.incident-close {
  margin: 24px 0 20px;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid #b9d8c7;
  border-radius: 8px;
  background: #f1faf5;
}

.incident-close span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.incident-close h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.incident-close p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.incident-close-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.inline-cta {
  margin-top: 52px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.inline-cta .terminal {
  margin: 18px 0;
}

.inline-cta > .button {
  margin: 12px 10px 0 0;
}

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

.decision-grid section {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.decision-grid h2 {
  margin-top: 0;
  font-size: 20px;
}

.decision-grid ul {
  margin-bottom: 0;
}

.article-conversion {
  margin: 28px 0 42px;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.article-conversion span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-conversion h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

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

.first-sale-strip {
  margin: -18px 0 42px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid #cfe1d7;
  border-radius: 8px;
  background: #eef8f2;
}

.first-sale-strip span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.first-sale-strip h2 {
  margin: 0 0 6px;
  font-size: 22px;
}

.first-sale-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.first-sale-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.command-copy {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.command-copy code {
  min-height: 42px;
  display: flex;
  align-items: center;
  overflow-x: auto;
  padding: 0 12px;
  border-radius: 8px;
  background: #17211b;
  color: #e9f4ec;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  white-space: nowrap;
}

.invoice-copy-box {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid #d8c391;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: #fffaf0;
}

.invoice-copy-box p {
  margin: 0;
  color: var(--ink);
  line-height: 1.45;
}

.invoice-copy-box code {
  display: block;
  overflow-x: auto;
  padding: 10px 12px;
  border-radius: 8px;
  background: #17211b;
  color: #e9f4ec;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  white-space: nowrap;
}

.invoice-copy-box .button {
  justify-self: start;
}

.runbook-copy {
  margin: 0 0 42px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.runbook-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.runbook-copy h2 {
  margin-top: 0;
  font-size: 24px;
}

.runbook-copy pre {
  margin: 18px 0 0;
  white-space: pre-wrap;
}

.runbook-copy-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.quick-pilot {
  margin: 0 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbf8;
}

.quick-pilot span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-pilot h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

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

.quick-pilot-form {
  box-shadow: none;
  background: #fff;
  padding: 16px;
}

.quick-triage {
  background: #fff;
}

.ci-fast-capture {
  margin-top: 28px;
  border-color: #b7d8c6;
  background: #f2faf5;
}

.ci-fast-capture .quick-pilot-form {
  border: 1px solid rgba(35, 117, 80, 0.22);
}

.first-screen-capture {
  border-color: #b7d8c6;
  background: #f2faf5;
}

.first-screen-capture .mini-lead-form,
.first-screen-capture .quick-pilot-form {
  border: 1px solid rgba(35, 117, 80, 0.22);
}

.article-conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.article-conversion-actions.left,
.incident-close-actions.left {
  justify-content: flex-start;
  margin-top: 16px;
}

.article-conversion-form,
.incident-close-form {
  align-items: stretch;
}

.mini-lead-form {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-width: 280px;
  padding: 18px;
  border: 1px solid rgba(35, 117, 80, 0.24);
  box-shadow: none;
}

.mini-lead-form label {
  margin: 0;
}

.mini-lead-form button {
  width: 100%;
}

.inline-mini-lead {
  margin-top: 18px;
  max-width: 520px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 36px;
  align-items: start;
  padding: 72px 6vw;
}

.checkout-copy .subhead {
  max-width: 620px;
}

.checkout-summary {
  margin-top: 34px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkout-summary span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.checkout-summary h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.checkout-summary p:last-child {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.checkout-close {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 22px;
  background: #fffaf0;
  border: 1px solid #f0d38b;
  border-radius: 8px;
}

.checkout-close span {
  color: #9a5d00;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-close h2,
.checkout-close p {
  margin: 0;
}

.checkout-close h2 {
  font-size: 22px;
  line-height: 1.2;
}

.checkout-close p,
.checkout-close li {
  color: #4f3b16;
  line-height: 1.55;
}

.checkout-close ol {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 20px;
}

.invoice-fast-lane {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 22px;
  background: #123b31;
  border: 1px solid #1f604d;
  border-radius: 8px;
  color: #f4fbf6;
}

.invoice-fast-lane span {
  color: #8ee0bf;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.invoice-fast-lane h2,
.invoice-fast-lane p {
  margin: 0;
}

.invoice-fast-lane p {
  color: #d7ebe1;
  line-height: 1.55;
}

.invoice-fast-lane .button.secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #f4fbf6;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.checkout-commitments {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.checkout-commitments li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.checkout-commitments li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.checkout-team-fields {
  display: grid;
  gap: 16px;
}

.checkout-acknowledgements {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}

.checkout-acknowledgements legend {
  padding: 0 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-form .checkbox-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--ink);
  font-weight: 620;
  line-height: 1.45;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

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

.sample-score div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fbfdfb;
}

.sample-score span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.sample-score strong {
  font-size: 28px;
}

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

.guide-grid a {
  display: block;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.guide-grid h2 {
  font-size: 22px;
  margin: 0 0 10px;
}

.guide-grid p {
  margin-bottom: 0;
}

@media (max-width: 840px) {
  .topbar {
    padding: 0 20px;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 52px 20px 72px;
  }

  .product-shot {
    min-width: 0;
  }

  .steps,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .band,
  .scan-band,
  .sample-band,
  .analyzer-band,
  .diagnosis-band,
  .pricing,
  .faq {
    padding: 56px 20px;
  }

  .scan-band {
    grid-template-columns: 1fr;
  }

  .sample-band {
    grid-template-columns: 1fr;
  }

  .analyzer-band {
    grid-template-columns: 1fr;
  }

  .team-preview-band {
    grid-template-columns: 1fr;
    padding: 56px 20px;
  }

  .diagnosis-band {
    grid-template-columns: 1fr;
  }

  .team-roi {
    grid-template-columns: 1fr;
    padding: 56px 20px;
  }

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

  .analysis-summary {
    grid-template-columns: 1fr;
  }

  .sample-score {
    grid-template-columns: 1fr;
  }

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

  .checkout-layout {
    grid-template-columns: 1fr;
    padding: 56px 20px;
  }

  .article-conversion {
    grid-template-columns: 1fr;
  }

  .incident-close {
    grid-template-columns: 1fr;
  }

  .incident-close-actions {
    justify-content: flex-start;
  }

  .article-conversion-actions {
    justify-content: flex-start;
  }

  .command-copy {
    grid-template-columns: 1fr;
  }

  .quick-pilot {
    grid-template-columns: 1fr;
  }

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