:root {
  --ink: #17231f;
  --muted: #5c6863;
  --paper: #f5f1e8;
  --panel: #fffdf8;
  --line: #d9d2c4;
  --green: #146b4a;
  --lime: #d9f06c;
  --orange: #e86f3b;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--paper); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, sans-serif; margin: 0; }
a { color: inherit; }
.wrap { margin: auto; max-width: 1120px; padding-left: 28px; padding-right: 28px; }
.nav { align-items: center; display: flex; height: 76px; justify-content: space-between; }
.brand { align-items: center; display: flex; font-size: 18px; font-weight: 800; gap: 9px; text-decoration: none; }
.brand span { align-items: center; background: var(--ink); border-radius: 9px; color: var(--lime); display: inline-flex; font-size: 12px; height: 32px; justify-content: center; width: 32px; }
nav { display: flex; gap: 24px; }
nav a { color: var(--muted); font-size: 14px; text-decoration: none; }
.hero { padding-bottom: 100px; padding-top: 90px; }
.eyebrow { color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
h1 { font-family: Georgia, serif; font-size: clamp(64px, 10vw, 124px); letter-spacing: -.065em; line-height: .82; margin: 24px 0 36px; max-width: 900px; }
h1 em { color: var(--green); font-weight: 400; }
.lede { color: var(--muted); font-size: clamp(18px, 2.2vw, 25px); line-height: 1.45; max-width: 760px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 24px; }
.button { border: 1px solid var(--ink); border-radius: 8px; display: inline-block; font-weight: 750; padding: 13px 19px; text-decoration: none; }
.button.primary { background: var(--ink); color: white; }
.install { align-items: center; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; display: flex; justify-content: space-between; max-width: 680px; padding: 10px 10px 10px 16px; }
.install code { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.install button { background: var(--lime); border: 0; border-radius: 6px; color: var(--ink); cursor: pointer; font-weight: 800; padding: 8px 12px; }
.availability { color: var(--muted); font-size: 13px; }
.problem { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; gap: 8%; grid-template-columns: 1fr 1fr; padding-bottom: 70px; padding-top: 70px; }
h2 { font-family: Georgia, serif; font-size: clamp(36px, 5vw, 60px); letter-spacing: -.04em; line-height: 1; margin: 14px 0 24px; }
.problem > p { color: var(--muted); font-size: 20px; line-height: 1.6; }
.demo, .integrations { padding-bottom: 100px; padding-top: 100px; }
.flow { align-items: stretch; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; margin-top: 46px; }
.flow article, .grid article { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 25px; }
.flow article.state { background: var(--ink); color: white; transform: translateY(-12px); }
.number { color: var(--orange); font-family: ui-monospace, monospace; font-size: 12px; font-weight: 800; }
h3 { font-size: 20px; margin: 36px 0 10px; }
.flow p { color: var(--muted); line-height: 1.55; min-height: 100px; }
.flow .state p { color: #dbe3df; }
.tag { border: 1px solid currentColor; border-radius: 99px; display: inline-block; font-family: ui-monospace, monospace; font-size: 11px; opacity: .75; padding: 5px 8px; }
.arrow { align-self: center; color: var(--green); font-size: 28px; padding: 0 12px; }
.principles { display: grid; grid-template-columns: repeat(4, 1fr); padding-bottom: 70px; }
.principles article { border-left: 1px solid var(--line); padding: 4px 24px; }
.principles p { color: var(--muted); line-height: 1.5; }
.integrations { background: var(--ink); color: white; max-width: none; }
.integrations > * { margin-left: auto; margin-right: auto; max-width: 1064px; }
.integrations .eyebrow { color: var(--lime); }
.grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.grid article { background: #21312b; border-color: #44534d; }
.grid h3 { margin-top: 0; }
.grid p { color: #c4cec9; }
.grid span { color: var(--lime); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.cta { padding-bottom: 120px; padding-top: 120px; text-align: center; }
.cta h2, .cta p { margin-left: auto; margin-right: auto; max-width: 760px; }
.cta > p:not(.eyebrow) { color: var(--muted); font-size: 19px; line-height: 1.6; }
footer { border-top: 1px solid var(--line); color: var(--muted); display: flex; gap: 24px; padding-bottom: 36px; padding-top: 26px; }
footer span { margin-right: auto; }
@media (max-width: 760px) {
  nav a:not(:last-child) { display: none; }
  .hero { padding-top: 56px; }
  .problem, .grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; gap: 12px; }
  .arrow { padding: 0; text-align: center; transform: rotate(90deg); }
  .flow article.state { transform: none; }
  .principles { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .install { align-items: stretch; flex-direction: column; }
}
@media (prefers-reduced-motion: no-preference) {
  .button, .install button { transition: transform .15s ease, box-shadow .15s ease; }
  .button:hover, .install button:hover { box-shadow: 4px 4px 0 var(--lime); transform: translate(-2px, -2px); }
}
