:root {
  color-scheme: light;
  --ink: #0e1512;
  --ink-2: #3b463f;
  --ink-3: #6c776f;
  --stock: #eff2ec;
  --paper: #fdfdfb;
  --paper-soft: #f7f8f4;
  --rule: #d2d8cd;
  --rule-2: #e2e6dd;
  --seal: #0b3b2e;
  --seal-hover: #0f4e3c;
  --seal-ink: #f3f6f0;
  --mark: #f1e86a;
  --critical: #a62f1e;
  --high: #a85d12;
  --medium: #69651e;
  --low: #4f6156;
  --refer: #315e7c;
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --text: "Avenir Next", Avenir, "Segoe UI Variable", "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --gutter: clamp(20px, 5vw, 64px);
  --max: 1240px;
  --shadow: 0 1px 0 rgba(14, 21, 18, 0.04), 0 18px 40px -28px rgba(14, 21, 18, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--stock);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  content: "";
  inset: 0;
  opacity: 0.32;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0, rgba(14, 21, 18, 0.025) 50%, transparent 100%);
}

a {
  color: inherit;
}

::selection {
  color: var(--ink);
  background: var(--mark);
}

:focus-visible {
  outline: 2px solid var(--seal);
  outline-offset: 3px;
  border-radius: 2px;
}

img,
svg {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

p {
  margin-top: 0;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -100px;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--seal-ink);
  background: var(--seal);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.tag,
.eyebrow,
.path-kicker,
.mini-label {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.demo-ribbon,
.demo-banner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  padding: 7px var(--gutter);
  color: rgba(243, 246, 240, 0.88);
  background: var(--seal);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.masthead,
.site-header,
.site-head {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--rule);
  background: rgba(239, 242, 236, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
}

.masthead-inner,
.masthead .wrap,
.site-header {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header {
  padding-inline: var(--gutter);
}

.mark-lockup,
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: var(--seal);
  text-decoration: none;
}

.brand-symbol {
  flex: 0 0 auto;
}

.wordmark,
.brand strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1;
}

.tagline,
.brand small {
  display: block;
  margin-top: 4px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav,
.site-header nav,
.site-head nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav a,
.site-header nav a,
.site-head nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  color: var(--ink-2);
  font-size: 14px;
  text-decoration: none;
}

.nav a:hover,
.site-header nav a:hover,
.site-head nav a:hover {
  border-bottom-color: var(--ink);
}

.btn,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid var(--seal);
  border-radius: 2px;
  color: var(--seal-ink);
  background: var(--seal);
  font-family: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 120ms ease, background-color 150ms ease, border-color 150ms ease;
}

.btn:hover,
.button:hover {
  background: var(--seal-hover);
  transform: translateY(-1px);
}

.btn--ghost,
.button.secondary {
  color: var(--ink);
  border-color: var(--rule);
  background: transparent;
}

.btn--ghost:hover,
.button.secondary:hover {
  border-color: var(--ink-3);
  background: var(--paper);
}

.btn--lg {
  min-height: 52px;
  padding: 15px 24px;
  font-size: 16px;
}

.btn--light {
  color: var(--seal);
  border-color: var(--seal-ink);
  background: var(--seal-ink);
}

.btn--light:hover {
  color: var(--seal);
  background: #ffffff;
}

.arrow {
  transition: transform 150ms ease;
}

.btn:hover .arrow,
.go:hover .arrow {
  transform: translateX(3px);
}

.quiet-link,
.text-link {
  color: var(--ink-2);
  font-size: 14px;
  text-underline-offset: 4px;
}

.quiet-link:hover,
.text-link:hover {
  color: var(--ink);
}

main {
  overflow: clip;
}

.hero {
  padding: clamp(38px, 5.5vw, 70px) 0 clamp(50px, 7vw, 86px);
}

.scope {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: clamp(26px, 4vw, 42px);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: start;
  gap: clamp(32px, 5vw, 68px);
}

h1,
h2,
h3 {
  color: var(--ink);
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.022em;
}

h1 {
  max-width: 14ch;
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.03;
}

h1 em {
  color: var(--seal);
  font-weight: 300;
}

h2 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 3.3vw, 39px);
  line-height: 1.12;
}

h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 42ch;
  margin: 0 0 26px;
  color: var(--ink-2);
  font-size: clamp(17px, 1.4vw, 19px);
  font-weight: 500;
  line-height: 1.45;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin-bottom: 24px;
}

.lede {
  max-width: 49ch;
  margin: 0 0 26px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
}

.lede strong {
  color: var(--ink);
  font-weight: 600;
}

.stance {
  max-width: 46ch;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}

.stance p {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.stance span {
  display: block;
  margin-top: 8px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
}

.viewer {
  min-width: 0;
}

.viewer-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 11px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: -1px;
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--rule);
  border-radius: 2px 2px 0 0;
  color: var(--ink-3);
  background: transparent;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease;
}

.tab:hover,
.tab--active {
  color: var(--ink);
  background: var(--paper);
}

.tab--active {
  border-bottom-color: var(--paper);
}

.dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--low);
}

.dot--critical {
  background: var(--critical);
}

.dot--high {
  background: var(--high);
}

.dot--medium {
  background: var(--medium);
}

.dot--refer {
  background: var(--refer);
}

.finding-card,
.card,
.ledger {
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: 0 2px 2px 2px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 22px;
  border-bottom: 1px solid var(--rule-2);
}

.severity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.severity--high {
  color: var(--high);
}

.severity--medium {
  color: var(--medium);
}

.severity--refer {
  color: var(--refer);
}

.card-body {
  padding: 22px 22px 6px;
}

.finding-title {
  margin: 0 0 10px;
  font-size: clamp(21px, 2vw, 25px);
  line-height: 1.18;
}

.finding-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule-2);
}

.finding-block {
  padding: 17px 0;
  border-bottom: 1px solid var(--rule-2);
}

.finding-block:last-child {
  border-bottom: 0;
}

.finding-block > .tag {
  display: block;
  margin-bottom: 9px;
}

.finding-block p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.6;
}

.quote {
  margin: 0;
  padding-left: 16px;
  border-left: 2px solid var(--rule);
  color: var(--ink);
  font-family: var(--display);
  font-size: 18.5px;
  line-height: 1.45;
}

mark {
  padding: 0.04em 0.1em;
  color: inherit;
  background: var(--mark);
}

.cite {
  display: block;
  margin-top: 10px;
}

.repair {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.repair p {
  flex: 1;
}

.effort {
  flex: 0 0 auto;
  padding: 4px 8px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 22px;
  border-top: 1px solid var(--rule-2);
  background: var(--paper-soft);
}

.band {
  border-block: 1px solid var(--rule);
  background: var(--paper);
}

.sec {
  padding-block: clamp(52px, 7vw, 90px);
}

.sec-head {
  max-width: 64ch;
  margin-bottom: clamp(32px, 4vw, 50px);
}

.sec-head p {
  max-width: 58ch;
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}

.questions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
}

.question {
  padding: 26px 24px 26px 0;
  border-right: 1px solid var(--rule-2);
}

.question:last-child {
  border-right: 0;
}

.question:not(:first-child) {
  padding-left: 24px;
}

.question .tag {
  display: block;
  margin-bottom: 14px;
}

.question h3 {
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.22;
}

.question p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
}

.method-link {
  margin: 22px 0 0;
}

.pricing-group + .pricing-group {
  margin-top: clamp(52px, 7vw, 82px);
  padding-top: clamp(42px, 6vw, 64px);
  border-top: 1px solid var(--rule);
}

.pricing-group-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  align-items: end;
  gap: 24px 40px;
  margin-bottom: 26px;
}

.pricing-group-head h3 {
  max-width: 30ch;
  margin: 10px 0 0;
  font-size: clamp(24px, 2.8vw, 33px);
}

.pricing-group-head p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  text-align: right;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.tier {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 22px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: var(--paper);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.tier:hover {
  border-color: var(--ink-3);
  box-shadow: 0 16px 34px -26px rgba(14, 21, 18, 0.5);
  transform: translateY(-2px);
}

.tier--featured {
  border-color: var(--seal);
  box-shadow: 0 1px 0 rgba(11, 59, 46, 0.14);
}

.flag {
  position: absolute;
  top: -1px;
  right: 20px;
  padding: 4px 9px;
  border-radius: 2px;
  color: var(--seal-ink);
  background: var(--seal);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.tier-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.tier-name {
  color: var(--ink);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.014em;
  line-height: 1.15;
}

.tier-price {
  color: var(--seal);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  white-space: nowrap;
}

.tier-question {
  min-height: 3.1em;
  margin: 0 0 20px;
  color: var(--ink-2);
  font-family: var(--display);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
}

.tier ul {
  margin: 0 0 22px;
  padding: 0;
  border-top: 1px solid var(--rule-2);
  list-style: none;
}

.tier li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--rule-2);
  color: var(--ink-2);
  font-size: 14px;
}

.tier li::before {
  content: "·";
  color: var(--seal);
  font-weight: 700;
}

.tier-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--seal);
  font-size: 13px;
  font-weight: 600;
  text-align: right;
  text-decoration: none;
}

.release-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 24px;
  padding: 20px 24px;
  border: 1px dashed var(--rule);
  border-radius: 2px;
}

.release-note p {
  flex: 1;
  min-width: 260px;
  margin: 0;
  color: var(--ink-2);
  font-family: var(--display);
  font-size: 18px;
}

.verdict {
  padding: 4px 8px;
  border: 1px solid rgba(11, 59, 46, 0.35);
  border-radius: 2px;
  color: var(--seal);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(34px, 6vw, 76px);
}

.process-intro {
  margin-bottom: 0;
}

.process-intro .btn {
  margin-top: 24px;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule-2);
}

.process-list .step {
  color: var(--seal);
  font-family: var(--display);
  font-size: 25px;
}

.process-list strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
}

.process-list p {
  margin: 4px 0 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
}

.boundary-section {
  border-bottom: 1px solid var(--rule);
}

.boundary-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(34px, 6vw, 76px);
}

.boundary-grid h2 {
  max-width: 15ch;
}

.boundary-grid p {
  margin: 12px 0 18px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
}

.closer {
  color: var(--seal-ink);
  background: var(--seal);
}

.closer-inner {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-block: clamp(44px, 6vw, 68px);
}

.closer .tag {
  color: rgba(243, 246, 240, 0.58);
}

.closer h2 {
  max-width: 20ch;
  color: var(--seal-ink);
}

.closer p {
  max-width: 52ch;
  margin: 0;
  color: rgba(243, 246, 240, 0.75);
  font-size: 15px;
}

.site-footer,
footer {
  padding: clamp(38px, 5vw, 58px) 0 30px;
  background: var(--stock);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--rule);
}

.footer-about p {
  max-width: 38ch;
  margin: 16px 0 0;
  color: var(--ink-2);
  font-size: 14px;
}

.footer-wordmark {
  font-size: 18px;
}

.footer-col h3 {
  margin: 0 0 14px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  color: var(--ink-2);
  font-size: 14px;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-col p {
  margin: 7px 0 0;
  color: var(--ink-3);
  font-size: 12px;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
}

/* Interior pages */
.article-hero {
  padding: clamp(54px, 8vw, 92px) 0 clamp(38px, 6vw, 62px);
  border-bottom: 1px solid var(--rule);
}

.article-hero h1 {
  max-width: 18ch;
  margin-top: 12px;
}

.article-lead {
  max-width: 66ch;
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
}

.article-page {
  overflow: visible;
}

.article-section {
  padding-block: clamp(46px, 6.5vw, 76px);
  border-bottom: 1px solid var(--rule);
}

.article-section:nth-child(even) {
  background: var(--paper);
}

.article-section > .wrap > p:not(.eyebrow):not(.sample-note):not(.caption) {
  max-width: 76ch;
  color: var(--ink-2);
  line-height: 1.7;
}

.definition-grid,
.privacy-facts,
.intake-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.definition-grid article,
.privacy-facts article,
.intake-card {
  padding: 24px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(253, 253, 251, 0.68);
}

.definition-grid h3,
.privacy-facts h3,
.intake-card h3 {
  font-size: 21px;
}

.definition-grid p,
.privacy-facts p,
.intake-card p,
.intake-card li {
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.65;
}

.layer-list,
.question-list,
.plain-list,
.clean-list {
  max-width: 78ch;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.layer-list {
  counter-reset: layer;
}

.layer-list li,
.question-list li {
  position: relative;
  padding: 18px 0 18px 54px;
  border-top: 1px solid var(--rule);
  color: var(--ink-2);
  line-height: 1.65;
}

.layer-list li {
  counter-increment: layer;
}

.layer-list li::before {
  position: absolute;
  content: counter(layer, decimal-leading-zero);
  top: 18px;
  left: 0;
  color: var(--seal);
  font-family: var(--mono);
  font-size: 12px;
}

.layer-list strong {
  color: var(--ink);
}

.plain-list li,
.clean-list li {
  position: relative;
  margin: 0;
  padding: 11px 0 11px 20px;
  border-top: 1px solid var(--rule-2);
  color: var(--ink-2);
}

.plain-list li::before,
.clean-list li::before {
  position: absolute;
  content: "·";
  left: 2px;
  color: var(--seal);
  font-weight: 700;
}

.signoff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px 0 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.signoff-grid div {
  padding: 20px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.signoff-grid dt {
  margin-bottom: 7px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signoff-grid dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 18px;
}

.sample-note,
.start-callout {
  max-width: 78ch;
  margin: 28px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--seal);
  color: var(--ink-2);
  background: var(--paper);
  font-size: 14px;
  line-height: 1.65;
}

.sample-note strong,
.start-callout strong {
  color: var(--ink);
}

.sample-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.sample-meta div {
  padding: 18px 20px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.sample-meta span,
.sample-meta strong {
  display: block;
}

.sample-meta span {
  margin-bottom: 6px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sample-meta strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
}

.table-wrap {
  max-width: 100%;
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid var(--rule);
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule-2);
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--seal-ink);
  background: var(--seal);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.status,
.pill {
  width: max-content;
  display: inline-flex;
  align-items: center;
  padding: 4px 7px;
  border-radius: 2px;
  color: #ffffff;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.status.source,
.pill.ok {
  background: var(--seal);
}

.status.unsupported,
.pill.warn {
  background: var(--refer);
}

.status.inferred,
.status.assumed,
.pill.hold {
  background: var(--low);
}

.pill.stop {
  background: var(--critical);
}

.caption {
  max-width: 76ch;
  margin: 14px 0 0;
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.6;
}

.question-list {
  counter-reset: question;
}

.question-list li {
  counter-increment: question;
}

.question-list li::before {
  position: absolute;
  content: counter(question, decimal-leading-zero);
  top: 18px;
  left: 0;
  color: var(--seal);
  font-family: var(--mono);
  font-size: 12px;
}

.sample-finding {
  scroll-margin-top: 100px;
}

.sample-finding + .sample-finding {
  margin-top: 26px;
}

.start-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(34px, 6vw, 76px);
}

.start-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.start-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}

.start-steps li > span {
  color: var(--seal);
  font-family: var(--display);
  font-size: 24px;
}

.start-steps strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
}

.start-steps p {
  margin: 5px 0 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
}

.email-template {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--rule);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.email-template pre {
  margin: 14px 0 0;
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.65;
  white-space: pre-wrap;
}

.start-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin-top: 24px;
}

.not-found {
  min-height: 64vh;
  display: grid;
  place-items: center;
  padding: var(--gutter);
}

.not-found-card {
  width: min(680px, 100%);
  padding: clamp(30px, 6vw, 58px);
  border: 1px solid var(--rule);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.not-found-card h1 {
  max-width: 14ch;
}

.not-found-card p:not(.eyebrow) {
  max-width: 54ch;
  color: var(--ink-2);
}

@media (max-width: 1040px) {
  .nav,
  .site-header nav,
  .site-head nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  h1 {
    max-width: 18ch;
  }

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

  .question {
    border-bottom: 1px solid var(--rule-2);
  }

  .question:nth-child(2n) {
    padding-left: 24px;
    border-right: 0;
  }

  .question:nth-child(2n + 1) {
    padding-left: 0;
  }

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

  .tier-question {
    min-height: 0;
  }

  .process-layout,
  .boundary-grid,
  .start-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .masthead-cta {
    margin-left: auto;
  }

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

  .pricing-group-head p {
    max-width: 52ch;
    text-align: left;
  }

  .definition-grid,
  .privacy-facts,
  .intake-grid,
  .signoff-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .demo-ribbon,
  .demo-banner {
    letter-spacing: 0.08em;
  }

  .masthead-inner,
  .masthead .wrap,
  .site-header {
    min-height: 62px;
    gap: 14px;
  }

  .tagline,
  .brand small {
    display: none;
  }

  .wordmark,
  .brand strong {
    font-size: 18px;
  }

  .masthead-cta {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .masthead-cta .arrow {
    display: none;
  }

  .hero {
    padding-top: 30px;
  }

  .scope {
    gap: 7px 14px;
  }

  .viewer-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .tab {
    font-size: 10px;
  }

  .card-top,
  .card-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-body {
    padding-inline: 18px;
  }

  .repair {
    flex-direction: column;
  }

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

  .question,
  .question:nth-child(2n),
  .question:nth-child(2n + 1) {
    padding-inline: 0;
    border-right: 0;
  }

  .tier {
    padding-inline: 20px;
  }

  .tier-top,
  .tier-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .tier-price {
    font-size: 28px;
  }

  .go {
    text-align: left;
  }

  .release-note p {
    min-width: 0;
  }

  .closer-inner {
    align-items: flex-start;
  }

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

  .footer-base {
    flex-direction: column;
  }

  .article-hero h1 {
    font-size: clamp(36px, 12vw, 50px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
+
/* Report-first release candidate and staged transaction flow */
[hidden] {
  display: none !important;
}

section[id] {
  scroll-margin-top: 110px;
}

.nav a[aria-current="location"],
.section-rail a[aria-current="location"] {
  color: var(--seal);
  border-bottom-color: var(--seal);
}

.section-rail {
  display: none;
  position: sticky;
  z-index: 45;
  top: 70px;
  border-bottom: 1px solid var(--rule);
  background: rgba(253, 253, 251, 0.97);
}

.section-rail .wrap {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.section-rail a {
  flex: 0 0 auto;
  padding: 10px 0 9px;
  border-bottom: 1px solid transparent;
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.pricing-heading {
  margin-bottom: 24px;
}

.pricing-switch {
  width: max-content;
  display: flex;
  gap: 2px;
  margin-bottom: 32px;
  padding: 3px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: var(--paper-soft);
}

.pricing-switch button {
  min-width: 128px;
  padding: 10px 16px;
  border: 0;
  border-radius: 1px;
  color: var(--ink-2);
  background: transparent;
  font: 600 14px/1.2 var(--text);
  cursor: pointer;
}

.pricing-switch button[aria-selected="true"] {
  color: var(--seal-ink);
  background: var(--seal);
}

.pricing-panel {
  min-height: 440px;
}

.release-note a.verdict {
  color: var(--seal);
  text-decoration: none;
}

.testimonial-section {
  padding-block: clamp(58px, 8vw, 96px);
  border-block: 1px solid var(--rule);
  background: var(--paper);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
}

.testimonial-grid blockquote {
  max-width: 24ch;
  margin: 18px 0 24px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 43px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  display: block;
  flex: 0 0 auto;
  border: 1px solid var(--rule);
  border-radius: 50%;
  background: var(--paper-soft);
  object-fit: cover;
  object-position: 50% 38%;
}

.testimonial-person p {
  margin: 0;
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person strong {
  font-size: 14px;
}

.testimonial-person p span {
  margin-top: 3px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.testimonial-note {
  padding: 26px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.testimonial-facts {
  margin: 0;
}

.testimonial-facts div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}

.testimonial-facts div:last-child {
  border-bottom: 0;
}

.testimonial-facts dt {
  font-family: var(--display);
  font-size: 27px;
}

.testimonial-facts dd {
  margin: 0;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.55;
}

.about-section {
  border-bottom: 1px solid var(--rule);
  background: var(--stock);
}

.about-section p {
  color: var(--ink-2);
  line-height: 1.7;
}

.about-section strong {
  color: var(--ink);
}

.masthead-help {
  flex: 0 0 auto;
}

button:disabled,
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

/* Intake */
.intake-main {
  overflow: visible;
}

.intake-hero {
  padding-bottom: 38px;
}

.service-status {
  max-width: 760px;
  margin-top: 24px;
  padding: 13px 16px;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--refer);
  color: var(--ink-2);
  background: var(--paper);
  font-size: 14px;
}

.service-status--ready {
  border-left-color: var(--seal);
}

.service-status--blocked {
  border-left-color: var(--high);
}

.intake-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: start;
  gap: clamp(32px, 6vw, 74px);
}

.intake-work {
  min-width: 0;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 34px;
  padding: 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.form-progress li {
  position: relative;
  padding: 13px 8px 0 0;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-progress li::before {
  position: absolute;
  content: "";
  top: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--seal);
  transition: width 180ms ease;
}

.form-progress li[aria-current="step"],
.form-progress li.is-complete {
  color: var(--seal);
}

.form-progress li[aria-current="step"]::before,
.form-progress li.is-complete::before {
  width: 100%;
}

.form-progress li span {
  margin-right: 5px;
}

.form-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step legend {
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(27px, 3.2vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.form-step legend .tag {
  display: block;
  margin-bottom: 9px;
}

.field-help {
  max-width: 64ch;
  margin: 0 0 24px;
  color: var(--ink-2);
}

.package-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 26px;
}

.package-option {
  min-width: 0;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 16px;
  border: 1px solid var(--rule);
  background: var(--paper);
  cursor: pointer;
}

.package-option:hover,
.package-option:has(input:checked) {
  border-color: var(--seal);
}

.package-option:has(input:checked) {
  box-shadow: inset 3px 0 0 var(--seal);
}

.package-option input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--seal);
}

.package-option strong,
.package-option small {
  display: block;
}

.package-option strong {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
}

.package-option small {
  margin-top: 3px;
  color: var(--ink-3);
  font-size: 11px;
  line-height: 1.35;
}

.package-option b {
  color: var(--seal);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
}

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

.field--wide {
  grid-column: 1 / -1;
}

.field {
  display: block;
}

.field > span {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--rule);
  border-radius: 1px;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.35 var(--text);
}

.field input:focus,
.field select:focus {
  border-color: var(--seal);
  outline: 2px solid rgba(11, 59, 46, 0.14);
  outline-offset: 0;
}

.step-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}

.confirm-list {
  display: grid;
  gap: 11px;
}

.confirm-list label {
  display: grid;
  grid-template-columns: 21px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  padding: 14px 15px;
  border: 1px solid var(--rule-2);
  background: var(--paper);
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
}

.confirm-list input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--seal);
}

.checkout-summary {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--rule);
  background: var(--paper-soft);
}

.checkout-summary p {
  margin: 9px 0 4px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 24px;
}

.checkout-summary small {
  color: var(--ink-3);
  line-height: 1.55;
}

.turnstile-container {
  min-height: 70px;
  margin-top: 20px;
}

.form-message {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--high);
  color: var(--ink-2);
  background: var(--paper);
}

.form-message[data-type="success"] {
  border-left-color: var(--seal);
}

.form-message[data-type="info"] {
  border-left-color: var(--refer);
}

.intake-aside {
  position: sticky;
  top: 102px;
  padding: 24px;
  border: 1px solid var(--rule);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.intake-aside h2 {
  margin-top: 8px;
  font-size: 30px;
}

.intake-aside dl {
  margin: 22px 0;
  border-top: 1px solid var(--rule);
}

.intake-aside dl div {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-2);
}

.intake-aside dt {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intake-aside dd {
  margin: 0;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.5;
}

.intake-aside > p {
  margin: 0;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.6;
}

.upload-panel {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--rule);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.upload-panel h2 {
  margin-top: 10px;
}

.upload-panel > p {
  max-width: 64ch;
  color: var(--ink-2);
}

.upload-drop {
  min-height: 150px;
  display: grid;
  place-items: center;
  margin-top: 22px;
  padding: 24px;
  border: 1px dashed var(--ink-3);
  background: var(--paper-soft);
  text-align: center;
  cursor: pointer;
}

.upload-drop strong,
.upload-drop small {
  display: block;
}

.upload-drop strong {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 400;
}

.upload-drop small {
  margin: 6px 0 14px;
  color: var(--ink-3);
}

.upload-drop input {
  max-width: 100%;
}

.upload-list {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

.upload-list div {
  padding: 10px 12px;
  border: 1px solid var(--rule-2);
  color: var(--ink-2);
  background: var(--paper-soft);
  font-size: 13px;
}

@media (max-width: 1040px) {
  .section-rail {
    display: block;
  }

  .intake-shell,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .intake-aside {
    position: static;
    order: -1;
  }

  .pricing-panel {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .section-rail {
    top: 62px;
  }

  .masthead-help {
    display: none;
  }

  .package-options,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .field--wide {
    grid-column: auto;
  }

  .form-progress li {
    font-size: 8px;
    letter-spacing: 0.04em;
  }

  .form-progress li span {
    display: block;
    margin-bottom: 3px;
  }

  .pricing-switch {
    width: 100%;
  }

  .pricing-switch button {
    min-width: 0;
    flex: 1;
  }
}
