:root {
  color-scheme: dark;
  --paper: #101112;
  --paper-soft: #17191a;
  --ink: #f2eee6;
  --muted: #9d9d98;
  --line: #343738;
  --blue: #1b83f5;
  --green: #34b977;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

a { color: inherit; }

.masthead,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.masthead {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: -.02em;
}

.mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  font: 700 11px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  color: var(--green);
}

nav { display: flex; gap: 24px; }
nav a { color: var(--muted); text-decoration: none; font-size: 14px; }
nav a:hover, nav a:focus-visible { color: var(--ink); }

.hero {
  padding: 100px 0 62px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font: 700 12px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, p { margin-top: 0; }

h1 {
  max-width: 950px;
  margin-bottom: 28px;
  font-size: clamp(54px, 9vw, 118px);
  line-height: .88;
  letter-spacing: -.07em;
  font-weight: 820;
}

h1 span { color: var(--blue); }

.lede {
  max-width: 680px;
  color: #c2c1bc;
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.35;
  letter-spacing: -.025em;
}

.actions { display: flex; gap: 10px; margin: 36px 0 72px; flex-wrap: wrap; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
}

.button:hover, .button:focus-visible { border-color: var(--ink); }
.button.primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.route {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font: 700 13px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  text-transform: uppercase;
}

.route b { color: var(--blue); font-weight: 700; }
.route i { height: 1px; background: var(--line); }

.product-shot { margin: 68px 0 0; }
.product-shot img { display: block; width: 100%; height: auto; border: 1px solid var(--line); }
.product-shot figcaption { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font: 12px/1.4 ui-monospace, SFMono-Regular, Consolas, monospace; padding-top: 12px; }

.workflow {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 72px;
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: .98;
  letter-spacing: -.055em;
}

.workflow ol { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.workflow li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.workflow li > span { color: var(--blue); font: 700 13px/1.5 ui-monospace, SFMono-Regular, Consolas, monospace; }
.workflow strong { font-size: 20px; }
.workflow li p { margin: 5px 0 0; color: var(--muted); }

.proof-index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  padding: 120px 0;
}

.proof-heading > p:last-child { max-width: 530px; color: var(--muted); }
.proof-links { border-top: 1px solid var(--line); }
.proof-links a { display: flex; justify-content: space-between; gap: 24px; padding: 25px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.proof-links a:hover span, .proof-links a:focus-visible span { color: var(--blue); }
.proof-links span { font-weight: 760; }
.proof-links small { color: var(--muted); text-align: right; }

.closing {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border-block: 1px solid var(--line);
  font: 700 13px/1.4 ui-monospace, SFMono-Regular, Consolas, monospace;
  text-transform: uppercase;
}
.closing p { margin: 0; color: var(--green); }

footer {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 760px) {
  .masthead, main, footer { width: min(100% - 24px, 1180px); }
  .masthead { min-height: 70px; }
  nav a:not(:last-child) { display: none; }
  .hero { padding: 72px 0 42px; }
  h1 { font-size: clamp(48px, 16vw, 72px); }
  .actions { margin-bottom: 52px; }
  .route { grid-template-columns: auto auto; gap: 8px 12px; }
  .route i { display: none; }
  .workflow, .proof-index { grid-template-columns: 1fr; gap: 36px; padding: 78px 0; }
  .product-shot { margin-top: 40px; }
  .product-shot figcaption, .closing, footer { align-items: flex-start; flex-direction: column; }
  .proof-links a { flex-direction: column; gap: 5px; }
  .proof-links small { text-align: left; }
  footer { justify-content: center; padding: 28px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
