

:root {

  --canvas: #0e1116;
  --ink: #f0eee3;
  --agent: #a97ee0;
  --evidence: #7ba881;
  --target: #6fb0ea;


  --bg: var(--canvas);
  --panel: #141920;
  --panel-2: #191f28;
  --line: #2a3140;


  --text: var(--ink);
  --muted: #9ca3af;


  --accent: var(--agent);
  --accent-strong: #bb9be5;
  --pass: #6fc68a;
  --warn: #f5a623;


  --radius: 10px;
  --gap: 1.25rem;
  --measure: 62ch;


  --font-ui: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-code: "Cascadia Mono", ui-monospace, "SF Mono", Consolas, monospace;
  --font-body: 16px;
  --font-small: 14px;
  --font-code-size: 13px;

  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 71rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.prose {
  max-width: var(--measure);
}

header.masthead {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.5rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
}

.brand-lockup:hover {
  color: var(--text);
}

.brand-lockup .symbol {
  width: 30px;
  height: 30px;
  display: block;
  flex: 0 0 auto;
  color: var(--ink);
}

.wordmark {
  font-size: 1.5rem;
  font-weight: 650;

  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
}

.tagline {
  color: var(--muted);
  font-size: var(--font-small);
}

nav.masthead-nav {
  margin-left: auto;
  display: flex;
  gap: 1.25rem;
}

nav.masthead-nav a {
  color: var(--text);
  text-decoration: none;
}

nav.masthead-nav a:hover {
  color: var(--target);
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

nav.masthead-nav a[aria-current="page"] {
  color: var(--text);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3em;
}

a {
  color: var(--target);
}

a:hover {
  color: var(--accent-strong);
}

h1 {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

h2 {
  font-size: 1.25rem;
  margin: 2.5rem 0 0.75rem;
}

h3 {
  font-size: 1rem;
  margin: 1.5rem 0 0.5rem;
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 2rem;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--gap);
  margin: var(--gap) 0;
}

.notice {
  background: rgba(245, 166, 35, 0.12);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin: var(--gap) 0;
  font-size: var(--font-small);
}

.notice.evidence {
  background: rgba(0, 98, 78, 0.1);
}

code,
.mono {
  font-family: var(--font-code);
  font-size: var(--font-code-size);
}

.hash {
  font-family: var(--font-code);
  font-size: var(--font-code-size);
  word-break: break-all;
  color: var(--evidence);
  user-select: all;
}

pre {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem var(--gap);
  overflow-x: auto;
  font-family: var(--font-code);
  font-size: var(--font-code-size);
  margin: 0.75rem 0;
}

.release {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.5rem;
}

.release-head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.version {
  font-size: 1.15rem;
  font-weight: 650;
}

.badge {
  font-size: var(--font-small);
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.1rem 0.6rem;
}

.meta {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 0.35rem 1rem;
  font-size: var(--font-small);
  margin-top: 0.5rem;
}

.meta dt {
  color: var(--muted);
}

.meta dd {
  margin: 0;
  min-width: 0;
}

.button {
  display: inline-block;
  background: var(--accent);
  color: #14101c;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 0.6rem 1.1rem;
  margin-top: 0.5rem;
}

.button:hover {
  background: var(--accent-strong);
  color: #14101c;
}

ul.plain {
  padding-left: 1.1rem;
}

ul.plain li {
  margin-bottom: 0.4rem;
}

footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--font-small);
}

@media (max-width: 34rem) {
  .wrap {
    padding: 2rem 1rem 3rem;
  }
  .meta {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.15rem;
  }
  .meta dd {
    margin-bottom: 0.5rem;
  }
  nav.masthead-nav {
    margin-left: 0;
    width: 100%;
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
  }
}

.hero {
  padding: 1rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.375rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  max-width: 20ch;
}

.hero .lede {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 54ch;
  margin: 0 0 1.25rem;
}

.cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.button.secondary:hover {
  background: var(--panel-2);
  color: var(--text);
  border-color: var(--muted);
}

.cta-note {
  color: var(--muted);
  font-size: var(--font-small);
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
  margin: 1.5rem 0 0;
}

.grid.pairs {
  grid-template-columns: repeat(auto-fit, minmax(min(26rem, 100%), 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  line-height: 1.4;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-small);
  line-height: 1.6;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--evidence);
  margin: 0 0 0.4rem;
}

section.band {
  margin: 3.5rem 0 0;
}

.marketing-page section.band > h2 {
  max-width: 23ch;
  margin-top: 0.35rem;
  font-size: 1.875rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.permission-cards .level-line {
  margin: 0 0 0.9rem;
}

.start-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 1.8rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.start-panel h2 {
  margin: 0.35rem 0 0.75rem;
}

.start-panel p:last-child {
  margin-bottom: 0;
}

.start-actions {
  justify-content: flex-end;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  padding: 1.25rem 0 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-family: var(--font-code);
  font-size: 0.75rem;
}

.business-tiers {
  max-width: 46rem;
}

@media (max-width: 34rem) {
  .start-panel {
    grid-template-columns: minmax(0, 1fr);
  }

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

figure.shot {
  margin: 1.5rem 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}

figure.shot img {
  display: block;
  width: 100%;
  height: auto;
}

figure.shot figcaption {
  padding: 0.7rem 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--font-small);
}

.split {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
  margin-top: 1.5rem;
}

ul.ticks {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

ul.ticks li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: var(--font-small);
  line-height: 1.55;
}

ul.ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--evidence);
}

ul.ticks.agent li::before {
  background: var(--accent);
}

.tiers {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
  margin-top: 1.5rem;
}

.tier {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.tier.featured {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
}

.tier .tier-name {
  font-weight: 650;
  margin: 0 0 0.35rem;
}

.tier .price {
  font-size: 1.75rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
}

.tier .price span {
  font-size: var(--font-small);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}

.tier p.note {
  color: var(--muted);
  font-size: var(--font-small);
  margin: 0.6rem 0 0;
  line-height: 1.55;
}

.soon {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.6rem;
  border: 1px dashed var(--wire);
  border-radius: 6px;
  color: var(--muted);
  font-size: var(--font-caption, 0.75rem);
  align-self: flex-start;
}

.req {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
  margin-top: 1.5rem;
}

@media (max-width: 34rem) {
  .hero {
    padding-top: 0.5rem;
  }
  .brand-lockup .symbol {
    width: 26px;
    height: 26px;
  }
}

.matrix {
  margin-top: 1.5rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.matrix table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
  font-size: var(--font-small);
}

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

.matrix thead th {
  background: var(--panel-2);
  color: var(--muted);
  font-weight: 650;
  font-size: var(--font-caption, 0.75rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.matrix tbody tr:last-child th,
.matrix tbody tr:last-child td {
  border-bottom: 0;
}

.matrix td .mono {
  display: inline-block;
  margin-top: 0.4rem;
  color: var(--muted);
  line-height: 1.7;
}

.lvl {
  display: inline-block;
  white-space: nowrap;
  padding: 0.2rem 0.55rem;
  border: 1px solid;
  border-radius: 6px;
  font-weight: 650;
}

.lvl.observe {
  color: var(--evidence);
  border-color: var(--evidence);
}

.lvl.interact {
  color: var(--target);
  border-color: var(--target);
}

.lvl.modify {
  color: var(--accent);
  border-color: var(--accent);
  border-width: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 62rem) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
  }
}

.hero-grid .hero-copy h1 {
  max-width: 7.2em;
}

.hero-media {

  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-media figcaption {
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--font-small);
  line-height: 1.55;
}

.proofs {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
}

.proofs li {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  color: var(--text);
  font-size: var(--font-small);
}

.proofs li::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--evidence);
  transform: translateY(-1px);
}

.button-wide {
  display: block;
  width: 100%;
  text-align: center;
}

@media (min-width: 34rem) {
  .button-wide {
    display: inline-block;
    width: auto;
  }
}

.tier-group {
  margin: 2.25rem 0 0;
  font-size: 1rem;
  font-weight: 650;
  color: var(--muted);
}

.chain {
  list-style: none;
  margin: 1.75rem 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(7.5rem, 100%), 1fr));
  gap: 1rem 0;
}

.chain-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.4rem;
  min-width: 0;
}

.chain-step + .chain-step::before {
  content: "";
  position: absolute;
  top: 21px;
  right: 50%;
  left: -50%;
  border-top: 2px solid var(--line);
  z-index: 0;
}

.chain-step[data-transport="dormant"]::before {
  border-top-style: dashed;
}

.chain-step[data-transport="live"]::before {
  border-top-color: var(--pass);
  border-top-style: solid;
}

.chain-chip {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--panel-2);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
}

.chain-step[data-state="pass"] .chain-chip { border-color: var(--pass); color: var(--pass); }
.chain-step[data-state="fail"] .chain-chip { border-color: #e0644f; color: #e0644f; }
.chain-step[data-state="warn"] .chain-chip { border-color: var(--warn); color: var(--warn); }
.chain-step[data-state="unknown"] .chain-chip { border-color: var(--line); color: var(--muted); }

.chain-name {
  margin-top: 0.55rem;
  font-size: var(--font-small);
  font-weight: 650;
}

.chain-sub {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.35;
}

.chain-state {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}

.symptom {
  background: rgba(245, 166, 35, 0.12);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin: 1.25rem 0;
}

.symptom p { margin: 0.35rem 0 0; }
.symptom p:first-child { margin-top: 0; }

.steps {
  counter-reset: fixstep;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.steps > li {
  counter-increment: fixstep;
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 1.1rem;
}

.steps > li::before {
  content: counter(fixstep);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 650;
}

.fix-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--font-small);
}

.fix-nav {
  margin: 0 0 1.5rem;
  font-size: var(--font-small);
  color: var(--muted);
}

@media (max-width: 40rem) {
  .chain {
    grid-template-columns: 1fr;
    gap: 1.5rem 0;
  }

  .chain-step + .chain-step::before {
    top: -1.05rem;
    left: 50%;
    right: auto;
    width: 0;
    height: 1.05rem;
    border-top: 0;
    border-left: 2px solid var(--line);
    transform: translateX(-1px);
  }

  .chain-step[data-transport="dormant"]::before {
    border-left-style: dashed;
  }

  .chain-step[data-transport="live"]::before {
    border-left-color: var(--pass);
    border-left-style: solid;
  }
}

/* CrocProbe homepage */

.marketing-page {
  --bg: #f6f2ec;
  --panel: #fffdf8;
  --panel-2: #eee9e1;
  --line: #c8c8c1;
  --text: #09152d;
  --ink: #09152d;
  --muted: #4e596d;
  --accent: #005b46;
  --accent-strong: #004936;
  --evidence: #00624e;
  --target: #005b46;
  --radius: 8px;
  color-scheme: light;
  background: var(--bg);
}

.marketing-page .wrap {
  max-width: 87rem;
  padding: 0 2rem 4rem;
}

.marketing-page header.masthead {
  min-height: 5.25rem;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
  border-bottom-color: var(--line);
}

.marketing-page .brand-lockup {
  gap: 0.7rem;
}

.marketing-page .brand-lockup .symbol {
  width: 44px;
  height: 44px;
}

.marketing-page .wordmark {
  font-size: 1.7rem;
  font-weight: 720;
  letter-spacing: -0.035em;
}

.marketing-page nav.masthead-nav {
  align-items: center;
  gap: 2rem;
  font-size: 0.95rem;
}

.marketing-page nav.masthead-nav a {
  color: var(--text);
  white-space: nowrap;
}

.marketing-page nav.masthead-nav .nav-emphasis {
  padding: 0.65rem 0.9rem;
  border: 1px solid #e55118;
  border-radius: 5px;
  color: #c93f0a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marketing-page nav.masthead-nav .nav-emphasis:hover {
  color: #9e3008;
  background: #fff7f1;
  text-decoration: none;
}

.mobile-nav {
  display: none;
}

.marketing-page .hero {
  padding: 0 0 2.75rem;
  margin: 0;
  border-bottom: 0;
}

.hero-facts {
  min-height: 3.75rem;
  padding: 0.85rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.hero-eyebrow {
  margin: 0;
  color: #b83b0b;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-facts ul {
  display: flex;
  gap: 2.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 0.9rem;
}

.hero-facts li {
  padding-left: 1rem;
  border-left: 2px solid var(--evidence);
  white-space: nowrap;
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(22rem, 5fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  padding: 2.25rem 0 1.8rem;
}

.marketing-page .hero h1 {
  max-width: 10.4ch;
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.1rem, 6.2vw, 5.35rem);
  font-weight: 700;
  line-height: 0.97;
  letter-spacing: -0.045em;
}

.accent-dot {
  color: #e35316;
}

.hero-actions {
  margin-top: 0.15rem;
}

.marketing-page .hero .lede {
  max-width: 32rem;
  margin: 0 0 1.4rem;
  color: var(--text);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.45;
}

.marketing-page .cta-row {
  gap: 0.8rem;
}

.marketing-page .button {
  min-height: 3rem;
  margin: 0;
  padding: 0.72rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 5px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.25;
}

.marketing-page .button:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: #ffffff;
  text-decoration: none;
}

.marketing-page .button.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.marketing-page .button.secondary:hover {
  border-color: var(--accent-strong);
  background: #e8eee9;
  color: var(--accent-strong);
}

.hero-checks {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 0.88rem;
}

.hero-checks li {
  padding: 0.48rem 0;
  border-top: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
}

.marketing-page .hero-media {
  margin: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  overflow: visible;
}

.workbench-scroller {
  overflow: hidden;
  border: 1px solid #28303a;
  border-radius: var(--radius);
  background: #0e1116;
  box-shadow: 0 16px 35px rgba(20, 31, 39, 0.13);
}

.workbench-scroller:focus-visible {
  outline: 3px solid #e35316;
  outline-offset: 4px;
}

.marketing-page .hero-media img {
  width: 100%;
  max-width: none;
}

.marketing-page .hero-media figcaption {
  padding: 0.75rem 0 0;
  border: 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: left;
}

.mobile-caption {
  display: none;
}

.evidence-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.6rem 0 0;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.evidence-strip li {
  min-width: 0;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.25rem 0.8rem;
  align-items: baseline;
}

.evidence-strip li:first-child {
  padding-left: 0;
}

.evidence-strip li + li {
  border-left: 1px solid var(--line);
}

.evidence-number {
  grid-row: 1 / span 2;
  color: var(--evidence);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.evidence-strip strong {
  color: #b83b0b;
  font-size: 0.98rem;
}

.evidence-strip li > span:last-child {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.marketing-page section.band {
  margin: 4.5rem 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.85fr);
  gap: 4rem;
  align-items: end;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.marketing-page .kicker,
.footer-group h2 {
  color: #b83b0b;
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.11em;
}

.marketing-page section.band > h2,
.section-heading h2 {
  max-width: 18ch;
  margin: 0.35rem 0 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-heading .prose {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.permission-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.permission-steps li {
  min-width: 0;
  padding: 1.6rem 2rem 1.8rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
}

.permission-steps li:first-child {
  padding-left: 0;
}

.permission-steps li + li {
  border-left: 1px solid var(--line);
}

.step-number {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--evidence);
  border-radius: 50%;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.step-name {
  margin: 0 0 0.15rem;
  color: var(--evidence);
  font-size: 1rem;
  font-weight: 750;
}

.permission-steps h3 {
  margin: 0 0 0.4rem;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.2;
}

.permission-steps li p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.permission-note {
  margin: 0;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(0, 98, 78, 0.07);
  color: var(--text);
  font-size: 0.85rem;
}

.marketing-page .start-panel {
  grid-template-columns: minmax(0, 7fr) minmax(18rem, 5fr);
  gap: 3rem;
  padding: 2.4rem 2.8rem;
  border: 0;
  border-radius: var(--radius);
  background: #00533f;
  color: #ffffff;
}

.marketing-page .start-panel .kicker,
.marketing-page .start-panel h2,
.marketing-page .start-panel .prose {
  color: #ffffff;
}

.marketing-page .start-panel .kicker {
  opacity: 0.78;
}

.marketing-page .start-panel h2 {
  max-width: none;
  font-size: clamp(2rem, 3.2vw, 2.65rem);
}

.marketing-page .start-panel .prose {
  max-width: 42rem;
  margin: 0.55rem 0 0;
  opacity: 0.92;
  line-height: 1.5;
}

.marketing-page .start-panel .button {
  border-color: #ffffff;
  background: #ffffff;
  color: #0b1a2d;
}

.marketing-page .start-panel .button:hover {
  border-color: #f3eee7;
  background: #f3eee7;
  color: #0b1a2d;
}

.marketing-page .start-panel .button.secondary {
  background: transparent;
  color: #ffffff;
}

.marketing-page .start-panel .button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.marketing-page .site-footer {
  margin-top: 4.5rem;
  padding-top: 2.25rem;
  display: grid;
  grid-template-columns: minmax(16rem, 1.2fr) minmax(11rem, 0.7fr) minmax(12rem, 0.8fr) minmax(11rem, 0.7fr);
  gap: 3rem;
  border-top-color: var(--line);
  color: var(--muted);
}

.footer-brand p {
  margin: 0.8rem 0 0;
}

.footer-group h2 {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.footer-group > div {
  display: grid;
  gap: 0;
}

.footer-product > div {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
}

.footer-group a {
  min-height: 2.65rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.footer-group a:hover {
  color: var(--accent);
}

.marketing-page a:focus-visible,
.marketing-page summary:focus-visible {
  outline: 3px solid #e35316;
  outline-offset: 4px;
}

@media (max-width: 64rem) {
  .marketing-page nav.masthead-nav {
    gap: 1.25rem;
  }

  .marketing-page nav.masthead-nav .nav-emphasis {
    display: none;
  }

  .hero-intro {
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
    gap: 3rem;
  }

  .marketing-page .hero h1 {
    font-size: clamp(3.75rem, 7vw, 4.5rem);
  }
}

@media (max-width: 48rem) {
  .marketing-page .wrap {
    padding: 0 1.25rem 3rem;
  }

  .marketing-page header.masthead {
    min-height: 3.5rem;
  }

  .marketing-page .brand-lockup .symbol {
    width: 32px;
    height: 32px;
  }

  .marketing-page .wordmark {
    font-size: 1.28rem;
  }

  .marketing-page .desktop-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
    margin-left: auto;
  }

  .mobile-nav summary {
    min-height: 44px;
    padding: 0.65rem 0.15rem 0.65rem 0.75rem;
    display: flex;
    align-items: center;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
  }

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

  .mobile-nav nav {
    position: absolute;
    z-index: 20;
    top: calc(100% + 0.35rem);
    right: 0;
    width: min(18rem, calc(100vw - 2.5rem));
    padding: 0.45rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: 0 12px 28px rgba(20, 31, 39, 0.14);
  }

  .mobile-nav nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    text-decoration: none;
  }

  .mobile-nav nav a:last-child {
    border-bottom: 0;
  }

  .hero-facts {
    min-height: 0;
    padding: 0.7rem 0 0.4rem;
    border-bottom: 0;
  }

  .hero-facts ul {
    display: none;
  }

  .hero-eyebrow {
    font-size: 0.66rem;
  }

  .hero-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
    padding: 0.35rem 0 0.9rem;
  }

  .marketing-page .hero h1 {
    max-width: 10.7ch;
    font-size: clamp(2.15rem, 9.5vw, 2.35rem);
    line-height: 0.98;
  }

  .hero-actions {
    margin: 0;
    padding: 0;
  }

  .marketing-page .hero .lede {
    margin-bottom: 0.7rem;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .marketing-page .cta-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.4rem;
  }

  .marketing-page .button {
    width: 100%;
    min-height: 2.55rem;
    font-size: 0.9rem;
  }

  .hero-checks {
    margin-top: 0.4rem;
  }

  .hero-checks li {
    min-height: 2rem;
    display: flex;
    align-items: center;
  }

  .hero-checks li:nth-child(2) {
    display: none;
  }

  .marketing-page .hero-media {
    padding-top: 0.6rem;
    border-top: 1px solid var(--line);
  }

  .marketing-page .hero-media::before {
    content: "The real workbench";
    display: block;
    margin: 0 0 0.5rem;
    color: #b83b0b;
    font-size: 0.66rem;
    font-weight: 750;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .workbench-scroller {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-color: #8e938d transparent;
    box-shadow: none;
  }

  .marketing-page .hero-media img {
    width: 58rem;
    height: auto;
  }

  .desktop-caption {
    display: none;
  }

  .mobile-caption {
    display: block;
    min-height: 2.4rem;
    padding: 0.5rem 0 0;
    color: var(--text);
    font-size: 0.8rem;
  }

  .evidence-strip {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 1.25rem;
    padding: 0;
  }

  .evidence-strip li,
  .evidence-strip li:first-child {
    padding: 0.9rem 0;
  }

  .evidence-strip li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .marketing-page section.band {
    margin-top: 3.5rem;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
  }

  .section-heading h2 {
    max-width: 13ch;
    font-size: 2.3rem;
  }

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

  .permission-steps li,
  .permission-steps li:first-child {
    padding: 1rem 0;
  }

  .permission-steps li p:last-child {
    display: none;
  }

  .step-number {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 1rem;
  }

  .permission-steps h3 {
    margin-bottom: 0;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 500;
  }

  .permission-steps li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .permission-note {
    margin-top: 0.25rem;
  }

  .marketing-page .start-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.6rem 1.1rem;
  }

  .marketing-page .start-panel h2 {
    max-width: none;
    font-size: 1.65rem;
  }

  .marketing-page .start-panel .prose {
    font-size: 0.9rem;
  }

  .marketing-page .start-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-page .site-footer {
    margin-top: 3.5rem;
    padding-top: 2rem;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .footer-product > div {
    column-gap: 1.25rem;
  }

  .footer-group a {
    min-height: 3rem;
    font-size: 0.96rem;
  }

  .footer-release > div,
  .footer-legal > div {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 23rem) {
  .footer-product > div {
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-page .hero h1 {
    font-size: 2.3rem;
  }
}

/* Secondary marketing and support pages */

.site-page main {
  max-width: 74rem;
  margin: 0 auto;
  padding-top: clamp(3.5rem, 7vw, 6.5rem);
}

.site-page main > h1 {
  max-width: 16ch;
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 6vw, 5.1rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.site-page main > h1::after {
  content: ".";
  color: #e35316;
}

.site-page main > .lede {
  max-width: 48rem;
  margin: 2rem 0 0;
  color: var(--text);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.5;
}

.site-page section.band {
  margin-top: 4.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
}

.site-page section.band > h2 {
  margin-top: 0;
}

.site-page section.band > .prose,
.site-page section.band > .note {
  color: var(--muted);
}

.site-page .grid,
.site-page .split,
.site-page .tiers,
.site-page .req {
  gap: 1.25rem;
}

.site-page .card,
.site-page .tier,
.site-page .panel {
  border-color: var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 10px 25px rgba(20, 31, 39, 0.045);
}

.site-page .card,
.site-page .tier {
  padding: 1.5rem;
}

.site-page .card h2,
.site-page .card h3 {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  line-height: 1.25;
}

.site-page .card h2 a {
  color: var(--text);
  text-decoration-color: color-mix(in srgb, var(--evidence) 55%, transparent);
  text-underline-offset: 0.2em;
}

.site-page .card h2 a:hover {
  color: var(--accent);
}

.site-page .notice,
.site-page .symptom {
  background: rgba(0, 98, 78, 0.07);
  color: var(--text);
}

.site-page .notice.evidence {
  background: rgba(227, 83, 22, 0.08);
}

.site-page .tier {
  min-height: 18rem;
}

.site-page .tier.featured {
  border-color: #e35316;
  box-shadow: inset 0 4px 0 #e35316, 0 10px 25px rgba(20, 31, 39, 0.055);
}

.site-page .tier .tier-name {
  color: #b83b0b;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-page .tier .price {
  margin-top: 0.35rem;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
}

.site-page .tier .button {
  margin-top: auto;
}

.site-page #releases {
  margin-top: 2.5rem;
}

.site-page .release {
  gap: 1.35rem;
  padding: 2rem;
}

.site-page .release-head {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.site-page .release .version {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.site-page .release .badge {
  border-color: var(--evidence);
  color: var(--evidence);
}

.site-page pre {
  border-color: #28303a;
  background: #10151c;
  color: #e8edf4;
}

.site-page .meta {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.site-page .permission-cards .level-line {
  margin-bottom: 1.1rem;
}

.site-page .start-panel {
  border: 0;
  background: #00533f;
  color: #ffffff;
}

.site-page .start-panel .kicker,
.site-page .start-panel h2,
.site-page .start-panel .prose {
  color: #ffffff;
}

.site-page .start-panel .button {
  border-color: #ffffff;
  background: #ffffff;
  color: #0b1a2d;
}

.site-page .start-panel .button.secondary {
  border-color: #ffffff;
  background: transparent;
  color: #ffffff;
}

.site-page .band > h3 {
  max-width: 48rem;
  margin: 2rem 0 0.45rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.site-page .band > h2 + h3 {
  margin-top: 1.5rem;
  padding-top: 0;
  border-top: 0;
}

.site-page .mobile-nav [aria-current="page"] {
  color: var(--accent);
  font-weight: 700;
}

.fix-page main > h1 {
  max-width: 19ch;
  font-size: clamp(3rem, 5vw, 4.35rem);
}

.fix-article main {
  max-width: 68rem;
}

.fix-nav {
  margin-bottom: 1.25rem;
  color: #b83b0b;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fix-page main > h2 {
  margin: 4rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.fix-page .chain {
  padding: 1.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.fix-page .chain-chip,
.fix-page .steps > li::before {
  background: var(--bg);
}

.fix-page .steps > li {
  margin-bottom: 1.5rem;
  padding-left: 3rem;
}

.fix-page .steps > li::before {
  width: 2rem;
  height: 2rem;
  border-color: var(--evidence);
  color: var(--evidence);
}

.fix-page .fix-footer {
  margin-top: 4rem;
  padding: 1.5rem;
  border: 0;
  border-radius: var(--radius);
  background: rgba(227, 83, 22, 0.08);
  color: var(--text);
}

.fix-page .fix-footer p {
  margin: 0;
}

@media (max-width: 48rem) {
  .site-page main {
    padding-top: 2.75rem;
  }

  .site-page main > h1 {
    max-width: 14ch;
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .site-page main > .lede {
    margin-top: 1.35rem;
    font-size: 1rem;
  }

  .site-page section.band {
    margin-top: 3.25rem;
    padding-top: 1.5rem;
  }

  .site-page .card,
  .site-page .tier,
  .site-page .release {
    padding: 1.15rem;
  }

  .site-page .tier {
    min-height: 0;
  }

  .site-page .tier .button {
    margin-top: 1.35rem;
  }

  .site-page .start-panel {
    padding: 1.6rem 1.1rem;
  }

  .fix-page main > h1 {
    max-width: 18ch;
  }

  .fix-page main > h2 {
    margin-top: 3rem;
    padding-top: 1.5rem;
    font-size: 1.75rem;
  }

  .fix-page .chain {
    padding: 1.25rem 0.75rem;
  }

  .fix-page .steps > li {
    padding-left: 2.65rem;
  }
}

/* Recorded product demonstrations. The poster reserves the final player size. */
.demo {
  margin: 1.75rem 0 0;
  scroll-margin-top: 1.5rem;
}

.demo-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0e1116;
  box-shadow: 0 12px 32px rgba(20, 31, 39, 0.1);
}

.demo-player video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.demo-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  padding: 1rem;
  border: 0;
  background: rgba(14, 17, 22, 0.16);
  color: #fff;
  cursor: pointer;
  font: 700 1rem/1.35 var(--font-ui);
}

.demo-start[hidden] { display: none; }
.demo-start > span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 100%;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  background: #00533f;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.3);
}
.demo-start:hover > span { background: #00684f; }
.demo-start:focus-visible { outline: 3px solid #e35316; outline-offset: -6px; }
.demo-player video:focus-visible { outline: 3px solid #e35316; outline-offset: -3px; }

.demo figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem 1.5rem;
  padding-top: 0.7rem;
  color: var(--muted);
  font-size: 0.875rem;
}
.demo figcaption a { white-space: nowrap; }
.demo-transcript, .demo-more, .workbench-detail {
  margin-top: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.8rem;
}
.demo-transcript summary, .demo-more > summary, .workbench-detail > summary {
  width: fit-content;
  min-height: 44px;
  padding: 0.6rem 0;
  color: var(--text);
  font-weight: 650;
  cursor: pointer;
}
.demo-transcript .prose { color: var(--muted); font-size: 0.95rem; }
.demo-transcript .prose strong { color: var(--text); }
.demo-heading { margin: 2rem 0 0.5rem; }
.demo-heading + .prose { margin-top: 0; }
.hero .demo { margin-top: 0; }

@media (max-width: 48rem) {
  .demo-start { padding: 0.65rem; font-size: 0.85rem; }
  .demo-start > span { gap: 0.5rem; padding: 0.7rem 0.9rem; }
  .demo figcaption { font-size: 0.8rem; }
}

/* Legal pages: counsel's text, set as running prose with the policy's numbered headings. */
.legal-page main h1 {
  margin-bottom: 1.5rem;
}

.legal-page main h2 {
  margin: 2.25rem 0 0.75rem;
  font-size: 1.25rem;
  line-height: 1.3;
}

.legal-page main p.prose {
  max-width: 72ch;
  margin: 0 0 1rem;
}

.legal-page main ul.plain {
  max-width: 72ch;
  margin: 0 0 1rem;
}

.buyer-page .buyer-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2.5rem;
}

.buyer-page .buyer-sections section.band {
  margin: 2rem 0 0;
  padding: 1.5rem 0 0;
}

.buyer-page .buyer-sections section.band > h2 { font-size: 1.65rem; }
.buyer-print-note, .buyer-source-links { font-size: 0.875rem; }
.buyer-source-links {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  overflow-wrap: anywhere;
}

@media (max-width: 48rem) {
  .buyer-page .buyer-sections { grid-template-columns: 1fr; }
}

@media print {
  @page buyer-guide { size: auto; margin: 13mm; }
  .buyer-page { page: buyer-guide; background: #fff; color: #111; font-size: 9pt; line-height: 1.35; }
  .buyer-page .wrap { max-width: none; padding: 0; }
  .buyer-page .masthead, .buyer-page .site-footer, .buyer-page .buyer-print-note { display: none; }
  .buyer-page main { padding: 0; }
  .buyer-page main > h1 { margin: 0 0 3mm; font-size: 25pt; max-width: none; }
  .buyer-page main > .lede { font-size: 11pt; max-width: none; margin: 0 0 2mm; }
  .buyer-page .kicker { margin: 0 0 2mm; color: #333; }
  .buyer-page .buyer-sections { grid-template-columns: 1fr 1fr; gap: 0 7mm; }
  .buyer-page .buyer-sections section.band { margin-top: 4mm; padding-top: 3mm; break-inside: avoid; border-color: #bbb; }
  .buyer-page .buyer-sections section.band > h2 { font-size: 13pt; line-height: 1.2; margin: 0 0 2mm; }
  .buyer-page .buyer-sections p { margin: 0 0 2mm; }
  .buyer-page a { color: #111; text-decoration: underline; }
  .buyer-page .buyer-source-links { font-size: 8pt; margin-top: 4mm; padding-top: 3mm; }
}

/* Watch pages keep the video prominent, using the existing marketing typography. */
.watch-page main { max-width: 64rem; padding-top: 2rem; }
.watch-page main > h1 { max-width: 28ch; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.06; }
.watch-page main > .kicker { margin: 0 0 .75rem; }
.watch-page .demo { margin-top: 1.5rem; }
.watch-page #transcript { scroll-margin-top: 1.5rem; }
