:root {
  --deep: #071c22;
  --night: #102f38;
  --night-2: #173f49;
  --paper: #f4f0e8;
  --sheet: #fffdf8;
  --ink: #141a20;
  --muted: #5f6870;
  --soft: #d6e8e8;
  --signal: #58c7d3;
  --teal: #1f6b75;
  --gold: #c5a15b;
  --ember: #b84a36;
  --line: #d8d2c7;
  --blueprint: #28506b;
  --field: #6d836e;
  --radius: 8px;
  --shadow: 0 20px 58px rgba(7, 28, 34, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  --nav-glow-x: 50%;
  --nav-glow-opacity: 0;
  --nav-progress: 0%;
  border-bottom: 1px solid rgba(216, 210, 199, 0.25);
  background: rgba(7, 28, 34, 0.94);
  color: #fffdf8;
  backdrop-filter: blur(14px);
  isolation: isolate;
  overflow: visible;
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.light {
  background: rgba(244, 240, 232, 0.95);
  color: var(--ink);
  border-bottom-color: var(--line);
}

.site-header::before,
.site-header::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.site-header::before {
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at var(--nav-glow-x) 0%, rgba(131, 198, 189, 0.18), transparent 32%),
    linear-gradient(90deg, transparent, rgba(198, 164, 86, 0.05), transparent);
  opacity: var(--nav-glow-opacity);
  transition: opacity 240ms ease;
}

.site-header::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  z-index: 2;
  background:
    linear-gradient(90deg, var(--signal), var(--gold), rgba(213, 134, 82, 0.92)) left / var(--nav-progress) 100% no-repeat,
    rgba(131, 198, 189, 0.12);
}

.site-header.is-scrolled {
  background: rgba(6, 27, 29, 0.98);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.18);
}

.nav-shell {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--signal);
  color: var(--signal);
  font-weight: 900;
}

.brand img {
  width: 182px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 253, 248, 0.76);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}

.site-header.light .site-nav {
  color: var(--muted);
}

.site-nav a {
  text-decoration: none;
}

.site-nav a.is-active:not(.nav-cta) {
  color: #fffdf8;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 10px 13px;
  color: var(--gold);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.mobile-nav-cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 10px 13px;
  color: var(--gold);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
}

.mobile-link-menu {
  position: relative;
  display: none;
  margin-left: auto;
  color: #fffdf8;
}

.mobile-link-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 10px 13px;
  color: var(--gold);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  list-style: none;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.mobile-link-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-link-menu summary::after {
  width: 7px;
  height: 7px;
  margin-left: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms var(--motion-ease);
}

.mobile-link-menu[open] summary {
  border-color: rgba(198, 164, 86, 0.76);
  color: #fffdf8;
  background: rgba(198, 164, 86, 0.12);
}

.mobile-link-menu[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.mobile-link-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  display: grid;
  width: min(270px, calc(100vw - 24px));
  border: 1px solid rgba(131, 198, 189, 0.22);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  padding: 8px;
  background:
    linear-gradient(rgba(131, 198, 189, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 198, 189, 0.044) 1px, transparent 1px),
    rgba(8, 31, 34, 0.98);
  background-size: 36px 36px, 36px 36px, auto;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.34);
}

.mobile-link-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  border-radius: 6px;
  padding: 11px 12px;
  color: rgba(255, 253, 248, 0.86);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.mobile-link-panel a::after {
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  opacity: 0.62;
  transform: rotate(45deg);
}

.mobile-link-panel .mobile-panel-cta {
  margin-top: 4px;
  border: 1px solid rgba(198, 164, 86, 0.74);
  color: #061b1d;
  background: var(--gold);
}

.page {
  overflow-x: clip;
  overflow-y: visible;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(135deg, rgba(7, 28, 34, 0.96), rgba(16, 47, 56, 0.91)),
    url("../images/pinnacle-dashboard.png") center / cover;
  color: #fffdf8;
}

.hero-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 52px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: 88px;
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  max-width: 700px;
  color: #d6e8e8;
  font-size: 22px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 12px 16px;
  background: var(--gold);
  color: var(--deep);
  font: 900 14px/1 Arial, Helvetica, sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #fffdf8;
}

.button.dark-secondary {
  background: transparent;
  color: var(--night);
  border-color: var(--teal);
}

.trust-line {
  margin: 18px 0 0;
  color: #d6e8e8;
  font-size: 14px;
  font-weight: 800;
}

.ledger-panel {
  border: 1px solid rgba(88, 199, 211, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.97);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-head strong {
  color: var(--night);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(80, 111, 89, 0.34);
  border-radius: 6px;
  padding: 5px 8px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.ledger-rows {
  display: grid;
}

.ledger-row {
  display: grid;
  grid-template-columns: 1fr 96px 1fr;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.ledger-row:last-child {
  border-bottom: 0;
}

.risk {
  color: var(--ember);
  font-weight: 900;
}

.hero-bottom {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.metric {
  min-height: 92px;
  border: 1px solid rgba(214, 232, 232, 0.26);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(7, 28, 34, 0.58);
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
}

.metric span {
  color: #d6e8e8;
  font-size: 14px;
}

.section {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
  scroll-margin-top: 112px;
}

.section.dark {
  width: 100%;
  background: var(--night);
  color: #fffdf8;
}

.section.dark > .section-inner {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 28px;
}

.pinnacle-final .section-heading {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.pinnacle-final .section-heading::after {
  grid-column: 1 / -1;
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(80, 111, 89, 0.34), rgba(184, 145, 79, 0.32), transparent);
}

.pinnacle-final .section.dark .section-heading::after {
  background: linear-gradient(90deg, transparent, rgba(131, 198, 189, 0.36), rgba(184, 145, 79, 0.36), transparent);
}

.section-heading h2,
.split-copy h2,
.intake-intro h1 {
  max-width: 860px;
  margin-bottom: 0;
  margin-right: auto;
  margin-left: auto;
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p,
.split-copy p,
.intake-intro p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 18px;
}

.section.dark .section-heading p,
.section.dark .split-copy p {
  color: var(--soft);
}

.proof-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.proof-copy,
.repair-box,
.scan-step,
.deliverable,
.lane-card,
.field-note,
.theme-card,
.palette-card,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sheet);
}

.proof-copy {
  padding: 36px;
  border-top: 8px solid var(--gold);
}

.proof-copy h3,
.repair-box h3 {
  margin-bottom: 12px;
  font-size: 44px;
  line-height: 1;
}

.proof-copy p,
.repair-box p,
.scan-step p,
.deliverable p,
.lane-card p,
.field-note p,
.theme-card p,
.palette-card p {
  color: var(--muted);
}

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

.map-step {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--sheet);
  display: flex;
  flex-direction: column;
}

.map-step span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-step strong {
  margin-top: auto;
  font-size: 22px;
  line-height: 1.04;
}

.map-step.problem {
  border-color: rgba(80, 111, 89, 0.36);
  background: #eef5ee;
}

.map-step.problem span,
.map-step.problem strong {
  color: var(--night);
}

.scan-grid,
.deliverable-grid,
.lane-grid,
.theme-grid,
.palette-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.scan-step,
.deliverable,
.lane-card,
.theme-card,
.palette-card {
  min-height: 238px;
  padding: 20px;
}

.scan-step span,
.deliverable span,
.lane-card span,
.theme-card span,
.palette-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.scan-step h3,
.deliverable h3,
.lane-card h3,
.theme-card h3,
.palette-card h3 {
  font-size: 30px;
  line-height: 1.02;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
}

.repair-box {
  padding: 36px;
  box-shadow: var(--shadow);
}

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

.field-list li {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  font-size: 14px;
}

.field-list b {
  color: var(--night);
}

.field-list span {
  color: var(--muted);
}

.field-note {
  padding: 20px;
  border-left: 8px solid var(--gold);
}

.field-note + .field-note {
  margin-top: 12px;
}

.cta-band {
  background: var(--deep);
  color: #fffdf8;
}

.cta-band .section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta-band h2 {
  max-width: 820px;
  margin: 0;
  font-size: 62px;
  line-height: 0.96;
}

.cta-band p {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--soft);
}

.page-head {
  background: var(--night);
  color: #fffdf8;
}

.page-head .section {
  padding-top: 82px;
  padding-bottom: 70px;
}

.page-head h1 {
  max-width: 980px;
}

.page-head p {
  max-width: 760px;
  color: var(--soft);
  font-size: 20px;
}

.audit-sheet {
  border: 1px solid var(--line);
  background: var(--sheet);
  box-shadow: var(--shadow);
}

.sheet-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: #fbfaf5;
}

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

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

.scan-table th {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.missing {
  color: var(--teal);
  font-weight: 900;
}

.scan-table td:first-child {
  color: var(--night);
  font-weight: 800;
}

.scan-table td:last-child {
  color: var(--muted);
}

.intake-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: start;
}

.intake-intro {
  padding-top: 16px;
}

.intake-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.form-panel {
  padding: 22px;
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 15px;
}

label {
  display: grid;
  gap: 7px;
}

label span,
legend {
  color: var(--night);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #bfc9c6;
  border-radius: 6px;
  padding: 12px;
  background: #fffdf8;
  color: var(--ink);
  font: 16px/1.35 Arial, Helvetica, sans-serif;
}

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

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

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.check-row input {
  width: auto;
  min-height: 0;
  margin-top: 2px;
}

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

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tab-button {
  min-height: 42px;
  border: 1px solid var(--line);
  background: var(--sheet);
  color: var(--night);
}

.tab-button[aria-selected="true"] {
  border-color: var(--night);
  background: var(--night);
  color: #fffdf8;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.swatch {
  min-height: 78px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.swatch.light {
  color: var(--ink);
}

.night-ops {
  --deep: #061417;
  --night: #0b2f36;
  --night-2: #114852;
  --paper: #f2eadf;
  --sheet: #fffaf0;
  --ink: #111819;
  --muted: #5a6969;
  --soft: #cfe3df;
  --signal: #7fd1df;
  --teal: #167381;
  --gold: #caa556;
  --ember: #d06a45;
  --line: #d8d0c3;
  background: var(--deep);
}

.pinnacle-final {
  --deep: #101817;
  --night: #1d2421;
  --night-2: #29423c;
  --paper: #e7eadf;
  --sheet: #fffdf8;
  --ink: #151918;
  --muted: #526161;
  --soft: #dfe8df;
  --signal: #83c6bd;
  --teal: #506f59;
  --gold: #b8914f;
  --ember: #d58652;
  --line: #ccd2c2;
  background: var(--deep);
}

.pinnacle-final main {
  background:
    linear-gradient(rgba(131, 198, 189, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 198, 189, 0.022) 1px, transparent 1px),
    #081e20;
  background-size: 56px 56px, 56px 56px, auto;
  color: #fffdf8;
}

.pinnacle-final .site-header {
  background: rgba(6, 27, 29, 0.96);
  border-bottom-color: rgba(118, 201, 211, 0.18);
}

.pinnacle-final .brand-mark {
  border-color: var(--gold);
  color: var(--gold);
}

.pinnacle-final .brand-text {
  display: grid;
  gap: 1px;
}

.pinnacle-final .brand-text small {
  color: rgba(215, 230, 223, 0.74);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand .brand-logo {
  width: 230px;
  height: auto;
}

.promise-hero {
  position: relative;
  --hero-glow-x: 50%;
  --hero-glow-y: 20%;
  --hero-glow-opacity: 0;
  background:
    linear-gradient(126deg, #06191a 0%, #0a2728 58%, #172f2a 100%),
    var(--deep);
  color: #fffdf8;
  overflow: visible;
}

.promise-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(131, 198, 189, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 198, 189, 0.044) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.82;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.48) 62%, transparent 96%);
}

.promise-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at var(--hero-glow-x) var(--hero-glow-y), rgba(131, 198, 189, 0.11), transparent 24%),
    radial-gradient(circle at 78% 22%, rgba(213, 134, 82, 0.075), transparent 21%);
  opacity: var(--hero-glow-opacity);
  transition: opacity 260ms ease;
}

.promise-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1fr);
  gap: 50px;
  align-items: center;
}

.pinnacle-final h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 5.8vw, 72px);
  font-weight: 700;
  line-height: 0.94;
}

.pinnacle-final .lead {
  max-width: 690px;
  color: #dfeae6;
  font-size: 21px;
}

.promise-ledger {
  position: relative;
  border: 1px solid rgba(118, 201, 211, 0.28);
  border-top: 7px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.97);
  color: var(--ink);
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.promise-ledger::before,
.promise-ledger::after {
  position: absolute;
  right: 18px;
  width: 92px;
  height: 8px;
  content: "";
  background: rgba(6, 27, 29, 0.88);
  opacity: 0.72;
}

.promise-ledger::before {
  top: 64px;
}

.promise-ledger::after {
  top: 80px;
  width: 58px;
}

.ledger-tabs {
  display: flex;
  gap: 8px;
  padding: 12px 18px 0;
}

.ledger-tabs span {
  width: 42px;
  height: 6px;
  border-radius: 99px;
  background: var(--line);
}

.ledger-tabs span:first-child {
  background: var(--signal);
}

.ledger-title {
  display: grid;
  gap: 7px;
  padding: 12px 18px 18px;
  border-bottom: 1px solid var(--line);
}

.ledger-title span,
.promise-head span,
.truth-card span,
.standard-board span,
.process-lane span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ledger-title strong {
  padding-right: 122px;
  color: var(--night);
  font-size: 21px;
  line-height: 1.12;
}

.ledger-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.ledger-meta span {
  padding: 10px 14px;
  background: #fbf7ee;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.promise-table {
  display: grid;
}

.promise-row {
  display: grid;
  grid-template-columns: 0.88fr 1.15fr 0.72fr 1.1fr;
  gap: 10px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.promise-row:last-child {
  border-bottom: 0;
}

.promise-head {
  background: #f7f1e6;
}

.promise-row .gap {
  color: var(--ember);
  font-weight: 900;
}

.ledger-stamp {
  padding: 9px 18px 13px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.promise-recorder {
  border-top: 1px solid rgba(118, 201, 211, 0.3);
  background:
    linear-gradient(180deg, rgba(6, 27, 29, 0.98), rgba(11, 52, 56, 0.96)),
    var(--deep);
  color: #fffdf8;
}

.promise-recorder::before,
.promise-recorder::after {
  display: none;
}

.recorder-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 18px;
  padding: 20px;
  border-bottom: 1px solid rgba(118, 201, 211, 0.22);
  background:
    linear-gradient(90deg, rgba(118, 201, 211, 0.08), transparent 58%);
}

.recorder-top span,
.trace-event span,
.break-card span,
.recorder-output span {
  color: var(--signal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.recorder-top strong {
  max-width: 360px;
  color: #fffdf8;
  font-size: 26px;
  line-height: 1.05;
}

.recorder-top em {
  align-self: start;
  border: 1px solid rgba(198, 164, 86, 0.6);
  border-radius: 99px;
  padding: 8px 10px;
  color: var(--gold);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.trace-board {
  position: relative;
  min-height: 318px;
  padding: 24px;
  background:
    linear-gradient(rgba(118, 201, 211, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 201, 211, 0.04) 1px, transparent 1px),
    #082427;
  background-size: 28px 28px;
}

.trace-rail {
  position: absolute;
  right: 44px;
  left: 44px;
  top: 150px;
  height: 2px;
  background: linear-gradient(90deg, var(--signal), rgba(198, 164, 86, 0.9), rgba(169, 86, 67, 0.9), var(--signal));
}

.trace-rail::before,
.trace-rail::after {
  position: absolute;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 99px;
  content: "";
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(118, 201, 211, 0.12);
}

.trace-rail::before {
  left: 0;
}

.trace-rail::after {
  right: 0;
}

.trace-event {
  position: absolute;
  display: grid;
  gap: 5px;
  width: 106px;
  min-height: 86px;
  border: 1px solid rgba(118, 201, 211, 0.24);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 253, 248, 0.07);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.trace-event::after {
  position: absolute;
  left: 18px;
  width: 12px;
  height: 12px;
  border: 2px solid #082427;
  border-radius: 99px;
  content: "";
  background: var(--signal);
}

.trace-event b {
  color: #fffdf8;
  font-size: 14px;
  line-height: 1.05;
}

.trace-event small {
  color: rgba(215, 230, 223, 0.78);
  font-size: 12px;
}

.event-1 {
  left: 24px;
  top: 32px;
}

.event-1::after,
.event-3::after,
.event-5::after {
  bottom: -43px;
}

.event-2 {
  left: 140px;
  top: 198px;
}

.event-4::after,
.event-2::after {
  top: -43px;
}

.event-3 {
  left: 256px;
  top: 32px;
}

.event-4 {
  right: 140px;
  top: 198px;
}

.event-5 {
  right: 24px;
  top: 32px;
}

.is-broken {
  border-color: rgba(169, 86, 67, 0.82);
  background: rgba(169, 86, 67, 0.16);
}

.is-broken span,
.is-broken small {
  color: #f5b29e;
}

.is-broken::after {
  background: var(--ember);
  box-shadow: 0 0 0 6px rgba(169, 86, 67, 0.18);
}

.break-card {
  position: absolute;
  left: 50%;
  top: 132px;
  width: 214px;
  transform: translateX(-50%);
  border: 1px solid rgba(198, 164, 86, 0.55);
  border-radius: 8px;
  padding: 12px;
  background: #fffdf8;
  color: var(--ink);
}

.break-card b {
  display: block;
  margin-top: 6px;
  color: var(--night);
  font-size: 17px;
  line-height: 1.08;
}

.recorder-output {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1fr);
  gap: 10px 18px;
  padding: 18px 20px 20px;
  background: #fffdf8;
  color: var(--ink);
}

.recorder-output span {
  color: var(--teal);
}

.recorder-output strong {
  color: var(--night);
  font-size: 20px;
  line-height: 1.1;
}

.recorder-output p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.repo-preview {
  border-top: 1px solid rgba(118, 201, 211, 0.26);
  background: #071f22;
  color: #fffdf8;
}

.repo-preview::before,
.repo-preview::after {
  display: none;
}

.repo-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(118, 201, 211, 0.18);
  background: #061b1d;
}

.repo-titlebar div {
  display: grid;
  gap: 5px;
}

.repo-titlebar span,
.repo-detail-head span,
.repo-commit span,
.case-inspector span {
  color: var(--signal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.repo-titlebar strong {
  color: #fffdf8;
  font-size: 18px;
  line-height: 1.1;
}

.repo-titlebar em {
  border: 1px solid rgba(198, 164, 86, 0.58);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--gold);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.repo-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(118, 201, 211, 0.18);
  background: rgba(255, 253, 248, 0.04);
}

.repo-kpis span {
  display: grid;
  gap: 4px;
  min-height: 52px;
  border-right: 1px solid rgba(118, 201, 211, 0.14);
  padding: 12px 14px;
  color: rgba(215, 230, 223, 0.72);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.repo-kpis span:last-child {
  border-right: 0;
}

.repo-kpis b {
  color: #fffdf8;
  font-size: 22px;
  line-height: 1;
}

.repo-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(118, 201, 211, 0.18);
  background: #09272a;
  overflow-x: auto;
}

.repo-tabs span {
  min-height: 40px;
  border-right: 1px solid rgba(118, 201, 211, 0.12);
  padding: 13px 16px;
  color: rgba(215, 230, 223, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.repo-tabs .active {
  border-bottom: 2px solid var(--gold);
  color: #fffdf8;
  background: rgba(255, 253, 248, 0.05);
}

.repo-body {
  display: grid;
  grid-template-columns: minmax(220px, 0.88fr) minmax(0, 1.12fr);
  height: 392px;
  min-height: 0;
}

.repo-issue-list {
  display: grid;
  align-content: start;
  border-right: 1px solid rgba(118, 201, 211, 0.18);
  background: #082326;
  overflow-y: auto;
  scrollbar-color: rgba(118, 201, 211, 0.46) rgba(255, 253, 248, 0.06);
  scrollbar-width: thin;
}

.repo-issue-list::-webkit-scrollbar,
.repo-detail::-webkit-scrollbar {
  width: 8px;
}

.repo-issue-list::-webkit-scrollbar-track,
.repo-detail::-webkit-scrollbar-track {
  background: rgba(255, 253, 248, 0.06);
}

.repo-issue-list::-webkit-scrollbar-thumb,
.repo-detail::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: rgba(118, 201, 211, 0.46);
}

.repo-issue {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid rgba(118, 201, 211, 0.14);
  padding: 12px 16px;
}

.repo-issue.active {
  background: rgba(118, 201, 211, 0.1);
  box-shadow: inset 3px 0 0 var(--gold);
}

.repo-issue b {
  color: #fffdf8;
  font-size: 15px;
  line-height: 1.16;
}

.repo-issue small {
  color: rgba(215, 230, 223, 0.62);
  font-size: 12px;
  line-height: 1.25;
}

.repo-issue span {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag,
.status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border: 1px solid rgba(118, 201, 211, 0.24);
  border-radius: 99px;
  padding: 4px 7px;
  color: #d7e6df;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.tag.danger,
.status.danger {
  border-color: rgba(169, 86, 67, 0.52);
  color: #f0a08c;
}

.status.warn {
  border-color: rgba(198, 164, 86, 0.56);
  color: #9a7730;
  background: #fff8e6;
}

.status.ok {
  border-color: rgba(29, 119, 119, 0.35);
  color: var(--teal);
  background: #eef7f3;
}

.case-ledger .status.danger,
.case-ledger .status.warn,
.intake-sample .status.danger,
.intake-sample .status.warn {
  border-color: rgba(80, 111, 89, 0.34);
  color: #506f59;
  background: #eef5ee;
}

.case-ledger .status.danger::before,
.case-ledger .status.warn::before,
.intake-sample .status.danger::before,
.intake-sample .status.warn::before {
  background: #506f59;
}

.repo-detail {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px 20px;
  background:
    linear-gradient(rgba(118, 201, 211, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 201, 211, 0.04) 1px, transparent 1px),
    #0b2c30;
  background-size: 28px 28px;
  overflow-y: auto;
  scrollbar-color: rgba(118, 201, 211, 0.46) rgba(255, 253, 248, 0.06);
  scrollbar-width: thin;
}

.repo-detail-head {
  display: grid;
  gap: 7px;
}

.repo-detail-head strong {
  color: #fffdf8;
  font-size: 23px;
  line-height: 1.05;
}

.repo-fields {
  display: grid;
  gap: 8px;
}

.repo-fields span {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 10px;
  border: 1px solid rgba(118, 201, 211, 0.18);
  border-radius: 6px;
  padding: 9px 12px;
  background: rgba(255, 253, 248, 0.055);
  color: #d7e6df;
  font-size: 13px;
}

.repo-fields b {
  color: var(--gold);
}

.repo-note {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(198, 164, 86, 0.38);
  border-radius: 8px;
  padding: 12px;
  background: rgba(198, 164, 86, 0.1);
}

.repo-note span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.repo-note p {
  margin: 0;
  color: #fffdf8;
  font-size: 15px;
  line-height: 1.25;
}

.repo-evidence-list {
  display: grid;
  gap: 6px;
}

.repo-evidence-list span {
  border: 1px solid rgba(118, 201, 211, 0.16);
  border-radius: 6px;
  padding: 8px 10px;
  background: rgba(255, 253, 248, 0.04);
  color: rgba(215, 230, 223, 0.84);
  font-size: 12px;
}

.repo-commit {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(198, 164, 86, 0.42);
  border-radius: 8px;
  padding: 13px;
  background: #fffdf8;
  color: var(--ink);
}

.repo-commit strong {
  color: var(--night);
  font-size: 19px;
  line-height: 1.12;
}

.repo-commit ul {
  display: grid;
  gap: 6px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.repo-commit li {
  color: var(--muted);
  font-size: 13px;
}

.proof-bar {
  position: relative;
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(118, 201, 211, 0.22);
  border-radius: var(--radius) var(--radius) 0 0;
  background: rgba(118, 201, 211, 0.2);
  overflow: hidden;
}

.proof-bar div {
  min-height: 64px;
  padding: 10px 14px;
  background: rgba(11, 52, 56, 0.94);
}

.proof-bar strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
}

.proof-bar span {
  color: #d7e6df;
  font-size: 13px;
  line-height: 1.32;
}

.showup-section {
  padding-top: 56px;
  padding-bottom: 50px;
}

.showup-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 16px 44px rgba(7, 28, 34, 0.08);
}

.showup-copy h2 {
  margin: 0;
  color: var(--night);
  font-size: 34px;
  line-height: 1.02;
}

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

.showup-chips span {
  display: flex;
  align-items: center;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  background: #f8f3ea;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.showup-chips span:first-child {
  border-color: rgba(118, 201, 211, 0.34);
  background: var(--deep);
  color: #fffdf8;
}

.explain-section {
  padding-top: 34px;
}

.evidence-matrix,
.case-console,
.repair-diff {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sheet);
  box-shadow: 0 16px 44px rgba(7, 28, 34, 0.08);
  overflow: hidden;
}

.matrix-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.matrix-row:last-child {
  border-bottom: 0;
}

.matrix-row > span {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 74px;
  border-right: 1px solid var(--line);
  padding: 14px;
  color: var(--muted);
  font-size: 14px;
}

.matrix-row > span:last-child {
  border-right: 0;
}

.matrix-head {
  background: #f7f1e6;
}

.matrix-head span {
  min-height: 44px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.matrix-row b {
  color: var(--night);
  font-size: 15px;
}

.workbench-section {
  padding-top: 0;
}

.case-console {
  display: grid;
  grid-template-columns: minmax(230px, 0.68fr) minmax(420px, 1.22fr) minmax(280px, 0.76fr);
  gap: 1px;
  background: var(--line);
}

.case-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  background:
    linear-gradient(180deg, #fbf7ee 0%, #f4efe4 100%);
}

.case-sidebar strong {
  color: var(--night);
  font-size: 11px;
  text-transform: uppercase;
}

.case-sidebar h3 {
  margin: 0;
  color: var(--night);
  font-size: 26px;
  line-height: 1;
}

.case-sidebar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.lane-summary-list {
  display: grid;
  gap: 7px;
  margin: 4px 0 0;
}

.lane-summary-list div {
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.lane-summary-list dt {
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.lane-summary-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.case-sidebar span {
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.case-sidebar .active {
  border-color: rgba(29, 119, 119, 0.28);
  background: #fffdf8;
  color: var(--night);
}

.case-ledger {
  display: grid;
  gap: 7px;
  align-content: start;
  padding: 12px;
  background: var(--sheet);
}

.case-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1.2fr) minmax(126px, 0.56fr) 134px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fffdf8;
  overflow: hidden;
}

.case-row span {
  min-height: auto;
  border-right: 0;
  padding: 10px 11px;
  color: var(--muted);
  font-size: 13px;
}

.case-row span:last-child {
  border-right: 0;
}

.case-head {
  border: 0;
  background: transparent;
}

.case-head span {
  min-height: auto;
  padding-top: 0;
  padding-bottom: 0;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-row.active {
  background: #eef7f3;
  border-color: rgba(80, 111, 89, 0.32);
}

.case-row.active span:first-child {
  box-shadow: inset 4px 0 0 var(--teal);
  color: var(--night);
  font-weight: 900;
}

.case-inspector {
  display: grid;
  align-content: start;
  padding: 18px;
  background:
    linear-gradient(180deg, #fff8e9 0%, #fbf7ee 100%);
  color: var(--ink);
}

.case-inspector h3 {
  margin: 10px 0 14px;
  color: var(--night);
  font-size: 26px;
  line-height: 1.02;
}

.case-inspector > span {
  color: var(--teal);
}

.inspector-meta {
  border: 1px solid rgba(184, 145, 79, 0.34);
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 12px;
  background: rgba(255, 253, 248, 0.72);
}

.inspector-meta b {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.inspector-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.case-inspector ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-inspector li {
  border-top: 1px solid var(--line);
  padding-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.truth-grid,
.standard-board,
.process-lane {
  display: grid;
  gap: 14px;
}

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

.truth-card,
.standard-board article,
.process-lane article,
.pain-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sheet);
}

.truth-card {
  min-height: 286px;
  padding: 24px;
}

.truth-card span,
.process-lane span {
  display: block;
  margin-bottom: 54px;
}

.truth-card h3,
.standard-board h3,
.process-lane h3,
.pain-list strong {
  margin-bottom: 12px;
  color: var(--night);
  font-size: 30px;
  line-height: 1.03;
}

.truth-card p,
.standard-board p,
.process-lane p,
.pain-list span,
.offer-intro p {
  color: var(--muted);
}

.customer-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding-top: 0;
}

.customer-copy h2,
.identity-copy h2,
.offer-intro h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 58px;
  line-height: 0.98;
}

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

.pain-list article {
  padding: 20px;
}

.pain-list strong {
  display: block;
  font-size: 24px;
}

.pain-list span {
  display: block;
  font-size: 16px;
}

.identity-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  gap: 34px;
  padding-top: 0;
}

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

.identity-grid article {
  min-height: 286px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--sheet);
}

.identity-grid span {
  display: block;
  margin-bottom: 50px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.identity-grid h3 {
  margin-bottom: 12px;
  color: var(--night);
  font-size: 28px;
  line-height: 1.04;
}

.identity-grid p {
  color: var(--muted);
}

.repair-section {
  padding-top: 0;
}

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

.before-after article {
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--sheet);
}

.before-after article:first-child {
  border-color: rgba(169, 86, 67, 0.36);
  background: #fff6ef;
}

.before-after article:last-child {
  border-color: rgba(29, 119, 119, 0.36);
  background: #eef7f3;
}

.before-after span {
  display: block;
  margin-bottom: 72px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.before-after article:first-child span {
  color: var(--ember);
}

.before-after h3 {
  margin-bottom: 12px;
  color: var(--night);
  font-size: 34px;
  line-height: 1.02;
}

.before-after p {
  color: var(--muted);
}

.repair-diff {
  display: grid;
  font-family: Arial, Helvetica, sans-serif;
}

.diff-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  background: #f7f1e6;
}

.diff-head span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.diff-head strong {
  color: var(--night);
}

.diff-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}

.diff-row:last-child {
  border-bottom: 0;
}

.diff-row b {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  font-size: 18px;
}

.diff-row span {
  padding: 16px;
}

.diff-row.remove {
  background: #fff6ef;
}

.diff-row.remove b {
  color: var(--ember);
}

.diff-row.add {
  background: #eef7f3;
}

.diff-row.add b {
  color: var(--teal);
}

.standard-section {
  width: 100%;
  padding: 84px max(16px, calc((100% - 1220px) / 2));
  background:
    linear-gradient(180deg, #0b3438 0%, #061b1d 100%);
  color: #fffdf8;
}

.standard-section .section-heading {
  width: 100%;
}

.standard-section .section-heading h2 {
  color: #fffdf8;
}

.standard-section .section-heading p {
  color: #d7e6df;
}

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

.standard-board article {
  min-height: 292px;
  padding: 24px;
  border-color: rgba(118, 201, 211, 0.22);
  background: rgba(255, 253, 248, 0.05);
}

.standard-board span {
  display: block;
  margin-bottom: 60px;
  color: var(--gold);
}

.standard-board h3 {
  color: #fffdf8;
}

.standard-board p {
  color: #d7e6df;
}

.access-section {
  padding-top: 84px;
}

.access-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: var(--sheet);
  box-shadow: var(--shadow);
}

.access-panel h2 {
  margin: 0;
  color: var(--night);
  font-size: 48px;
  line-height: 1;
}

.access-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.access-list li {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.access-list li:last-child {
  border-bottom: 0;
}

.access-list b {
  color: var(--night);
}

.access-list span {
  color: var(--muted);
}

.process-lane {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-lane article {
  min-height: 292px;
  padding: 22px;
}

.audit-pipeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sheet);
  overflow: hidden;
}

.audit-pipeline span {
  position: relative;
  display: grid;
  min-height: 92px;
  align-items: center;
  border-right: 1px solid var(--line);
  padding: 18px;
  color: var(--night);
  font-size: 18px;
  font-weight: 900;
}

.audit-pipeline span:last-child {
  border-right: 0;
}

.audit-pipeline span::before {
  display: block;
  width: 28px;
  height: 6px;
  margin-bottom: 16px;
  border-radius: 999px;
  content: "";
  background: var(--signal);
}

.audit-pipeline span:nth-child(3)::before {
  background: var(--gold);
}

.audit-pipeline span:nth-child(4)::before {
  background: var(--teal);
}

.intake-sample {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sheet);
  overflow: hidden;
}

.intake-sample-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  background: #f7f1e6;
}

.intake-sample-head span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.intake-sample-head strong {
  color: var(--night);
}

.intake-sample-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 160px;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 13px 16px;
}

.intake-sample-row:last-child {
  border-bottom: 0;
}

.intake-sample-row b {
  color: var(--night);
  font-size: 13px;
}

.intake-sample-row span {
  color: var(--muted);
  font-size: 14px;
}

.intake-guide {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sheet);
  box-shadow: 0 18px 54px rgba(7, 28, 34, 0.1);
  overflow: hidden;
}

.intake-guide-main {
  display: grid;
  align-content: start;
  justify-content: stretch;
  gap: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
  padding: 24px;
}

.intake-guide-main strong {
  max-width: 320px;
  color: var(--night);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.02;
}

.intake-guide-main p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.46;
}

.intake-guide-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intake-guide-list article {
  min-height: 150px;
  border-right: 1px solid var(--line);
  padding: 20px;
}

.intake-guide-list article:last-child {
  border-right: 0;
}

.intake-guide-list b::before {
  display: block;
  width: 28px;
  height: 5px;
  margin-bottom: 34px;
  border-radius: 99px;
  content: "";
  background: var(--gold);
}

.offer-section {
  padding-top: 0;
}

.offer-intro {
  max-width: 850px;
  margin-bottom: 28px;
}

.pinnacle-final .offer-card h3 {
  font-size: 32px;
}

.pinnacle-final .final-cta .eyebrow {
  color: var(--gold);
}

.night-ops main {
  background: var(--paper);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text small {
  color: rgba(214, 232, 232, 0.72);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.night-ops .brand-mark {
  border-color: var(--gold);
  color: var(--gold);
}

.night-hero {
  min-height: 0;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(6, 20, 23, 0.98) 0%, rgba(6, 20, 23, 0.92) 42%, rgba(6, 20, 23, 0.72) 100%),
    url("../images/pinnacle-dashboard.png") right center / auto 100% no-repeat,
    var(--deep);
}

.night-ops .hero-shell {
  padding-top: 72px;
  padding-bottom: 34px;
}

.night-ops .hero-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.82fr);
  align-items: center;
}

.hero-copy {
  max-width: 780px;
}

.night-ops h1 {
  max-width: 780px;
  font-size: 76px;
  line-height: 0.95;
}

.night-ops .lead {
  max-width: 680px;
  color: #dbe7e4;
}

.ops-console {
  border: 1px solid rgba(127, 209, 223, 0.28);
  border-radius: var(--radius);
  background: rgba(9, 30, 34, 0.9);
  color: #f8f1e4;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  border-bottom: 1px solid rgba(127, 209, 223, 0.2);
  padding: 18px;
}

.console-head span,
.console-metrics span,
.console-flow span,
.console-row em,
.leak-card span,
.lane-system span,
.offer-card span {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.console-head span {
  display: block;
  margin-bottom: 5px;
  color: var(--signal);
}

.console-head strong {
  font-size: 22px;
}

.console-head em {
  border: 1px solid rgba(127, 209, 223, 0.34);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--signal);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.console-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(127, 209, 223, 0.2);
}

.console-metrics div {
  min-height: 92px;
  padding: 18px;
  border-right: 1px solid rgba(127, 209, 223, 0.16);
}

.console-metrics div:last-child {
  border-right: 0;
}

.console-metrics span {
  display: block;
  color: #9fb7b7;
}

.console-metrics strong {
  display: block;
  margin-top: 10px;
  color: #fffaf0;
  font-size: 32px;
}

.console-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid rgba(127, 209, 223, 0.2);
}

.console-flow span {
  min-height: 62px;
  border: 1px solid rgba(127, 209, 223, 0.2);
  border-radius: 6px;
  padding: 10px;
  color: #cfe3df;
}

.console-flow .hot {
  border-color: rgba(208, 106, 69, 0.62);
  background: rgba(208, 106, 69, 0.12);
  color: #ffb08b;
}

.console-ledger {
  display: grid;
}

.console-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px minmax(116px, 0.72fr);
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(127, 209, 223, 0.16);
  font-size: 14px;
}

.console-row:last-child {
  border-bottom: 0;
}

.console-row span {
  color: var(--gold);
  font-weight: 900;
}

.console-row em {
  color: #ffb08b;
  font-style: normal;
}

.signal-strip {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  transform: translateY(-1px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(127, 209, 223, 0.2);
  border-radius: 0 0 var(--radius) var(--radius);
  background: rgba(127, 209, 223, 0.2);
  overflow: hidden;
}

.signal-strip div {
  min-height: 104px;
  padding: 18px;
  background: #0b2f36;
  color: #f8f1e4;
}

.signal-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.signal-strip span {
  color: #cfe3df;
  font-size: 15px;
}

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

.leak-card,
.offer-card,
.lane-system article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.leak-card {
  min-height: 276px;
  padding: 22px;
  background: var(--sheet);
}

.leak-card span,
.offer-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--teal);
}

.leak-card h3,
.offer-card h3,
.lane-system h3 {
  margin-bottom: 12px;
  font-size: 29px;
  line-height: 1.02;
}

.leak-card p,
.offer-card p,
.lane-system p,
.product-shot figcaption {
  color: var(--muted);
}

.product-section {
  padding-top: 0;
}

.product-shot {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sheet);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
}

.product-shot figcaption {
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 800;
}

.night-ops .section.dark {
  background:
    linear-gradient(180deg, #09262c 0%, #061417 100%);
}

.lane-system {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(127, 209, 223, 0.22);
  border-radius: var(--radius);
  background: rgba(127, 209, 223, 0.22);
  overflow: hidden;
}

.lane-system article {
  min-height: 260px;
  border: 0;
  border-radius: 0;
  padding: 22px;
  background: rgba(255, 250, 240, 0.04);
}

.lane-system span {
  display: block;
  margin-bottom: 60px;
  color: var(--gold);
}

.lane-system h3 {
  color: #fffaf0;
}

.lane-system p {
  color: #cfe3df;
}

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

.offer-card {
  min-height: 286px;
  padding: 24px;
  background: var(--sheet);
}

.offer-card.feature {
  border-color: rgba(22, 115, 129, 0.45);
  background: #eef6f4;
  box-shadow: var(--shadow);
}

.offer-card h3 {
  color: var(--night);
  font-size: 36px;
}

.final-cta .eyebrow {
  color: var(--gold);
}

.semi-hero .lead {
  max-width: 690px;
  margin-right: auto;
  margin-left: auto;
  color: #dbe7e2;
  font-size: 17px;
  line-height: 1.46;
}

.semi-hero h1 {
  max-width: 700px;
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
  font-size: clamp(38px, 3.8vw, 54px);
  line-height: 1.08;
  text-wrap: balance;
}

.semi-hero .lead {
  max-width: 780px;
  font-size: 18px;
  line-height: 1.48;
}

.semi-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #b9d4cd;
  font-size: 13px;
  text-transform: none;
}

.semi-hero .eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: rgba(198, 164, 86, 0.8);
}

.hero-problem-label span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-problem-label em {
  color: #b9d4cd;
  font-style: normal;
}

.plain-offer-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: 1120px;
  margin: 22px auto 4px;
  border: 1px solid rgba(131, 198, 189, 0.24);
  border-radius: 8px;
  background: rgba(131, 198, 189, 0.18);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  text-align: left;
}

.plain-offer-strip div {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 88px;
  padding: 16px 18px;
  background:
    linear-gradient(180deg, rgba(131, 198, 189, 0.1), rgba(8, 37, 39, 0.78)),
    rgba(8, 37, 39, 0.86);
}

.plain-offer-strip div:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(198, 164, 86, 0.1), rgba(8, 37, 39, 0.78)),
    rgba(8, 37, 39, 0.86);
}

.plain-offer-strip span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.plain-offer-strip b {
  display: block;
  max-width: 320px;
  color: #fffdf8;
  font-size: 17px;
  line-height: 1.25;
}

.plain-offer-strip + .hero-solution-strip {
  margin-top: 12px;
}

.hero-proofline,
.hero-solution-strip {
  display: grid;
  gap: 9px;
  max-width: 1120px;
  margin: 20px auto 0;
  border-top: 1px solid rgba(131, 198, 189, 0.22);
  border-bottom: 1px solid rgba(131, 198, 189, 0.16);
  padding: 12px 0;
}

.hero-solution-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: 1120px;
  border: 1px solid rgba(131, 198, 189, 0.22);
  border-radius: 8px;
  padding: 0;
  background: rgba(118, 201, 211, 0.18);
  overflow: hidden;
}

.hero-proofline span,
.hero-solution-strip .handoff-step {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 12px;
  color: #d7e6df;
  font-size: 14px;
  line-height: 1.35;
}

.hero-solution-strip .handoff-step {
  display: block;
  width: 100%;
  min-height: 120px;
  border: 0;
  border-radius: 0;
  padding: 14px 15px;
  background: rgba(8, 37, 39, 0.74);
  color: #d7e6df;
  font: inherit;
  font-size: 15.5px;
  text-align: left;
  box-shadow: none;
}

.hero-solution-strip .handoff-step > span {
  display: block;
  color: inherit;
  font-size: inherit;
  line-height: 1.4;
}

.handoff-strip {
  position: relative;
  background: rgba(131, 198, 189, 0.18);
}

.handoff-strip .handoff-step {
  position: relative;
  padding-left: 16px;
  cursor: pointer;
}

.handoff-strip .handoff-step::before {
  display: block;
  width: 9px;
  height: 9px;
  margin-bottom: 10px;
  border: 2px solid rgba(131, 198, 189, 0.74);
  border-radius: 999px;
  content: "";
  background: rgba(8, 37, 39, 0.96);
}

.handoff-strip .is-stuck {
  background: rgba(16, 45, 45, 0.78);
}

.handoff-strip .is-stuck::before {
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(184, 145, 79, 0.12);
}

.handoff-strip .handoff-step.is-active {
  background:
    linear-gradient(180deg, rgba(131, 198, 189, 0.16), rgba(8, 37, 39, 0.82));
  box-shadow: inset 0 -3px 0 var(--signal);
}

.handoff-strip .handoff-step.is-active.is-stuck {
  background: rgba(16, 45, 45, 0.86);
  box-shadow: inset 0 -3px 0 var(--gold);
}

.hero-readout {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  min-height: 54px;
  border: 1px solid rgba(131, 198, 189, 0.18);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  padding: 10px 13px;
  background: rgba(8, 37, 39, 0.58);
  text-align: left;
}

.hero-readout span {
  flex: 0 0 auto;
  color: var(--signal);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-readout strong {
  color: #fffdf8;
  font-size: 15.5px;
  line-height: 1.25;
  font-weight: 800;
}

.hero-readout > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.hero-readout em {
  color: rgba(215, 230, 223, 0.78);
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

.hero-proofline b,
.hero-solution-strip b {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-solution-strip b {
  display: block;
  margin-bottom: 6px;
}

.semi-hero .hero-actions {
  justify-content: center;
  margin-top: 20px;
}

.semi-hero .trust-line {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(215, 230, 223, 0.82);
  font-size: 14px;
  text-align: center;
}

.pinnacle-final .section-heading h2,
.pinnacle-final .different-panel h2,
.pinnacle-final .cta-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.semi-hero-inner {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 0;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 10px;
}

.semi-hero .hero-copy {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

.ops-brief {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  border: 1px solid rgba(184, 145, 79, 0.42);
  border-top: 6px solid var(--gold);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.035), rgba(255, 253, 248, 0)),
    linear-gradient(90deg, rgba(131, 198, 189, 0.028) 1px, transparent 1px),
    #111b19;
  background-size: auto, 96px 96px, auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.26);
  color: #fffdf8;
  overflow: hidden;
}

.ops-brief-top,
.ops-finding,
.ops-rule,
.diagnostic-intro,
.diagnostic-result {
  padding: 16px 18px;
}

.ops-brief-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(118, 201, 211, 0.18);
  background: rgba(10, 18, 17, 0.88);
}

.ops-brief-top span,
.ops-finding span,
.ops-rule span,
.diagnostic-intro span,
.diagnostic-result span {
  color: var(--signal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-brief-top b {
  color: var(--ember);
  font-size: 13px;
  text-transform: uppercase;
}

.diagnostic-intro {
  display: grid;
  gap: 7px;
  border-bottom: 1px solid rgba(118, 201, 211, 0.18);
}

.diagnostic-intro strong {
  max-width: 430px;
  color: #fffdf8;
  font-size: 19px;
  font-weight: 850;
  line-height: 1.2;
}

.diagnostic-intro p {
  max-width: 410px;
  margin: 0;
  color: #d7e6df;
  font-size: 13px;
  line-height: 1.45;
}

.diagnostic-trail {
  display: grid;
}

.diagnostic-trail article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  border-bottom: 1px solid rgba(118, 201, 211, 0.14);
  padding: 12px 18px;
}

.solution-panel .diagnostic-intro {
  padding-bottom: 14px;
}

.solution-panel .diagnostic-intro strong {
  font-size: 18px;
}

.solution-panel .diagnostic-intro p {
  font-size: 13px;
}

.solution-panel .diagnostic-trail article {
  padding: 10px 18px;
}

.diagnostic-trail article.is-gap {
  background: rgba(213, 134, 82, 0.12);
  box-shadow: inset 4px 0 0 var(--ember);
}

.diagnostic-trail article > span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(131, 198, 189, 0.24);
  border-radius: 999px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.diagnostic-trail b {
  display: block;
  margin-bottom: 4px;
  color: var(--signal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.diagnostic-trail p {
  margin: 0;
  color: #d7e6df;
  font-size: 13px;
  line-height: 1.38;
}

.diagnostic-result {
  display: grid;
  gap: 9px;
  background: rgba(198, 164, 86, 0.1);
}

.diagnostic-result strong {
  color: #fffdf8;
  font-size: 16px;
  line-height: 1.25;
}

.solution-panel .diagnostic-result {
  gap: 8px;
}

.solution-panel .diagnostic-result strong {
  font-size: 15px;
}

.hero-answer-card {
  position: relative;
  max-width: 560px;
  transform: translateZ(0);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.hero-answer-card::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(112deg, transparent 34%, rgba(131, 198, 189, 0.18) 48%, rgba(198, 164, 86, 0.12) 52%, transparent 66%);
  opacity: 0;
  transform: translateX(-110%);
}

.hero-answer-card > * {
  position: relative;
  z-index: 1;
}

.hero-answer-card .ops-brief-top {
  padding: 14px 18px;
}

.answer-card-head span {
  display: grid;
  gap: 2px;
}

.answer-card-head small {
  display: block;
  color: rgba(215, 230, 223, 0.7);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-answer-card[data-hero-stage="sent"] .ops-brief-top b {
  color: var(--signal);
}

.hero-answer-card[data-hero-stage="approved"] .ops-brief-top b {
  color: var(--gold);
}

.hero-answer-card[data-hero-stage="stalled"] .ops-brief-top b {
  color: var(--ember);
}

.hero-answer-card .ops-brief-top b::before {
  background: currentColor;
}

.customer-message {
  display: grid;
  gap: 7px;
  border-bottom: 1px solid rgba(118, 201, 211, 0.18);
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(118, 201, 211, 0.055) 1px, transparent 1px),
    rgba(255, 253, 248, 0.028);
  background-size: 96px 96px;
}

.customer-message span,
.repair-plan span {
  color: var(--signal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.customer-message strong {
  max-width: 430px;
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
}

.customer-message p {
  max-width: 410px;
  margin: 0;
  color: #d7e6df;
  font-size: 13px;
  line-height: 1.42;
}

.answer-rows {
  display: grid;
}

.answer-rows article {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border-bottom: 1px solid rgba(118, 201, 211, 0.14);
  padding: 12px 18px;
}

.answer-rows article:first-child {
  background: rgba(213, 134, 82, 0.1);
  box-shadow: inset 4px 0 0 var(--ember);
}

.answer-marker {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(131, 198, 189, 0.28);
  border-radius: 999px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.answer-rows b {
  display: block;
  margin-bottom: 4px;
  color: var(--signal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.answer-rows p {
  margin: 0;
  color: #d7e6df;
  font-size: 13px;
  line-height: 1.38;
}

.repair-plan {
  display: grid;
  gap: 9px;
  padding: 15px 18px 16px;
  background: rgba(198, 164, 86, 0.1);
}

.repair-plan strong {
  max-width: 420px;
  color: #fffdf8;
  font-size: 15px;
  line-height: 1.26;
}

.repair-plan div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.repair-plan p {
  margin: 0;
  border-top: 1px solid rgba(198, 164, 86, 0.32);
  padding-top: 8px;
  color: #d7e6df;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.diagnostic-result div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.diagnostic-result p {
  margin: 0;
  border-top: 1px solid rgba(198, 164, 86, 0.32);
  padding-top: 8px;
  color: #d7e6df;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ops-finding {
  display: grid;
  gap: 10px;
  border-bottom: 1px solid rgba(118, 201, 211, 0.18);
}

.ops-finding strong {
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.12;
}

.ops-queue {
  display: grid;
}

.ops-queue article {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 124px;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(118, 201, 211, 0.14);
  padding: 11px 16px;
}

.ops-queue article:first-child {
  background: rgba(213, 134, 82, 0.12);
  box-shadow: inset 4px 0 0 var(--ember);
}

.ops-queue b {
  color: var(--gold);
  font-size: 13px;
}

.ops-queue span,
.ops-rule p {
  color: #d7e6df;
  font-size: 14px;
}

.ops-queue em {
  justify-self: end;
  border: 1px solid rgba(198, 164, 86, 0.5);
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--gold);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.ops-rule {
  display: grid;
  gap: 8px;
  background: rgba(198, 164, 86, 0.1);
}

.ops-rule p {
  margin: 0;
}

.semi-proof {
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.workflow-bridge {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 24px;
  margin-bottom: -58px;
  border-color: rgba(131, 198, 189, 0.24);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  background: #0b2527;
  box-shadow: 0 22px 58px rgba(3, 16, 17, 0.28);
}

.workflow-bridge div {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.workflow-bridge .bridge-head {
  display: grid;
  justify-items: center;
  padding: 30px clamp(22px, 4vw, 54px) 24px;
  background: #0b2527;
  text-align: center;
}

.bridge-head span,
.bridge-state span,
.bridge-rule-card span {
  display: block;
  margin-bottom: 9px;
  color: #83c6bd;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.bridge-head strong {
  display: block;
  max-width: 840px;
  margin-bottom: 12px;
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.04;
  text-transform: none;
}

.bridge-head p {
  max-width: 780px;
  margin: 0;
  color: rgba(215, 230, 223, 0.86);
  font-size: 16px;
  line-height: 1.48;
}

.bridge-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(131, 198, 189, 0.14);
  border-bottom: 1px solid rgba(131, 198, 189, 0.14);
  background: rgba(131, 198, 189, 0.14);
}

.bridge-steps > a {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 156px;
  padding: 24px;
  background: #0e2a2c;
  color: inherit;
  text-decoration: none;
  transition:
    transform 260ms var(--motion-ease),
    background-color 260ms var(--motion-ease),
    box-shadow 260ms var(--motion-ease);
}

.bridge-steps > a:nth-child(2) {
  background: #102d2d;
}

.bridge-steps > a.bridge-step-next {
  gap: 12px;
}

.bridge-steps span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(184, 145, 79, 0.42);
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.bridge-steps b {
  color: #fffdf8;
  font-size: 19px;
  line-height: 1.18;
}

.bridge-steps p {
  margin: 0;
  color: rgba(215, 230, 223, 0.78);
  font-size: 14px;
  line-height: 1.42;
}

.bridge-step-checks {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.bridge-step-checks li {
  display: grid;
  grid-template-columns: minmax(92px, 0.42fr) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border-top: 1px solid rgba(131, 198, 189, 0.16);
  padding-top: 8px;
}

.bridge-step-checks strong {
  color: #fffdf8;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.bridge-step-checks em {
  color: rgba(215, 230, 223, 0.82);
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

.bridge-outcome {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 0;
  border-top: 1px solid rgba(131, 198, 189, 0.14);
  padding: 20px 22px;
  background: #0b2527;
  text-align: center;
}

.bridge-outcome b {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.bridge-outcome p {
  margin: 0;
  color: rgba(255, 253, 248, 0.92);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.34;
}

.bridge-system-map {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.16fr) minmax(0, 0.92fr);
  gap: 1px;
  background: rgba(131, 198, 189, 0.14);
}

.bridge-state,
.bridge-rule-card {
  min-height: 146px;
  padding: 20px;
  background: #0e2a2c;
}

.bridge-before {
  box-shadow: inset 3px 0 0 var(--gold);
}

.bridge-after {
  box-shadow: inset -4px 0 0 rgba(131, 198, 189, 0.78);
}

.bridge-state strong,
.bridge-rule-card strong {
  display: block;
  margin-bottom: 10px;
  color: #fffdf8;
  font-size: 18px;
  line-height: 1.22;
  text-transform: none;
}

.bridge-state p {
  margin: 0;
  color: rgba(215, 230, 223, 0.78);
  font-size: 14px;
  line-height: 1.42;
}

.bridge-rule-card {
  position: relative;
  display: grid;
  align-content: center;
  background: #102d2d;
}

.bridge-rule-card::before,
.bridge-rule-card::after {
  display: none;
}

.bridge-rule-card::before {
  left: -15px;
}

.bridge-rule-card::after {
  right: -15px;
}

.bridge-rule-card span {
  color: var(--gold);
}

.bridge-rule-card strong {
  max-width: 380px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.12;
}

.bridge-rule-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.bridge-rule-fields b {
  display: grid;
  min-height: 34px;
  place-items: center;
  border: 1px solid rgba(198, 164, 86, 0.34);
  border-radius: 999px;
  color: #f5ead2;
  font-size: 11px;
  text-transform: uppercase;
}

.bridge-template {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(131, 198, 189, 0.17);
}

.bridge-template span {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 100%;
  padding: 15px 16px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.035), rgba(255, 253, 248, 0)),
    #0f2b2d;
}

.bridge-template b {
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
}

.bridge-template em {
  color: #edf5f1;
  font-size: 14px;
  font-style: normal;
  line-height: 1.35;
}

.bridge-receipt {
  display: grid;
  grid-template-columns: minmax(360px, 0.56fr) minmax(0, 0.44fr);
  gap: 1px;
  background: rgba(131, 198, 189, 0.14);
}

.bridge-receipt > div {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 18px 20px;
  background: #0e2a2c;
}

.bridge-receipt > div span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.bridge-receipt > div strong {
  color: #fffdf8;
  font-size: 18px;
  line-height: 1.22;
}

.bridge-receipt p {
  display: grid;
  align-content: center;
  min-height: 78px;
  margin: 0;
  padding: 18px 20px;
  background: #0c2426;
  color: rgba(237, 245, 241, 0.88);
  font-size: 15px;
  line-height: 1.42;
}

.bridge-receipt ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: rgba(131, 198, 189, 0.12);
  list-style: none;
}

.bridge-receipt li {
  display: grid;
  gap: 7px;
  min-height: 74px;
  padding: 15px 16px;
  background: #0c2426;
}

.bridge-receipt b {
  color: #83c6bd;
  font-size: 11px;
  text-transform: uppercase;
}

.bridge-receipt em {
  color: #edf5f1;
  font-size: 14px;
  font-style: normal;
  line-height: 1.34;
}

.fit-section {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: min(1360px, calc(100% - 48px));
  padding-top: 106px;
  padding-bottom: 48px;
}

.fit-section::before {
  position: absolute;
  top: -70px;
  left: 50%;
  z-index: -1;
  width: 100vw;
  height: 122px;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(7, 28, 34, 0.52) 0%, rgba(149, 158, 146, 0.32) 48%, rgba(244, 240, 232, 0.96) 82%, var(--paper) 100%);
  content: "";
  pointer-events: none;
}

.first-scan-section .section-heading {
  margin-bottom: 20px;
}

.first-scan-section .section-heading h2 {
  max-width: 760px;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.1;
}

.first-scan-section .section-heading p {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.5;
}

.fit-diagnostic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.scan-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(80, 111, 89, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(80, 111, 89, 0.22), rgba(198, 164, 86, 0.18));
  box-shadow: 0 20px 58px rgba(7, 28, 34, 0.12);
  overflow: hidden;
}

.scan-flow > article,
.scan-flow > a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  min-height: 162px;
  padding: 24px 20px;
  background: #fffdf8;
  color: inherit;
  text-decoration: none;
  transition:
    transform 240ms var(--motion-ease),
    background-color 240ms var(--motion-ease),
    box-shadow 240ms var(--motion-ease);
}

.scan-flow > article > span,
.scan-flow > a > span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(80, 111, 89, 0.24);
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.scan-flow h3 {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.1;
}

.scan-flow p {
  margin: 0;
  color: #4f5d5f;
  font-size: 15px;
  line-height: 1.42;
}

.example-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(120px, 0.2fr) minmax(260px, 0.42fr) minmax(300px, 0.38fr);
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 14px 20px;
  background:
    linear-gradient(90deg, rgba(213, 134, 82, 0.11), transparent 54%),
    #fbf7ee;
  box-shadow: inset 4px 0 0 var(--ember);
}

.example-strip b {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.example-strip span {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.24;
}

.example-strip strong {
  color: #344547;
  font-size: 15px;
  line-height: 1.34;
}

.scan-return {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(80, 111, 89, 0.16);
}

.scan-return article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  row-gap: 8px;
  min-height: 138px;
  padding: 20px;
  background: #fffdf8;
}

.scan-return span {
  display: block;
  margin: 0;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.scan-return b {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.1;
}

.scan-return p {
  margin: 0;
  color: #4f5d5f;
  font-size: 14px;
  line-height: 1.38;
}

.decision-ledger {
  border: 1px solid rgba(80, 111, 89, 0.24);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: 0 20px 58px rgba(7, 28, 34, 0.12);
  overflow: hidden;
}

.decision-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.36fr) minmax(0, 0.4fr);
  min-height: 84px;
  border-top: 1px solid rgba(80, 111, 89, 0.16);
}

.decision-row:first-child {
  border-top: 0;
}

.decision-row span {
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(80, 111, 89, 0.12);
  padding: 13px 16px;
  color: #3e4d4f;
  font-size: 14px;
  line-height: 1.35;
}

.decision-row span:first-child {
  border-left: 0;
  color: var(--ink);
  font-weight: 800;
}

.decision-head {
  min-height: 44px;
  background:
    linear-gradient(90deg, rgba(131, 198, 189, 0.08), transparent),
    #102f38;
}

.decision-head span {
  color: rgba(255, 253, 248, 0.9);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.decision-head span:first-child {
  color: var(--gold);
}

.decision-row.is-hot {
  background:
    linear-gradient(90deg, rgba(213, 134, 82, 0.12), transparent 48%),
    #fbf7ee;
  box-shadow: inset 4px 0 0 var(--ember);
}

.starter-brief {
  display: grid;
  gap: 14px;
  align-content: start;
  border: 1px solid rgba(184, 145, 79, 0.42);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px;
  background:
    linear-gradient(rgba(131, 198, 189, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 198, 189, 0.04) 1px, transparent 1px),
    linear-gradient(145deg, #101817 0%, #17322d 100%);
  background-size: 44px 44px, 44px 44px, auto;
  color: #fffdf8;
  box-shadow: 0 22px 62px rgba(7, 28, 34, 0.2);
}

.starter-brief > span {
  color: var(--signal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.starter-brief h3 {
  max-width: 360px;
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.04;
}

.starter-brief p,
.starter-brief li,
.starter-note span {
  color: #d7e6df;
  font-size: 14px;
  line-height: 1.42;
}

.starter-brief ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: starter-step;
}

.starter-brief li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.starter-brief li::before {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(131, 198, 189, 0.28);
  border-radius: 999px;
  color: var(--gold);
  content: counter(starter-step);
  counter-increment: starter-step;
  font-size: 11px;
  font-weight: 900;
}

.starter-note {
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(198, 164, 86, 0.34);
  padding-top: 14px;
}

.starter-note b {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.owner-lines,
.method-steps,
.field-grid,
.model-ladder,
.different-grid {
  display: grid;
  gap: 14px;
}

.owner-lines {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(131, 198, 189, 0.22);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 12px;
  background:
    linear-gradient(rgba(131, 198, 189, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 198, 189, 0.044) 1px, transparent 1px),
    linear-gradient(135deg, #101817 0%, #18302b 100%);
  background-size: 44px 44px, 44px 44px, auto;
  box-shadow: 0 22px 62px rgba(7, 28, 34, 0.2);
}

.owner-lines article,
.field-grid article,
.deliverable-grid article,
.model-ladder article,
.different-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sheet);
}

.owner-lines article {
  position: relative;
  min-height: 118px;
  border-color: rgba(131, 198, 189, 0.18);
  padding: 16px;
  background: rgba(255, 253, 248, 0.055);
  overflow: hidden;
}

.owner-lines article::before {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 8px;
  height: 8px;
  border: 2px solid rgba(131, 198, 189, 0.62);
  border-radius: 999px;
  content: "";
}

.owner-lines span,
.field-grid span,
.model-ladder span {
  display: block;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.owner-lines span {
  margin-bottom: 22px;
  color: var(--gold);
}

.owner-lines strong {
  display: block;
  color: #fffdf8;
  font-size: 21px;
  line-height: 1.08;
}

.method-band {
  background:
    linear-gradient(135deg, rgba(6, 27, 29, 0.98), rgba(15, 64, 65, 0.95)),
    var(--deep);
}

.method-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(131, 198, 189, 0.2);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 12px;
  background:
    linear-gradient(rgba(131, 198, 189, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 198, 189, 0.044) 1px, transparent 1px),
    rgba(0, 0, 0, 0.13);
  background-size: 44px 44px, 44px 44px, auto;
}

.method-steps article,
.method-step-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 236px;
  border: 1px solid rgba(118, 201, 211, 0.18);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 253, 248, 0.055);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.method-steps article::before,
.method-step-card::before {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(131, 198, 189, 0.06), rgba(131, 198, 189, 0.58));
}

.method-steps article > span,
.method-step-card > span:not(.method-step-link) {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.method-steps h3 {
  color: #fffdf8;
  font-size: 28px;
  line-height: 1.02;
}

.method-steps p {
  color: #d7e6df;
}

.method-step-link {
  display: inline-flex;
  align-self: end;
  justify-self: start;
  margin-top: 22px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(198, 164, 86, 0.7);
  padding-bottom: 4px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.method-step-link::after {
  content: " ->";
}

.field-section {
  padding-bottom: 58px;
}

.lane-start-section {
  padding-top: 60px;
}

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

.lane-options a {
  display: grid;
  align-content: start;
  min-height: 260px;
  border: 1px solid rgba(80, 111, 89, 0.2);
  border-top: 5px solid var(--signal);
  border-radius: var(--radius);
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.92)),
    var(--sheet);
  color: inherit;
  text-decoration: none;
  background-image: none;
  box-shadow: 0 18px 48px rgba(7, 28, 34, 0.1);
}

.lane-options a:nth-child(1) {
  border-top-color: var(--gold);
}

.lane-options a:nth-child(4) {
  border-top-color: var(--ember);
}

.lane-options span {
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.lane-options h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.02;
}

.lane-options p {
  margin: 0 0 18px;
  color: #4f5d5f;
  font-size: 15px;
  line-height: 1.42;
}

.lane-options b {
  align-self: end;
  border-top: 1px solid rgba(80, 111, 89, 0.18);
  padding-top: 12px;
  color: #23383a;
  font-size: 13px;
  line-height: 1.34;
}

.field-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  border: 1px solid rgba(131, 198, 189, 0.22);
  border-top: 5px solid var(--signal);
  border-radius: var(--radius);
  padding: 12px;
  background:
    linear-gradient(rgba(131, 198, 189, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 198, 189, 0.044) 1px, transparent 1px),
    linear-gradient(135deg, #111b19 0%, #20342f 100%);
  background-size: 44px 44px, 44px 44px, auto;
  box-shadow: 0 22px 62px rgba(7, 28, 34, 0.18);
}

.field-grid article {
  position: relative;
  min-height: 128px;
  border-color: rgba(131, 198, 189, 0.18);
  padding: 16px;
  background: rgba(255, 253, 248, 0.055);
  overflow: hidden;
}

.field-grid span {
  margin-bottom: 18px;
  color: var(--signal);
}

.field-grid p {
  margin: 0;
  color: #d7e6df;
  font-size: 14px;
}

.sample-section {
  padding-top: 18px;
}

.sample-repair-card {
  width: min(1120px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(131, 198, 189, 0.24);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  background: #0b2527;
  box-shadow: 0 24px 70px rgba(7, 28, 34, 0.2);
  overflow: hidden;
}

.sample-card-head {
  display: grid;
  justify-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(131, 198, 189, 0.16);
  padding: 22px clamp(20px, 4vw, 44px);
  text-align: center;
}

.sample-card-head span,
.sample-customer-moment span,
.sample-finding > span,
.sample-first-repair span {
  color: rgba(131, 198, 189, 0.94);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.sample-card-head strong {
  max-width: 760px;
  color: #fffdf8;
  font-size: 22px;
  line-height: 1.22;
}

.sample-card-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 1px;
  background: rgba(131, 198, 189, 0.14);
}

.sample-customer-moment,
.sample-finding {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  background: #0e2a2c;
}

.sample-customer-moment blockquote {
  margin: 0;
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 900;
  line-height: 1.06;
}

.sample-customer-moment p,
.sample-finding p,
.sample-finding li span {
  margin: 0;
  color: rgba(215, 230, 223, 0.82);
  font-size: 15px;
  line-height: 1.45;
}

.sample-finding {
  background: #102d2d;
}

.sample-finding h3 {
  max-width: 680px;
  margin: 0;
  color: #fffdf8;
  font-size: 26px;
  line-height: 1.12;
}

.sample-finding ul {
  display: grid;
  gap: 1px;
  margin: 8px 0 0;
  padding: 0;
  background: rgba(131, 198, 189, 0.14);
  list-style: none;
}

.sample-finding li {
  display: grid;
  grid-template-columns: minmax(140px, 0.34fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 15px 16px;
  background: #0c2426;
}

.sample-finding li b {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.sample-first-repair {
  display: grid;
  grid-template-columns: minmax(130px, 0.16fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-top: 1px solid rgba(131, 198, 189, 0.16);
  padding: 20px 24px;
  background: #0b2527;
}

.sample-first-repair span {
  color: var(--gold);
}

.sample-first-repair strong {
  color: #fffdf8;
  font-size: 17px;
  line-height: 1.34;
}

.sample-first-repair a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(184, 145, 79, 0.74);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.semi-console {
  box-shadow: 0 24px 70px rgba(7, 28, 34, 0.16);
}

.deliverables-section {
  padding-bottom: 58px;
}

.repair-brief {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sheet);
  box-shadow: 0 18px 54px rgba(7, 28, 34, 0.1);
  overflow: hidden;
}

.repair-brief-head,
.intake-guide-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 16px 20px;
  background:
    linear-gradient(rgba(31, 107, 117, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 107, 117, 0.028) 1px, transparent 1px),
    #f7f1e6;
  background-size: 54px 54px;
}

.repair-brief-head span,
.intake-guide-main span,
.brief-rule span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.repair-brief-head strong {
  color: var(--night);
  font-size: 19px;
  line-height: 1.1;
}

.repair-brief-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 1px;
  background: var(--line);
}

.brief-rows {
  display: grid;
  background: #fffdf8;
}

.brief-rows article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 96px;
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
}

.brief-rows article:last-child {
  border-bottom: 0;
}

.brief-rows article:first-child {
  background: #f8f3ea;
  box-shadow: inset 4px 0 0 var(--ember);
}

.brief-rows article > span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(31, 107, 117, 0.26);
  border-radius: 999px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.brief-rows b,
.intake-guide-list b {
  display: block;
  margin-bottom: 5px;
  color: var(--night);
  font-size: 18px;
  line-height: 1.12;
}

.brief-rows p,
.intake-guide-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.brief-rule {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(6, 27, 29, 0.96), rgba(10, 48, 50, 0.95)),
    var(--deep);
  color: #fffdf8;
}

.brief-rule strong {
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.06;
}

.brief-rule ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.brief-rule li {
  border-top: 1px solid rgba(118, 201, 211, 0.18);
  padding-top: 10px;
  color: #d7e6df;
  font-size: 14px;
}

.intake-guide .intake-guide-main {
  display: grid;
  align-content: start;
  justify-content: stretch;
  gap: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
  padding: 24px;
}

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

.deliverable-grid article {
  min-height: 178px;
  padding: 20px;
}

.deliverable-grid b,
.different-grid b {
  display: block;
  margin-bottom: 36px;
  color: var(--night);
  font-size: 22px;
  line-height: 1.04;
}

.deliverable-grid span,
.different-grid span {
  color: var(--muted);
}

.model-section {
  padding-top: 36px;
}

.model-section .section-heading h2 {
  max-width: 980px;
  font-size: clamp(34px, 3.3vw, 50px);
  line-height: 1.06;
}

.business-model-note {
  display: grid;
  grid-template-columns: minmax(180px, 0.24fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(131, 198, 189, 0.22);
  border-radius: var(--radius);
  padding: 16px 18px;
  background:
    linear-gradient(90deg, rgba(198, 164, 86, 0.08), rgba(131, 198, 189, 0.045)),
    rgba(255, 253, 248, 0.045);
}

.business-model-note b {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.business-model-note span {
  color: rgba(215, 230, 223, 0.86);
  font-size: 15px;
  line-height: 1.45;
}

.engagement-path {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sheet);
  box-shadow: 0 18px 54px rgba(7, 28, 34, 0.1);
  overflow: hidden;
}

.engagement-path article,
.engagement-path > a {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 190px;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
  color: inherit;
  text-decoration: none;
  transition:
    transform 240ms var(--motion-ease),
    background-color 240ms var(--motion-ease),
    box-shadow 240ms var(--motion-ease);
}

.engagement-path article:last-child,
.engagement-path > a:last-child {
  border-bottom: 0;
}

.engagement-path article:nth-child(2),
.engagement-path > a:nth-child(2) {
  background: #f8f3ea;
}

.engagement-path span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.engagement-path h3 {
  margin: 0 0 6px;
  color: var(--night);
  font-size: 26px;
  line-height: 1.02;
}

.engagement-path p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.engagement-path b {
  justify-self: end;
  border: 1px solid rgba(184, 145, 79, 0.36);
  border-radius: 999px;
  padding: 8px 10px;
  color: #8a6428;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.business-model-path > a {
  grid-template-columns: 112px minmax(0, 1fr) 184px;
  min-height: 118px;
}

.business-model-path > a:nth-child(1) {
  box-shadow: inset 4px 0 0 var(--gold);
}

.business-model-path > a:nth-child(2) {
  box-shadow: inset 4px 0 0 rgba(131, 198, 189, 0.72);
}

.business-model-path > a:nth-child(3) {
  box-shadow: inset 4px 0 0 rgba(88, 199, 211, 0.62);
}

.business-model-path > a:nth-child(4) {
  box-shadow: inset 4px 0 0 rgba(109, 131, 110, 0.72);
}

.business-model-path h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.business-model-path p {
  max-width: 780px;
  font-size: 15px;
  line-height: 1.48;
}

.business-model-path span {
  color: rgba(131, 198, 189, 0.94);
}

.model-ladder {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.model-ladder article {
  min-height: 300px;
  padding: 22px;
  background: #fbf7ee;
}

.model-ladder article:nth-child(2) {
  border-color: rgba(31, 107, 117, 0.36);
  background: #eef7f3;
}

.model-ladder article:nth-child(3) {
  border-color: rgba(198, 164, 86, 0.44);
  background: #fff8e6;
}

.model-ladder span {
  margin-bottom: 66px;
}

.model-ladder h3 {
  margin-bottom: 12px;
  color: var(--night);
  font-size: 30px;
  line-height: 1.02;
}

.model-ladder p {
  color: var(--muted);
}

.different-panel {
  border: 1px solid rgba(6, 27, 29, 0.14);
  border-radius: var(--radius);
  padding: 32px;
  background:
    linear-gradient(135deg, #fffdf8 0%, #f7f1e6 100%);
  box-shadow: 0 16px 44px rgba(7, 28, 34, 0.08);
}

.different-panel h2 {
  max-width: 980px;
  margin: 0 0 26px;
  color: var(--night);
  font-size: 48px;
  line-height: 1;
}

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

.different-grid article {
  min-height: 182px;
  padding: 20px;
  background: rgba(255, 253, 248, 0.76);
}

.pinnacle-final .case-console,
.pinnacle-final .repair-brief,
.pinnacle-final .engagement-path,
.pinnacle-final .different-panel,
.pinnacle-final .intake-guide {
  border: 1px solid rgba(131, 198, 189, 0.22);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(7, 28, 34, 0.16);
}

.pinnacle-final .case-console {
  background:
    linear-gradient(rgba(131, 198, 189, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 198, 189, 0.044) 1px, transparent 1px),
    #101817;
  background-size: 44px 44px, 44px 44px, auto;
}

.pinnacle-final .case-sidebar,
.pinnacle-final .case-inspector {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.055), rgba(255, 253, 248, 0.025)),
    transparent;
  color: #fffdf8;
}

.pinnacle-final .case-sidebar strong,
.pinnacle-final .case-sidebar h3,
.pinnacle-final .case-inspector h3 {
  color: #fffdf8;
}

.pinnacle-final .case-sidebar p,
.pinnacle-final .lane-summary-list dd,
.pinnacle-final .case-inspector li {
  color: #d7e6df;
}

.pinnacle-final .lane-summary-list div,
.pinnacle-final .case-inspector li {
  border-color: rgba(131, 198, 189, 0.16);
}

.pinnacle-final .inspector-meta {
  border-color: rgba(131, 198, 189, 0.22);
  background: rgba(255, 253, 248, 0.07);
}

.pinnacle-final .inspector-meta p {
  color: #d7e6df;
}

.pinnacle-final .case-ledger {
  background: rgba(255, 253, 248, 0.94);
}

.pinnacle-final .repair-brief {
  background: #101817;
}

.pinnacle-final .repair-brief-head {
  border-bottom-color: rgba(131, 198, 189, 0.18);
  background:
    linear-gradient(rgba(131, 198, 189, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 198, 189, 0.044) 1px, transparent 1px),
    #101817;
  background-size: 44px 44px, 44px 44px, auto;
}

.pinnacle-final .repair-brief-head strong {
  color: #fffdf8;
}

.pinnacle-final .repair-brief-main {
  background: rgba(131, 198, 189, 0.18);
}

.pinnacle-final .brief-rows {
  background: rgba(255, 253, 248, 0.96);
}

.pinnacle-final .brief-rule {
  background:
    linear-gradient(rgba(131, 198, 189, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 198, 189, 0.044) 1px, transparent 1px),
    #101817;
  background-size: 44px 44px, 44px 44px, auto;
}

.pinnacle-final .engagement-path {
  gap: 1px;
  background:
    linear-gradient(rgba(131, 198, 189, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 198, 189, 0.044) 1px, transparent 1px),
    #101817;
  background-size: 44px 44px, 44px 44px, auto;
}

.pinnacle-final .engagement-path article,
.pinnacle-final .engagement-path > a {
  border-bottom: 0;
  background: rgba(255, 253, 248, 0.052);
}

.pinnacle-final .engagement-path article:nth-child(2),
.pinnacle-final .engagement-path > a:nth-child(2) {
  background: rgba(213, 134, 82, 0.1);
}

.pinnacle-final .business-model-path > a {
  background: rgba(255, 253, 248, 0.052);
}

.pinnacle-final .business-model-path > a:nth-child(2) {
  background: rgba(131, 198, 189, 0.07);
}

.pinnacle-final .business-model-path > a:nth-child(3) {
  background: rgba(88, 199, 211, 0.055);
}

.pinnacle-final .business-model-path > a:nth-child(4) {
  background: rgba(109, 131, 110, 0.08);
}

.pinnacle-final .engagement-path h3 {
  color: #fffdf8;
}

.pinnacle-final .engagement-path p {
  color: #d7e6df;
}

.pinnacle-final .engagement-path b {
  border-color: rgba(184, 145, 79, 0.46);
  color: var(--gold);
  background: rgba(198, 164, 86, 0.08);
}

.pinnacle-final .different-panel {
  background:
    linear-gradient(rgba(131, 198, 189, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 198, 189, 0.044) 1px, transparent 1px),
    #101817;
  background-size: 44px 44px, 44px 44px, auto;
}

.pinnacle-final .different-panel h2 {
  color: #fffdf8;
}

.pinnacle-final .different-grid article {
  border-color: rgba(131, 198, 189, 0.18);
  background: rgba(255, 253, 248, 0.055);
}

.pinnacle-final .different-grid b {
  color: #fffdf8;
}

.pinnacle-final .different-grid span {
  color: #d7e6df;
}

.pinnacle-final .intake-guide {
  background:
    linear-gradient(rgba(131, 198, 189, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 198, 189, 0.044) 1px, transparent 1px),
    #101817;
  background-size: 44px 44px, 44px 44px, auto;
}

.pinnacle-final .intake-guide .intake-guide-main {
  border-right-color: rgba(131, 198, 189, 0.18);
  background: rgba(255, 253, 248, 0.055);
}

.pinnacle-final .intake-guide-main strong {
  color: #fffdf8;
}

.pinnacle-final .intake-guide-main p {
  color: #d7e6df;
}

.pinnacle-final .intake-guide-list article {
  border-right-color: rgba(131, 198, 189, 0.18);
  background: rgba(255, 253, 248, 0.035);
}

.pinnacle-final .intake-guide-list b {
  color: #fffdf8;
}

.pinnacle-final .intake-guide-list p {
  color: #d7e6df;
}

.pinnacle-final .cta-band {
  border-top: 1px solid rgba(131, 198, 189, 0.18);
  background:
    linear-gradient(rgba(131, 198, 189, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 198, 189, 0.044) 1px, transparent 1px),
    linear-gradient(135deg, #061b1d 0%, #102f2a 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.pinnacle-final .section:not(.dark) {
  background: transparent;
}

.pinnacle-final .section-heading h2 {
  color: #fffdf8;
}

.pinnacle-final .section-heading p {
  color: rgba(215, 230, 223, 0.82);
}

.pinnacle-final .section-heading .eyebrow {
  color: rgba(131, 198, 189, 0.92);
}

.pinnacle-final .fit-section::before {
  display: none;
}

.pinnacle-final .scan-flow,
.pinnacle-final .lane-options a {
  border-color: rgba(131, 198, 189, 0.22);
  background:
    linear-gradient(rgba(131, 198, 189, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 198, 189, 0.04) 1px, transparent 1px),
    #101817;
  background-size: 44px 44px, 44px 44px, auto;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.pinnacle-final .scan-flow > article,
.pinnacle-final .scan-flow > a,
.pinnacle-final .scan-return article {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.06), rgba(255, 253, 248, 0.028)),
    transparent;
}

.pinnacle-final .scan-flow h3,
.pinnacle-final .scan-return b,
.pinnacle-final .example-strip span,
.pinnacle-final .example-strip strong,
.pinnacle-final .lane-options h3,
.pinnacle-final .lane-options b {
  color: #fffdf8;
}

.pinnacle-final .scan-flow p,
.pinnacle-final .scan-return p,
.pinnacle-final .lane-options p {
  color: rgba(215, 230, 223, 0.78);
}

.pinnacle-final .scan-flow > article > span,
.pinnacle-final .scan-flow > a > span {
  border-color: rgba(131, 198, 189, 0.34);
  color: var(--gold);
  background: rgba(8, 35, 38, 0.86);
}

.pinnacle-final .example-strip {
  background: #0f2729;
  box-shadow: inset 3px 0 0 var(--gold);
}

.pinnacle-final .scan-return {
  background: rgba(131, 198, 189, 0.14);
}

.pinnacle-final .scan-return span,
.pinnacle-final .lane-options span {
  color: rgba(131, 198, 189, 0.92);
}

.pinnacle-final .lane-options a {
  border-top-color: rgba(131, 198, 189, 0.72);
}

.pinnacle-final .lane-options a:nth-child(1) {
  border-top-color: var(--gold);
}

.pinnacle-final .lane-options a:nth-child(4) {
  border-top-color: rgba(131, 198, 189, 0.72);
}

.pinnacle-final .lane-options b {
  border-top-color: rgba(131, 198, 189, 0.18);
}

.pinnacle-final .case-ledger {
  background: rgba(255, 253, 248, 0.05);
}

.pinnacle-final .case-row {
  border-color: rgba(131, 198, 189, 0.16);
  background: rgba(255, 253, 248, 0.055);
}

.pinnacle-final .case-row span {
  color: rgba(215, 230, 223, 0.78);
}

.pinnacle-final .case-head {
  background: transparent;
}

.pinnacle-final .case-head span {
  color: rgba(131, 198, 189, 0.92);
}

.pinnacle-final .case-row.active {
  border-color: rgba(131, 198, 189, 0.32);
  background: rgba(131, 198, 189, 0.1);
}

.pinnacle-final .case-row.active span:first-child {
  color: #fffdf8;
}

.pinnacle-final .brief-rows {
  background: rgba(255, 253, 248, 0.052);
}

.pinnacle-final .brief-rows article {
  border-bottom-color: rgba(131, 198, 189, 0.16);
}

.pinnacle-final .brief-rows article:first-child {
  background: rgba(213, 134, 82, 0.11);
}

.pinnacle-final .brief-rows article > span {
  border-color: rgba(131, 198, 189, 0.32);
  color: var(--gold);
}

.pinnacle-final .brief-rows b,
.pinnacle-final .brief-rows p {
  color: #fffdf8;
}

.pinnacle-final .brief-rows p {
  color: rgba(215, 230, 223, 0.78);
}

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

.scenario-hero {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.84fr);
  gap: 48px;
  align-items: center;
  padding: 70px max(16px, calc((100vw - 1220px) / 2)) 58px;
  background:
    linear-gradient(rgba(131, 198, 189, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 198, 189, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 78% 28%, rgba(213, 134, 82, 0.18), transparent 31%),
    linear-gradient(135deg, #101817 0%, #16312f 72%, #22352e 100%);
  background-size: 42px 42px, 42px 42px, auto, auto;
  color: #fffdf8;
}

.scenario-hero.roof {
  background:
    linear-gradient(rgba(131, 198, 189, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 198, 189, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 28%, rgba(184, 145, 79, 0.18), transparent 31%),
    linear-gradient(135deg, #141817 0%, #26372f 72%, #3a3426 100%);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.scenario-hero.maintenance {
  background:
    linear-gradient(rgba(131, 198, 189, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 198, 189, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 78% 28%, rgba(80, 111, 89, 0.28), transparent 31%),
    linear-gradient(135deg, #101817 0%, #1f302a 72%, #263d34 100%);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.scenario-copy h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 4.8vw, 64px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
}

.scenario-copy .lead {
  max-width: 710px;
  color: #dfe8df;
}

.scenario-file {
  border: 1px solid rgba(213, 134, 82, 0.34);
  border-top: 6px solid var(--gold);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(131, 198, 189, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 198, 189, 0.04) 1px, transparent 1px),
    #121d1b;
  background-size: 28px 28px;
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.scenario-file-head,
.scenario-signal {
  border-bottom: 1px solid rgba(131, 198, 189, 0.18);
  padding: 16px 18px;
}

.scenario-file-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #101817;
}

.scenario-file-head span,
.scenario-signal span,
.scenario-proof b {
  color: var(--signal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.scenario-file-head b {
  color: var(--ember);
  font-size: 13px;
  text-transform: uppercase;
}

.scenario-signal {
  display: grid;
  gap: 10px;
}

.scenario-signal strong {
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.02;
}

.scenario-rows {
  display: grid;
}

.scenario-rows article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 116px;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(131, 198, 189, 0.14);
  padding: 13px 18px;
}

.scenario-rows article:last-child {
  border-bottom: 0;
}

.scenario-rows article:first-child {
  background: rgba(213, 134, 82, 0.12);
  box-shadow: inset 4px 0 0 var(--ember);
}

.scenario-rows b {
  color: var(--gold);
  font-size: 13px;
}

.scenario-rows span {
  color: #dfe8df;
  font-size: 14px;
}

.scenario-rows em {
  justify-self: end;
  border: 1px solid rgba(184, 145, 79, 0.5);
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--gold);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.scenario-section {
  padding-bottom: 44px;
}

.scenario-ledger {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sheet);
  box-shadow: 0 16px 44px rgba(7, 28, 34, 0.08);
  overflow: hidden;
}

.scenario-ledger-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.scenario-ledger-row:last-child {
  border-bottom: 0;
}

.scenario-ledger-row span {
  min-height: 78px;
  border-right: 1px solid var(--line);
  padding: 16px 18px;
  color: var(--muted);
}

.scenario-ledger-row span:first-child {
  color: var(--night);
  font-weight: 900;
}

.scenario-ledger-row span:last-child {
  border-right: 0;
}

.scenario-ledger-row.head {
  background: #f7f1e6;
}

.scenario-ledger-row.head span {
  min-height: 44px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.scenario-repair {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.48fr);
  gap: 18px;
  align-items: stretch;
  padding-top: 28px;
}

.scenario-repair-copy,
.scenario-proof {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sheet);
  box-shadow: 0 16px 44px rgba(7, 28, 34, 0.08);
}

.scenario-repair-copy {
  padding: 28px;
}

.scenario-repair-copy h2 {
  margin: 0 0 16px;
  color: var(--night);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1;
}

.scenario-repair-copy p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.scenario-proof {
  display: grid;
  align-content: start;
}

.scenario-proof b,
.scenario-proof span {
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  padding: 15px 18px;
}

.scenario-proof span {
  color: var(--muted);
}

.scenario-proof span:last-child {
  border-bottom: 0;
}

.pricing-head,
.contact-head,
.sample-head {
  background:
    linear-gradient(rgba(131, 198, 189, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 198, 189, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #101817 0%, #1b332f 100%);
  background-size: 42px 42px, 42px 42px, auto;
  color: #fffdf8;
}

.pricing-head h1,
.contact-head h1,
.sample-head h1 {
  max-width: 920px;
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
}

.pricing-head p,
.contact-head p,
.sample-head p {
  max-width: 780px;
  color: #dfe8df;
}

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

.pricing-fit-grid article {
  min-height: 366px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--sheet);
  box-shadow: 0 16px 44px rgba(7, 28, 34, 0.08);
}

.pricing-fit-grid article.feature {
  border-color: rgba(213, 134, 82, 0.34);
  background: #fff8e9;
}

.pricing-fit-grid span {
  display: block;
  margin-bottom: 58px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-fit-grid h3 {
  margin-bottom: 12px;
  color: var(--night);
  font-size: 30px;
  line-height: 1.02;
}

.pricing-fit-grid p {
  color: var(--muted);
}

.pricing-fit-grid b {
  display: block;
  margin-top: 20px;
  color: var(--night);
  font-size: 13px;
  text-transform: uppercase;
}

.pricing-note {
  border: 1px solid rgba(213, 134, 82, 0.34);
  border-radius: var(--radius);
  padding: 30px;
  background:
    linear-gradient(135deg, #fffdf8 0%, #f7f1e6 100%);
  box-shadow: 0 16px 44px rgba(7, 28, 34, 0.08);
}

.pricing-note h2 {
  max-width: 920px;
  color: var(--night);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1;
}

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

.contact-grid-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.42fr);
  gap: 18px;
  align-items: stretch;
}

.contact-panel,
.contact-checklist {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sheet);
  box-shadow: 0 16px 44px rgba(7, 28, 34, 0.08);
}

.contact-panel {
  padding: 30px;
}

.contact-panel h2 {
  margin: 0 0 16px;
  color: var(--night);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 1;
}

.contact-panel p {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
}

.contact-email {
  display: inline-flex;
  margin: 4px 0 20px;
  color: var(--teal);
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
}

.contact-checklist {
  display: grid;
  align-content: start;
}

.contact-checklist b,
.contact-checklist span {
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  padding: 15px 18px;
}

.contact-checklist b {
  color: var(--teal);
  font-size: 11px;
  text-transform: uppercase;
}

.contact-checklist span {
  color: var(--muted);
}

.contact-checklist span:last-child {
  border-bottom: 0;
}

.site-footer {
  background: var(--deep);
  color: var(--soft);
}

.footer-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.footer-shell a {
  color: #fffdf8;
}

.section a:not(.button),
.site-footer a,
.contact-email {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
}

.lane-options a {
  background-image: none;
}

.contact-email {
  gap: 10px;
}

.contact-email::after {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

/* Motion layer: restrained operating-system polish, not decorative theater. */
@media (prefers-reduced-motion: no-preference) {
  :root {
    --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  }

  .button,
  button,
  .nav-cta,
  .mobile-nav-cta,
  .mobile-link-menu summary,
  .mobile-link-panel a {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transition:
      transform 220ms var(--motion-ease),
      border-color 220ms var(--motion-ease),
      background-color 220ms var(--motion-ease),
      color 220ms var(--motion-ease),
      box-shadow 220ms var(--motion-ease);
  }

  .button::after,
  button::after,
  .nav-cta::after,
  .mobile-nav-cta::after {
    position: absolute;
    inset: -40% -80%;
    z-index: 0;
    pointer-events: none;
    content: "";
    background: linear-gradient(115deg, transparent 34%, rgba(255, 253, 248, 0.3) 48%, transparent 62%);
    transform: translateX(-60%) skewX(-18deg);
    transition: transform 480ms var(--motion-ease);
  }

  .button:hover,
  button:hover,
  .nav-cta:hover,
  .mobile-nav-cta:hover,
  .mobile-link-menu summary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(7, 28, 34, 0.22);
  }

  .site-header .nav-cta:hover,
  .site-header .nav-cta:focus-visible,
  .site-header .mobile-nav-cta:hover,
  .site-header .mobile-nav-cta:focus-visible,
  .mobile-link-menu summary:hover,
  .mobile-link-menu summary:focus-visible {
    border-color: rgba(131, 198, 189, 0.58);
    background: rgba(198, 164, 86, 0.12);
    color: #fffdf8;
    box-shadow:
      inset 0 0 0 1px rgba(198, 164, 86, 0.18),
      0 14px 32px rgba(0, 0, 0, 0.18);
  }

  .site-header.light .nav-cta:hover,
  .site-header.light .nav-cta:focus-visible,
  .site-header.light .mobile-nav-cta:hover,
  .site-header.light .mobile-nav-cta:focus-visible,
  .site-header.light .mobile-link-menu summary:hover,
  .site-header.light .mobile-link-menu summary:focus-visible {
    border-color: rgba(80, 111, 89, 0.4);
    background: rgba(198, 164, 86, 0.12);
    color: var(--night);
  }

  .mobile-link-panel a:hover,
  .mobile-link-panel a:focus-visible {
    color: #fffdf8;
    background: rgba(131, 198, 189, 0.1);
    transform: translateX(2px);
  }

  .mobile-link-panel .mobile-panel-cta:hover,
  .mobile-link-panel .mobile-panel-cta:focus-visible {
    color: #061b1d;
    background: #d3ab61;
  }

  .button:hover::after,
  button:hover::after,
  .nav-cta:hover::after,
  .mobile-nav-cta:hover::after {
    transform: translateX(60%) skewX(-18deg);
  }

  .handoff-step::after {
    display: none;
  }

  .handoff-step:hover,
  .handoff-step:focus-visible {
    transform: translateY(-2px);
    background: rgba(18, 58, 57, 0.88);
    box-shadow: inset 0 -3px 0 rgba(131, 198, 189, 0.72);
  }

  .handoff-step.is-stuck:hover,
  .handoff-step.is-stuck:focus-visible {
    background:
      linear-gradient(180deg, rgba(213, 134, 82, 0.2), rgba(8, 37, 39, 0.84));
    box-shadow: inset 0 -3px 0 var(--ember);
  }

  .hero-answer-card:hover,
  .hero-answer-card:focus-within {
    transform: translateY(-3px);
    border-color: rgba(198, 164, 86, 0.68);
    box-shadow:
      0 30px 78px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(131, 198, 189, 0.1);
  }

  .hero-answer-card::after {
    animation: diagnostic-sweep 8s var(--motion-ease) 1.2s infinite;
  }

  .hero-answer-card.is-updating::after {
    animation: card-diagnostic-sweep 700ms var(--motion-ease) both;
  }

  .hero-answer-card.is-updating .customer-message {
    animation: card-panel-settle 360ms var(--motion-ease) both;
  }

  .hero-answer-card.is-updating .answer-rows article,
  .hero-answer-card.is-updating .repair-plan {
    animation: card-row-settle 420ms var(--motion-ease) both;
  }

  .hero-answer-card.is-updating .answer-rows article:nth-child(2) {
    animation-delay: 55ms;
  }

  .hero-answer-card.is-updating .answer-rows article:nth-child(3) {
    animation-delay: 110ms;
  }

  .hero-answer-card.is-updating .repair-plan {
    animation-delay: 155ms;
  }

  .hero-answer-card .answer-rows article:first-child .answer-marker {
    animation: status-pulse 3.2s ease-out infinite;
  }

  .button.secondary:hover {
    border-color: var(--signal);
    background: rgba(255, 253, 248, 0.08);
  }

  .button.dark-secondary:hover {
    border-color: var(--gold);
    background: rgba(198, 164, 86, 0.1);
  }

  .method-step-link:hover,
  .method-step-link:focus-visible {
    color: #fffdf8;
    border-bottom-color: var(--signal);
  }

  .site-nav a:not(.nav-cta) {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    border-radius: 999px;
    isolation: isolate;
    transition:
      color 180ms var(--motion-ease),
      text-shadow 180ms var(--motion-ease),
      transform 180ms var(--motion-ease);
  }

  .site-nav a:not(.nav-cta)::before {
    position: absolute;
    inset: 5px -10px;
    z-index: -1;
    border: 1px solid rgba(131, 198, 189, 0.13);
    border-radius: inherit;
    content: "";
    background: rgba(131, 198, 189, 0.06);
    opacity: 0;
    transform: scale(0.96);
    transition:
      opacity 180ms var(--motion-ease),
      transform 220ms var(--motion-ease),
      border-color 220ms var(--motion-ease),
      background-color 220ms var(--motion-ease);
  }

  .site-nav a:not(.nav-cta)::after {
    position: absolute;
    right: -5px;
    bottom: 4px;
    left: -5px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--signal) 18%, var(--gold) 82%, transparent);
    opacity: 0;
    transform: scaleX(0.38);
    transform-origin: left;
    transition:
      opacity 180ms var(--motion-ease),
      transform 240ms var(--motion-ease);
  }

  .site-nav a:not(.nav-cta):hover,
  .site-nav a:not(.nav-cta):focus-visible,
  .site-nav a.is-active:not(.nav-cta) {
    color: #fffdf8;
    text-shadow: 0 0 16px rgba(131, 198, 189, 0.2);
    transform: translateY(-1px);
  }

  .site-nav a:not(.nav-cta):hover::before,
  .site-nav a:not(.nav-cta):focus-visible::before,
  .site-nav a.is-active:not(.nav-cta)::before {
    border-color: rgba(131, 198, 189, 0.24);
    background: rgba(131, 198, 189, 0.08);
    opacity: 1;
    transform: scale(1);
  }

  .site-header.light .site-nav a:not(.nav-cta):hover,
  .site-header.light .site-nav a:not(.nav-cta):focus-visible,
  .site-header.light .site-nav a.is-active:not(.nav-cta) {
    color: var(--night);
    text-shadow: none;
  }

  .site-header.light .site-nav a:not(.nav-cta)::before {
    border-color: rgba(80, 111, 89, 0.13);
    background: rgba(80, 111, 89, 0.05);
  }

  .site-nav a:not(.nav-cta):hover::after,
  .site-nav a:not(.nav-cta):focus-visible::after,
  .site-nav a.is-active:not(.nav-cta)::after {
    opacity: 0.92;
    transform: scaleX(1);
  }

  .section a:not(.button),
  .site-footer a,
  .contact-email {
    transition:
      color 180ms var(--motion-ease),
      background-size 220ms var(--motion-ease),
      transform 220ms var(--motion-ease);
  }

  .section a:not(.button):hover,
  .section a:not(.button):focus-visible,
  .site-footer a:hover,
  .site-footer a:focus-visible,
  .contact-email:hover,
  .contact-email:focus-visible {
    background-size: 100% 1px;
  }

  .contact-email:hover,
  .contact-email:focus-visible {
    color: var(--teal);
    transform: translateX(3px);
  }

  .contact-email::after {
    transition: transform 220ms var(--motion-ease);
  }

  .contact-email:hover::after,
  .contact-email:focus-visible::after {
    transform: translateX(3px) rotate(45deg);
  }

  .owner-lines article,
  .method-step-card,
  .bridge-steps > a,
  .scan-flow > a,
  .field-grid article,
  .deliverable-grid article,
  .model-ladder article,
  .pricing-fit-grid article,
  .contact-panel,
  .contact-checklist,
  .pricing-note,
  .scenario-repair-copy,
  .scenario-proof,
  .showup-panel,
  .evidence-matrix,
  .repair-diff,
  .intake-sample,
  .engagement-path > a,
  .proof-copy,
  .repair-box,
  .starter-brief,
  .lane-options a,
  .scan-step,
  .deliverable,
  .lane-card,
  .field-note,
  .theme-card,
  .palette-card,
  .offer-card {
    transition:
      transform 260ms var(--motion-ease),
      border-color 260ms var(--motion-ease),
      background-color 260ms var(--motion-ease),
      box-shadow 260ms var(--motion-ease);
  }

  .ops-queue article,
  .diagnostic-trail article,
  .scenario-rows article,
  .case-row,
  .matrix-row,
  .intake-sample-row,
    .scenario-ledger-row,
    .repo-issue,
    .case-sidebar span,
    .proof-bar div,
    .decision-row {
    transition:
      transform 200ms var(--motion-ease),
      border-color 200ms var(--motion-ease),
      background-color 200ms var(--motion-ease),
      box-shadow 200ms var(--motion-ease);
  }

  .scenario-file,
  .promise-recorder,
  .repo-preview,
  .case-inspector {
    position: relative;
    overflow: hidden;
  }

  .scenario-file::after,
  .promise-recorder::after,
  .repo-preview::after,
  .case-inspector::after {
    position: absolute;
    inset: -10%;
    display: block;
    pointer-events: none;
    content: "";
    background: linear-gradient(110deg, transparent 34%, rgba(131, 198, 189, 0.13) 48%, rgba(198, 164, 86, 0.08) 54%, transparent 66%);
    mix-blend-mode: screen;
    opacity: 0;
    transform: translateX(-120%);
    animation: diagnostic-sweep 7.5s var(--motion-ease) infinite;
  }

  .ops-brief-top b,
  .scenario-file-head b {
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }

  .ops-brief-top b::before,
  .scenario-file-head b::before {
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    content: "";
    background: var(--ember);
    box-shadow: 0 0 0 0 rgba(213, 134, 82, 0.36);
    animation: status-pulse 2.8s ease-out infinite;
  }

  .status {
    gap: 6px;
  }

  .status::before {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    content: "";
    background: currentColor;
    opacity: 0.72;
  }

  .trace-rail {
    background-size: 180% 100%;
    animation: trace-flow 5.6s linear infinite;
  }

  .trace-event {
    transition:
      transform 260ms var(--motion-ease),
      border-color 260ms var(--motion-ease),
      background-color 260ms var(--motion-ease),
      box-shadow 260ms var(--motion-ease);
  }

  .is-broken::after {
    animation: status-pulse 2.8s ease-out infinite;
  }

  .motion-ready .reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 620ms var(--motion-ease),
      transform 620ms var(--motion-ease);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .motion-ready .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .motion-ready .section-heading.reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .owner-lines article:hover,
    .field-grid article:hover,
    .deliverable-grid article:hover,
    .model-ladder article:hover,
    .bridge-steps > a:hover,
    .bridge-steps > a:focus-visible,
    .scan-flow > a:hover,
    .scan-flow > a:focus-visible,
    .engagement-path > a:hover,
    .engagement-path > a:focus-visible,
    .pricing-fit-grid article:hover,
    .contact-panel:hover,
    .contact-checklist:hover,
    .pricing-note:hover,
    .scenario-repair-copy:hover,
    .scenario-proof:hover,
    .showup-panel:hover,
    .evidence-matrix:hover,
    .repair-diff:hover,
    .intake-sample:hover,
    .proof-copy:hover,
    .repair-box:hover,
    .starter-brief:hover,
    .lane-options a:hover,
    .lane-options a:focus-visible,
    .scan-step:hover,
    .deliverable:hover,
    .lane-card:hover,
    .field-note:hover,
    .theme-card:hover,
    .palette-card:hover,
    .offer-card:hover {
      transform: translateY(-4px);
      border-color: rgba(80, 111, 89, 0.34);
      box-shadow: 0 22px 58px rgba(7, 28, 34, 0.14);
    }

    .method-step-card:hover,
    .method-step-card:focus-visible {
      transform: translateY(-4px);
      border-color: rgba(131, 198, 189, 0.42);
      background: rgba(255, 253, 248, 0.08);
      box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
    }

    .ops-queue article:hover,
    .diagnostic-trail article:hover,
    .scenario-rows article:hover {
      background: rgba(131, 198, 189, 0.11);
      transform: translateX(3px);
    }

    .decision-row:not(.decision-head):hover {
      background: #f2f7ef;
      box-shadow: inset 4px 0 0 rgba(80, 111, 89, 0.42);
      transform: translateX(3px);
    }

    .case-row:not(.case-head):hover,
    .matrix-row:not(.matrix-head):hover,
    .intake-sample-row:hover,
    .scenario-ledger-row:not(.head):hover {
      background: #f2f7ef;
      box-shadow: inset 4px 0 0 rgba(80, 111, 89, 0.44);
    }

    .repo-issue:hover,
    .case-sidebar span:hover {
      background: rgba(131, 198, 189, 0.1);
      color: #fffdf8;
    }

    .trace-event:hover {
      transform: translateY(-3px);
      border-color: rgba(198, 164, 86, 0.58);
      background: rgba(255, 253, 248, 0.1);
      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    }

    .owner-lines article:hover,
    .field-grid article:hover {
      border-color: rgba(131, 198, 189, 0.34);
      background: rgba(255, 253, 248, 0.08);
      box-shadow: inset 0 0 0 1px rgba(198, 164, 86, 0.08);
    }
  }
}

@keyframes diagnostic-sweep {
  0%,
  52% {
    opacity: 0;
    transform: translateX(-120%);
  }

  60% {
    opacity: 1;
  }

  82%,
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes trace-flow {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 180% 0;
  }
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(213, 134, 82, 0.36);
  }

  70%,
  100% {
    box-shadow: 0 0 0 8px rgba(213, 134, 82, 0);
  }
}

@keyframes card-diagnostic-sweep {
  0% {
    opacity: 0;
    transform: translateX(-112%);
  }

  34% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translateX(112%);
  }
}

@keyframes card-panel-settle {
  from {
    opacity: 0.72;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes card-row-settle {
  from {
    opacity: 0.66;
    transform: translateX(9px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .hero-bottom,
  .section-heading,
  .proof-feature,
  .workflow-map,
  .fit-diagnostic,
  .scan-flow,
  .example-strip,
  .scan-return,
  .promise-hero-inner,
  .scenario-hero,
  .scenario-repair,
  .pricing-fit-grid,
  .contact-grid-section,
  .ops-queue article,
  .repo-body,
  .repo-kpis,
  .matrix-row,
  .scenario-ledger-row,
  .case-console,
  .case-row,
  .audit-pipeline,
  .intake-sample-row,
  .intake-guide,
  .intake-guide-list,
  .repair-brief-main,
  .engagement-path article,
  .engagement-path > a,
  .proof-bar,
  .showup-panel,
  .showup-chips,
  .ledger-meta,
  .truth-grid,
  .customer-section,
  .identity-section,
  .identity-grid,
  .before-after,
  .access-panel,
  .standard-board,
  .process-lane,
  .owner-lines,
  .method-steps,
  .field-grid,
  .lane-options,
  .model-ladder,
  .different-grid,
  .scan-grid,
  .deliverable-grid,
  .lane-grid,
  .leak-grid,
  .signal-strip,
  .lane-system,
  .offer-grid,
  .theme-grid,
  .palette-grid,
  .split,
  .cta-band .section,
  .intake-layout {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
  }

  .mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-link-menu {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  h1,
  .night-ops h1 {
    font-size: 60px;
  }

  .pinnacle-final h1 {
    font-size: 56px;
  }

  .semi-hero h1 {
    max-width: 720px;
    font-size: 48px;
  }

  .section-heading h2,
  .split-copy h2,
  .intake-intro h1,
  .customer-copy h2,
  .identity-copy h2,
  .access-panel h2,
  .offer-intro h2,
  .cta-band h2 {
    font-size: 46px;
  }

  .section,
  .section.dark > .section-inner {
    padding: 54px 0;
  }

  .night-ops .hero-grid {
    grid-template-columns: 1fr;
  }

  .night-ops .hero-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .night-ops .ops-console {
    display: none;
  }

  .night-hero {
    background:
      linear-gradient(180deg, rgba(6, 20, 23, 0.98), rgba(6, 20, 23, 0.88)),
      url("../images/pinnacle-dashboard.png") center top / cover no-repeat,
      var(--deep);
  }

  .promise-hero {
    background:
      linear-gradient(180deg, #061b1d 0%, #0b3438 100%),
      var(--deep);
  }

  .promise-hero-inner {
    padding-top: 56px;
  }

  .semi-hero-inner {
    gap: 30px;
    padding-top: 44px;
  }

  .workflow-bridge {
    grid-template-columns: 1fr;
    margin-bottom: -66px;
  }

  .bridge-system-map {
    grid-template-columns: 1fr;
  }

  .bridge-rule-card::before,
  .bridge-rule-card::after {
    display: none;
  }

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

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

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

  .scenario-hero {
    padding-top: 56px;
  }

  .ops-brief {
    max-width: 760px;
    justify-self: start;
  }

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

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

  .showup-copy h2 {
    font-size: 30px;
  }

  .signal-strip {
    margin-top: 0;
  }

  .ledger-row,
  .promise-row,
  .repo-fields span,
  .access-list li,
  .console-row,
  .field-list li {
    grid-template-columns: 1fr;
  }

  .matrix-row > span,
  .case-row span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .matrix-row > span:last-child,
  .case-row span:last-child {
    border-bottom: 0;
  }

  .case-sidebar,
  .case-inspector,
  .repo-issue-list {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-console {
    gap: 1px;
  }

  .case-ledger {
    padding: 14px;
  }

  .case-head {
    display: none;
  }

  .case-row span[data-label] {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .case-row span[data-label]::before {
    content: attr(data-label);
    color: var(--teal);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .audit-pipeline span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audit-pipeline span:last-child {
    border-bottom: 0;
  }

  .repo-kpis span {
    border-right: 0;
    border-bottom: 1px solid rgba(118, 201, 211, 0.14);
  }

  .repo-kpis span:last-child {
    border-bottom: 0;
  }

  .intake-sample-row {
    align-items: start;
  }

  .intake-guide-main {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pinnacle-final .intake-guide .intake-guide-main {
    border-right: 0;
    border-bottom: 1px solid rgba(131, 198, 189, 0.18);
  }

  .intake-guide-list article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pinnacle-final .intake-guide-list article {
    border-right: 0;
    border-bottom: 1px solid rgba(131, 198, 189, 0.18);
  }

  .intake-guide-list article:last-child {
    border-bottom: 0;
  }

  .engagement-path article,
  .engagement-path > a {
    align-items: start;
  }

  .engagement-path b {
    justify-self: start;
  }

  .business-model-note {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .business-model-path > a {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .page,
  .promise-hero,
  .hero-copy,
  .plain-offer-strip,
  .hero-solution-strip,
  .hero-readout,
  .hero-actions {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .promise-hero-inner,
  .semi-hero-inner {
    width: calc(100% - 32px);
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .nav-shell {
    width: calc(100% - 24px);
    min-height: 64px;
    gap: 10px;
  }

  .brand img {
    width: 154px;
  }

  .brand .brand-logo {
    width: 146px;
  }

  .mobile-nav-cta {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .mobile-link-menu summary {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .mobile-link-panel {
    top: calc(100% + 8px);
  }

  h1 {
    font-size: 46px;
  }

  .night-ops .hero-shell {
    padding-top: 40px;
    padding-bottom: 24px;
  }

  .night-ops h1,
  .section-heading h2,
  .split-copy h2,
  .intake-intro h1,
  .customer-copy h2,
  .identity-copy h2,
  .access-panel h2,
  .offer-intro h2,
  .cta-band h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .pinnacle-final h1 {
    font-size: 36px;
    line-height: 0.98;
  }

  .semi-hero h1 {
    max-width: 100%;
    font-size: 32px;
    line-height: 1.08;
    overflow-wrap: normal;
  }

  .lead {
    font-size: 17px;
    line-height: 1.42;
  }

  .pinnacle-final .lead {
    font-size: 17px;
    line-height: 1.42;
  }

  .semi-hero .lead {
    max-width: 100%;
    font-size: 16px;
  }

  .semi-hero .eyebrow,
  .semi-hero .eyebrow em,
  .semi-hero .lead,
  .plain-offer-strip b,
  .handoff-step span,
  .bridge-steps p,
  .bridge-step-checks em {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .plain-offer-strip {
    grid-template-columns: 1fr;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin-top: 18px;
    margin-right: auto;
    margin-left: auto;
  }

  .plain-offer-strip div {
    min-width: 0;
    min-height: auto;
    padding: 14px 16px;
  }

  .plain-offer-strip b {
    max-width: 100%;
    font-size: 16px;
  }

  .semi-hero .eyebrow,
  .semi-hero .lead,
  .hero-solution-strip,
  .hero-readout {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin-right: auto;
    margin-left: auto;
  }

  .first-scan-section .section-heading h2 {
    font-size: 30px;
    line-height: 1.1;
  }

  .hero-proofline span,
  .hero-solution-strip .handoff-step {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero-solution-strip {
    grid-template-columns: 1fr;
  }

  .hero-solution-strip .handoff-step {
    min-height: 0;
  }

  .hero-readout {
    display: grid;
    gap: 5px;
  }

  .hero-actions,
  .button-row {
    display: grid;
  }

  .button,
  button {
    width: 100%;
  }

  .console-metrics,
  .console-flow,
  .field-grid,
  .model-ladder {
    grid-template-columns: 1fr;
  }

  .night-ops .hero-bottom {
    display: none;
  }

  .console-metrics div {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid rgba(127, 209, 223, 0.16);
  }

  .console-metrics div:last-child {
    border-bottom: 0;
  }

  .leak-card,
  .offer-card,
  .truth-card,
  .identity-grid article,
  .before-after article,
  .standard-board article,
  .process-lane article,
  .lane-system article {
    min-height: auto;
  }

  .promise-ledger {
    display: none;
  }

  .showup-section {
    padding-top: 38px;
    padding-bottom: 30px;
  }

  .showup-panel {
    padding: 18px;
  }

  .showup-chips span {
    min-height: 52px;
  }

  .promise-hero-inner,
  .proof-bar {
    width: calc(100% - 32px);
  }

  .fit-section {
    width: calc(100% - 32px);
    padding-top: 44px;
  }

  .scan-flow > article,
  .scan-flow > a {
    min-height: auto;
    padding: 18px 16px;
  }

  .scan-flow h3 {
    font-size: 22px;
  }

  .example-strip {
    min-height: auto;
    gap: 7px;
    padding: 16px;
  }

  .scan-return article {
    min-height: auto;
    padding: 16px;
  }

  .lane-options {
    grid-template-columns: 1fr;
  }

  .lane-options a {
    min-height: auto;
  }

  .lane-options h3 {
    font-size: 27px;
  }

  .decision-row {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .decision-head {
    display: none;
  }

  .decision-row span {
    border-left: 0;
    border-top: 1px solid rgba(80, 111, 89, 0.1);
    padding: 10px 14px;
  }

  .decision-row span:first-child {
    border-top: 0;
    padding-top: 14px;
  }

  .decision-row span:last-child {
    padding-bottom: 14px;
  }

  .starter-brief {
    padding: 18px;
  }

  .starter-brief h3 {
    font-size: 28px;
  }

  .promise-hero-inner {
    padding-top: 28px;
    padding-bottom: 18px;
  }

  .owner-lines article,
  .method-steps article,
  .method-step-card,
  .field-grid article,
  .model-ladder article,
  .different-grid article,
  .deliverable-grid article,
  .brief-rows article,
  .intake-guide-list article,
  .engagement-path article,
  .engagement-path > a {
    min-height: auto;
  }

  .repair-brief-head {
    display: grid;
    gap: 6px;
    padding: 14px;
  }

  .brief-rows article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 14px;
  }

  .brief-rule,
  .intake-guide-main,
  .intake-guide-list article {
    padding: 16px;
  }

  .brief-rule strong,
  .intake-guide-main strong {
    font-size: 27px;
  }

  .engagement-path article,
  .engagement-path > a {
    gap: 8px;
    padding: 15px;
  }

  .engagement-path h3 {
    font-size: 23px;
  }

  .business-model-note {
    padding: 15px;
  }

  .business-model-note span {
    font-size: 14px;
  }

  .business-model-path h3 {
    font-size: 25px;
  }

  .business-model-path p {
    font-size: 14px;
  }

  .intake-guide-list b::before {
    margin-bottom: 18px;
  }

  .ops-brief-top,
  .ops-finding,
  .ops-rule,
  .diagnostic-intro,
  .diagnostic-result {
    padding: 14px;
  }

  .ops-finding strong,
  .diagnostic-intro strong,
  .customer-message strong {
    font-size: 23px;
  }

  .diagnostic-result div,
  .repair-plan div {
    grid-template-columns: 1fr;
  }

  .ops-queue article {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 11px 14px;
  }

  .ops-queue article:nth-child(n+3) {
    display: none;
  }

  .ops-queue em {
    grid-column: 2;
    justify-self: start;
  }

  .owner-lines span,
  .method-steps article > span,
  .method-step-card > span:not(.method-step-link),
  .field-grid span,
  .model-ladder span,
  .deliverable-grid b,
  .different-grid b {
    margin-bottom: 12px;
  }

  .owner-lines,
  .field-grid,
  .method-steps {
    gap: 10px;
  }

  .owner-lines article,
  .field-grid article,
  .method-steps article,
  .method-step-card {
    padding: 13px;
  }

  .owner-lines strong {
    font-size: 18px;
    line-height: 1.12;
  }

  .field-grid p,
  .method-steps p {
    font-size: 13px;
  }

  .method-steps h3 {
    font-size: 24px;
  }

  .case-ledger {
    gap: 8px;
    padding: 10px;
  }

  .case-row span {
    padding: 9px 10px;
    font-size: 13px;
  }

  .case-row span[data-label] {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 10px;
  }

  .different-panel {
    padding: 22px;
  }

  .different-panel h2 {
    font-size: 34px;
  }

  .proof-bar {
    display: none;
  }

  .workflow-bridge {
    display: grid;
    width: calc(100% - 32px);
    margin-top: 18px;
    margin-bottom: -46px;
  }

  .workflow-bridge .bridge-head,
  .bridge-state,
  .bridge-rule-card {
    padding: 18px;
  }

  .bridge-head strong {
    max-width: 100%;
    font-size: 24px;
  }

  .bridge-head p,
  .bridge-state p {
    font-size: 14px;
  }

  .bridge-rule-card strong {
    font-size: 22px;
  }

  .bridge-rule-fields {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .bridge-template span {
    padding: 14px 18px;
  }

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

  .bridge-receipt > div,
  .bridge-receipt li {
    padding: 16px 18px;
  }

  .bridge-receipt ul {
    grid-template-columns: 1fr;
  }

  .fit-section {
    padding-top: 86px;
  }

  .scan-table {
    display: block;
  }

  .scan-table thead {
    display: none;
  }

  .scan-table tbody,
  .scan-table tr,
  .scan-table td {
    display: block;
    width: 100%;
  }

  .scan-table tr {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  .scan-table td {
    border-bottom: 0;
    padding: 6px 14px;
  }

  .scan-table td[data-label]::before {
    display: block;
    margin-bottom: 3px;
    color: var(--teal);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    content: attr(data-label);
  }

  .scenario-copy h1 {
    font-size: 40px;
    line-height: 0.98;
  }

  .scenario-copy .lead {
    font-size: 17px;
    line-height: 1.42;
  }

  .scenario-file-head,
  .scenario-signal {
    padding: 14px;
  }

  .scenario-signal strong {
    font-size: 23px;
  }

  .scenario-rows article {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 11px 14px;
  }

  .scenario-rows em {
    grid-column: 2;
    justify-self: start;
  }

  .scenario-ledger-row span {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .scenario-ledger-row span:last-child {
    border-bottom: 0;
  }

  .scenario-repair-copy {
    padding: 22px;
  }

  .scenario-repair-copy h2 {
    font-size: 36px;
  }

  .pricing-fit-grid article {
    min-height: auto;
  }

  .pricing-fit-grid span {
    margin-bottom: 20px;
  }

  .pricing-note,
  .contact-panel {
    padding: 22px;
  }

  .pricing-note h2,
  .contact-panel h2 {
    font-size: 34px;
  }

  .contact-email {
    font-size: 14px;
    line-height: 1.2;
    overflow-wrap: anywhere;
    word-break: normal;
  }

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

@media (max-width: 380px) {
  .brand .brand-logo {
    width: 138px;
  }

  .mobile-nav-cta {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 11px;
  }

  .mobile-link-menu summary {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 11px;
  }
}

@media (max-width: 980px) {
  .workflow-bridge {
    width: calc(100% - 32px);
    margin-bottom: -52px;
  }

  .workflow-bridge .bridge-head {
    padding: 26px 22px 22px;
  }

  .bridge-head strong {
    font-size: clamp(30px, 6vw, 42px);
  }

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

  .bridge-steps > a {
    min-height: auto;
    padding: 20px;
  }

  .bridge-outcome {
    flex-direction: column;
    gap: 6px;
    padding: 18px 20px;
  }
}

@media (max-width: 640px) {
  .workflow-bridge {
    margin-top: 22px;
    margin-bottom: -36px;
  }

  .workflow-bridge .bridge-head {
    padding: 24px 18px 20px;
  }

  .bridge-head strong {
    font-size: 28px;
    line-height: 1.06;
  }

  .bridge-head p,
  .bridge-steps p {
    font-size: 14px;
  }

  .bridge-steps > a {
    padding: 18px;
  }

  .bridge-steps b {
    font-size: 18px;
  }

  .bridge-outcome p {
    font-size: 15px;
  }
}

@media (max-width: 980px) {
  .sample-card-main,
  .sample-first-repair {
    grid-template-columns: 1fr;
  }

  .sample-first-repair {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .sample-card-head {
    padding: 22px 18px;
  }

  .sample-card-head strong {
    font-size: 20px;
  }

  .sample-customer-moment,
  .sample-finding {
    padding: 20px 18px;
  }

  .sample-customer-moment blockquote {
    font-size: 28px;
  }

  .sample-finding h3 {
    font-size: 22px;
  }

  .sample-finding li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .sample-first-repair {
    gap: 10px;
    padding: 18px;
  }

  .sample-first-repair a {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .semi-hero,
  .semi-hero * {
    box-sizing: border-box;
  }

  .semi-hero .promise-hero-inner,
  .semi-hero .semi-hero-inner,
  .semi-hero .hero-copy,
  .semi-hero .plain-offer-strip,
  .semi-hero .hero-solution-strip,
  .semi-hero .hero-readout,
  .semi-hero .hero-actions,
  .semi-hero .trust-line,
  .semi-hero.workflow-bridge,
  .workflow-bridge {
    width: min(100%, calc(100vw - 32px)) !important;
    max-width: calc(100vw - 32px) !important;
    min-width: 0 !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .semi-hero .plain-offer-strip,
  .semi-hero .hero-solution-strip,
  .bridge-steps {
    grid-template-columns: 1fr !important;
  }

  .semi-hero .plain-offer-strip > div,
  .semi-hero .hero-solution-strip .handoff-step,
  .semi-hero .hero-readout > div,
  .bridge-steps > a,
  .bridge-step-checks,
  .bridge-step-checks li {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .semi-hero .eyebrow,
  .semi-hero .eyebrow *,
  .semi-hero .lead,
  .semi-hero .plain-offer-strip b,
  .semi-hero .handoff-step b,
  .semi-hero .handoff-step span,
  .semi-hero .hero-readout strong,
  .semi-hero .hero-readout em,
  .workflow-bridge .bridge-head strong,
  .workflow-bridge .bridge-head p,
  .bridge-steps b,
  .bridge-steps p,
  .bridge-step-checks strong,
  .bridge-step-checks em {
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  .bridge-step-checks li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
