:root {
  --ink: #1f2933;
  --muted: #667085;
  --line: #d9e2ec;
  --paper: #f7f9fb;
  --panel: #ffffff;
  --teal: #0f766e;
  --teal-soft: #d7f2ed;
  --amber: #a15c07;
  --amber-soft: #fff1d6;
  --red: #b42318;
  --red-soft: #ffe4df;
  --violet: #6254b6;
  --violet-soft: #ece9ff;
  --shadow: 0 14px 32px rgba(23, 34, 48, 0.10);
}

* {
  box-sizing: border-box;
}

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

button,
input,
select {
  font: inherit;
}

.shell {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 18px;
}

.site-nav a {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  color: #344054;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:first-child {
  border-color: rgba(15, 118, 110, 0.28);
  color: var(--teal);
}

.compact-nav {
  position: relative;
  z-index: 5;
  justify-content: center;
  padding: 10px;
  border: 1px solid rgba(217, 226, 236, 0.78);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 26px rgba(23, 34, 48, 0.06);
}

.compact-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.compact-nav a:first-child {
  background: var(--teal);
  border-color: var(--teal);
  color: #ffffff;
}

.topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(560px, 640px);
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 24px;
}

.homepage-hero {
  align-items: stretch;
  min-height: 420px;
}

.hero-visual {
  display: grid;
  justify-items: end;
  gap: 8px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 10px;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.mission-callout {
  max-width: 760px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(15, 118, 110, 0.20);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.mission-callout span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mission-callout p {
  margin: 0;
  color: #344054;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.hero-actions .primary-link,
.hero-actions .ghost-button {
  margin-top: 0;
}

.focused-actions {
  max-width: 760px;
}

.enterprise-flow {
  width: min(100%, 620px);
  align-content: stretch;
  justify-items: stretch;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(237, 246, 248, 0.92)),
    #ffffff;
  box-shadow: var(--shadow);
}

.flow-column {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px 14px;
  align-items: start;
  min-height: 112px;
  border: 1px solid rgba(217, 226, 236, 0.92);
  border-radius: 8px;
  background: #fbfdff;
  padding: 14px;
}

.flow-column span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.flow-column strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.1;
}

.flow-column p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

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

.posture-strip .legend {
  display: grid;
  place-items: center;
  min-height: 42px;
  text-align: center;
}

.launchpad {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 18px;
  padding: 20px;
  border-color: rgba(15, 118, 110, 0.22);
}

.launchpad-copy h2 {
  max-width: 420px;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.15;
}

.launchpad-copy p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.52;
}

.launchpad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}

.launchpad-grid article {
  min-height: 188px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid rgba(217, 226, 236, 0.92);
  border-radius: 8px;
  background: #fbfdff;
  padding: 14px;
}

.launchpad-grid span {
  width: fit-content;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.launchpad-grid strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.22;
}

.launchpad-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.launchpad-grid a {
  align-self: end;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.launchpad-grid a:hover {
  text-decoration: underline;
}

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

.primary-lanes article {
  min-height: 168px;
}

.proof-sequence {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1.42fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
  padding: 20px;
  border-color: rgba(15, 118, 110, 0.18);
}

.sequence-copy h2 {
  max-width: 500px;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.15;
}

.sequence-copy p {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.52;
}

.sequence-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.sequence-steps article {
  min-height: 214px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  padding: 14px;
}

.sequence-steps span {
  width: fit-content;
  border-radius: 999px;
  background: #eef2f6;
  color: #475467;
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 900;
}

.sequence-steps article:nth-child(2) span,
.sequence-steps article:nth-child(3) span,
.sequence-steps article:nth-child(4) span {
  background: var(--teal-soft);
  color: var(--teal);
}

.sequence-steps strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.22;
}

.sequence-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.sequence-steps a {
  align-self: end;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.sequence-steps a:hover {
  text-decoration: underline;
}

.compact-proof-links {
  grid-column: 1 / -1;
  margin-top: 2px;
}

.impact-framework {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
  padding: 20px;
}

.impact-intro h2 {
  max-width: 560px;
  margin-bottom: 9px;
  font-size: 24px;
  line-height: 1.15;
}

.impact-intro p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.54;
}

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

.impact-grid article {
  min-height: 178px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  padding: 14px;
}

.impact-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.impact-grid strong,
.impact-grid p {
  display: block;
}

.impact-grid strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.impact-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.impact-grid article:nth-child(3) {
  border-color: rgba(15, 118, 110, 0.34);
  background: rgba(215, 242, 237, 0.42);
}

.impact-grid article:nth-child(4) span {
  background: #eef2f6;
  color: #475467;
}

.fit-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
  padding: 20px;
}

.fit-panel h2 {
  max-width: 620px;
  font-size: 22px;
  line-height: 1.18;
}

.fit-panel p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.52;
}

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

.fit-grid article {
  min-height: 148px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  padding: 14px;
}

.fit-grid strong,
.fit-grid span {
  display: block;
}

.fit-grid strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.fit-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.fit-grid article:last-child {
  border-color: rgba(15, 118, 110, 0.34);
  background: rgba(215, 242, 237, 0.44);
}

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

.proof-strip .proof-stat {
  border-top: 0;
  border-left: 1px solid var(--line);
  padding: 18px;
}

.proof-strip .proof-stat:first-child {
  border-left: 0;
}

.evaluation-path {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
  padding: 20px;
}

.evaluation-copy h2 {
  max-width: 520px;
  font-size: 24px;
  line-height: 1.15;
}

.evaluation-copy p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.54;
}

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

.evaluation-steps article {
  min-height: 184px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  padding: 14px;
}

.evaluation-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #eef2f6;
  color: #475467;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.evaluation-steps article:nth-child(2) span,
.evaluation-steps article:nth-child(3) span {
  background: var(--teal-soft);
  color: var(--teal);
}

.evaluation-steps strong,
.evaluation-steps p {
  display: block;
}

.evaluation-steps strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.evaluation-steps p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.evaluation-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.evaluation-actions .primary-link,
.evaluation-actions .ghost-button {
  margin-top: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 18px;
  padding: 20px;
}

.contact-copy h2 {
  max-width: 580px;
  font-size: 24px;
  line-height: 1.15;
}

.contact-copy p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.54;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.contact-links .primary-link,
.contact-links .ghost-button {
  margin-top: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: #fbfdff;
  padding: 16px;
}

.contact-form .field {
  margin-bottom: 0;
}

.hidden-field {
  display: none;
}

.signal-convergence {
  width: min(100%, 640px);
}

.convergence-stage {
  width: min(100%, 640px);
  display: grid;
  grid-template-columns: minmax(210px, 1.28fr) 28px minmax(150px, 0.78fr) 28px minmax(126px, 0.62fr);
  align-items: stretch;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(rgba(15, 118, 110, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 118, 110, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 247, 0.86));
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: var(--shadow);
}

.convergence-column,
.checkpoint-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.column-label {
  color: #475467;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.source-grid,
.posture-grid {
  display: grid;
  gap: 8px;
}

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

.source-node,
.posture-grid .legend {
  min-height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(63, 83, 107, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.84);
  color: #203047;
  box-shadow: 0 8px 18px rgba(23, 34, 48, 0.06);
}

.source-node span {
  padding: 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.convergence-arrow {
  display: grid;
  place-items: center;
  color: var(--teal);
  font-size: 22px;
  font-weight: 900;
}

.checkpoint-core {
  min-height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  border: 1px solid rgba(15, 118, 110, 0.40);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(214, 242, 237, 0.92)),
    var(--panel);
  box-shadow:
    0 20px 48px rgba(15, 118, 110, 0.20),
    inset 0 0 0 8px rgba(255, 255, 255, 0.58);
  text-align: center;
}

.checkpoint-core::after {
  content: none;
}

.checkpoint-kicker,
.checkpoint-core small {
  width: min(132px, 100%);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.checkpoint-core strong {
  color: #0f2d3f;
  font-size: 35px;
  line-height: 1;
  letter-spacing: 0;
}

.checkpoint-core small {
  color: #34566b;
  text-transform: none;
}

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

.posture-grid .legend {
  justify-content: center;
  width: 100%;
}

.hero-artifacts {
  justify-content: flex-end;
  max-width: 640px;
  margin-top: 6px;
}

h2 {
  margin-bottom: 4px;
  font-size: 19px;
}

h3 {
  margin-bottom: 10px;
  font-size: 14px;
}

.status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.artifact-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  max-width: 420px;
}

.artifact-strip span,
.artifact-strip a {
  border: 1px solid rgba(15, 118, 110, 0.20);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: #344054;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.artifact-strip a:hover {
  border-color: rgba(15, 118, 110, 0.45);
  color: var(--teal);
}

.mcp-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.mcp-flow span {
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 6px;
  background: #fbfdff;
  color: #344054;
  min-height: 54px;
  padding: 10px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.tight-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.legend,
.decision-badge {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
}

.release {
  background: var(--teal-soft);
  color: var(--teal);
}

.constrain {
  background: var(--amber-soft);
  color: var(--amber);
}

.block {
  background: var(--red-soft);
  color: var(--red);
}

.suspend {
  background: var(--violet-soft);
  color: var(--violet);
}

.neutral {
  background: #eef2f6;
  color: #475467;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(460px, 1.12fr);
  gap: 18px;
  align-items: start;
}

.governor-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(460px, 1.05fr);
  gap: 18px;
  align-items: start;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.request-panel,
.decision-panel,
.audit-panel {
  padding: 20px;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
}

.field span,
.signal-row span {
  color: #344054;
  font-size: 13px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 40px;
  border: 1px solid #cbd5df;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  padding: 8px 10px;
}

input:focus,
select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 118, 110, 0.14);
}

.signals {
  display: grid;
  gap: 12px;
  margin: 16px 0 18px;
}

.signal-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(140px, 1.2fr) 58px;
  gap: 10px;
  align-items: center;
}

.signal-row output {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

input[type="range"] {
  padding: 0;
  accent-color: var(--teal);
}

.primary-button,
.ghost-button,
.danger-button {
  min-height: 40px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
}

.primary-button {
  width: 100%;
  background: var(--teal);
  color: white;
}

.ghost-button {
  background: #ffffff;
  border-color: #cbd5df;
  color: #344054;
  padding: 0 12px;
}

.danger-button {
  background: #fff;
  border-color: rgba(180, 35, 24, 0.35);
  color: var(--red);
  padding: 0 12px;
}

.ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.decision-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 14px;
  font-size: 15px;
}

.summary {
  min-height: 52px;
  color: #344054;
  line-height: 1.5;
}

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

.metric {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.metric span {
  display: block;
  min-height: 34px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.metric strong {
  display: block;
  margin-bottom: 10px;
  font-size: 26px;
}

.meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4e7ec;
}

.meter i {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.output-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.output-lists ul {
  min-height: 140px;
  margin: 0;
  padding: 12px 12px 12px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.output-lists li,
td,
th {
  font-size: 13px;
  line-height: 1.45;
}

.audit-panel {
  margin-top: 18px;
}

.pilot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 0;
  margin-bottom: 18px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-grid > .panel {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.proof-panel {
  padding: 20px;
}

.proof-grid > .proof-panel:first-child {
  padding-right: 24px;
}

.proof-grid > .proof-panel:last-child {
  border-left: 1px solid var(--line);
  background: #fbfdff;
  padding-left: 18px;
}

.proof-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.proof-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.proof-links .ghost-button,
.proof-links .primary-link {
  margin-top: 0;
}

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

.metric-grid div {
  border: 1px solid rgba(217, 226, 236, 0.88);
  border-radius: 7px;
  background: #ffffff;
  padding: 12px;
}

.metric-grid strong,
.metric-grid span {
  display: block;
}

.metric-grid strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.metric-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.proof-stat {
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(217, 226, 236, 0.88);
  padding: 12px 0;
}

.proof-stat:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.proof-stat strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.proof-stat span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.review-lanes,
.module-board {
  margin-bottom: 18px;
  padding: 20px;
}

.lane-grid,
.module-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

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

.lane-card,
.module-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  padding: 16px;
}

.lane-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 220px;
}

.lane-card > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
}

.lane-card h3,
.module-grid strong {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.lane-card p,
.module-grid span {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.lane-card a {
  align-self: end;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

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

.module-grid article {
  display: grid;
  gap: 7px;
}

.compact-links {
  margin-top: 14px;
}

.pilot-panel {
  padding: 22px;
}

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

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

.price-card h2 {
  margin-bottom: 10px;
  font-size: 25px;
}

.featured-price {
  border-color: rgba(15, 118, 110, 0.45);
  box-shadow: 0 18px 38px rgba(15, 118, 110, 0.16);
}

.clean-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: #344054;
  line-height: 1.45;
}

.mode-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.mode-row:first-of-type {
  border-top: 0;
  padding-top: 6px;
}

.mode-row strong {
  color: var(--teal);
}

.mode-row span {
  color: var(--muted);
}

.code-section {
  margin-bottom: 18px;
}

.code-section pre {
  overflow-x: auto;
  margin: 0;
  border: 1px solid #cbd5df;
  border-radius: 8px;
  background: #111827;
  color: #f9fafb;
  padding: 16px;
  line-height: 1.5;
}

.pilot-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.pilot-form .primary-button,
.full-span {
  grid-column: 1 / -1;
}

textarea {
  width: 100%;
  min-height: 116px;
  resize: vertical;
  border: 1px solid #cbd5df;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  padding: 10px;
  font: inherit;
}

textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 118, 110, 0.14);
}

.scanner-grid {
  grid-template-columns: minmax(420px, 1fr) minmax(360px, 0.85fr);
}

.scanner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

.scanner-actions .primary-button {
  width: auto;
  padding: 0 18px;
}

.scanner-input {
  min-height: 360px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.45;
}

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

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 8px;
  border-radius: 6px;
  background: var(--teal);
  color: #ffffff;
  font-weight: 800;
  padding: 0 14px;
  text-decoration: none;
}

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

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.benchmark-table {
  margin-top: 16px;
}

.summary-line {
  margin: 14px 0 0;
  color: #344054;
  font-weight: 800;
}

th,
td {
  border-top: 1px solid var(--line);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}

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

.report-link {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.action-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

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

.process-card {
  display: grid;
  gap: 9px;
  min-height: 138px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  color: var(--ink);
  padding: 14px;
  text-align: left;
  cursor: pointer;
}

.process-card.selected {
  border-color: rgba(15, 118, 110, 0.65);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.process-card strong {
  font-size: 15px;
  line-height: 1.25;
}

.process-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.process-meter {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5ebf2;
}

.process-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.empty-board {
  grid-column: 1 / -1;
  border: 1px dashed #cbd5df;
  border-radius: 8px;
  color: var(--muted);
  padding: 22px;
  text-align: center;
}

.story-shell {
  max-width: 1280px;
}

.story-hero {
  align-items: center;
}

.story-controls {
  align-content: start;
}

.story-controls .action-row {
  width: 100%;
  grid-template-columns: 1fr 1fr;
}

.story-stage {
  padding: 0;
  overflow: hidden;
}

.story-progress {
  height: 8px;
  background: #e5ebf2;
}

.story-progress i {
  display: block;
  width: 14%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), #4f46e5);
  transition: width 260ms ease;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  padding: 24px;
}

.story-main h2 {
  max-width: 720px;
  font-size: 28px;
  line-height: 1.12;
}

.story-main p {
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.story-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.story-chips span {
  border: 1px solid rgba(15, 118, 110, 0.20);
  border-radius: 6px;
  background: #fbfdff;
  color: #344054;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 800;
}

.agent-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  padding: 18px;
}

.agent-card-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.agent-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.agent-card p {
  color: var(--muted);
  line-height: 1.45;
}

.agent-card dl {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
}

.agent-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #e5ebf2;
  padding-top: 8px;
}

.agent-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.agent-card dd {
  margin: 0;
  color: #344054;
  font-size: 12px;
  font-weight: 800;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 18px 0;
}

.comparison-card {
  padding: 20px;
}

.without-card {
  border-color: rgba(180, 35, 24, 0.22);
}

.with-card {
  border-color: rgba(15, 118, 110, 0.25);
}

.timeline {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #eef2f6;
  color: #475467;
  font-size: 12px;
  font-weight: 900;
}

.with-card .timeline-item span {
  background: var(--teal-soft);
  color: var(--teal);
}

.without-card .timeline-item span {
  background: var(--red-soft);
  color: var(--red);
}

.timeline-item p {
  margin: 4px 0 0;
  color: #344054;
  line-height: 1.35;
}

.story-score-grid {
  margin-top: 16px;
}

.mirror-panel {
  display: grid;
  align-content: start;
}

.mirror-record {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.mirror-record div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfd;
  padding: 10px;
}

.mirror-record span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.mirror-record strong {
  color: #344054;
  font-size: 12px;
  text-align: right;
}

.story-transcript {
  max-width: 960px;
  margin-bottom: 0;
  color: #344054;
  font-size: 16px;
  line-height: 1.55;
}

.challenge-shell {
  max-width: 1320px;
}

.challenge-shell .topbar {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, 0.20);
  border-radius: 12px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #101828 0%, #17494b 55%, #3b2f6e 100%);
  background-size: 28px 28px, 28px 28px, auto;
  padding: 28px;
  box-shadow: 0 22px 55px rgba(16, 24, 40, 0.22);
}

.challenge-shell .topbar h1,
.challenge-shell .topbar .hero-copy {
  color: #ffffff;
}

.challenge-shell .topbar .eyebrow {
  color: #99f6e4;
}

.challenge-shell .hero-visual {
  align-content: center;
}

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

.challenge-shell .hero-actions .ghost-button {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
}

.challenge-hud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 18px;
  padding: 0;
  border-color: rgba(16, 24, 40, 0.14);
}

.challenge-hud div {
  min-height: 88px;
  background: #fbfcfd;
  padding: 16px;
}

.challenge-hud span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.challenge-hud strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.08;
}

.challenge-audience {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: -6px 0 18px;
}

.challenge-audience article {
  border: 1px solid rgba(16, 24, 40, 0.10);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
  padding: 14px;
}

.challenge-audience span {
  display: block;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.challenge-audience strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.22;
}

.telemetry-panel {
  margin: -6px 0 18px;
  padding: 18px;
  border-color: rgba(15, 118, 110, 0.16);
  background: #ffffff;
}

.compact-field {
  min-width: 280px;
  margin: 0;
}

.challenge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.challenge-card,
.challenge-result {
  padding: 22px;
}

.challenge-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(15, 118, 110, 0.24);
}

.challenge-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 118, 110, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 118, 110, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
}

.challenge-card > * {
  position: relative;
}

.mission-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -4px 0 18px;
  border: 1px solid rgba(98, 84, 182, 0.18);
  border-radius: 8px;
  background: rgba(236, 233, 255, 0.55);
  padding: 10px 12px;
}

.mission-banner span {
  color: var(--violet);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mission-banner strong {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.mission-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
}

.mission-map span {
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 6px;
  background: rgba(15, 118, 110, 0.06);
  color: #344054;
  padding: 8px 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.challenge-round {
  display: grid;
  justify-items: end;
  gap: 4px;
  white-space: nowrap;
}

.challenge-round strong {
  color: var(--ink);
  font-size: 18px;
}

.challenge-round span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.signal-table div {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfd;
  padding: 10px;
}

.signal-table span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-table strong {
  display: block;
  margin-top: 5px;
  color: #344054;
  font-size: 13px;
  line-height: 1.25;
}

.challenge-actions {
  margin-top: 16px;
}

.posture-buttons,
.control-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.posture-buttons button,
.control-buttons button {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: #344054;
  padding: 9px 11px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.posture-buttons button:hover,
.control-buttons button:hover,
.posture-buttons button.selected,
.control-buttons button.selected {
  border-color: rgba(15, 118, 110, 0.55);
  background: var(--teal-soft);
  color: var(--teal);
  transform: translateY(-1px);
}

.challenge-submit {
  margin-top: 18px;
}

.score-ring {
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  margin: 18px 0;
  border: 10px solid var(--teal-soft);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.12), 0 14px 28px rgba(15, 118, 110, 0.11);
}

.score-ring strong {
  color: var(--teal);
  font-size: 36px;
  line-height: 1;
}

.score-ring span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.rank-ladder {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.rank-ladder h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 14px;
}

.rank-ladder ol {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rank-ladder li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 6px;
  background: #fbfcfd;
  padding: 8px 10px;
}

.rank-ladder strong {
  color: var(--violet);
  font-size: 12px;
}

.rank-ladder span {
  color: #344054;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.scorecard-panel {
  margin: 18px 0;
  padding: 22px;
  border-color: rgba(98, 84, 182, 0.20);
  background:
    linear-gradient(135deg, rgba(236, 233, 255, 0.56), rgba(240, 253, 250, 0.72)),
    #ffffff;
}

.scorecard-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 14px;
  margin-top: 14px;
}

.scorecard-grid article,
.scorecard-rank,
.scorecard-metrics {
  border: 1px solid rgba(16, 24, 40, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 16px;
}

.scorecard-rank span,
.scorecard-metrics span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.scorecard-rank strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.05;
}

.scorecard-rank p {
  margin: 10px 0 0;
  color: #344054;
}

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

.scorecard-metrics div {
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 6px;
  background: #fbfcfd;
  padding: 12px;
}

.scorecard-metrics strong {
  display: block;
  margin-top: 6px;
  color: var(--teal);
  font-size: 24px;
  line-height: 1;
}

.challenge-record {
  margin: 0 0 16px;
}

.challenge-feedback {
  margin-top: 16px;
}

.builder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 18px;
  margin: 18px 0;
}

.builder-panel {
  padding: 20px;
}

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

.builder-sliders {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.builder-slider {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  padding: 10px;
}

.builder-slider input {
  width: 100%;
}

.share-output {
  min-height: 110px;
  margin: 12px 0;
  font-size: 12px;
}

@media (max-width: 980px) {
  .topbar,
  .launchpad,
  .launchpad-grid,
  .proof-sequence,
  .sequence-steps,
  .impact-framework,
  .impact-grid,
  .evaluation-path,
  .evaluation-steps,
  .contact-panel,
  .contact-form,
  .fit-panel,
  .fit-grid,
  .proof-strip,
  .workspace,
  .governor-layout,
  .story-layout,
  .comparison-grid,
  .challenge-grid,
  .challenge-hud,
  .challenge-audience,
  .builder-grid,
  .scorecard-grid,
  .scorecard-metrics,
  .builder-form,
  .builder-sliders,
  .lane-grid,
  .module-grid,
  .signal-table,
  .mission-map,
  .score-grid,
  .output-lists,
  .proof-grid,
  .pilot-grid,
  .pricing-grid,
  .pilot-form {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: grid;
    align-items: start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-visual {
    justify-items: start;
    min-width: 0;
    width: 100%;
  }

  .homepage-hero {
    min-height: 0;
  }

  .enterprise-flow {
    width: 100%;
  }

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

  .status-strip {
    justify-content: flex-start;
  }

  .artifact-strip {
    justify-content: flex-start;
    max-width: none;
  }

  .signal-convergence,
  .convergence-stage {
    width: 100%;
  }

  .convergence-stage {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .convergence-arrow {
    transform: rotate(90deg);
  }

  .source-node {
    min-height: 42px;
  }

  .checkpoint-core {
    min-height: 140px;
  }

  .hero-artifacts {
    justify-content: flex-start;
    max-width: none;
  }

  .proof-strip .proof-stat {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-strip .proof-stat:first-child {
    border-top: 0;
  }

  .proof-grid > .proof-panel:first-child {
    padding-right: 20px;
  }

  .proof-grid > .proof-panel:last-child {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 20px;
  }

  .lane-card {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 20px, 1440px);
    padding-top: 18px;
  }

  h1 {
    font-size: 27px;
  }

  .site-nav {
    max-height: 140px;
    overflow: auto;
    padding-bottom: 4px;
  }

  .convergence-stage {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .checkpoint-core {
    min-height: 132px;
  }

  .checkpoint-core strong {
    font-size: 30px;
  }

  .signal-row {
    grid-template-columns: 1fr 58px;
  }

  .signal-row input {
    grid-column: 1 / -1;
  }

  .mcp-flow {
    grid-template-columns: 1fr;
  }

  .action-row,
  .process-board,
  .signal-table {
    grid-template-columns: 1fr;
  }
}
