:root {
  color-scheme: light;
  --ink: #101418;
  --ink-soft: #252c30;
  --paper: #f6f5f1;
  --white: #fff;
  --line: #d9ddd9;
  --muted: #71777a;
  --green: #27c281;
  --green-deep: #117c51;
  --green-pale: #e6f6ee;
  --warning: #f4c96b;
  --shadow: 0 28px 70px rgba(16, 20, 24, .11);
  --radius: 18px;
  --radius-small: 10px;
  --page-width: 1200px;
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--paper);
}

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

body,
button,
input,
textarea {
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .2em;
}

button,
input,
textarea {
  font-size: inherit;
}

button {
  color: inherit;
}

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

::selection {
  color: var(--ink);
  background: rgba(39, 194, 129, .35);
}

.wrap {
  width: min(calc(100% - 48px), var(--page-width));
  margin-inline: auto;
}

.mono,
.eyebrow,
.section-index,
.data-label,
.fine-label,
.status-label,
.step-count,
.case-code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.eyebrow,
.section-index,
.data-label,
.fine-label,
.status-label,
.case-code {
  font-size: 11px;
  font-weight: 650;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-deep);
}

.eyebrow::before {
  width: 21px;
  height: 1px;
  background: currentColor;
  content: "";
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--green);
  border-radius: 7px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(16, 20, 24, .11);
}

.header-dark {
  color: var(--paper);
  background: var(--ink);
  border-color: rgba(246, 245, 241, .14);
}

.header-light {
  color: var(--ink);
  background: var(--paper);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  color: inherit;
  text-decoration: none;
  line-height: 1;
}

.brand-name {
  font-size: 15px;
  font-weight: 750;
  letter-spacing: .19em;
}

.brand-subtitle {
  margin-top: 6px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 8px;
  letter-spacing: .23em;
  text-transform: uppercase;
}

.header-dark .brand-subtitle {
  color: #aab3b4;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 2.2vw, 30px);
}

.main-nav a {
  color: inherit;
  font-size: 12px;
  font-weight: 560;
  text-decoration: none;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--green-deep);
}

.header-dark .main-nav a:hover,
.header-dark .main-nav a[aria-current="page"] {
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.locale-toggle {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  font-weight: 650;
}

.locale-toggle:hover {
  color: var(--green);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  transition: background 170ms ease, border-color 170ms ease, color 170ms ease, transform 170ms ease;
}

.button svg,
.text-link svg {
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--green);
}

.button-primary:hover {
  background: #43d392;
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-dark:hover {
  background: #242e32;
}

.button-outline {
  color: inherit;
  background: transparent;
  border-color: currentColor;
}

.button-outline:hover {
  color: var(--green-deep);
  border-color: var(--green-deep);
}

.header-dark .button-outline:hover {
  color: var(--green);
  border-color: var(--green);
}

.button:disabled {
  cursor: not-allowed;
  opacity: .52;
  transform: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
}

.page-home .site-header {
  border-color: rgba(246, 245, 241, .14);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(ellipse at 74% 46%, rgba(39, 194, 129, .08), transparent 38%),
    var(--ink);
}

.hero-inner {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  padding-top: 58px;
  padding-bottom: 74px;
}

.hero-copy {
  max-width: 610px;
  padding-block: 20px;
}

.hero .eyebrow {
  color: var(--green);
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

.hero h1 {
  max-width: 690px;
  margin: 24px 0 24px;
  font-size: clamp(54px, 6.2vw, 88px);
  font-weight: 620;
  letter-spacing: -.068em;
  line-height: .99;
}

.hero h1 span {
  display: block;
}

.hero-subtitle {
  max-width: 510px;
  margin-bottom: 0;
  color: rgba(246, 245, 241, .77);
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.55;
}

.hero-support {
  max-width: 490px;
  margin: 15px 0 0;
  color: #aab3b4;
  font-size: 14px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  font-size: 13px;
  font-weight: 620;
  text-decoration: none;
}

.text-link span {
  border-bottom: 1px solid rgba(246, 245, 241, .5);
  padding-bottom: 2px;
}

.text-link:hover span {
  border-color: var(--green);
}

.hero-bottomline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 66px;
  color: #aab3b4;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-bottomline::after {
  height: 1px;
  flex: 1 1 auto;
  background: #42494c;
  content: "";
}

.hero-visual {
  position: relative;
  padding: 25px;
  border: 1px solid rgba(246, 245, 241, .2);
  border-radius: 12px;
  background: rgba(255, 255, 255, .025);
  box-shadow: 0 28px 100px rgba(0, 0, 0, .18);
}

.hero-visual::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(246, 245, 241, .06);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.visual-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 3px 3px 22px;
}

.visual-heading .fine-label {
  color: #c4cdcc;
}

.visual-tag {
  padding: 6px 8px;
  color: var(--green);
  border: 1px solid rgba(39, 194, 129, .4);
  border-radius: 4px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 8px;
  letter-spacing: .13em;
}

.flow-map {
  position: relative;
  display: grid;
  min-height: 320px;
  grid-template-columns: minmax(115px, .9fr) minmax(128px, 1fr) minmax(130px, .94fr);
  align-items: center;
  gap: 15px;
}

.flow-map::before,
.flow-map::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  width: 19%;
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 221, 217, .06), rgba(217, 221, 217, .62));
  content: "";
}

.flow-map::before {
  left: 27%;
}

.flow-map::after {
  right: 27%;
  transform: rotate(180deg);
}

.flow-column {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.flow-column-label {
  margin-bottom: 2px;
  color: #aab3b4;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 8px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.flow-node {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  color: #dfe5e1;
  background: #151c20;
  border: 1px solid #394246;
  border-radius: 6px;
  font-size: 10px;
  line-height: 1.25;
}

.flow-node-mark {
  display: grid;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(39, 194, 129, .65);
  border-radius: 50%;
  font-size: 9px;
}

.flow-node-result {
  border-color: rgba(39, 194, 129, .47);
}

.flow-core {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 154px;
  place-items: center;
  padding: 17px 10px;
  text-align: center;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: linear-gradient(140deg, rgba(39, 194, 129, .12), rgba(16, 20, 24, .93) 52%);
  box-shadow: 0 0 0 6px rgba(39, 194, 129, .035);
}

.core-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin: 0 auto 10px;
  color: var(--green);
  border: 1px solid rgba(39, 194, 129, .6);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 500;
}

.core-title {
  margin: 0;
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
}

.core-subtitle {
  margin: 6px 0 0;
  color: #aab3b4;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 7px;
  letter-spacing: .08em;
  line-height: 1.7;
  text-transform: uppercase;
}

.visual-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 20px 3px 1px;
  padding-top: 15px;
  color: #aab3b4;
  border-top: 1px solid rgba(246, 245, 241, .12);
  font-size: 10px;
}

.visual-caption strong {
  color: var(--green);
  font-weight: 600;
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-tight {
  padding: 62px 0;
}

.section-light {
  background: var(--paper);
}

.section-white {
  background: var(--white);
}

.section-dark {
  color: var(--paper);
  background: var(--ink);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, .56fr);
  align-items: end;
  gap: 38px;
  margin-bottom: 44px;
}

.section-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.section-index span {
  color: var(--green-deep);
}

.section-dark .section-index {
  color: #aab3b4;
}

.section-dark .section-index span {
  color: var(--green);
}

.section-title {
  max-width: 750px;
  margin: 15px 0 0;
  font-size: clamp(36px, 4.3vw, 57px);
  font-weight: 570;
  letter-spacing: -.052em;
  line-height: 1.05;
}

.section-intro {
  max-width: 435px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.section-dark .section-intro {
  color: #b5bdbc;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.principle {
  min-height: 280px;
  padding: 29px;
  background: rgba(255, 255, 255, .35);
}

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

.principle-number {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 37px;
  color: var(--green-deep);
  border: 1px solid var(--green-deep);
  border-radius: 50%;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
}

.principle h3 {
  max-width: 285px;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 610;
  letter-spacing: -.035em;
  line-height: 1.2;
}

.principle p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.process-section {
  overflow: hidden;
}

.process-introline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: #aab3b4;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.process-introline::after {
  height: 1px;
  flex: 1;
  background: #495255;
  content: "";
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 210px;
  padding: 0 21px 0 0;
  counter-increment: process;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 20px;
  left: 42px;
  width: calc(100% - 58px);
  height: 1px;
  background: linear-gradient(90deg, var(--green), #5a6465);
  content: "";
}

.process-dot {
  position: relative;
  z-index: 1;
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--paper);
  background: #171f22;
  border: 1px solid #788281;
  border-radius: 50%;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
}

.process-step:first-child .process-dot {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
}

.process-step h3 {
  max-width: 170px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 630;
  letter-spacing: -.02em;
  line-height: 1.35;
}

.process-step p {
  max-width: 185px;
  margin: 0;
  color: #aab3b4;
  font-size: 12px;
  line-height: 1.6;
}

.process-outcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid #3b4447;
}

.process-outcome p {
  max-width: 600px;
  margin: 0;
  color: #aab3b4;
  font-size: 13px;
}

.process-outcome strong {
  color: var(--paper);
  font-weight: 570;
}

.delegation-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(36px, 8vw, 110px);
}

.delegation-copy h2 {
  max-width: 480px;
  margin: 18px 0 18px;
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 570;
  letter-spacing: -.055em;
  line-height: 1.03;
}

.delegation-copy > p {
  max-width: 410px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.cost-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.cost-chip {
  padding: 7px 10px;
  color: #42494c;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
}

.delegation-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.delegation-card {
  min-height: 287px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .55);
}

.delegation-card-highlight {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--green-deep);
}

.delegation-card .fine-label {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
}

.delegation-card-highlight .fine-label {
  color: var(--green);
}

.delegation-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delegation-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #51595b;
  font-size: 12px;
}

.delegation-card-highlight .delegation-list li {
  color: var(--paper);
}

.delegation-list li::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: #9ba3a1;
  border-radius: 50%;
  content: "";
}

.delegation-card-highlight .delegation-list li::before {
  background: var(--green);
}

.delegation-result {
  display: grid;
  min-height: 132px;
  place-items: center;
  align-content: center;
  margin-top: 14px;
  text-align: center;
  border: 1px solid rgba(39, 194, 129, .38);
  border-radius: 9px;
}

.delegation-result span {
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.delegation-result strong {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 620;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.responsibility-card {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.responsibility-card::before {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  margin-bottom: 34px;
  color: var(--green-deep);
  border: 1px solid rgba(17, 124, 81, .42);
  border-radius: 9px;
  content: attr(data-mark);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.responsibility-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 620;
  letter-spacing: -.035em;
  line-height: 1.2;
}

.responsibility-card p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.responsibility-card ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.responsibility-card li {
  display: flex;
  gap: 9px;
  color: #51595b;
  font-size: 11px;
}

.responsibility-card li::before {
  color: var(--green-deep);
  content: "—";
}

.responsibility-close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 21px 23px;
  border-radius: 10px;
  background: #eaece7;
}

.responsibility-close p {
  max-width: 680px;
  margin: 0;
  color: #42494c;
  font-size: 13px;
  line-height: 1.65;
}

.responsibility-close p strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 14px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.trust-card {
  min-height: 290px;
  padding: 26px;
  border: 1px solid #3e484b;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012));
}

.trust-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}

.trust-icon {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(39, 194, 129, .52);
  border-radius: 50%;
}

.trust-card .fine-label {
  color: #aab3b4;
}

.trust-card h3 {
  margin-bottom: 11px;
  color: var(--paper);
  font-size: 21px;
  font-weight: 590;
  letter-spacing: -.035em;
}

.trust-card p {
  max-width: 350px;
  margin: 0;
  color: #b5bdbc;
  font-size: 13px;
  line-height: 1.7;
}

.evidence-types {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.evidence-types span {
  padding: 6px 8px;
  color: #d3dad6;
  border: 1px solid #495255;
  border-radius: 4px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 8px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(36px, 7vw, 90px);
}

.access-copy h2 {
  max-width: 480px;
  margin: 18px 0;
  font-size: clamp(38px, 4.3vw, 56px);
  font-weight: 580;
  letter-spacing: -.055em;
  line-height: 1.05;
}

.access-copy p {
  max-width: 430px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.access-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .65);
}

.access-node {
  display: grid;
  width: 122px;
  min-height: 103px;
  place-items: center;
  align-content: center;
  padding: 12px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.access-node span {
  color: var(--green-deep);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: .12em;
}

.access-node strong {
  margin-top: 9px;
  font-size: 12px;
  font-weight: 620;
  line-height: 1.3;
}

.access-node:last-child {
  border-color: var(--green-deep);
}

.access-arrow {
  color: var(--muted);
  font-size: 17px;
}

.access-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.access-note::before {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 5px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 38px;
}

.proof-intro h2 {
  max-width: 540px;
  margin: 18px 0;
  font-size: clamp(38px, 4.2vw, 55px);
  font-weight: 570;
  letter-spacing: -.053em;
  line-height: 1.04;
}

.proof-intro p {
  max-width: 470px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.proof-template {
  padding: 24px;
  border: 1px solid #3e484b;
  border-radius: 12px;
  background: var(--ink);
  color: var(--paper);
}

.proof-template .status-label {
  color: var(--warning);
}

.proof-template h3 {
  margin: 14px 0 21px;
  font-size: 20px;
  font-weight: 580;
  letter-spacing: -.03em;
}

.proof-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.proof-path span {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 10px;
  color: #d2dad6;
  border: 1px solid #465154;
  border-radius: 6px;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

.proof-disclosure {
  margin: 18px 0 0;
  color: #aab3b4;
  font-size: 11px;
  line-height: 1.55;
}

.proof-disclosure strong {
  color: var(--warning);
  font-weight: 590;
}

.closing {
  padding: clamp(70px, 9vw, 110px) 0;
  color: var(--paper);
  background: var(--ink);
}

.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px clamp(24px, 5vw, 68px);
  border: 1px solid #394447;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 85% 40%, rgba(39, 194, 129, .1), transparent 42%),
    #151c20;
}

.closing-copy {
  max-width: 660px;
}

.closing h2 {
  margin: 16px 0 12px;
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 570;
  letter-spacing: -.052em;
  line-height: 1.03;
}

.closing p {
  max-width: 610px;
  margin: 0;
  color: #b5bdbc;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer {
  padding: 34px 0;
  color: #cbd1cf;
  background: var(--ink);
  border-top: 1px solid #394447;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand {
  color: var(--paper);
}

.footer-note {
  max-width: 330px;
  margin: 14px 0 0;
  color: #aab3b4;
  font-size: 11px;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 13px 22px;
  max-width: 520px;
}

.footer-links a,
.footer-contact a {
  color: #cbd1cf;
  font-size: 11px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--green);
}

.footer-contact {
  display: flex;
  gap: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 17px;
  color: #7f898a;
  border-top: 1px solid #30383b;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: .08em;
}

.page-hero {
  padding: clamp(70px, 9vw, 108px) 0 clamp(58px, 7vw, 82px);
  color: var(--paper);
  background:
    radial-gradient(ellipse at 78% 40%, rgba(39, 194, 129, .08), transparent 40%),
    var(--ink);
}

.page-hero .eyebrow {
  color: var(--green);
}

.page-hero h1 {
  max-width: 880px;
  margin: 20px 0 21px;
  font-size: clamp(44px, 6.4vw, 76px);
  font-weight: 580;
  letter-spacing: -.06em;
  line-height: 1.02;
}

.page-hero p {
  max-width: 650px;
  margin: 0;
  color: #c0c8c5;
  font-size: 17px;
  line-height: 1.65;
}

.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 27px;
  color: #aab3b4;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.page-hero-meta::before {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.page-content {
  padding: clamp(62px, 8vw, 98px) 0;
}

.content-narrow {
  max-width: 820px;
}

.content-title {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 570;
  letter-spacing: -.052em;
  line-height: 1.06;
}

.content-lead {
  max-width: 670px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 35px;
}

.feature-item {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, .46);
}

.feature-item .fine-label {
  display: block;
  margin-bottom: 18px;
  color: var(--green-deep);
}

.feature-item h3 {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 620;
  letter-spacing: -.025em;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.boundary-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 30px;
  padding: 19px 21px;
  border-left: 3px solid var(--green-deep);
  background: #e8efea;
}

.boundary-card p {
  margin: 0;
  color: #3c4746;
  font-size: 13px;
  line-height: 1.65;
}

.boundary-card strong {
  color: var(--ink);
  font-weight: 650;
}

.workflow {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 830px;
  margin: 25px auto 0;
}

.workflow-row {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 19px;
  min-height: 127px;
}

.workflow-row:not(:last-child)::before {
  position: absolute;
  top: 48px;
  bottom: 0;
  left: 27px;
  width: 1px;
  background: #b7c2bd;
  content: "";
}

.workflow-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #aeb8b4;
  border-radius: 50%;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
}

.workflow-row:first-child .workflow-number,
.workflow-row:last-child .workflow-number {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
}

.workflow-copy {
  padding: 6px 0 31px;
}

.workflow-copy h3 {
  margin-bottom: 5px;
  font-size: 19px;
  font-weight: 620;
  letter-spacing: -.025em;
}

.workflow-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.process-callout {
  margin-top: 34px;
  padding: 25px;
  color: var(--paper);
  border-radius: 11px;
  background: var(--ink);
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -.035em;
  line-height: 1.42;
}

.process-callout span {
  color: var(--green);
}

.trust-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 35px;
}

.trust-pillar {
  min-height: 270px;
  padding: 25px;
  color: var(--paper);
  border: 1px solid #3d474a;
  border-radius: 11px;
  background: var(--ink);
}

.trust-pillar .fine-label {
  color: var(--green);
}

.trust-pillar h3 {
  margin: 37px 0 11px;
  font-size: 21px;
  font-weight: 590;
  letter-spacing: -.03em;
}

.trust-pillar p {
  margin: 0;
  color: #b5bdbc;
  font-size: 12px;
  line-height: 1.7;
}

.access-matrix {
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.access-row {
  display: grid;
  grid-template-columns: minmax(140px, .55fr) minmax(0, 1.45fr);
  gap: 22px;
  padding: 20px 23px;
  background: rgba(255, 255, 255, .48);
}

.access-row + .access-row {
  border-top: 1px solid var(--line);
}

.access-row strong {
  font-size: 14px;
  font-weight: 620;
}

.access-row p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.example-evidence {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.example-evidence div {
  min-height: 115px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.example-evidence span {
  display: block;
  margin-bottom: 15px;
  color: var(--green-deep);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: .12em;
}

.example-evidence strong {
  font-size: 12px;
  font-weight: 620;
}

.illustrative-label {
  display: inline-flex;
  padding: 7px 9px;
  color: #745c24;
  border: 1px solid #d8bd77;
  border-radius: 4px;
  background: #fff8e7;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.case-spec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 26px;
}

.case-spec div {
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.case-spec span {
  display: block;
  margin-bottom: 11px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.case-spec strong {
  font-size: 13px;
  font-weight: 620;
}

.maturity-ladder {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 10px;
  margin-top: 44px;
  padding-bottom: 15px;
  border-bottom: 1px solid #89918f;
}

.maturity-step {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: flex-end;
}

.maturity-bar {
  min-height: var(--bar-height, 45px);
  margin-bottom: 13px;
  border: 1px solid #778280;
  border-bottom: 2px solid #778280;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(39, 194, 129, .06), rgba(39, 194, 129, 0));
}

.maturity-step.current .maturity-bar {
  border-color: var(--green-deep);
  background: rgba(39, 194, 129, .23);
}

.maturity-step.future .maturity-bar {
  border-style: dashed;
  opacity: .65;
}

.maturity-step strong {
  min-height: 34px;
  font-size: 10px;
  font-weight: 570;
  line-height: 1.35;
}

.maturity-step span {
  margin-top: 5px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 8px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.direction-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 17px;
  color: var(--muted);
  font-size: 11px;
}

.direction-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.direction-legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 2px;
}

.direction-legend .future-key i {
  background: transparent;
  border: 1px dashed var(--muted);
}

.intake-layout {
  display: grid;
  grid-template-columns: minmax(250px, .64fr) minmax(0, 1.36fr);
  align-items: start;
  gap: clamp(34px, 7vw, 90px);
}

.intake-aside {
  position: sticky;
  top: 30px;
}

.intake-aside h1 {
  margin: 16px 0 14px;
  font-size: clamp(36px, 4.2vw, 52px);
  font-weight: 590;
  letter-spacing: -.052em;
  line-height: 1.04;
}

.intake-aside > p {
  max-width: 355px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.intake-aside-note {
  margin-top: 27px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.intake-card {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.intake-progress {
  position: relative;
  height: 2px;
  margin-bottom: 12px;
  background: #e2e6e3;
}

.intake-progress::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 20%;
  background: var(--green-deep);
  content: "";
  transition: width 220ms ease;
}

.intake-progress[data-current-step="2"]::before { width: 40%; }
.intake-progress[data-current-step="3"]::before { width: 60%; }
.intake-progress[data-current-step="4"]::before { width: 80%; }
.intake-progress[data-current-step="5"]::before { width: 100%; }

.intake-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 35px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.intake-progress-meta strong {
  color: var(--ink);
  font-weight: 650;
}

.intake-unavailable,
.file-unavailable {
  margin: 0 0 20px;
  padding: 12px 14px;
  color: #5e4b19;
  border: 1px solid #d8bd77;
  border-radius: 6px;
  background: #fff8e7;
  font-size: 11px;
  line-height: 1.6;
}

.intake-step[hidden] {
  display: none;
}

.intake-step h2 {
  max-width: 540px;
  margin-bottom: 9px;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 590;
  letter-spacing: -.04em;
  line-height: 1.15;
}

.step-help {
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.field-label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 640;
}

.optional-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 520;
}

.text-field {
  display: block;
  width: 100%;
  min-height: 59px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fcfcfa;
  border: 1px solid #bfc7c2;
  border-radius: 7px;
  outline-color: var(--green-deep);
  font-size: 14px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.text-field:hover {
  border-color: #899490;
}

.text-field:focus {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 3px rgba(39, 194, 129, .14);
}

textarea.text-field {
  min-height: 205px;
  resize: vertical;
}

.short-textarea {
  min-height: 125px !important;
}

.field-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
}

.impact-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.impact-option {
  position: relative;
}

.impact-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.impact-option label {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: #42494c;
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
  font-size: 12px;
  transition: border-color 150ms ease, background 150ms ease;
}

.impact-option label::before {
  display: grid;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #aeb8b4;
  border-radius: 4px;
  content: "";
}

.impact-option input:checked + label {
  border-color: var(--green-deep);
  background: var(--green-pale);
}

.impact-option input:checked + label::before {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green-deep);
  content: "✓";
  font-size: 11px;
}

.impact-option input:focus-visible + label {
  outline: 3px solid var(--green-deep);
  outline-offset: 3px;
}

.contact-choice {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-bottom: 20px;
}

.contact-choice label {
  display: flex;
  min-height: 53px;
  align-items: center;
  gap: 10px;
  padding: 12px;
  color: #42494c;
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
  font-size: 12px;
}

.contact-choice input {
  accent-color: var(--green-deep);
}

.contact-choice label:has(input:checked) {
  border-color: var(--green-deep);
  background: var(--green-pale);
}

.contact-field[hidden] {
  display: none;
}

.upload-zone {
  display: flex;
  min-height: 88px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  padding: 15px;
  border: 1px dashed #9aa49f;
  border-radius: 7px;
  background: #fcfcfa;
  cursor: pointer;
}

.upload-zone:hover {
  border-color: var(--green-deep);
}

.upload-zone strong {
  font-size: 12px;
  font-weight: 620;
}

.upload-zone span {
  color: var(--muted);
  font-size: 10px;
}

.upload-zone input {
  max-width: 100%;
  color: var(--muted);
  font-size: 11px;
}

.file-name {
  min-height: 18px;
  margin-top: 7px;
  color: var(--green-deep);
  font-size: 11px;
}

.intake-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid #e5e8e4;
}

.intake-actions .button {
  min-width: 118px;
}

.button-quiet {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button-quiet:hover {
  background: #f5f6f3;
  border-color: #929b97;
}

.form-error {
  margin: 17px 0 0;
  padding: 12px 14px;
  color: #7d2727;
  border: 1px solid #e5b7b7;
  border-radius: 6px;
  background: #fff3f2;
  font-size: 12px;
}

.form-notice {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.form-notice a {
  color: var(--green-deep);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.success-panel {
  padding: 25px;
  border: 1px solid rgba(17, 124, 81, .3);
  border-radius: 10px;
  color: var(--ink);
  background: var(--green-pale);
}

.success-panel[hidden] {
  display: none;
}

.success-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 21px;
  color: var(--ink);
  background: var(--green);
  border-radius: 50%;
  font-size: 17px;
}

.success-panel h2 {
  margin-bottom: 9px;
  font-size: 26px;
  font-weight: 620;
  letter-spacing: -.04em;
}

.success-panel p {
  color: #46514d;
  font-size: 13px;
  line-height: 1.65;
}

.request-id {
  display: inline-flex;
  margin-top: 7px;
  padding: 7px 9px;
  color: #46514d;
  border: 1px solid #bdd7c9;
  border-radius: 4px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: .1em;
}

.privacy-banner {
  margin-top: 23px;
  padding: 15px 17px;
  color: #5b4b21;
  border: 1px solid #e1cb8a;
  border-radius: 7px;
  background: #fff8e7;
  font-size: 11px;
  line-height: 1.6;
}

.privacy-banner[hidden] {
  display: none;
}

.privacy-banner strong {
  display: block;
  margin-bottom: 3px;
  font-size: 12px;
}

.privacy-copy {
  max-width: 820px;
}

.privacy-copy h2 {
  margin: 36px 0 10px;
  font-size: 21px;
  font-weight: 640;
  letter-spacing: -.03em;
}

.privacy-copy p,
.privacy-copy li {
  color: #4f5959;
  font-size: 13px;
  line-height: 1.75;
}

.privacy-copy ul {
  padding-left: 20px;
}

.privacy-definition {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-definition strong {
  font-size: 12px;
  font-weight: 650;
}

.privacy-definition span {
  color: var(--muted);
  font-size: 12px;
}

.privacy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 24px;
}

.privacy-links a {
  color: var(--green-deep);
  font-size: 12px;
}

.not-found {
  padding: 120px 0;
  text-align: center;
}

.not-found h1 {
  margin: 16px 0;
  font-size: 56px;
  letter-spacing: -.055em;
}

.not-found p {
  color: var(--muted);
}

@media (max-width: 1050px) {
  .header-inner {
    gap: 18px;
  }

  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .header-actions .button {
    min-height: 43px;
    padding-inline: 14px;
    font-size: 11px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr);
    gap: 36px;
  }

  .hero-visual {
    padding: 19px;
  }

  .flow-map {
    grid-template-columns: minmax(98px, .9fr) minmax(118px, 1fr) minmax(110px, .94fr);
    gap: 9px;
  }
}

@media (max-width: 820px) {
  .wrap {
    width: min(calc(100% - 36px), var(--page-width));
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    display: grid;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .button {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px 18px 16px;
    color: var(--ink);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 24px rgba(16, 20, 24, .1);
  }

  .header-dark .main-nav {
    color: var(--paper);
    background: #161e22;
    border-color: #394447;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 2px;
    border-bottom: 1px solid rgba(113, 119, 122, .19);
    font-size: 13px;
  }

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

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 59px;
    padding-bottom: 57px;
  }

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

  .hero h1 {
    max-width: 690px;
    font-size: clamp(53px, 10vw, 76px);
  }

  .hero-bottomline {
    margin-top: 38px;
  }

  .hero-visual {
    width: min(100%, 660px);
    justify-self: center;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-bottom: 32px;
  }

  .section-intro {
    max-width: 590px;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 25px;
  }

  .process-step {
    min-height: 176px;
  }

  .process-step:nth-child(3)::after {
    display: none;
  }

  .delegation-layout,
  .access-layout,
  .proof-layout,
  .intake-layout {
    grid-template-columns: 1fr;
  }

  .delegation-layout {
    gap: 32px;
  }

  .intake-aside {
    position: static;
  }

  .intake-aside h1 {
    max-width: 700px;
  }

  .intake-aside > p {
    max-width: 610px;
  }

  .closing-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .wrap {
    width: min(calc(100% - 32px), var(--page-width));
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-subtitle {
    font-size: 7px;
  }

  .locale-toggle,
  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero-inner {
    padding-top: 46px;
    padding-bottom: 37px;
  }

  .hero h1 {
    margin-top: 19px;
    font-size: clamp(46px, 13vw, 64px);
    letter-spacing: -.064em;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-support {
    font-size: 13px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    margin-top: 25px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-bottomline {
    margin-top: 29px;
    font-size: 7px;
  }

  .hero-visual {
    padding: 15px 12px;
  }

  .hero-visual::before {
    inset: 6px;
  }

  .visual-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 6px 5px 16px;
  }

  .flow-map {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 11px;
  }

  .flow-map::before,
  .flow-map::after {
    display: none;
  }

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

  .flow-column:first-child .flow-column-label,
  .flow-column:last-child .flow-column-label {
    grid-column: 1 / -1;
  }

  .flow-node {
    min-height: 38px;
    padding: 8px;
    font-size: 9px;
  }

  .flow-core {
    min-height: 112px;
    padding: 13px 10px;
  }

  .visual-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin-top: 13px;
    font-size: 9px;
  }

  .section {
    padding: 68px 0;
  }

  .section-tight {
    padding: 53px 0;
  }

  .section-title {
    font-size: clamp(34px, 10vw, 45px);
  }

  .principle-grid,
  .responsibility-grid,
  .trust-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .principle {
    min-height: 0;
    padding: 22px;
  }

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

  .principle-number {
    margin-bottom: 22px;
  }

  .principle h3 {
    font-size: 20px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    display: grid;
    min-height: 115px;
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 15px;
    padding: 0;
  }

  .process-step:not(:last-child)::after {
    top: 44px;
    bottom: 0;
    left: 20px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, var(--green), #5a6465);
  }

  .process-step:nth-child(3)::after {
    display: block;
  }

  .process-dot {
    width: 41px;
    height: 41px;
    margin: 0;
  }

  .process-step h3 {
    max-width: none;
    margin: 1px 0 6px;
    font-size: 16px;
  }

  .process-step p {
    max-width: 360px;
  }

  .process-outcome {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .delegation-copy h2,
  .access-copy h2,
  .proof-intro h2 {
    font-size: 39px;
  }

  .delegation-board {
    grid-template-columns: 1fr;
  }

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

  .delegation-card .fine-label {
    margin-bottom: 17px;
  }

  .delegation-result {
    min-height: 105px;
  }

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

  .responsibility-card::before {
    margin-bottom: 21px;
  }

  .responsibility-close {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

  .responsibility-close .button {
    width: 100%;
  }

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

  .trust-card-top {
    margin-bottom: 26px;
  }

  .access-rail {
    align-items: stretch;
    flex-direction: column;
    padding: 19px;
  }

  .access-node {
    width: 100%;
    min-height: 74px;
  }

  .access-arrow {
    align-self: center;
    transform: rotate(90deg);
  }

  .proof-path {
    grid-template-columns: repeat(2, 1fr);
  }

  .closing-inner {
    padding: 27px 21px;
  }

  .closing h2 {
    font-size: 38px;
  }

  .closing .button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .page-hero {
    padding-block: 60px 53px;
  }

  .page-hero h1 {
    font-size: clamp(42px, 12vw, 59px);
  }

  .page-hero p {
    font-size: 15px;
  }

  .feature-item {
    min-height: 0;
  }

  .workflow-row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 15px;
    min-height: 120px;
  }

  .workflow-number {
    width: 43px;
    height: 43px;
  }

  .workflow-row:not(:last-child)::before {
    top: 43px;
    left: 21px;
  }

  .workflow-copy {
    padding-top: 2px;
    padding-bottom: 27px;
  }

  .workflow-copy h3 {
    font-size: 17px;
  }

  .trust-pillars {
    grid-template-columns: 1fr;
  }

  .trust-pillar {
    min-height: 0;
  }

  .trust-pillar h3 {
    margin-top: 24px;
  }

  .access-row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 16px;
  }

  .example-evidence {
    grid-template-columns: repeat(2, 1fr);
  }

  .example-evidence div {
    min-height: 100px;
  }

  .case-spec {
    grid-template-columns: 1fr;
  }

  .case-spec div {
    padding: 15px;
  }

  .maturity-ladder {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 9px;
  }

  .maturity-step {
    min-height: 120px;
  }

  .maturity-step strong {
    min-height: 29px;
    font-size: 9px;
  }

  .intake-card {
    padding: 19px;
    border-radius: 10px;
  }

  .intake-progress-meta {
    margin-bottom: 27px;
    font-size: 8px;
  }

  .intake-step h2 {
    font-size: 27px;
  }

  textarea.text-field {
    min-height: 185px;
  }

  .impact-options,
  .contact-choice {
    grid-template-columns: 1fr;
  }

  .intake-actions .button {
    min-width: 0;
    flex: 1;
    padding-inline: 13px;
  }

  .privacy-definition {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Progressive intake and evidence pages */
.intake-page-hero {
  padding: clamp(46px, 7vw, 82px) 0 clamp(54px, 8vw, 96px);
  color: var(--paper);
  background:
    radial-gradient(ellipse at 83% 32%, rgba(39, 194, 129, .12), transparent 33%),
    linear-gradient(125deg, #101418 0%, #111a1b 57%, #0c1414 100%);
}

.intake-page-hero .intake-layout {
  align-items: center;
  grid-template-columns: minmax(265px, .72fr) minmax(0, 1.28fr);
}

.intake-page-hero .intake-aside {
  position: static;
}

.intake-page-hero .intake-aside .eyebrow {
  color: var(--green);
}

.intake-page-hero .intake-aside h1 {
  max-width: 470px;
  font-size: clamp(38px, 4.8vw, 60px);
}

.intake-page-hero .intake-aside > p {
  max-width: 430px;
  color: #c1cac7;
  font-size: 15px;
}

.intake-page-hero .intake-aside-note {
  max-width: 430px;
  color: #aeb9b5;
  border-color: rgba(246, 245, 241, .2);
}

.intake-page-hero .intake-aside-note strong {
  color: var(--paper);
}

.intake-aside-sequence {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: #dce2df;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: .08em;
}

.intake-aside-sequence i {
  color: var(--green);
  font-size: 14px;
  font-style: normal;
}

.intake-card-wrap {
  min-width: 0;
}

.intake-card {
  min-height: 590px;
}

.intake-step {
  min-height: 380px;
}

.intake-step h2 {
  outline-offset: 5px;
}

.step-count {
  display: block;
  margin-bottom: 12px;
  color: var(--green-deep);
}

.field-group {
  min-width: 0;
  margin: 0 0 19px;
  padding: 0;
  border: 0;
}

.field-group legend {
  float: left;
  width: 100%;
}

.field-group legend + .impact-options,
.field-group legend + .contact-choice {
  clear: both;
}

.optional-field-label,
.upload-label {
  margin-top: 23px;
}

.field-hint {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.privacy-ack {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 23px;
  color: #48514e;
  font-size: 11px;
  line-height: 1.65;
  cursor: pointer;
}

.privacy-ack input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--green-deep);
}

.privacy-ack input:focus-visible {
  outline: 3px solid var(--green-deep);
  outline-offset: 3px;
}

.privacy-ack a {
  color: var(--green-deep);
  font-weight: 650;
}

.intake-privacy-note {
  margin-top: 4px;
}

.intake-actions-spacer {
  flex: 1;
}

.intake-actions [hidden] {
  display: none !important;
}

.success-mark {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--green-deep);
  border-radius: 50%;
  background: var(--green);
  font-size: 24px;
}

.success-panel h2 {
  max-width: 650px;
  margin: 12px 0;
  font-size: clamp(27px, 4vw, 42px);
  letter-spacing: -.045em;
  line-height: 1.1;
}

.success-panel p {
  max-width: 650px;
  color: #43514b;
  font-size: 14px;
  line-height: 1.7;
}

.success-reference {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin: 26px 0;
  padding: 14px 0;
  border-top: 1px solid rgba(17, 124, 81, .25);
  border-bottom: 1px solid rgba(17, 124, 81, .25);
  color: #4e5d56;
  font-size: 11px;
}

.success-reference strong {
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  letter-spacing: .1em;
}

.noscript-note {
  margin: 14px 0 0;
  padding: 13px;
  color: #6e4f08;
  border: 1px solid #d8bd77;
  border-radius: 6px;
  background: #fff8e7;
  font-size: 12px;
}

.model-sequence {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: 38px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.model-sequence > div {
  min-width: 0;
}

.model-sequence > div > span,
.case-record-flow article > span {
  display: block;
  margin-bottom: 12px;
  color: var(--green-deep);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: .11em;
}

.model-sequence strong {
  font-size: 12px;
  letter-spacing: .05em;
}

.model-sequence p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.model-sequence > i {
  color: var(--green-deep);
  font-size: 18px;
  font-style: normal;
}

.case-record {
  margin-top: 31px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  overflow: hidden;
}

.case-record-head,
.case-record-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 22px;
  background: #eeefeb;
}

.case-record-head .fine-label,
.case-record-foot > span:last-child {
  color: #707a75;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: .08em;
}

.case-record-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-record-flow article {
  min-height: 205px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.case-record-flow article:last-child {
  border-right: 0;
}

.case-record-flow h3 {
  margin: 0 0 9px;
  font-size: 16px;
  letter-spacing: -.025em;
}

.case-record-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.case-record-foot {
  color: #44514b;
  background: #e4eee8;
  font-size: 11px;
}

.maturity-note {
  display: grid;
  grid-template-columns: minmax(160px, .5fr) minmax(0, 1fr);
  gap: 10px 24px;
  margin-top: 28px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .55);
}

.maturity-note .fine-label {
  grid-row: span 2;
  color: var(--green-deep);
}

.maturity-note strong {
  font-size: 16px;
  line-height: 1.5;
}

.maturity-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(210px, .48fr) minmax(0, 1.52fr);
  align-items: start;
  gap: clamp(30px, 6vw, 75px);
}

.privacy-summary {
  position: sticky;
  top: 26px;
  display: grid;
  gap: 9px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .55);
}

.privacy-summary .fine-label {
  margin-top: 10px;
  color: var(--green-deep);
}

.privacy-summary strong {
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.5;
}

.privacy-summary .text-link {
  margin-top: 15px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 650;
}

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

.privacy-status {
  margin-bottom: 25px;
  padding: 15px 17px;
  color: #5e4b19;
  border: 1px solid #d8bd77;
  border-radius: 7px;
  background: #fff8e7;
  font-size: 12px;
  line-height: 1.6;
}

.privacy-section {
  padding: 25px 0 30px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 25px;
}

.privacy-section:first-of-type {
  padding-top: 0;
}

.privacy-section .section-index {
  display: flex;
  gap: 10px;
  color: var(--green-deep);
}

.privacy-section h2 {
  margin: 14px 0 10px;
  font-size: clamp(21px, 3vw, 30px);
  font-weight: 590;
  letter-spacing: -.04em;
  line-height: 1.2;
}

.privacy-section p {
  margin: 9px 0 0;
  color: #56605d;
  font-size: 13px;
  line-height: 1.75;
}

.privacy-section a {
  color: var(--green-deep);
}

.privacy-version {
  font-size: 10px !important;
}

@media (max-width: 820px) {
  .intake-page-hero .intake-layout,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .intake-page-hero .intake-aside {
    max-width: 660px;
  }

  .intake-page-hero .intake-aside h1 {
    max-width: 610px;
  }

  .intake-page-hero .intake-aside > p {
    max-width: 610px;
  }

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

  .intake-step {
    min-height: 0;
  }

  .privacy-summary {
    position: static;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .privacy-summary .fine-label {
    margin-top: 0;
  }

  .privacy-summary .text-link {
    grid-column: 1 / -1;
  }

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

  .case-record-flow article:nth-child(2) {
    border-right: 0;
  }

  .case-record-flow article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 600px) {
  .intake-page-hero {
    padding-top: 43px;
  }

  .intake-page-hero .intake-aside h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .intake-aside-sequence {
    gap: 6px;
    font-size: 8px;
  }

  .intake-card {
    padding: 22px 17px;
    border-radius: 11px;
  }

  .intake-progress-meta {
    margin-bottom: 26px;
    font-size: 8px;
  }

  .intake-step h2 {
    font-size: 27px;
  }

  .intake-step textarea.text-field {
    min-height: 180px;
  }

  .impact-options {
    grid-template-columns: 1fr;
  }

  .intake-actions {
    margin-top: 25px;
  }

  .intake-actions .button {
    min-width: 0;
    padding-inline: 15px;
  }

  .model-sequence {
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
  }

  .model-sequence > i {
    display: none;
  }

  .case-record-head,
  .case-record-foot {
    padding-inline: 16px;
  }

  .case-record-flow article {
    min-height: 175px;
    padding: 16px;
  }

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

  .maturity-note .fine-label {
    grid-row: auto;
  }

  .privacy-summary {
    padding: 17px;
  }
}
