:root {
  --paper: #f7f6f0;
  --ink: #19372d;
  --muted: #65736a;
  --line: #d9dfd5;
  --accent: #d1f17a;
  --white: #fff;
  --radius: 14px;
  font-family: Inter, 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,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.5;
  cursor: wait;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #538c35;
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
.skip {
  position: absolute;
  top: -60px;
  left: 20px;
  background: var(--ink);
  color: #fff;
  padding: 12px;
  z-index: 9;
}
.skip:focus {
  top: 12px;
}
.header {
  max-width: 1500px;
  margin: auto;
  padding: 25px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.brand {
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.6px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  background: var(--ink);
  color: var(--accent);
  height: 32px;
  width: 32px;
  border-radius: 8px;
  display: grid;
  place-content: center;
  font: italic bold 30px Georgia;
  line-height: 1;
}
.beta {
  font: 10px/1.3 monospace;
  letter-spacing: 1px;
  color: var(--muted);
  margin-left: 12px;
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.header nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
}
.header nav a {
  text-decoration: none;
  padding-block: 6px;
}
.header nav a[aria-current] {
  border-bottom: 1px solid var(--ink);
}
.environment {
  background: #edeedb;
  border-bottom: 1px solid #d7dbbd;
  color: #425335;
  padding: 9px 5%;
  text-align: center;
  font-size: 12px;
}
main {
  max-width: 1500px;
  margin: auto;
  padding: 0 5%;
}
.intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 58px 0 38px;
  gap: 35px;
}
.eyebrow {
  font: 11px/1.4 monospace;
  letter-spacing: 1.7px;
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 18px;
}
.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #6ca649;
  border-radius: 50%;
  flex-shrink: 0;
}
h1 {
  font-size: clamp(42px, 4.6vw, 68px);
  font-weight: 500;
  letter-spacing: -3px;
  line-height: 1.08;
  margin: 0;
}
h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
h2 {
  font-size: 27px;
  font-weight: 550;
  letter-spacing: -0.9px;
  margin: 0 0 14px;
}
.intro-copy {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 3px;
  max-width: 370px;
}
.intro-copy span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 365px;
  gap: 28px;
  align-items: start;
}
.canvas-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #f0efe7;
}
.canvas-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 10px monospace;
  letter-spacing: 1.2px;
  padding: 19px 23px;
  background: #eaeee4;
  border-bottom: 1px solid var(--line);
}
.canvas-bar > span:first-child {
  display: flex;
  gap: 9px;
  align-items: center;
}
.content-nav {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  font-size: 11px;
}
.content-nav label {
  font-weight: normal;
  margin: 0;
}
.content-nav select {
  width: auto;
  padding: 4px 20px 4px 8px;
  background: transparent;
  border: 0;
  font-size: 12px;
}
.content-nav > span {
  margin-left: auto;
  color: var(--muted);
}
iframe {
  display: block;
  width: 100%;
  height: 482px;
  border: 0;
  background: #f6f3eb;
}
.canvas-footer {
  border-top: 1px solid var(--line);
  padding: 15px 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 10px;
  color: var(--muted);
}
.canvas-footer a {
  text-decoration: none;
}
.editor {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.editor .eyebrow {
  margin-bottom: 13px;
}
.editor h2 {
  font-size: 30px;
}
.muted {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.editor > .muted {
  margin-bottom: 24px;
}
label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 9px;
}
textarea,
input,
select {
  width: 100%;
  border: 1px solid #d6ddd2;
  background: #fcfcf9;
  border-radius: 7px;
  padding: 12px;
  color: var(--ink);
  font-size: 12px;
}
textarea {
  resize: vertical;
  min-height: 125px;
  line-height: 1.65;
}
textarea::placeholder {
  color: #88938a;
}
select {
  min-height: 40px;
}
.input-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
  margin: 6px 0 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--ink);
  color: var(--accent);
  border: 0;
  padding: 16px 19px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 20px;
}
.primary:hover {
  background: #294e3f;
}
.fine-print {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
  margin-bottom: 0;
}
.check {
  display: flex;
  gap: 10px;
  font-size: 11px;
  line-height: 1.6;
  font-weight: 400;
  margin: 16px 0;
}
.check input {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--ink);
}
.price {
  font-size: 45px;
  letter-spacing: -2px;
}
.quote-panel > p:not(.eyebrow),
.order-panel p {
  font-size: 13px;
  line-height: 1.6;
}
.text-button {
  border: 0;
  background: none;
  text-decoration: underline;
  color: var(--ink);
  font-size: 12px;
  padding: 13px 0;
}
.error {
  padding: 12px;
  background: #fff0eb;
  border: 1px solid #efc8bb;
  border-radius: 6px;
  color: #843c2a;
  font-size: 12px;
  line-height: 1.5;
}
.activity {
  margin-top: 44px;
}
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}
.section-title h2 {
  font-size: 23px;
}
.section-title h2 span {
  font: 11px monospace;
  color: var(--muted);
  margin-left: 12px;
}
.section-title > a {
  font-size: 11px;
  text-decoration: none;
}
.empty {
  padding: 27px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.activity-row {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 17px 0;
  font-size: 13px;
}
.activity-row .number {
  font: 11px monospace;
  color: var(--muted);
  width: 60px;
}
.activity-row .right {
  margin-left: auto;
  font-size: 11px;
}
.activity-row button {
  background: none;
  border: 0;
  color: var(--ink);
  text-decoration: underline;
  padding: 7px;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 56px 0 62px;
}
.principles > div {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.principles span {
  font: 10px monospace;
  letter-spacing: 1px;
  color: var(--muted);
}
.principles h3 {
  font-size: 17px;
  font-weight: 500;
  margin: 17px 0 8px;
}
.principles p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 300px;
}
footer {
  border-top: 1px solid var(--line);
  max-width: 1500px;
  margin: auto;
  padding: 28px 5%;
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
footer .brand {
  font-size: 14px;
}
footer .brand-mark {
  width: 25px;
  height: 25px;
  font-size: 23px;
}
footer > p {
  font-size: 11px;
  color: var(--muted);
}
footer nav {
  margin-left: auto;
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
  font-size: 10px;
}
footer nav a {
  text-decoration: none;
}
.system-view {
  max-width: 950px;
  margin: 40px auto 90px;
  min-height: 60vh;
}
.back-link {
  display: block;
  font-size: 12px;
  margin-bottom: 50px;
}
.system-view h1 {
  margin-bottom: 30px;
}
.system-view p,
.system-view li {
  font-size: 16px;
  line-height: 1.8;
  max-width: 75ch;
}
.system-view h2 {
  margin-top: 30px;
}
.system-view iframe {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-top: 20px;
}
.system-view form {
  max-width: 550px;
}
.system-view .primary {
  max-width: 300px;
}
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  border-radius: 9px;
  padding: 15px 24px;
  box-shadow: 0 6px 24px #0002;
  font-size: 13px;
  z-index: 5;
}
.admin-grid {
  display: grid;
  gap: 20px;
  margin: 24px 0;
}
.admin-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.admin-card pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  max-height: 300px;
  overflow: auto;
  font-size: 12px;
}
.admin-card button {
  margin: 7px;
  padding: 10px;
}
.admin-card input {
  max-width: 300px;
  margin: 6px;
}
.admin-card textarea {
  min-height: 130px;
}
@media (min-width: 1450px) {
  iframe {
    height: 550px;
  }
}
@media (max-width: 1050px) {
  .beta {
    display: none;
  }
  .workspace {
    grid-template-columns: minmax(0, 1fr) 325px;
    gap: 18px;
  }
  .editor {
    padding: 22px;
  }
  .intro-copy {
    max-width: 280px;
    font-size: 15px;
  }
  h1 {
    font-size: 54px;
  }
  .canvas-footer {
    padding-inline: 15px;
  }
}
@media (max-width: 760px) {
  .header {
    padding: 19px 5%;
    flex-wrap: wrap;
    gap: 18px;
  }
  .brand {
    font-size: 17px;
  }
  .header nav {
    gap: 22px;
    font-size: 11px;
    width: 100%;
    justify-content: space-between;
  }
  .intro {
    padding: 35px 0 26px;
    display: block;
  }
  .intro h1 {
    font-size: 45px;
    letter-spacing: -2px;
  }
  .intro-copy {
    margin-top: 24px;
    font-size: 14px;
    max-width: none;
  }
  .intro-copy span {
    font-size: 11px;
  }
  .workspace {
    grid-template-columns: 1fr;
  }
  .canvas-panel iframe {
    height: 340px;
  }
  .canvas-bar {
    padding: 16px;
  }
  .content-nav {
    padding: 10px 13px;
  }
  .canvas-footer {
    font-size: 9px;
  }
  .editor {
    padding: 24px;
  }
  .activity {
    margin-top: 34px;
  }
  .section-title h2 {
    font-size: 20px;
  }
  .section-title h2 span {
    display: block;
    margin: 8px 0;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 32px 0;
  }
  .principles p {
    max-width: none;
  }
  .principles > div {
    padding-top: 18px;
  }
  footer {
    gap: 15px;
  }
  footer > p {
    margin: 0;
  }
  footer nav {
    margin-left: 0;
    width: 100%;
    gap: 18px;
  }
  .system-view h1 {
    font-size: 40px;
  }
  .system-view p,
  .system-view li {
    font-size: 14px;
  }
  .toast {
    width: 90%;
    text-align: center;
  }
  .activity-row {
    gap: 8px;
  }
  .activity-row .number {
    width: 45px;
  }
}

.table-scroll {
  overflow-x: auto;
}
.table-scroll table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.table-scroll th,
.table-scroll td {
  text-align: left;
  padding: 0.6rem;
  border-bottom: 1px solid #c7cec7;
  overflow-wrap: anywhere;
}
.report-card {
  padding: 1rem 0;
  border-bottom: 1px solid #c7cec7;
}
.report-card p {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.report-card label {
  display: block;
  margin-top: 0.75rem;
}
