@import url("/local-fonts.css");
:root {
  --paper: #f5f2e9;
  --ink: #172e3a;
  --muted: #52636b;
  --line: #d7ddd8;
  --green: #214f43;
  --lime: #c6d993;
  --white: #fffef9;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button,
input,
textarea {
  font: inherit;
}
button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  padding: 14px 22px;
  font-weight: 700;
  cursor: pointer;
  min-height: 48px;
}
.button.secondary,
button.secondary {
  background: transparent;
  color: var(--ink);
}
button.danger {
  background: #892f2f;
  border-color: #892f2f;
}
button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #b66a21;
  outline-offset: 4px;
}
.wrap {
  max-width: 1160px;
  margin: auto;
  padding: 0 36px;
}
header {
  border-bottom: 1px solid var(--line);
}
nav {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.brand img {
  width: 42px;
  height: 42px;
}
nav .links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}
nav .links a {
  text-decoration: none;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 24px;
}
.hero {
  padding: 86px 0 70px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font:
    normal 64px/1.05 Georgia,
    serif;
  letter-spacing: -2.5px;
  margin-bottom: 26px;
}
h1 em {
  font-weight: normal;
  color: var(--green);
}
.lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 580px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 18px;
}
.small {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.ledger {
  background: var(--white);
  border: 1px solid #bec7c2;
  border-radius: 4px;
  box-shadow: 12px 12px 0 #e7e7dc;
  transform: rotate(1deg);
  overflow: hidden;
}
.ledger-top {
  padding: 22px 26px;
  background: var(--green);
  color: white;
  display: flex;
  justify-content: space-between;
}
.ledger-top small {
  color: #d3e1cf;
}
.ledger-body {
  padding: 26px;
}
.ledger-label {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
}
.ledger h3 {
  font:
    normal 27px Georgia,
    serif;
  margin: 10px 0 26px;
}
.entry {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.entry .check {
  border: 1px solid var(--green);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--green);
}
.entry strong {
  display: block;
  margin-bottom: 6px;
}
.entry p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.tag {
  display: inline-block;
  background: #eef2df;
  color: #345127;
  padding: 5px 9px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}
.sample-note {
  padding: 14px 26px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-size: 13px;
  color: var(--muted);
}
section.content {
  padding: 70px 0;
}
h2 {
  font:
    normal 38px/1.15 Georgia,
    serif;
  letter-spacing: -0.8px;
}
h3 {
  font-size: 18px;
  line-height: 1.4;
}
p,
li {
  line-height: 1.7;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}
.step {
  border-top: 2px solid var(--green);
  padding-top: 20px;
}
.num {
  font:
    normal 27px Georgia,
    serif;
  color: var(--green);
  margin-bottom: 24px;
}
.step p {
  color: var(--muted);
  font-size: 15px;
}
.prompts {
  background: var(--ink);
  color: var(--white);
  padding: 54px;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}
.prompts h2 {
  color: #d4e2b1;
}
.prompt {
  border-bottom: 1px solid #61716f;
  padding: 16px 0;
  font:
    normal 20px/1.45 Georgia,
    serif;
}
.prompt:first-child {
  padding-top: 0;
}
.muted {
  color: var(--muted);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.rule {
  border-top: 1px solid var(--line);
}
.footer {
  padding: 34px 0;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.page {
  max-width: 820px;
  padding: 68px 0 90px;
}
.page h1 {
  font-size: 48px;
}
.page h2 {
  font-size: 28px;
  margin: 42px 0 16px;
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  margin: 22px 0;
}
.panel h2 {
  margin: 0 0 16px;
}
.fields {
  display: grid;
  gap: 16px;
}
label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
input,
textarea {
  display: block;
  width: 100%;
  padding: 13px;
  border: 1px solid #879690;
  border-radius: 6px;
  background: white;
  margin-top: 8px;
  color: var(--ink);
}
input[type="checkbox"] {
  width: auto;
  display: inline;
  margin-right: 10px;
}
textarea {
  resize: vertical;
  min-height: 85px;
  font-family: ui-monospace, monospace;
  font-size: 13px;
}
.message {
  padding: 16px;
  border-left: 3px solid var(--green);
  background: #e7eddd;
  margin: 18px 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.message.error {
  border-color: #a43828;
  background: #f9e8df;
}
.hidden,
[hidden] {
  display: none !important;
}
.stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.stat strong {
  font:
    normal 32px Georgia,
    serif;
  display: block;
}
code {
  font-size: 13px;
  overflow-wrap: anywhere;
  background: #ebece4;
  padding: 2px 5px;
}
pre {
  padding: 20px;
  background: #e7ebe4;
  overflow: auto;
  white-space: pre-wrap;
  font-size: 13px;
  line-height: 1.6;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}
th,
td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}
.notice {
  border: 1px solid #c1cfb8;
  background: #edf1e6;
  border-radius: 6px;
  padding: 18px;
  margin: 24px 0;
  font-size: 14px;
}
.danger-zone {
  border-color: #c5a195;
}
.status-dot {
  display: inline-block;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #62824c;
  margin-right: 8px;
}
@media (max-width: 850px) {
  .hero {
    gap: 35px;
  }
  h1 {
    font-size: 50px;
  }
  .grid {
    gap: 24px;
  }
  .wrap {
    padding: 0 24px;
  }
  .prompts {
    padding: 35px;
  }
}
@media (max-width: 650px) {
  nav {
    height: auto;
    min-height: 85px;
    flex-wrap: wrap;
    padding: 18px 0;
    gap: 15px;
  }
  nav .links {
    gap: 18px;
  }
  .hero {
    display: block;
    padding: 48px 0;
  }
  .hero .ledger {
    margin: 42px 0 15px;
  }
  h1 {
    font-size: 48px;
  }
  .grid,
  .prompts,
  .split {
    grid-template-columns: 1fr;
  }
  .strip {
    flex-wrap: wrap;
  }
  .footer {
    flex-direction: column;
  }
  .page h1 {
    font-size: 40px;
  }
  section.content {
    padding: 48px 0;
  }
  .prompts {
    padding: 30px;
  }
  .wrap {
    padding: 0 22px;
  }
  .panel {
    padding: 20px;
  }
}

.prompts .small {
  color: #d1dbd5;
}
.prompts .eyebrow {
  color: #c6d993;
}
