:root {
  --paper: #f6f1e7;
  --paper-soft: #fbf7ee;
  --paper-dark: #ece2d0;
  --ink: #252722;
  --green: #183f2c;
  --green-2: #285a3f;
  --brass: #d7aa35;
  --leather: #8c5735;
  --line: rgba(37, 39, 34, .17);
  --muted: #6c6a60;
  --shadow: 0 18px 40px rgba(37, 31, 20, .13);
  --shell: min(1400px, calc(100vw - 112px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #ded4c1;
  font-family: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  z-index: 10;
  background-image: radial-gradient(rgba(37,39,34,.18) .55px, transparent .65px);
  background-size: 5px 5px;
  mix-blend-mode: multiply;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.page-shell {
  width: min(1600px, 100%);
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(90deg, rgba(24,63,44,.035) 1px, transparent 1px),
    linear-gradient(rgba(24,63,44,.03) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 100%, 100% 100%, auto;
  box-shadow: 0 0 55px rgba(44, 34, 20, .22);
  overflow: hidden;
}
.page-shell::before {
  content: "";
  position: absolute;
  inset: 104px 46px auto 74px;
  height: 1px;
  background: var(--line);
}
.binder {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 42px;
  z-index: 4;
}
.binder span { display: none; }
.binder::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  background: linear-gradient(90deg, #1a130c, #3a2a19 55%, #140e08);
  box-shadow: inset -2px 0 4px rgba(0,0,0,.4);
}
.binder::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  height: 1020px;
  width: 40px;
  background: url("assets/binder-ring-real-sprite.png") repeat-y;
  background-size: 40px 28px;
  filter: drop-shadow(0 1px 1.5px rgba(0,0,0,.42));
}
.binder-clip {
  position: absolute;
  left: 2px;
  bottom: 360px;
  width: 30px;
  height: 74px;
  border-radius: 4px;
  background: linear-gradient(90deg, #4a3115, #8c5a2c 48%, #3a2712);
  box-shadow: 0 4px 10px rgba(0,0,0,.5), inset 0 1px 1px rgba(255,255,255,.22);
  z-index: 3;
}
.binder-clip::before,
.binder-clip::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f5da8c, #b8862f 55%, #6a4a1f);
  box-shadow: 0 1px 2px rgba(0,0,0,.45), inset 0 1px 1px rgba(255,255,255,.35);
}
.binder-clip::before { top: 13px; }
.binder-clip::after { bottom: 13px; }

.site-header,
.hero,
.benefits,
.slow-work,
.help,
.how-work,
.principle,
.site-footer {
  width: var(--shell);
  margin-inline: auto;
}
.site-header {
  height: 102px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--green);
}
.brand-mark {
  width: 47px;
  height: 47px;
  border: 2px solid var(--green);
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: .08em;
}
.brand-name {
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: .21em;
}
.site-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.site-nav a,
.site-footer nav a,
address a {
  font-size: .88rem;
  text-decoration: none;
}
.site-nav a:hover,
.site-footer nav a:hover,
address a:hover,
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.nav-toggle {
  display: none;
  justify-self: end;
  background: transparent;
  border: 1px solid var(--line);
  padding: 9px 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 38px;
  padding: 12px 21px;
  border: 1px solid rgba(73, 53, 7, .35);
  border-radius: 3px;
  background: linear-gradient(#e6bd47, var(--brass));
  color: #15140f;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 5px 0 rgba(74, 48, 5, .15), inset 0 1px rgba(255,255,255,.42);
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 7px 0 rgba(74, 48, 5, .12), inset 0 1px rgba(255,255,255,.42); }

.section-rule { border-top: 1px solid var(--line); }
.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  gap: 12px;
  align-items: end;
  padding: 48px 0 42px;
  position: relative;
}
.hero::after, .slow-work::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  right: 4px;
  top: 44px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  opacity: .8;
}
.hero-copy { position: relative; top: -50px; padding-left: 16px; }
.note-label,
.section-kicker,
.workflow-title,
.help-card > span,
.done-list h3,
.step > span,
.copyright {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
}
.note-label {
  color: var(--leather);
  width: max-content;
  margin: 0 0 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(140, 87, 53, .5);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--green);
  font-size: clamp(2.55rem, 3.3vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}
h1 span { display: block; }
h2 {
  color: var(--green);
  font-size: clamp(2.1rem, 4vw, 3.36rem);
  line-height: 1.03;
  letter-spacing: 0;
}
h3 { font-size: 1rem; line-height: 1.2; }
.hero-intro {
  max-width: 570px;
  font-size: 1.13rem;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
}
.hero-art {
  min-height: 0;
  position: relative;
  display: grid;
  place-items: end end;
  padding-right: 150px;
  background:
    linear-gradient(rgba(24,63,44,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,63,44,.045) 1px, transparent 1px);
  background-size: 38px 38px;
}
.hero-art img {
  height: 458px;
  width: auto;
  max-width: min(385px, 44vw);
  position: relative;
  z-index: 1;
  transform: translateX(-121px);
  filter: drop-shadow(0 15px 13px rgba(30, 24, 16, .18));
}
.hand-note {
  font-family: "IBM Plex Mono", monospace;
  font-style: italic;
  color: #746f63;
  letter-spacing: .05em;
  line-height: 1.62;
}
.hero-note {
  position: absolute;
  top: 6px;
  right: 73px;
  width: 146px;
  transform: rotate(-1.5deg);
  font-family: "Kalam", cursive;
  font-style: normal;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .075em;
  line-height: 1.42;
  font-size: .82rem;
  opacity: .78;
}
.mini-checklist {
  position: absolute;
  right: 165px;
  bottom: 34px;
  width: 58px;
  height: 72px;
  border: 1px solid var(--line);
  display: grid;
  align-content: center;
  padding: 9px 8px;
  gap: 7px;
  background: rgba(251, 247, 238, .76);
  box-shadow: 0 5px 10px rgba(37, 31, 20, .08);
  transform: rotate(2deg);
}
.mini-checklist span {
  display: grid;
  grid-template-columns: 9px 1fr;
  align-items: center;
  gap: 5px;
}
.mini-checklist span::before {
  content: "✓";
  width: 9px;
  height: 9px;
  border: 1px solid rgba(24, 63, 44, .62);
  color: var(--green);
  font-family: "Kalam", cursive;
  font-size: 9px;
  line-height: 7px;
  text-align: center;
}
.mini-checklist span::after {
  content: "";
  border-bottom: 1px solid rgba(108, 106, 96, .48);
  transform: rotate(-1deg);
}
.capable-note {
  position: absolute;
  right: 77px;
  bottom: 36px;
  transform: rotate(1.5deg);
  font-family: "Kalam", cursive;
  font-style: normal;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.35;
  font-size: .82rem;
  opacity: .78;
}
.capable-note::after {
  content: "";
  display: block;
  width: 74px;
  margin-top: 3px;
  border-bottom: 1px solid currentColor;
  transform: rotate(-2deg);
  opacity: .48;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 110px;
}
.benefit {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 18px;
  padding: 23px 35px;
  border-right: 1px solid var(--line);
}
.benefit:last-child { border-right: 0; }
.benefit p { margin: 0; font-size: 1.08rem; font-weight: 700; }
.benefit-icon {
  width: 46px;
  height: 46px;
  color: var(--leather);
  overflow: visible;
}
.benefit-icon .icon-ring {
  fill: rgba(251, 247, 238, .3);
  stroke: rgba(37, 39, 34, .5);
  stroke-width: .9;
}
.benefit-icon .icon-mark {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-icon .icon-mark-bold { stroke-width: 2.35; }
.benefit-icon .icon-heart { fill: currentColor; stroke-width: 1.2; }

.slow-work {
  padding: 50px 0 42px;
  position: relative;
}
.section-kicker {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--green);
  font-weight: 700;
}
.slow-grid {
  display: grid;
  grid-template-columns: 1.08fr 220px 34px 198px 391px;
  gap: 42px;
  align-items: center;
}
.slow-work > .note-label,
.slow-copy { padding-left: 16px; }
.slow-grid > .workflow,
.slow-grid > .workflow-arrow {
  position: relative;
  left: 20px;
}
.slow-copy h2 { max-width: 360px; margin: 0; color: #10120f; }
.workflow,
.help-card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 3px;
}
.workflow {
  min-height: 292px;
  padding: 24px 28px;
  box-shadow: 0 12px 20px rgba(37,31,20,.06);
}
.workflow-title { margin-bottom: 22px; font-weight: 700; }
.workflow ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.workflow li { position: relative; display: flex; align-items: center; gap: 12px; font-size: .83rem; }
.workflow li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 15px;
  background: #59594f;
  position: absolute;
  left: 11.5px;
  top: 25px;
}
.chaos-board { height: 158px; position: relative; margin: -2px -4px 7px; }
.chaos-icon { width: 34px; height: 34px; position: absolute; filter: drop-shadow(0 2px 1px rgba(35, 29, 18, .08)); }
.chaos-inbox-one { left: 0; top: 4px; transform: rotate(-8deg); }
.chaos-sheet-one { right: 2px; top: 0; transform: rotate(7deg); }
.chaos-doc-one { left: 57px; top: 27px; transform: rotate(4deg); }
.chaos-inbox-two { right: 8px; top: 66px; transform: rotate(-6deg); }
.chaos-sheet-two { left: 5px; top: 82px; transform: rotate(-4deg); }
.chaos-doc-two { left: 68px; top: 108px; transform: rotate(7deg); }
.chaos-follow { right: 3px; top: 119px; transform: rotate(-9deg); }
.chaos-line { width: 35px; position: absolute; border-top: 1px dashed rgba(140, 87, 53, .55); }
.chaos-line-one { left: 29px; top: 61px; transform: rotate(24deg); }
.chaos-line-two { right: 38px; top: 105px; transform: rotate(-22deg); }
.chaos-caption { margin: 0; color: var(--muted); font-size: .68rem; line-height: 1.35; }
.with-flow { gap: 18px !important; }
.with-flow li { font-size: .76rem; font-weight: 600; line-height: 1.2; }
.with-flow .flow-icon { width: 28px; height: 28px; flex-basis: 28px; }
.with-flow li:not(:last-child)::after { left: 13.5px; top: 29px; height: 17px; }
.flow-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: none;
  color: rgba(24, 63, 44, .88);
}
.flow-icon-large { width: 30px; height: 26px; }
.brand-line-icon { color: var(--green); overflow: visible; }
.workflow-arrow {
  display: grid;
  place-items: center;
  transform: rotate(-2deg);
}
.workflow-arrow svg {
  width: 46px;
  height: 30px;
  fill: none;
  stroke: rgba(116, 111, 99, .86);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pm-box {
  width: 43px;
  height: 43px;
  border: 2px solid #2c2f29;
  border-radius: 3px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: var(--paper-soft);
}
.review-step {
  min-width: 78px;
  padding: 6px 10px;
  border: 1px solid rgba(37, 39, 34, .7);
  border-radius: 3px;
  text-align: center;
  font-size: .65rem;
  font-weight: 700;
  line-height: 1.15;
  background: var(--paper-soft);
}
.done-step { display: grid; justify-items: center; gap: 4px; }
.done-step svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: rgba(37, 39, 34, .82);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.done-step small { font-size: .63rem; font-weight: 700; }
.done-list {
  margin: 0;
  min-width: 0;
}
.done-list img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  mix-blend-mode: multiply;
}

.help { padding: 24px 0 40px; position: relative; }
.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 86px 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.help-spacer { border: 0; background: transparent; }
.help-robot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  width: 106px;
  z-index: 3;
  pointer-events: none;
  clip-path: inset(15% 0 0 0);
  filter: drop-shadow(0 9px 8px rgba(30,24,16,.14));
}
.help-card {
  min-height: 210px;
  padding: 24px;
  position: relative;
}
.help-card > span { color: var(--leather); font-size: .95rem; }
.help-card h3 { margin: -20px 0 26px 42px; }
.help-card p { margin: 28px 0 0; font-size: .86rem; }
.robot-card { border: 0; background: transparent; padding: 0; display: grid; place-items: end center; }
.robot-card img { width: 140px; filter: drop-shadow(0 9px 8px rgba(30,24,16,.14)); }
.diagram { height: 80px; padding: 5px 0 13px; position: relative; border-bottom: 1px solid var(--line); display: grid; place-items: center; }
.diagram svg { display: block; width: 100%; height: 52px; overflow: visible; }
.diagram svg.help-icon { width: 54px; height: 54px; align-self: center; }
.sketch-icon {
  fill: none;
  stroke: rgba(37, 43, 35, .72);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.field-note {
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    var(--green);
  background-size: 38px 38px;
  color: #fff8e8;
  padding: 58px 0;
  position: relative;
}
.field-note::before {
  content: "";
  position: absolute;
  inset: 22px 28px;
  border: 1px solid rgba(255, 248, 232, .11);
  pointer-events: none;
}
.field-note-inner {
  width: var(--shell);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.field-switch-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}
.field-switch-row .field-label { margin: 0; }
.field-tabs { display: flex; gap: 8px; }
.field-tab {
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 248, 232, .28);
  border-radius: 3px;
  background: rgba(255, 248, 232, .04);
  color: rgba(255, 248, 232, .72);
  font-family: "IBM Plex Mono", monospace;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
}
.field-tab span { margin-right: 7px; color: #d9b550; }
.field-tab:hover { border-color: rgba(217, 181, 80, .72); color: #fff8e8; }
.field-tab:focus-visible { outline: 2px solid #d9b550; outline-offset: 3px; }
.field-tab.is-active {
  border-color: #d9b550;
  background: #d9b550;
  color: #172d22;
}
.field-tab.is-active span { color: #7d4e28; }
.field-case {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 64px;
  align-items: center;
  animation: field-case-in .32s ease both;
  outline: none;
}
.field-case[hidden] { display: none; }
@keyframes field-case-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.field-label,
.field-board-title,
.field-compare span {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 600;
}
.field-label {
  color: #d9b550;
  width: max-content;
  margin: 0 0 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(217, 181, 80, .65);
}
.field-copy h2 {
  color: #fff8e8;
  max-width: 540px;
  margin-bottom: 24px;
  font-size: clamp(2.15rem, 3.4vw, 3.25rem);
}
.field-copy > p:not(.field-label):not(.field-caption) {
  max-width: 550px;
  font-size: 1.05rem;
  line-height: 1.6;
}
.field-caption {
  margin: 28px 0 0;
  color: rgba(255, 248, 232, .68);
  font-family: "Kalam", cursive;
  font-size: .95rem;
  transform: rotate(-1deg);
}
.field-board {
  background: var(--paper-soft);
  color: var(--ink);
  border: 1px solid rgba(60, 40, 14, .28);
  border-radius: 3px;
  box-shadow: 0 20px 36px rgba(0,0,0,.22);
  padding: 28px 30px 30px;
  transform: rotate(.35deg);
}
.field-board-title {
  color: var(--green);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.field-flow {
  list-style: none;
  margin: 0;
  padding: 0 4px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  border-bottom: 1px solid var(--line);
}
.field-flow li {
  min-width: 0;
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.25;
}
.field-flow li:not(:last-child)::after {
  content: "->";
  position: absolute;
  top: 20px;
  right: -22px;
  color: rgba(37,39,34,.58);
  font-family: "IBM Plex Mono", monospace;
}
.field-flow svg {
  width: 48px;
  height: 48px;
  fill: none;
  color: rgba(24, 63, 44, .88);
}
.field-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-top: 24px;
}
.field-compare div + div { border-left: 1px solid var(--line); padding-left: 28px; }
.field-compare span { color: var(--leather); }
.field-compare p { margin: 8px 0 0; font-size: .86rem; }

.how-work { padding: 28px 0 52px; }
.how-grid {
  display: grid;
  grid-template-columns: 210px repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}
.how-grid > .hand-note { padding: 26px 20px 0; font-size: 1rem; }
.process-note {
  font-family: "Kalam", cursive;
  font-style: normal;
  font-weight: 300;
  text-transform: none;
  letter-spacing: .025em;
  line-height: 1.55;
  font-size: 1.08rem !important;
  transform: rotate(-1deg);
}
.step { position: relative; padding-top: 12px; }
.step::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 44px;
  right: -28px;
  height: 1px;
  background: #77766c;
}
.step:last-child::before { right: 30px; }
.step > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: var(--paper);
  position: relative;
  z-index: 1;
  font-weight: 700;
}
.step h3 { margin: 22px 0 8px; }
.step p { font-size: .88rem; margin-bottom: 0; }

.principle {
  padding: 48px 0 52px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px 64px;
  align-items: start;
}
.principle .note-label { margin: 4px 0 0; }
.principle h2 {
  max-width: 850px;
  margin: 0 0 20px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}
.about-main { max-width: 900px; }
.about-main > p {
  max-width: 790px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.58;
}
.about-details {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-details article {
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}
.about-details article:first-child { padding-left: 0; }
.about-details article:last-child { border-right: 0; }
.about-details h3 { color: var(--green); margin-bottom: 10px; }
.about-details p { margin: 0; font-size: .86rem; line-height: 1.55; }

.cta-band {
  margin-top: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    var(--green);
  background-size: 38px 38px;
  color: #fff8e8;
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(460px, 1.22fr) 170px;
  align-items: center;
  gap: 48px;
  min-height: 510px;
  padding: 54px max(80px, calc((100% - var(--shell)) / 2));
  position: relative;
  overflow: visible;
}
.cta-band h2 { color: #fff8e8; font-size: clamp(2rem, 3vw, 2.5rem); margin-bottom: 12px; }
.cta-band p { max-width: 530px; margin: 0; font-size: 1.05rem; }
.contact-form {
  background: var(--paper-soft);
  color: var(--ink);
  border: 1px solid rgba(60, 40, 14, .32);
  border-radius: 3px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .2);
  padding: 30px 32px;
  position: relative;
  z-index: 3;
}
.contact-form-heading { margin-bottom: 24px; }
.contact-form-heading .form-label {
  margin: 0 0 10px;
  color: var(--leather);
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  font-weight: 600;
}
.contact-form-heading h3 { color: var(--green); font-size: 1.35rem; margin-bottom: 8px; }
.contact-form-heading > p:last-child { font-size: .86rem; line-height: 1.5; }
.form-honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.contact-fields label { display: grid; gap: 7px; min-width: 0; }
.contact-fields label > span {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .65rem;
  font-weight: 600;
  color: var(--green);
}
.contact-fields .field-wide { grid-column: 1 / -1; }
.contact-fields input,
.contact-fields textarea {
  width: 100%;
  border: 1px solid rgba(62, 61, 53, .35);
  border-radius: 3px;
  background: rgba(255, 253, 247, .72);
  color: var(--ink);
  font: inherit;
  font-size: .9rem;
  padding: 11px 12px;
  outline: none;
}
.contact-fields textarea { resize: vertical; min-height: 104px; line-height: 1.45; }
.contact-fields input:focus,
.contact-fields textarea:focus { border-color: var(--green); box-shadow: 0 0 0 2px rgba(24, 63, 44, .12); }
.contact-form-actions { display: flex; align-items: center; gap: 18px; margin-top: 20px; }
.contact-form-actions .button { border-radius: 3px; cursor: pointer; flex: 0 0 auto; white-space: nowrap; }
.contact-form-actions .button:disabled { cursor: wait; opacity: .72; transform: none; }
.contact-form-actions > p#form-status { font-size: .69rem; line-height: 1.35; color: var(--muted); }
.contact-form-actions > p#form-status.form-error { color: #8e3f2c; }
.contact-form.is-complete {
  min-height: 390px;
  display: grid;
  place-items: center;
}
.form-thank-you {
  max-width: 420px;
  padding: 28px;
  text-align: center;
  outline: none;
}
.thank-you-mark {
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  color: var(--leather);
  font-size: 1.65rem;
}
.form-thank-you .form-label { margin: 0 0 12px; color: var(--leather); }
.form-thank-you h3 { margin: 0 0 10px; color: var(--green); font-size: 1.65rem; }
.form-thank-you > p:last-child { color: var(--ink); font-size: 1rem; }
.cta-robot {
  position: absolute;
  right: max(80px, calc((100% - var(--shell)) / 2));
  bottom: 0;
  width: 190px;
  height: 250px;
  object-fit: cover;
  object-position: 50% 0;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 9px 8px rgba(0,0,0,.2));
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 1.05fr 1.15fr 1.15fr;
  gap: 40px;
  padding: 36px 0 74px;
  border-top: 1px solid var(--line);
  position: relative;
  align-items: start;
}
.site-footer p { margin: 0; }
.footer-brand { display: grid; gap: 16px; }
.footer-brand p { font-size: .9rem; color: var(--muted); }
.footer-nav { display: grid; grid-template-columns: repeat(2, max-content); gap: 12px 30px; align-content: start; }
.footer-contact { display: grid; gap: 12px; align-content: start; }
.footer-nav a, .footer-contact a { font-size: .88rem; text-decoration: none; }
.footer-sketch { justify-self: start; text-align: center; margin-left: -72px; }
.footer-sketch img {
  width: 132px;
  height: 104px;
  object-fit: contain;
  margin-inline: auto;
  opacity: .88;
}
.footer-sketch .hand-note { font-size: .8rem; margin-top: 2px; }
.copyright {
  position: absolute;
  left: 0;
  bottom: 24px;
  color: #928d80;
  text-transform: none;
  letter-spacing: 0;
}

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}

@media (max-width: 1050px) {
  :root { --shell: min(900px, calc(100vw - 40px)); }
  .site-header { grid-template-columns: auto auto 1fr; }
  .nav-toggle { display: inline-block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    z-index: 4;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: var(--paper-soft);
    border: 1px solid var(--line);
    border-radius: 3px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .header-button { justify-self: end; }
  .hero { grid-template-columns: 1fr; }
  .hero { align-items: stretch; }
  .hero-copy { top: 0; }
  .hero-art { place-items: end center; padding-right: 0; }
  .hero-art img { height: auto; width: min(320px, 60vw); max-width: 320px; transform: none; }
  .hero-art { min-height: 420px; }
  .slow-grid { grid-template-columns: 1fr 1fr; }
  .slow-grid > .workflow { left: 0; }
  .slow-copy, .workflow-arrow { display: none; }
  .help-grid { grid-template-columns: repeat(2, 1fr); }
  .help-robot, .help-spacer { display: none; }
  .robot-card { order: 5; min-height: 150px; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid > .hand-note { grid-column: 1 / -1; padding: 0; }
  .step::before { display: none; }
  .field-case { grid-template-columns: 1fr; gap: 36px; }
  .principle { grid-template-columns: 1fr; }
  .about-details { grid-column: 1; }
  .cta-band { grid-template-columns: 1fr; padding-inline: max(28px, calc((100% - var(--shell)) / 2)); padding-bottom: 120px; }
  .contact-form { width: min(680px, 100%); }
  .cta-robot { right: 32px; width: 140px; height: 168px; opacity: .92; }
  .site-footer { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  :root { --shell: calc(100vw - 28px); }
  .page-shell::before, .binder { display: none; }
  .site-header { height: auto; min-height: 78px; grid-template-columns: 1fr auto; gap: 14px; }
  .header-button { grid-column: 1 / -1; justify-self: stretch; }
  .brand-mark { width: 39px; height: 39px; }
  .brand-name { font-size: .8rem; }
  .hero { padding-top: 36px; }
  .hero-copy { padding-left: 0; }
  h1 { font-size: clamp(3rem, 14vw, 4rem); }
  h2 { font-size: clamp(2rem, 9vw, 2.7rem); }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 18px; }
  .button { width: 100%; text-align: center; }
  .hero-art { min-height: 380px; place-items: end center; }
  .hero-art img { height: auto; width: min(275px, 80vw); }
  .hero-note { position: static; order: -1; width: auto; justify-self: end; margin-right: 8px; }
  .capable-note, .mini-checklist { display: none; }
  .benefits { grid-template-columns: 1fr; }
  .benefit { border-right: 0; border-bottom: 1px solid var(--line); padding-inline: 10px; }
  .slow-work, .principle { padding-block: 44px; }
  .slow-grid, .help-grid, .how-grid { grid-template-columns: 1fr; }
  .workflow, .done-list { min-height: 0; }
  .help-card { min-height: 185px; }
  .robot-card { min-height: 120px; }
  .field-note { padding-block: 46px; }
  .field-note::before { inset: 14px; }
  .field-switch-row { align-items: stretch; flex-direction: column; gap: 16px; margin-bottom: 28px; }
  .field-tabs { display: grid; grid-template-columns: 1fr; }
  .field-tab { width: 100%; text-align: left; }
  .field-board { padding: 24px 18px; transform: none; }
  .field-flow { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
  .field-flow li:nth-child(2)::after { display: none; }
  .field-compare { grid-template-columns: 1fr; gap: 18px; }
  .field-compare div + div { border-left: 0; border-top: 1px solid var(--line); padding: 18px 0 0; }
  .principle { gap: 26px; }
  .about-details { grid-template-columns: 1fr; }
  .about-details article { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .about-details article:last-child { border-bottom: 0; }
  .cta-band { min-height: 0; padding-block: 42px 110px; }
  .contact-form { padding: 24px 20px; }
  .contact-fields { grid-template-columns: 1fr; }
  .contact-fields .field-wide { grid-column: auto; }
  .contact-form-actions { align-items: stretch; flex-direction: column; }
  .cta-robot { width: 118px; height: 142px; }
  .site-footer { grid-template-columns: 1fr; padding-bottom: 86px; }
  .footer-sketch { justify-self: start; text-align: left; margin-left: 0; }
}
