: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;
}

.top-article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.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;
  line-height: 1.2;
  text-align: center;
}

.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-hero,
.pricing,
.pricing-note,
.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);
}

.article .ci-preview-band {
  width: min(1360px, calc(100vw - 96px));
  margin: 56px 0 56px 50%;
  transform: translateX(-50%);
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f1f7f3;
  box-shadow: 0 18px 60px rgba(23, 33, 27, 0.06);
}

.article > .analyzer-band {
  width: min(1360px, calc(100vw - 96px));
  margin: 56px 0 56px 50%;
  transform: translateX(-50%);
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(23, 33, 27, 0.06);
}

.article > .analyzer-band .analyzer-copy h2 {
  max-width: 460px;
  font-size: 40px;
}

.article .ci-preview-band .analyzer-copy h2 {
  max-width: 420px;
  font-size: 40px;
}

.article .ci-preview-band .analysis-panel {
  overflow: hidden;
}

.article .ci-preview-band .analysis-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article .ci-preview-band .analysis-table {
  min-width: 0;
  table-layout: fixed;
}

.article .ci-preview-band .analysis-table th:nth-child(1),
.article .ci-preview-band .analysis-table td:nth-child(1) {
  width: 26%;
}

.article .ci-preview-band .analysis-table th:nth-child(2),
.article .ci-preview-band .analysis-table td:nth-child(2) {
  width: 48%;
}

.article .ci-preview-band .analysis-table th:nth-child(3),
.article .ci-preview-band .analysis-table td:nth-child(3) {
  width: 12%;
}

.article .ci-preview-band .analysis-table th:nth-child(4),
.article .ci-preview-band .analysis-table td:nth-child(4) {
  width: 14%;
}

.article .ci-preview-band .analysis-table td {
  overflow-wrap: anywhere;
}

.analyzer-band > *,
.team-preview-band > *,
.diagnosis-band > * {
  min-width: 0;
}

.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 !important;
}

.lead-form .hidden-field,
.checkout-team-fields[hidden] {
  display: none !important;
}

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

.scan-review-note {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 122, 90, 0.2);
  border-radius: 8px;
  background: #f7fbf8;
  color: var(--accent-dark);
}

.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(4, 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 {
  display: block;
  font-size: 20px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.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 {
  max-width: 100%;
  overflow-x: auto;
}

.analysis-table {
  width: 100%;
  min-width: 640px;
  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;
  overflow-wrap: anywhere;
}

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

.audit-sample .analysis-table {
  min-width: 820px;
}

.audit-sample .analysis-table th:first-child,
.audit-sample .analysis-table td:first-child {
  min-width: 150px;
}

.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;
}

.analysis-next-step {
  border-color: rgba(15, 122, 90, 0.24);
  background: linear-gradient(180deg, #f4fbf7 0%, #fbfdfb 100%);
}

.free-cleanup-plan {
  display: grid;
  gap: 14px;
  margin: 18px 0;
  padding: 18px;
  border: 1px solid #c6ddd1;
  border-radius: 8px;
  background: #f2faf6;
}

.free-cleanup-plan > div:first-child span,
.free-cleanup-item span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.free-cleanup-plan h3,
.free-cleanup-item h4 {
  margin: 4px 0 8px;
}

.free-cleanup-plan p,
.free-cleanup-item p {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.free-cleanup-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.8fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.free-cleanup-item > * {
  min-width: 0;
}

.free-cleanup-item code {
  min-width: 0;
  overflow-x: auto;
  padding: 10px;
  border-radius: 8px;
  background: #17211b;
  color: #e9f4ec;
  font-size: 12px;
  white-space: nowrap;
}

.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(auto-fit, minmax(min(100%, 300px), 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;
}

.pricing .price-grid,
.pricing-page .price-grid {
  max-width: 920px;
}

.pricing-hero {
  max-width: 980px;
  padding-bottom: 32px;
}

.pricing-hero h1 {
  max-width: 880px;
}

.pricing-page {
  padding-top: 24px;
}

.plan-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.pricing-note {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.pricing-note div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
}

.pricing-note h2 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.15;
}

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

.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: 960px;
  margin: 0 auto;
  padding: 72px clamp(20px, 3vw, 48px);
}

.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;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  background: #17211b;
  color: #e9f4ec;
  border-radius: 8px;
  padding: 18px;
}

.article pre code {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.article > .decision-bar,
.article > .top-free-read,
.article > .free-scan-bridge,
.article > .incident-close,
.article > .article-conversion,
.article > .first-sale-strip,
.article > .starter-yaml-offer,
.article > .quick-pilot,
.article > .inline-cta,
.article > .runbook-copy {
  width: min(1360px, calc(100vw - 96px));
  margin-left: 50%;
  margin-right: 0;
  transform: translateX(-50%);
}

.decision-bar {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 18px;
  align-items: center;
  margin: 28px 0;
  padding: 22px;
  border: 1px solid #c7b174;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: #fffaf0;
}

.top-free-read {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: center;
  margin: 28px 0;
  padding: 22px;
  border: 1px solid #b9d8c7;
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  background: #f2faf5;
  box-shadow: 0 16px 46px rgba(23, 33, 27, 0.07);
}

.top-free-read-copy,
.top-free-read-form {
  min-width: 0;
}

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

.top-free-read h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
}

.top-free-read p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.top-free-read-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.top-free-read-proof div {
  min-height: 86px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.top-free-read-proof strong {
  display: block;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}

.top-free-read-proof span {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
}

.top-free-read-form {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid #cfe1d7;
  border-radius: 8px;
  background: #fff;
}

.top-free-read-form .button {
  width: 100%;
  min-height: 48px;
}

.decision-copy {
  display: grid;
  gap: 8px;
}

.decision-copy span {
  color: #8b5b06;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.decision-copy h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
}

.decision-copy p {
  margin: 0;
  color: #59451b;
  line-height: 1.55;
}

.decision-actions {
  display: grid;
  gap: 10px;
}

.decision-actions .button {
  width: 100%;
  justify-content: center;
}

.article-invoice-form {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  padding: 14px;
  border: 1px solid rgba(139, 91, 6, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.article-invoice-form label {
  display: grid;
  gap: 6px;
  margin: 0;
  color: #59451b;
  font-size: 13px;
  font-weight: 760;
}

.article-invoice-form input {
  width: 100%;
  min-width: 0;
  border: 1px solid #d9d0b8;
  border-radius: 8px;
  padding: 12px 12px;
  font: inherit;
  background: #fff;
}

.article-invoice-form p {
  margin: 0;
  color: #6f5c2f;
  font-size: 13px;
  line-height: 1.4;
}

.has-article-action-dock {
  padding-bottom: 132px;
}

.article-action-dock {
  position: fixed;
  right: 24px;
  bottom: 20px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: start;
  width: min(520px, calc(100vw - 48px));
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(198, 221, 211, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(17, 30, 24, 0.16);
  transform: none;
  backdrop-filter: blur(10px);
}

.article-action-dock-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.article-action-dock-copy strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.article-action-dock-copy span {
  display: none;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-action-dock-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.article-dock-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  min-width: 0;
}

.article-dock-form input {
  min-width: 0;
  width: 100%;
  height: 42px;
  border: 1px solid #c6ddd3;
  border-radius: 8px;
  padding: 0 12px;
  font: inherit;
  background: #fff;
}

.article-action-dock .button {
  min-height: 38px;
  padding: 8px 10px;
  font-size: 14px;
  white-space: nowrap;
}

.free-scan-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 20px;
  align-items: center;
  margin: 32px 0;
  padding: 24px;
  border: 1px solid rgba(20, 133, 96, 0.28);
  border-radius: 8px;
  background: #f7fbf9;
  box-shadow: 0 18px 50px rgba(20, 133, 96, 0.08);
}

.free-scan-bridge span {
  display: block;
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.free-scan-bridge h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

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

.free-scan-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.free-scan-proof div {
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.free-scan-proof strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.free-scan-proof span {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}

.free-scan-actions {
  display: grid;
  gap: 10px;
}

.free-scan-actions .button {
  width: 100%;
  justify-content: center;
}

.starter-yaml-offer {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 22px;
  align-items: start;
  margin: 30px 0;
  padding: 24px;
  border: 1px solid rgba(20, 133, 96, 0.24);
  border-radius: 8px;
  background: #f8fbf8;
  box-shadow: 0 18px 50px rgba(23, 33, 27, 0.07);
}

.starter-yaml-offer span {
  display: block;
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.starter-yaml-offer h2 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.15;
}

.starter-yaml-offer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.starter-yaml-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.starter-yaml-proof div {
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.starter-yaml-proof strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.1;
}

.starter-yaml-proof span {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
}

.starter-yaml-panel {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.starter-yaml-panel pre {
  max-height: 420px;
  margin: 0;
  overflow: auto;
}

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

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

.decision-bar > *,
.top-free-read > *,
.free-scan-bridge > *,
.incident-close > *,
.article-conversion > *,
.first-sale-strip > *,
.starter-yaml-offer > *,
.quick-pilot > * {
  min-width: 0;
}

.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-start;
}

.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;
}

.success-status-card {
  display: grid;
  gap: 8px;
  border-color: #b7d8c6;
  background: #f2faf5;
}

.success-status-card span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.success-status-card h2,
.success-status-card p {
  margin: 0;
}

.success-status-card code {
  justify-self: start;
  padding: 8px 10px;
  border: 1px solid #cfe1d7;
  border-radius: 8px;
  background: #fff;
  color: var(--accent-dark);
  font: 750 14px/1.2 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.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: 1fr;
  gap: 22px;
  align-items: start;
  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: 1fr;
  gap: 18px;
  align-items: stretch;
  border: 1px solid #cfe1d7;
  border-radius: 8px;
  background: #eef8f2;
}

.first-sale-main {
  display: grid;
  align-content: start;
}

.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;
}

.first-sale-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.first-sale-proof div {
  padding: 12px;
  border: 1px solid rgba(35, 117, 80, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.first-sale-proof strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 13px;
}

.first-sale-proof span {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  text-transform: none;
}

.inline-sample-preview {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(35, 117, 80, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.inline-sample-preview p {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 14px;
}

.inline-sample-preview span {
  margin: 0;
}

.inline-sample-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.inline-sample-grid div {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.inline-sample-grid strong {
  display: block;
  font-size: 18px;
}

.inline-sample-grid small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

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

.inline-sample-actions .button {
  min-width: 0;
  white-space: normal;
}

.ci-preview-lead-form {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(35, 117, 80, 0.24);
  border-radius: 8px;
  background: #f7fbf8;
}

.analysis-panel .ci-preview-lead-form {
  margin: 18px 0 0;
}

.ci-preview-lead-form span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ci-preview-lead-form label {
  margin: 0;
}

.ci-preview-lead-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: stretch;
}

.ci-preview-lead-actions .button {
  min-width: 0;
  white-space: normal;
}

.first-sale-form {
  min-width: 0;
  gap: 14px;
  width: 100%;
}

.ci-runner-lead-card {
  border-color: rgba(35, 117, 80, 0.34);
  background: #fff;
}

.ci-runner-lead-card .mini-lead-form-content {
  padding: 2px;
}

.ci-runner-lead-card .mini-lead-form-content span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-lead-form-content {
  display: grid;
  gap: 12px;
  padding: 0;
  box-shadow: none;
  background: transparent;
  min-width: 0;
  width: 100%;
}

.mini-lead-form-content h3,
.mini-lead-form-content p {
  margin: 0;
}

.mini-lead-form-content .form-note {
  margin-top: -4px;
}

.first-sale-side-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.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-pilot-fallbacks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.quick-pilot-fallbacks .button {
  width: 100%;
  min-width: 0;
  justify-content: center;
}

.top-free-read-fallbacks {
  margin-top: 14px;
}

.quick-triage {
  background: #fff;
}

.deprioritized-section {
  border-top: 1px solid var(--line);
  background: #fbfdfb;
}

.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);
}

.ci-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}

.ci-proof-strip div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(35, 117, 80, 0.2);
  border-radius: 8px;
  background: #fff;
}

.ci-proof-strip strong {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #123b31;
  color: #fff;
  font-size: 13px;
}

.ci-proof-strip span {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
  text-transform: none;
}

.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;
}

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

.mini-lead-form {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  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, 1.18fr) minmax(340px, 0.82fr);
  gap: 36px;
  align-items: start;
  padding: 72px 6vw;
}

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

.checkout-copy {
  min-width: 0;
}

.checkout-copy h1 {
  max-width: 620px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
}

.checkout-recovery-notice {
  max-width: 620px;
  margin: 26px 0;
  padding: 18px 20px;
  background: #fff8f4;
  border: 1px solid #e5b9a6;
  border-radius: 8px;
}

.checkout-recovery-notice span {
  display: block;
  margin-bottom: 8px;
  color: #9f2a1d;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.checkout-recovery-notice h2 {
  max-width: 520px;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.15;
}

.checkout-recovery-notice p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.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;
}

.checkout-plan-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkout-plan-option {
  display: grid;
  gap: 6px;
  min-height: 76px;
  padding: 13px 14px;
  border: 1px solid rgba(142, 224, 191, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #f4fbf6;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.checkout-plan-option strong {
  color: #8ee0bf;
  font-size: 26px;
  line-height: 1;
}

.checkout-plan-option span {
  margin: 0;
  color: #d7ebe1;
  font-size: 13px;
  line-height: 1.2;
}

.checkout-plan-option.is-selected {
  border-color: #8ee0bf;
  background: #f4fbf6;
  color: var(--ink);
}

.checkout-plan-option.is-selected strong,
.checkout-plan-option.is-selected span {
  color: var(--accent-dark);
}

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

.fast-invoice-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, auto);
  gap: 12px;
  align-items: end;
  padding: 14px;
  border: 1px solid rgba(142, 224, 191, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.fast-invoice-form label {
  display: grid;
  gap: 7px;
  color: #f4fbf6;
  font-size: 13px;
  font-weight: 800;
}

.fast-invoice-form input {
  min-height: 48px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  padding: 0 13px;
  background: #fbfdfb;
  color: var(--ink);
  font: inherit;
}

.fast-invoice-form .button {
  grid-column: auto;
  min-height: 48px;
  justify-content: center;
  white-space: normal;
}

.fast-invoice-proof {
  margin: -2px 0 0;
  color: #bfe8d7;
  font-size: 14px;
  line-height: 1.45;
}

.fast-invoice-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.fast-invoice-fallbacks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.fast-invoice-fallbacks-top {
  justify-content: flex-start;
  margin-top: -2px;
}

.fast-invoice-fallbacks .button {
  min-height: 40px;
  padding: 0 13px;
  font-size: 14px;
}

.fast-invoice-fallbacks .button.primary {
  border-color: #8ee0bf;
  background: #8ee0bf;
  color: #123b31;
}

.checkout-payment-link-panel {
  margin-top: 12px;
  border-color: rgba(19, 128, 98, 0.28);
  background: #f7fbf8;
}

.checkout-payment-link-panel h2 {
  font-size: 24px;
}

.checkout-payment-link-panel .actions {
  justify-content: flex-start;
}

.invoice-direct-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.invoice-direct-card div {
  display: grid;
  gap: 4px;
}

.invoice-direct-card strong {
  color: #8ee0bf;
  font-size: 12px;
  text-transform: uppercase;
}

.invoice-direct-card code,
.invoice-direct-card pre {
  margin: 0;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  color: #f4fbf6;
  font: 700 14px/1.45 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.invoice-direct-card pre {
  padding-top: 6px;
  color: #d7ebe1;
  font-weight: 600;
}

.success-invoice-card {
  border-color: #cfe1d7;
  background: #fff;
}

.success-invoice-card strong {
  color: var(--accent-dark);
}

.success-invoice-card code,
.success-invoice-card pre {
  color: var(--ink);
}

.success-invoice-card pre {
  color: var(--muted);
}

.checkout-choice-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.checkout-choice-strip div {
  padding: 14px;
  border: 1px solid rgba(142, 224, 191, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.checkout-choice-strip strong {
  display: block;
  margin-bottom: 6px;
  color: #8ee0bf;
  font-size: 22px;
  line-height: 1;
}

.checkout-choice-strip span {
  color: #d7ebe1;
  font-size: 13px;
  line-height: 1.4;
}

.invoice-alt-details {
  margin-top: 14px;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.invoice-visible-actions {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(142, 224, 191, 0.34);
  border-radius: 8px;
}

.invoice-visible-heading {
  display: grid;
  gap: 6px;
}

.invoice-visible-heading span {
  margin: 0;
}

.invoice-visible-heading h3 {
  margin: 0;
  color: #f4fbf6;
  font-size: 18px;
  line-height: 1.25;
}

.invoice-visible-heading p {
  margin: 0;
  color: #d7ebe1;
  font-size: 14px;
}

.invoice-alt-details summary {
  color: #f4fbf6;
}

.invoice-alt-details summary span {
  color: #b6d6c9;
}

.invoice-alt-details .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}

.invoice-alt-details .invoice-direct-card {
  margin: 0;
}

.checkout-form .invoice-visible-actions {
  margin: 2px 0 4px;
  border-color: #c6ddd3;
  background: #f4fbf7;
}

.checkout-form .invoice-visible-heading span,
.checkout-form .invoice-direct-card strong {
  color: var(--accent);
}

.checkout-form .invoice-visible-heading h3,
.checkout-form .invoice-direct-card code {
  color: var(--ink);
}

.checkout-form .invoice-visible-heading p,
.checkout-form .invoice-direct-card pre {
  color: var(--muted);
}

.checkout-form .invoice-direct-card {
  border-color: #d4e3dc;
  background: #fff;
}

.checkout-form .invoice-alt-details .button.secondary {
  border-color: #c9d9d1;
  background: #fff;
  color: var(--ink);
}

.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-form {
  position: sticky;
  top: 24px;
  box-shadow: 0 22px 60px rgba(11, 49, 38, 0.14);
}

.checkout-form-header {
  display: grid;
  gap: 8px;
  padding-bottom: 4px;
}

.checkout-form-header span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-form-header h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}

.checkout-form-header p,
.checkout-disclosure {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.submit-status {
  padding: 10px 12px;
  border: 1px solid #c6ddd3;
  border-radius: 8px;
  background: #f4fbf7;
  color: var(--accent);
  font-weight: 750;
}

.submit-status[data-tone="error"] {
  border-color: #e0afa7;
  background: #fff6f4;
  color: #9f2a1d;
}

.checkout-secondary-details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}

.checkout-secondary-details summary {
  cursor: pointer;
  padding: 13px 14px;
  color: var(--ink);
  font-weight: 800;
  list-style-position: inside;
}

.checkout-secondary-details summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.checkout-secondary-details label {
  padding: 0 14px 14px;
}

.checkout-secondary-details:not([open]) label {
  display: none;
}

.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;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 6vw;
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
}

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

.site-footer nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.site-footer a {
  color: var(--ink);
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 56px;
  }

  .scan-band,
  .sample-band,
  .analyzer-band,
  .diagnosis-band,
  .team-preview-band,
  .checkout-layout,
  .article-conversion,
  .quick-pilot {
    grid-template-columns: 1fr;
  }

  .article > .analyzer-band,
  .article .ci-preview-band {
    width: auto;
    margin: 40px 0;
    transform: none;
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .article > .analyzer-band .analyzer-copy h2,
  .article .ci-preview-band .analyzer-copy h2 {
    max-width: none;
    font-size: clamp(30px, 5vw, 40px);
  }

  .analysis-summary,
  .article .ci-preview-band .analysis-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .free-cleanup-item,
  .ci-preview-lead-actions,
  .inline-diagnosis-form {
    grid-template-columns: 1fr;
  }

  .checkout-form {
    position: static;
  }
}

@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-hero,
  .pricing,
  .pricing-note,
  .faq {
    padding: 56px 20px;
  }

  .pricing-note {
    grid-template-columns: 1fr;
  }

  .article {
    padding: 44px 20px 56px;
  }

  .article h1 {
    font-size: clamp(34px, 9vw, 40px);
    line-height: 1.04;
    margin-bottom: 16px;
  }

  .article .subhead {
    font-size: 17px;
    line-height: 1.45;
  }

  .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;
  }

  .article .ci-preview-band {
    width: auto;
    margin: 40px 0;
    transform: none;
    grid-template-columns: 1fr;
    padding: 28px 18px;
  }

  .article > .analyzer-band {
    width: auto;
    margin: 40px 0;
    transform: none;
    grid-template-columns: 1fr;
    padding: 28px 18px;
  }

  .article > .decision-bar,
  .article > .top-free-read,
  .article > .free-scan-bridge,
  .article > .incident-close,
  .article > .article-conversion,
  .article > .first-sale-strip,
  .article > .starter-yaml-offer,
  .article > .quick-pilot,
  .article > .inline-cta,
  .article > .runbook-copy {
    width: auto;
    margin-left: 0;
    transform: none;
  }

  .article pre,
  .article pre code {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
  }

  .analysis-table {
    min-width: 0;
    table-layout: fixed;
  }

  .audit-sample .analysis-table {
    min-width: 0;
  }

  .audit-sample .analysis-table th:first-child,
  .audit-sample .analysis-table td:first-child {
    min-width: 0;
  }

  .analysis-table th,
  .analysis-table td {
    overflow-wrap: anywhere;
  }

  .has-article-action-dock {
    padding-bottom: 126px;
  }

  .article-action-dock {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: 1fr;
    gap: 10px;
    width: calc(100vw - 20px);
    padding: 12px;
    transform: none;
  }

  .article-action-dock-copy span {
    white-space: normal;
  }

  .article-action-dock-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .article-dock-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-dock-form input {
    height: 44px;
  }

  .article-action-dock .button {
    width: 100%;
    justify-content: center;
    min-width: 0;
    padding: 10px 8px;
    white-space: normal;
  }

  .article .ci-preview-band .analyzer-copy h2 {
    max-width: none;
    font-size: 30px;
  }

  .article > .analyzer-band .analyzer-copy h2 {
    max-width: none;
    font-size: 30px;
  }

  .article .ci-preview-band .analysis-summary {
    grid-template-columns: 1fr;
  }

  .article .ci-preview-band .analysis-table {
    min-width: 0;
    table-layout: fixed;
  }

  .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;
  }

  .free-cleanup-item {
    grid-template-columns: 1fr;
  }

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

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

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .site-footer nav {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

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

  .checkout-copy h1 {
    font-size: clamp(31px, 9vw, 40px);
    line-height: 1.02;
    margin-bottom: 10px;
  }

  .checkout-copy .subhead {
    font-size: 15px;
    line-height: 1.35;
  }

  .invoice-fast-lane {
    gap: 10px;
    margin-top: 12px;
    padding: 13px;
  }

  .invoice-fast-lane h2 {
    font-size: 21px;
    line-height: 1.15;
  }

  .invoice-fast-lane p {
    font-size: 14px;
    line-height: 1.4;
  }

  .invoice-fast-lane [data-fast-invoice-copy],
  .fast-invoice-footer {
    display: none;
  }

  .checkout-plan-switch {
    gap: 8px;
  }

  .checkout-plan-option {
    min-height: 58px;
    padding: 10px;
  }

  .checkout-plan-option strong {
    font-size: 22px;
  }

  .checkout-plan-option span {
    font-size: 12px;
  }

  .checkout-form {
    order: 2;
    position: static;
  }

  .fast-invoice-form {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 10px;
  }

  .fast-invoice-form .fast-invoice-optional {
    display: none;
  }

  .fast-invoice-form input {
    min-height: 44px;
  }

  .fast-invoice-form .button {
    min-height: 46px;
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .fast-invoice-proof {
    font-size: 13px;
    line-height: 1.35;
  }

  .fast-invoice-footer {
    grid-template-columns: 1fr;
  }

  .fast-invoice-fallbacks {
    justify-content: stretch;
  }

  .fast-invoice-fallbacks .button {
    flex: 1 1 130px;
    min-height: 42px;
    padding: 0 10px;
  }

  .checkout-choice-strip {
    grid-template-columns: 1fr;
  }

  .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;
  }

  .first-sale-strip {
    grid-template-columns: 1fr;
  }

  .starter-yaml-offer {
    grid-template-columns: 1fr;
  }

  .starter-yaml-proof {
    grid-template-columns: 1fr;
  }

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

  .top-free-read {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .top-free-read-proof {
    grid-template-columns: 1fr;
  }

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

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

  .first-sale-proof {
    grid-template-columns: 1fr;
  }

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

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

  .command-copy code,
  .terminal code {
    white-space: normal;
    overflow-wrap: anywhere;
  }

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

  .quick-pilot[data-top-invoice] {
    gap: 14px;
    padding: 16px;
  }

  .quick-pilot[data-top-invoice] h2 {
    font-size: 22px;
    line-height: 1.16;
  }

  .quick-pilot[data-top-invoice] p {
    font-size: 15px;
    line-height: 1.42;
  }

  .quick-pilot[data-top-invoice] .quick-pilot-form {
    gap: 9px;
    padding: 12px;
  }

  .quick-pilot-fallbacks {
    grid-template-columns: minmax(0, 1fr);
  }

  .quick-pilot[data-top-invoice] .form-note {
    display: none;
  }

  .ci-top-invoice > form {
    order: -1;
  }

  .ci-top-invoice .ci-proof-strip {
    display: none;
  }

  .first-sale-form,
  .mini-lead-form-content,
  .first-sale-form .button {
    width: 100%;
  }

  .ci-proof-strip {
    grid-template-columns: 1fr;
  }

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