:root {
  --paper: #f4f1e9;
  --paper-light: #fbfaf6;
  --white: #ffffff;
  --ink: #17231f;
  --ink-soft: #34423c;
  --ink-muted: #65716c;
  --green: #0f5b47;
  --green-dark: #0b4436;
  --green-light: #dfeae4;
  --blue: #345fc7;
  --blue-light: #e8edf8;
  --amber: #d9a441;
  --line: rgba(23, 35, 31, 0.17);
  --line-strong: rgba(23, 35, 31, 0.34);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Arial, Helvetica, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --frame: 1240px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

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

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

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

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 233, 0.95);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(244, 241, 233, 0.985);
  box-shadow: 0 9px 30px rgba(23, 35, 31, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  min-height: 76px;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  width: max-content;
  gap: 10px;
  font-size: 14px;
  line-height: 1;
}

.brand-mark {
  width: 28px;
  height: 28px;
  fill: var(--green);
}

.brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-divider {
  width: 1px;
  height: 20px;
  margin-inline: 2px;
  background: var(--line-strong);
}

.brand-product {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--green);
}

.desktop-nav .language-switch {
  min-width: 38px;
  margin-left: 2px;
  border-left: 1px solid var(--line-strong);
  padding-left: 18px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.mobile-menu .mobile-language {
  color: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  gap: 28px;
  border: 1px solid var(--green);
  background: var(--green);
  padding: 13px 20px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.005em;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  gap: 14px;
  padding: 10px 16px;
}

.menu-button {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 77px 0 0;
  z-index: 90;
  overflow-y: auto;
  background: var(--paper);
}

.mobile-menu nav {
  padding-block: 18px 34px;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.035em;
}

.mobile-menu a span {
  font-family: var(--mono);
  color: var(--green);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  border-bottom: 1px solid var(--line-strong);
  background: var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38%;
  height: 6px;
  background: var(--blue);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  min-height: calc(100vh - 76px);
  gap: clamp(42px, 5vw, 84px);
  padding-block: clamp(48px, 7vh, 80px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label,
.window-kicker,
.done-label {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(15, 91, 71, 0.12);
}

.hero h1 {
  max-width: 700px;
  margin: 24px 0 0;
  font-family: var(--serif);
  font-size: clamp(54px, 5.2vw, 78px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 em,
.systems-layout h2 em {
  color: var(--green);
  font-weight: 400;
}

.hero-promise {
  max-width: 640px;
  margin: 30px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(21px, 1.8vw, 27px);
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.hero-promise strong {
  color: var(--green);
  font-weight: 400;
}

.hero-lead {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 10px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease;
}

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

.hero-terms {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.5fr;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-terms li {
  min-height: 74px;
  padding: 16px 16px 14px 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-terms li + li {
  border-left: 1px solid var(--line);
  padding-left: 16px;
}

.hero-terms span {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.hero-product {
  position: relative;
  min-width: 0;
}

.hero-product::before {
  content: "";
  position: absolute;
  top: -24px;
  right: -32px;
  z-index: 0;
  width: 76%;
  height: 72%;
  border: 1px solid rgba(52, 95, 199, 0.35);
}

.process-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--paper-light);
  box-shadow: 0 26px 70px rgba(20, 34, 29, 0.14);
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
}

.window-kicker {
  color: var(--green);
  font-size: 9px;
}

.window-bar h2 {
  margin: 3px 0 0;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.run-state,
.panel-status,
.receipt-header span,
.record-head > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.run-state span,
.panel-status i,
.receipt-header i,
.record-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #18a574;
  box-shadow: 0 0 0 4px rgba(24, 165, 116, 0.1);
}

.window-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 62px;
  border-bottom: 1px solid var(--line);
}

.window-meta div {
  padding: 12px 18px;
}

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

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

.window-meta span {
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.window-meta strong {
  margin-top: 2px;
  font-size: 11px;
}

.process-map {
  position: relative;
  height: 174px;
  margin: 14px 18px 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f6f7f2;
}

.process-map svg {
  width: 100%;
  height: 100%;
}

.map-grid {
  fill: none;
  stroke: rgba(23, 35, 31, 0.075);
  stroke-width: 1;
}

.map-line {
  fill: none;
  stroke: var(--blue);
  stroke-dasharray: 6 4;
  stroke-width: 2.2;
  animation: map-flow 10s linear infinite;
}

.map-node {
  stroke-width: 3;
}

.map-node.done {
  fill: var(--green);
  stroke: #dceae4;
}

.map-node.active {
  fill: var(--amber);
  stroke: #f9ebcb;
  animation: node-pulse 2.4s ease-in-out infinite;
}

.map-node.waiting {
  fill: var(--paper-light);
  stroke: #98a49e;
}

.map-label {
  position: absolute;
  padding: 3px 5px;
  background: rgba(246, 247, 242, 0.88);
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.label-a { top: 56%; left: 3%; }
.label-b { top: 12%; left: 31%; }
.label-c { bottom: 8%; left: 58%; color: #8a651f; }
.label-d { top: 38%; right: 5%; }

.run-list {
  margin: 0;
  padding: 0 18px;
  list-style: none;
}

.run-list li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  min-height: 56px;
  gap: 10px;
  border-top: 1px solid var(--line);
}

.run-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border: 1px solid #98a49e;
  border-radius: 50%;
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 9px;
}

.run-list li.is-done .run-icon {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.run-list li.is-active .run-icon {
  border-color: var(--amber);
  background: #f9ebcb;
  color: #795817;
}

.run-list strong,
.run-list small {
  display: block;
}

.run-list strong {
  font-size: 11px;
  line-height: 1.3;
}

.run-list small {
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 9px;
}

.run-label {
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.is-done .run-label { color: var(--green); }
.is-active .run-label { color: #8a651f; }

.next-checkpoint {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 15px 18px 18px;
  padding: 12px 14px;
  border: 1px solid rgba(52, 95, 199, 0.35);
  background: var(--blue-light);
  color: #244b9f;
}

.checkpoint-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
}

.next-checkpoint small,
.next-checkpoint strong {
  display: block;
}

.next-checkpoint small {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.next-checkpoint strong {
  margin-top: 2px;
  font-size: 10px;
}

.product-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 10px;
}

.product-caption span {
  flex: 0 0 auto;
  color: var(--green);
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terms-band {
  border-bottom: 1px solid var(--line-strong);
  background: var(--white);
}

.terms-grid {
  display: grid;
  grid-template-columns: 0.95fr repeat(3, 1fr);
}

.section-index {
  padding: 28px 24px 28px 0;
  color: var(--green);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.terms-grid article {
  position: relative;
  min-height: 178px;
  padding: 28px;
  border-left: 1px solid var(--line);
}

.term-number {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
}

.terms-grid h2 {
  margin: 38px 0 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.terms-grid article p {
  margin: 10px 0 0;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.55;
}

.section {
  padding-block: clamp(88px, 9vw, 138px);
}

.section-heading {
  margin-bottom: clamp(56px, 6vw, 88px);
}

.split-heading {
  display: grid;
  grid-template-columns: 0.9fr 2.1fr;
  gap: 54px;
}

.section-label {
  display: flex;
  justify-content: space-between;
  max-width: 230px;
  padding-top: 9px;
  border-top: 1px solid currentColor;
  color: var(--green);
}

.section-label.light {
  color: #a9cabe;
}

.section-heading h2,
.done-intro h2,
.pricing-copy h2,
.faq-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4.7vw, 68px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.section-heading > div > p {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.65;
}

.process-path {
  background: var(--paper);
}

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

.path-step {
  display: grid;
  grid-template-columns: 0.45fr 1fr 2.15fr 0.75fr;
  align-items: start;
  min-height: 128px;
  gap: 28px;
  padding: 30px 22px 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding-left 180ms ease;
}

.path-step:hover,
.path-step.is-highlighted {
  padding-left: 22px;
  background: var(--paper-light);
}

.path-number,
.path-state {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-number {
  color: var(--blue);
}

.path-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.path-title h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.path-dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--green);
  border-radius: 50%;
}

.is-highlighted .path-dot {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(15, 91, 71, 0.1);
}

.path-step > p {
  max-width: 680px;
  margin: -3px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.path-state {
  justify-self: end;
  color: var(--ink-muted);
  text-align: right;
}

.process-library {
  background: var(--ink);
  color: #f5f2eb;
}

.library-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr 1fr;
  align-items: end;
  gap: 54px;
}

.library-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4.5vw, 66px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.library-heading > p:last-child {
  max-width: 380px;
  margin: 0;
  color: #b8c2bd;
  font-size: 16px;
  line-height: 1.65;
}

.process-explorer {
  display: grid;
  grid-template-columns: 0.9fr 1.55fr;
  min-height: 645px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.process-tabs {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.process-tabs button {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 80px;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  padding: 16px 19px;
  color: #e5e9e7;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.process-tabs button:last-child {
  border-bottom: 0;
}

.process-tabs button span,
.process-tabs button i {
  color: #7f938a;
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.08em;
}

.process-tabs button strong {
  font-size: 14px;
  line-height: 1.35;
}

.process-tabs button i {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.process-tabs button:hover,
.process-tabs button[aria-selected="true"] {
  background: #20302a;
  color: var(--white);
}

.process-tabs button[aria-selected="true"] span,
.process-tabs button[aria-selected="true"] i {
  color: #76d1ac;
}

.process-tabs button[aria-selected="true"] i {
  opacity: 1;
  transform: translateX(0);
}

.process-panel {
  align-self: stretch;
  margin: 18px;
  padding: clamp(28px, 4vw, 56px);
  background: #edf0e8;
  color: var(--ink);
  transition: opacity 140ms ease, transform 140ms ease;
}

.process-panel.is-updating {
  opacity: 0.38;
  transform: translateY(3px);
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-panel > h3 {
  max-width: 600px;
  margin: 50px 0 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.panel-summary {
  max-width: 660px;
  min-height: 78px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.panel-ledger {
  margin: 44px 0 0;
  border-top: 1px solid var(--line-strong);
}

.panel-ledger > div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.panel-ledger dt {
  color: var(--green);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.panel-ledger dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.panel-receipt {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding: 15px;
  border: 1px solid rgba(52, 95, 199, 0.34);
  background: var(--blue-light);
  color: #234995;
}

.panel-receipt svg {
  flex: 0 0 auto;
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.panel-receipt p,
.panel-receipt small,
.panel-receipt strong {
  display: block;
  margin: 0;
}

.panel-receipt small {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-receipt strong {
  margin-top: 2px;
  font-size: 11px;
}

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

.done-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr 1fr;
  align-items: end;
  gap: 54px;
  margin-bottom: 74px;
}

.done-intro > p:last-child {
  margin: 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.65;
}

.done-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: start;
  gap: clamp(42px, 6vw, 86px);
}

.done-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.done-item {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 24px;
  padding: 0 0 46px;
}

.done-item:last-child {
  padding-bottom: 0;
}

.done-item::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 0;
  left: 26px;
  width: 1px;
  background: var(--line-strong);
}

.done-item:last-child::before {
  display: none;
}

.done-marker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--paper-light);
}

.done-marker span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
}

.is-checkpoint .done-marker {
  border-color: var(--blue);
  background: var(--blue);
}

.is-checkpoint .done-marker span {
  color: var(--white);
}

.done-label {
  color: var(--green);
  font-size: 9px;
}

.done-item h3 {
  margin: 5px 0 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.done-item > div > p:last-child {
  max-width: 570px;
  margin: 8px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
}

.done-status {
  padding-top: 20px;
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.is-checkpoint .done-status {
  color: var(--blue);
}

.completion-receipt {
  position: sticky;
  top: 112px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(23, 35, 31, 0.1);
}

.receipt-header,
.ledger-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.receipt-header p,
.ledger-head p {
  margin: 0;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.receipt-title {
  padding: 25px 20px;
  border-bottom: 1px solid var(--line);
}

.receipt-title span,
.receipt-rule span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.receipt-title h3 {
  margin: 5px 0 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.completion-receipt dl {
  margin: 0;
  padding: 7px 20px;
}

.completion-receipt dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.completion-receipt dl div:last-child {
  border-bottom: 0;
}

.completion-receipt dt {
  color: var(--ink-muted);
}

.completion-receipt dd {
  margin: 0;
  font-weight: 700;
}

.receipt-rule {
  margin: 13px 20px 20px;
  padding: 14px;
  background: var(--green-light);
}

.receipt-rule p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.5;
}

.receipt-footer {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
}

.receipt-footer svg {
  width: 22px;
  fill: #73d2ad;
}

.receipt-footer strong {
  color: #73d2ad;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.systems-section {
  padding-bottom: 0;
  border-block: 1px solid rgba(52, 95, 199, 0.25);
  background: var(--blue-light);
}

.systems-layout {
  display: grid;
  grid-template-columns: 0.75fr 2.25fr;
  gap: 60px;
}

.systems-layout h2 {
  max-width: 860px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.3vw, 76px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.systems-layout h2 em {
  color: var(--blue);
}

.systems-lead {
  max-width: 720px;
  margin: 28px 0 48px;
  color: #3d4b63;
  font-size: 19px;
  line-height: 1.7;
}

.connector-board {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 2.28fr);
  overflow: hidden;
  border: 1px solid rgba(52, 95, 199, 0.3);
  background: rgba(255, 255, 255, 0.46);
}

.connector-core {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  padding: 30px;
  background: var(--ink);
  color: var(--white);
}

.connector-core > svg {
  width: 38px;
  margin-bottom: auto;
  fill: #73d2ad;
}

.connector-core p {
  margin: 0 0 9px;
  color: #9ed2bf;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.connector-core h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.connector-core small {
  max-width: 230px;
  margin-top: 15px;
  color: #b9c5c0;
  font-size: 12px;
  line-height: 1.55;
}

.connector-categories {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.connector-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  min-width: 0;
  min-height: 135px;
  gap: 14px;
  padding: 18px 16px;
  border-bottom: 1px solid rgba(52, 95, 199, 0.2);
  border-left: 1px solid rgba(52, 95, 199, 0.2);
}

.connector-item:nth-last-child(-n + 5) {
  border-bottom: 0;
}

.connector-item svg {
  width: 32px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.connector-item strong,
.connector-item small {
  display: block;
}

.connector-item strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.connector-item small {
  margin-top: 7px;
  color: #65708a;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.systems-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  padding-block: 36px 78px;
}

.systems-copy p {
  margin: 0;
  color: #3d4b63;
  font-size: 15px;
  line-height: 1.7;
}

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

.control-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: start;
  gap: clamp(40px, 6vw, 88px);
}

.control-register {
  border-top: 1px solid var(--line-strong);
}

.control-register article {
  display: grid;
  grid-template-columns: 48px 0.8fr 1.4fr;
  gap: 18px;
  min-height: 104px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.control-register article > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
}

.control-register h3 {
  margin: -3px 0 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.control-register p {
  margin: -3px 0 0;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.65;
}

.work-record {
  position: sticky;
  top: 112px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--paper-light);
  box-shadow: 0 20px 50px rgba(23, 35, 31, 0.09);
}

.record-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
  gap: 18px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

.record-head small,
.record-head strong {
  display: block;
}

.record-head small {
  color: var(--green);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.record-head strong {
  margin-top: 3px;
  font-size: 12px;
}

.record-progress {
  height: 5px;
  background: #e0e3dc;
}

.record-progress span {
  display: block;
  width: 58%;
  height: 100%;
  background: var(--blue);
}

.work-record dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
}

.work-record dl div {
  min-height: 100px;
  padding: 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.work-record dl div:nth-child(even) {
  border-right: 0;
}

.work-record dt,
.work-record dd,
.work-record dl small {
  display: block;
}

.work-record dt {
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-record dd {
  margin: 13px 0 0;
  font-size: 12px;
  font-weight: 700;
}

.work-record dl small {
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 9px;
}

.record-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px;
  padding: 14px;
  background: #f6ead0;
  color: #6f521d;
}

.record-note > span {
  font-size: 20px;
}

.record-note p,
.record-note strong,
.record-note small {
  display: block;
  margin: 0;
}

.record-note strong {
  font-size: 11px;
}

.record-note small {
  margin-top: 2px;
  color: #8c713d;
  font-size: 9px;
}

.pricing-section {
  border-block: 1px solid rgba(15, 91, 71, 0.22);
  background: var(--green-light);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: start;
  gap: clamp(52px, 8vw, 110px);
}

.pricing-copy h2 {
  max-width: 690px;
  margin-top: 58px;
}

.pricing-lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.pricing-stages {
  margin-top: 52px;
  border-top: 1px solid var(--line-strong);
}

.pricing-stages article {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.pricing-stages span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-stages p {
  margin: -3px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.terms-ledger {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--paper-light);
  box-shadow: 0 20px 50px rgba(23, 35, 31, 0.09);
}

.ledger-head span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ledger-zero {
  display: flex;
  align-items: flex-end;
  gap: 19px;
  padding: 26px 22px 24px;
  border-bottom: 1px solid var(--line);
}

.ledger-zero > strong {
  font-family: var(--serif);
  font-size: 94px;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.ledger-zero p,
.ledger-zero span {
  display: block;
  margin: 0;
}

.ledger-zero p {
  padding-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
}

.ledger-zero span {
  margin-bottom: 4px;
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terms-ledger dl {
  margin: 0;
  padding: 8px 22px;
}

.terms-ledger dl div {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.terms-ledger dl div:last-child {
  border-bottom: 0;
}

.terms-ledger dt {
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terms-ledger dd {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
}

.terms-ledger > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 15px 22px;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  transition: background 180ms ease;
}

.terms-ledger > a:hover {
  background: var(--green-dark);
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: clamp(54px, 9vw, 130px);
}

.faq-intro {
  position: sticky;
  top: 112px;
}

.faq-intro h2 {
  margin-top: 56px;
}

.faq-intro > p:last-child {
  max-width: 390px;
  margin: 25px 0 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.65;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 30px;
  align-items: center;
  min-height: 92px;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.faq-list summary i {
  position: relative;
  width: 22px;
  height: 22px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 2px;
  width: 18px;
  height: 1px;
  background: var(--green);
  transition: transform 180ms ease;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0deg);
}

.faq-list details > p {
  max-width: 640px;
  margin: -8px 30px 0 62px;
  padding-bottom: 30px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.7;
}

.start-section {
  background: var(--green-dark);
  color: var(--paper-light);
}

.start-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: clamp(60px, 10vw, 150px);
  padding-block: clamp(90px, 10vw, 144px);
}

.start-layout h2 {
  max-width: 800px;
  margin: 58px 0 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.start-action > p {
  margin: 0;
  color: #cfddd6;
  font-size: 17px;
  line-height: 1.7;
}

.button-light {
  width: 100%;
  margin-top: 30px;
  border-color: var(--paper-light);
  background: var(--paper-light);
  color: var(--green-dark);
}

.button-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--green-dark);
}

.start-action > small {
  display: block;
  margin-top: 16px;
  color: #9fb9ae;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer {
  background: #111916;
  color: #dbe3df;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 90px;
  padding-block: 66px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-brand .brand-mark {
  fill: #75d3ae;
}

.footer-brand .brand-divider {
  background: rgba(255, 255, 255, 0.25);
}

.footer-brand .brand-product {
  color: #b8c7c0;
}

.footer-top > div:first-child > p {
  max-width: 430px;
  margin: 26px 0 0;
  color: #9fb0a8;
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.footer-links div > p {
  margin: 0 0 16px;
  color: #75d3ae;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  display: flex;
  align-items: center;
  min-height: 36px;
  color: #b8c7c0;
  font-size: 12px;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 22px;
  color: #778981;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

@keyframes map-flow {
  to { stroke-dashoffset: -100; }
}

@keyframes node-pulse {
  0%, 100% { r: 10; }
  50% { r: 13; }
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: 59px;
  }

  .hero-terms {
    grid-template-columns: 1fr 1.2fr;
  }

  .hero-terms li:last-child {
    grid-column: 1 / -1;
    min-height: 56px;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .process-map {
    height: 145px;
  }

  .process-explorer {
    grid-template-columns: 0.85fr 1.35fr;
  }

  .done-layout {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

@media (max-width: 960px) {
  .frame {
    width: min(calc(100% - 40px), var(--frame));
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 66px;
    padding-block: 76px;
  }

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

  .hero h1 {
    font-size: clamp(56px, 9vw, 76px);
  }

  .hero-terms {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-terms li:last-child {
    grid-column: auto;
    min-height: 74px;
    border-top: 0;
    border-left: 1px solid var(--line);
    padding-left: 16px;
  }

  .hero-product {
    width: min(100%, 680px);
    margin-left: auto;
  }

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

  .section-index {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--line);
  }

  .terms-grid article:first-of-type {
    border-left: 0;
  }

  .split-heading,
  .systems-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .connector-core {
    display: grid;
    grid-template-columns: 48px minmax(180px, 0.8fr) minmax(260px, 1.2fr);
    align-items: center;
    min-height: 0;
    gap: 20px;
    padding: 24px 28px;
  }

  .connector-core > svg {
    grid-row: 1 / 3;
    margin: 0;
  }

  .connector-core p {
    align-self: end;
    margin: 0;
  }

  .connector-core h3 {
    align-self: start;
  }

  .connector-core small {
    grid-column: 3;
    grid-row: 1 / 3;
    margin: 0;
  }

  .path-step {
    grid-template-columns: 48px 0.8fr 1.65fr;
  }

  .path-state {
    grid-column: 2 / -1;
    justify-self: start;
    text-align: left;
  }

  .library-heading,
  .done-intro {
    grid-template-columns: 0.75fr 1.55fr;
    align-items: start;
  }

  .library-heading > p:last-child,
  .done-intro > p:last-child {
    grid-column: 2;
    margin-top: -26px;
  }

  .process-explorer {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .process-panel {
    margin: 12px;
    padding: 28px;
  }

  .done-layout {
    grid-template-columns: 1fr;
  }

  .completion-receipt {
    position: static;
    width: min(100%, 560px);
    margin-left: auto;
  }

  .control-layout {
    grid-template-columns: 1fr;
  }

  .work-record {
    position: static;
    width: min(100%, 560px);
    margin-left: auto;
  }

  .pricing-layout,
  .faq-layout,
  .start-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .terms-ledger {
    width: min(100%, 570px);
    margin-left: auto;
  }

  .faq-intro {
    position: static;
  }

  .faq-intro h2 {
    margin-top: 45px;
  }

  .start-layout {
    align-items: start;
    gap: 54px;
  }

  .start-action {
    max-width: 610px;
    margin-left: auto;
  }

  .footer-top {
    gap: 55px;
  }
}

@media (max-width: 720px) {
  .frame {
    width: min(calc(100% - 32px), var(--frame));
  }

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

  .mobile-menu {
    inset: 69px 0 0;
  }

  .brand-divider,
  .brand-product {
    display: none;
  }

  .hero-grid {
    gap: 52px;
    padding-block: 58px 70px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(45px, 13.7vw, 64px);
    line-height: 1;
  }

  .hero-lead {
    margin-top: 12px;
    font-size: 17px;
  }

  .hero-promise {
    margin-top: 24px;
    font-size: 22px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

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

  .text-link {
    width: max-content;
  }

  .hero-terms {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .hero-terms li,
  .hero-terms li:last-child {
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    grid-column: auto;
    min-height: 48px;
    gap: 4px;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 10px 0;
  }

  .hero-terms li:first-child {
    border-top: 0;
  }

  .hero-terms li + li {
    padding-left: 0;
  }

  .hero-terms span {
    margin: 0;
  }

  .hero-product::before {
    top: -14px;
    right: -14px;
  }

  .window-bar {
    min-height: 68px;
    padding: 13px 14px;
  }

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

  .window-meta div {
    padding: 10px 12px;
  }

  .window-meta div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-map {
    display: none;
  }

  .run-list {
    padding: 10px 13px 0;
  }

  .run-list li {
    grid-template-columns: 26px 1fr;
    min-height: 61px;
    gap: 9px;
  }

  .run-label {
    grid-column: 2;
    margin-top: -13px;
  }

  .next-checkpoint {
    margin: 13px;
    padding: 10px;
  }

  .product-caption {
    display: block;
    line-height: 1.55;
  }

  .product-caption span {
    display: block;
    margin-bottom: 4px;
  }

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

  .section-index {
    padding-block: 20px;
  }

  .terms-grid article,
  .terms-grid article:first-of-type {
    min-height: 0;
    padding: 25px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .terms-grid h2 {
    margin-top: 18px;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    margin-bottom: 46px;
  }

  .split-heading,
  .library-heading,
  .done-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-label {
    max-width: none;
  }

  .section-heading h2,
  .done-intro h2,
  .pricing-copy h2,
  .faq-intro h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .section-heading > div > p {
    font-size: 16px;
  }

  .path-step {
    grid-template-columns: 37px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 23px 0;
  }

  .path-step:hover,
  .path-step.is-highlighted {
    padding-left: 12px;
  }

  .path-step > p,
  .path-state {
    grid-column: 2;
  }

  .path-title h3 {
    font-size: 25px;
  }

  .path-state {
    margin-top: -6px;
  }

  .library-heading > p:last-child,
  .done-intro > p:last-child {
    grid-column: auto;
    margin-top: 0;
  }

  .process-explorer {
    display: block;
    min-height: 0;
    border: 0;
  }

  .process-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.22);
  }

  .process-tabs button {
    grid-template-columns: 24px 1fr;
    min-height: 76px;
    gap: 7px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    padding: 12px;
  }

  .process-tabs button:nth-child(even) {
    border-right: 0;
  }

  .process-tabs button i {
    display: none;
  }

  .process-tabs button strong {
    font-size: 12px;
  }

  .process-panel {
    margin: 14px 0 0;
    padding: 22px 18px;
  }

  .process-panel > h3 {
    min-height: 0;
    margin-top: 34px;
    font-size: 40px;
  }

  .panel-summary {
    min-height: 0;
    font-size: 15px;
  }

  .panel-ledger {
    margin-top: 32px;
  }

  .panel-ledger > div {
    grid-template-columns: 80px 1fr;
    gap: 14px;
  }

  .done-intro {
    margin-bottom: 50px;
  }

  .done-item {
    grid-template-columns: 44px 1fr;
    gap: 17px;
    padding-bottom: 38px;
  }

  .done-marker {
    width: 44px;
    height: 44px;
  }

  .done-item::before {
    top: 28px;
    left: 21px;
  }

  .done-status {
    grid-column: 2;
    padding-top: 0;
  }

  .done-item h3 {
    font-size: 22px;
  }

  .completion-receipt,
  .work-record,
  .terms-ledger {
    width: 100%;
  }

  .systems-layout h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .systems-lead {
    margin-bottom: 38px;
    font-size: 17px;
  }

  .connector-core {
    grid-template-columns: 36px 1fr;
    gap: 8px 16px;
    padding: 24px;
  }

  .connector-core > svg {
    grid-row: 1 / 3;
    width: 32px;
  }

  .connector-core h3 {
    font-size: 27px;
  }

  .connector-core small {
    grid-column: 1 / -1;
    grid-row: auto;
    max-width: 360px;
    margin-top: 8px;
  }

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

  .connector-item,
  .connector-item:nth-last-child(-n + 5) {
    min-height: 118px;
    padding: 18px;
    border-bottom: 1px solid rgba(52, 95, 199, 0.2);
  }

  .connector-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .connector-item:nth-child(odd) {
    border-left: 0;
  }

  .systems-copy {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 38px 72px;
  }

  .control-layout {
    gap: 48px;
  }

  .control-register article {
    grid-template-columns: 32px 1fr;
    min-height: 0;
    gap: 14px;
    padding: 22px 0;
  }

  .control-register article > p {
    grid-column: 2;
  }

  .pricing-copy h2 {
    margin-top: 44px;
  }

  .pricing-lead {
    font-size: 17px;
  }

  .pricing-stages article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-layout {
    gap: 50px;
  }

  .faq-list summary {
    grid-template-columns: 28px 1fr 24px;
    min-height: 84px;
    gap: 9px;
    font-size: 19px;
  }

  .faq-list details > p {
    margin: -4px 0 0 37px;
  }

  .start-layout {
    padding-block: 82px;
  }

  .start-layout h2 {
    margin-top: 42px;
    font-size: clamp(44px, 13vw, 60px);
  }

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

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

@media (max-width: 390px) {
  .connector-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .connector-item,
  .connector-item:nth-last-child(-n + 2) {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 122px;
    gap: 12px;
    padding: 16px 14px;
    border-bottom: 1px solid rgba(52, 95, 199, 0.2);
  }

  .connector-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .connector-item:nth-child(odd) {
    border-left: 0;
  }

  .connector-item strong {
    font-size: 16px;
  }
  .frame {
    width: min(calc(100% - 28px), var(--frame));
  }

  .hero h1 {
    font-size: 44px;
  }

  .window-bar h2 {
    font-size: 16px;
  }

  .run-state {
    font-size: 8px;
  }

  .run-list strong {
    font-size: 10px;
  }

  .next-checkpoint > span:last-child {
    display: none;
  }

  .process-tabs {
    grid-template-columns: 1fr;
  }

  .process-tabs button,
  .process-tabs button:nth-child(even) {
    min-height: 60px;
    border-right: 0;
  }

  .panel-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .work-record dl {
    grid-template-columns: 1fr;
  }

  .work-record dl div,
  .work-record dl div:nth-child(even) {
    min-height: 82px;
    border-right: 0;
  }

  .terms-ledger dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

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

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

}
