:root {
  --ink: #202b28;
  --muted: #52655d;
  --paper: #f7f6f0;
  --green: #164d3d;
  --mint: #dce9de;
  --line: #d5dcd2;
  --orange: #f0ac71;
  --red: #9f3124;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: var(--green);
  text-underline-offset: 4px;
}
button,
input,
select,
textarea {
  font: inherit;
}
header,
main,
footer {
  max-width: 1180px;
  margin: auto;
  padding: 0 32px;
}
header {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  text-decoration: none;
  font-size: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 750;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.6px;
}
.brand img {
  width: 38px;
  height: 38px;
}
.byline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  margin-top: 3px;
}
.button,
button {
  background: var(--green);
  color: white;
  border: 1px solid var(--green);
  border-radius: 7px;
  padding: 13px 20px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.button.secondary,
button.secondary {
  background: transparent;
  color: var(--green);
}
button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.danger {
  background: var(--red);
  border-color: var(--red);
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 76px;
  padding: 75px 0 95px;
}
.eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  display: flex;
  gap: 9px;
  align-items: center;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}
h1 {
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -3px;
  margin: 24px 0;
}
h1 em {
  font-style: normal;
  color: #477a60;
}
h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
}
h3 {
  font-size: 19px;
  font-weight: 650;
}
p,
li {
  font-size: 16px;
  line-height: 1.7;
}
.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 510px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 27px;
}
.fine {
  font-size: 12px;
  color: var(--muted);
}
.preview {
  background: #e5ece1;
  border-radius: 14px;
  padding: 32px;
  position: relative;
}
.preview:before {
  content: "";
  display: block;
  position: absolute;
  inset: 15px -12px -15px 18px;
  border: 1px solid #c6d3c1;
  border-radius: 14px;
  z-index: -1;
  transform: rotate(3deg);
}
.sheet {
  background: #fffef8;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 12px 35px #30492d10;
}
.sheet-label {
  font-size: 10px;
  letter-spacing: 1.6px;
  font-weight: 700;
  color: var(--muted);
}
.sheet h3 {
  font-size: 24px;
  letter-spacing: -0.8px;
  margin: 10px 0 22px;
}
.row {
  padding: 17px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
}
.row strong,
.row small {
  display: block;
}
.row small {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}
.badge {
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  background: #fcdec7;
  color: #77401a;
  white-space: nowrap;
  padding: 5px 7px;
  align-self: flex-start;
}
.badge.soft {
  background: #e6eee5;
  color: var(--green);
}
.chat {
  background: var(--green);
  color: #fff;
  border-radius: 9px;
  padding: 19px 22px;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 22px;
}
.chat span {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  color: #c2dbc9;
  margin-bottom: 6px;
}
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 21px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}
.section {
  padding: 70px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 30px;
}
.section-head p {
  max-width: 360px;
  color: var(--muted);
  margin: 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  border: 1px solid var(--line);
  padding: 29px;
  border-radius: 9px;
}
.card p {
  font-size: 14px;
  color: var(--muted);
}
.step {
  font-size: 12px;
  color: #7c8c80;
  letter-spacing: 2px;
}
.dark {
  background: var(--green);
  color: #fff;
  border-radius: 12px;
  padding: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.dark h2 {
  margin: 6px 0 15px;
}
.dark p {
  color: #d5e7dc;
}
.prompts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.prompts li {
  padding: 14px 0;
  border-bottom: 1px solid #ffffff25;
  font-size: 15px;
}
.footerline {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: var(--muted);
}
.footerline div {
  display: flex;
  gap: 20px;
}
.prose {
  max-width: 760px;
  margin: 50px auto 80px;
}
.prose h1 {
  font-size: 44px;
  letter-spacing: -1.8px;
}
.prose h2 {
  font-size: 25px;
  margin-top: 38px;
}
.prose p,
.prose li {
  color: var(--muted);
}
.panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffefa;
  padding: 27px;
  margin: 24px 0;
}
.panel h2 {
  margin-top: 0;
}
.panel p {
  font-size: 14px;
}
.account-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.account-grid .panel {
  margin: 0;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 650;
  margin: 18px 0 7px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #b7c5b9;
  border-radius: 6px;
  padding: 12px;
  color: var(--ink);
  background: white;
  min-width: 0;
}
input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}
label.check {
  display: flex;
  align-items: start;
  line-height: 1.5;
}
code {
  overflow-wrap: anywhere;
  font-size: 13px;
  background: #eaf0e6;
  padding: 2px 5px;
  border-radius: 3px;
}
pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  background: #eaf0e6;
  padding: 18px;
  font-size: 13px;
  border-radius: 7px;
}
.status {
  padding: 14px 18px;
  border-left: 3px solid var(--green);
  background: var(--mint);
  font-size: 14px;
  line-height: 1.5;
  margin: 20px 0;
}
.status.error {
  border-color: var(--red);
  background: #f8e7e2;
}
.record {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.record h3 {
  margin: 0 0 6px;
}
.record p {
  margin: 0 0 12px;
}
.record select {
  max-width: 180px;
}
.record .actions {
  margin-top: 10px;
}
.key {
  word-break: break-all;
  font-family: monospace;
  background: #eaf0e6;
  padding: 16px;
  border-radius: 6px;
}
.hidden,
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid #b9692c;
  outline-offset: 4px;
}
.skip {
  position: absolute;
  left: -999px;
  top: 6px;
}
.skip:focus {
  left: 10px;
}
.legalnote {
  font-size: 13px;
  color: var(--muted);
  background: #ebece3;
  padding: 16px;
  border-radius: 6px;
}
@media (max-width: 780px) {
  header,
  main,
  footer {
    padding-left: 22px;
    padding-right: 22px;
  }
  header {
    height: 82px;
  }
  nav {
    gap: 15px;
  }
  nav a:first-child {
    display: none;
  }
  .brand {
    font-size: 17px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 45px 0 60px;
  }
  h1 {
    letter-spacing: -2px;
  }
  .preview {
    padding: 23px;
  }
  .preview:before {
    display: none;
  }
  .cards,
  .dark,
  .account-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    display: block;
  }
  .strip {
    flex-wrap: wrap;
  }
  .section {
    padding: 45px 0;
  }
  .dark {
    padding: 28px;
  }
  .footerline {
    flex-wrap: wrap;
  }
  .prose {
    margin-top: 30px;
  }
  .prose h1 {
    font-size: 38px;
  }
  .row {
    font-size: 13px;
  }
}
.eyebrow.inverse {
  color: inherit;
}
