:root {
  --bg: #090909;
  --surface: #111111;
  --surface-2: #171717;
  --surface-3: #202020;
  --line: #2a2a2a;
  --line-soft: #1d1d1d;
  --text: #f2f2f2;
  --muted: #b1b1b1;
  --muted-2: #777777;
  --accent: #2f7df6;
  --accent-hover: #4d8df6;
  --cyan: #20c7d9;
  --green: #31c48d;
  --red: #f25555;
  --max: 1440px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
html { scroll-padding-top: 88px; }
html,
body,
* {
  scrollbar-width: thin;
  scrollbar-color: #4a4a4a #101010;
}
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-track {
  background: #101010;
}
*::-webkit-scrollbar-thumb {
  min-height: 40px;
  border: 2px solid #101010;
  border-radius: 999px;
  background: #4a4a4a;
}
*::-webkit-scrollbar-thumb:hover {
  background: #6a6a6a;
}
*::-webkit-scrollbar-corner {
  background: #101010;
}
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: -.01em;
}

a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 6.2vw, 96px);
  line-height: .94;
  letter-spacing: -.055em;
  font-weight: 760;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 740;
}
h3 {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.05;
  letter-spacing: -.02em;
}
p { line-height: 1.55; }
code, pre { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 0 clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(9, 9, 9, .9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -.03em;
}
.brand-mark {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: var(--accent);
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 2px;
  background: var(--cyan);
}

.site-nav nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}
.site-nav nav a:hover,
.site-footer nav a:hover { color: var(--text); }

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--text);
  font-weight: 700;
}
.button { min-height: 44px; padding: 0 18px; }
.nav-cta:hover,
.button:hover {
  border-color: #3a3a3a;
  background: #1d1d1d;
}
.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.button.primary:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
}

main {
  overflow: hidden;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: clamp(40px, 7vw, 104px);
  align-items: center;
  width: min(var(--max), calc(100vw - 40px));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 132px) 0 72px;
}

.hero-copy {
  max-width: 860px;
}
.lead {
  max-width: 700px;
  margin-bottom: 28px;
  color: #d0d0d0;
  font-size: clamp(18px, 1.8vw, 22px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-note {
  max-width: 560px;
  color: var(--muted-2);
  font-size: 14px;
}

.product-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0d0d0d;
}
.shot-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
}
.shot-header span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
pre {
  margin: 0;
  overflow: auto;
  padding: 13px 0 15px;
  color: #e8e8e8;
  background: #080808;
  border: 0;
  line-height: 1.45;
  font-size: 13px;
}

.code-copy-wrap {
  position: relative;
  margin: 18px 0 20px;
  border: 1px solid #242424;
  border-radius: 9px;
  overflow: visible;
  background: #080808;
}

.code-copy-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}

.code-copy-wrap pre {
  border: 0;
  border-radius: 0 0 9px 9px;
}

.code-block-header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px 0 16px;
  border-bottom: 1px solid var(--line-soft);
  border-radius: 9px 9px 0 0;
  background: #090909;
}

.code-block-title {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  color: var(--text);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.copy-code-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-height: 28px;
  min-width: 28px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.copy-code-button .copy-icon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.copy-code-button .copy-icon-done {
  display: none;
}

.copy-code-button[data-copied="true"] {
  color: #33d17a;
}

.copy-code-button[data-copied="true"] .copy-icon-default { display: none; }
.copy-code-button[data-copied="true"] .copy-icon-done { display: block; }

.copy-code-button:hover {
  color: var(--text);
  background: #171717;
}

.code-language-static {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 2px;
  color: #d8d8d8;
  font-size: 13px;
  font-weight: 680;
}

.code-language-switcher {
  position: relative;
  z-index: 3;
}

.code-language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 8px 0 10px;
  border: 0;
  border-radius: 7px;
  color: #d8d8d8;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 680;
  cursor: pointer;
}

.code-language-trigger:hover,
.code-language-switcher.open .code-language-trigger {
  color: #fff;
  background: #171717;
}

.code-language-trigger svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.code-language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  min-width: 132px;
  padding: 6px;
  border: 1px solid #2a2a2a;
  border-radius: 9px;
  background: #151515;
  box-shadow: 0 18px 50px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.035);
}

.code-language-menu[hidden] {
  display: none !important;
}

.code-language-switcher.open .code-language-menu {
  display: grid;
  gap: 1px;
}

.code-language-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 7px;
  color: #e8e8e8;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.code-language-option:hover,
.code-language-option.active {
  color: #fff;
  background: #2a2a2a;
}

.code-option-check {
  color: #fff;
  text-align: center;
}

.code-line {
  display: grid;
  grid-template-columns: 48px minmax(max-content, 1fr);
  min-height: 19px;
  padding-right: 20px;
}

.code-line-number {
  padding-right: 14px;
  color: #3f3f3f;
  text-align: right;
  user-select: none;
}

.code-line-content {
  white-space: pre;
}

.tok-keyword { color: #33a8ff; }
.tok-name { color: #f4f4f4; }
.tok-string { color: #00d18f; }
.tok-field { color: #ff4f9a; }
.tok-url { color: #00d6d6; }
.tok-number { color: #ffb020; }
.tok-comment { color: #7a7a7a; }
.shot-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-soft);
}
.shot-footer p {
  margin: 0;
  padding: 14px;
  border-right: 1px solid var(--line-soft);
}
.shot-footer p:last-child { border-right: 0; }
.shot-footer span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-2);
  font-size: 12px;
}
.shot-footer strong {
  font-size: 18px;
  letter-spacing: -.02em;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(var(--max), calc(100vw - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-bar span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-right: 1px solid var(--line-soft);
  color: var(--muted);
}
.proof-bar span:last-child { border-right: 0; }

.section {
  width: min(var(--max), calc(100vw - 40px));
  margin: 0 auto;
  padding: 88px 0;
}
.section-kicker {
  margin-bottom: 14px;
  color: var(--muted-2);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .1em;
}
.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}
.section-head.tight {
  max-width: 680px;
}
.section-head p,
.editorial-grid p,
.system-card p,
.workflow-list p,
.api-section p,
.beta-note p,
.final-cta p {
  color: var(--muted);
}

.editorial {
  border-bottom: 1px solid var(--line-soft);
}
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, .7fr);
  gap: clamp(32px, 7vw, 104px);
  align-items: start;
}
.editorial-grid p:last-child { margin-bottom: 0; }

.system-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.system-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.system-card.wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(0, .55fr) minmax(420px, .45fr);
  gap: 40px;
  align-items: end;
}
.system-card.wide h3 {
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -.04em;
}

.workflow {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.workflow-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.workflow-list li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.workflow-list span {
  color: var(--accent);
  font-weight: 800;
}
.workflow-list p { margin-bottom: 0; }

.api-section {
  display: grid;
  grid-template-columns: minmax(0, .65fr) minmax(460px, .85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.code-sample {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.category-grid span {
  padding: 14px 16px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface);
  color: var(--text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}
.category-grid span:nth-child(4n) { border-right: 0; }
.category-grid span:nth-last-child(-n+4) { border-bottom: 0; }

.privacy-block,
.beta-note,
.final-cta {
  display: grid;
  grid-template-columns: minmax(260px, .45fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.privacy-list {
  display: grid;
  border-top: 1px solid var(--line);
}
.privacy-list p {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.privacy-list span { color: var(--muted); }

.pricing-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.pricing-table div {
  display: grid;
  grid-template-columns: minmax(160px, .45fr) minmax(120px, .25fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 17px 18px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface);
}
.pricing-table div:last-child { border-bottom: 0; }
.pricing-table span {
  color: var(--text);
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -.03em;
}
.pricing-table em {
  color: var(--muted);
  font-style: normal;
}

.beta-note {
  margin-top: 20px;
}
.final-cta {
  margin-bottom: 72px;
  align-items: center;
}
.final-cta h2 { margin-bottom: 10px; }
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
  padding: 22px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
}

.docs-body { background: var(--bg); }
.docs-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}
.docs-shell {
  display: block;
  min-height: 100vh;
  padding: 0;
  padding-top: 64px;
}
.docs-shell.single-doc { display: block; }
.docs-shell.single-doc .docs-content {
  max-width: 920px;
  margin: 0 auto;
}
.docs-sidebar {
  position: fixed;
  top: 64px;
  left: 0;
  bottom: 0;
  width: 240px;
  display: grid;
  align-content: start;
  gap: 2px;
  height: calc(100vh - 64px);
  padding: 24px 16px;
  overflow-y: auto;
  border-right: 1px solid var(--line-soft);
  background: #0a0a0a;
}
.docs-sidebar p {
  margin: 14px 10px 6px;
  color: var(--muted-2);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .08em;
}
.docs-sidebar p:first-child { margin-top: 0; }
.docs-sidebar a {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 14px;
}
.docs-sidebar a:hover {
  color: var(--text);
  background: #1f1f1f;
}
.docs-sidebar a.active {
  color: var(--text);
  background: #1f1f1f;
  font-weight: 680;
}
.docs-content {
  min-width: 0;
  width: calc(100vw - 240px);
  max-width: none;
  margin-left: 240px;
  padding: 0 clamp(28px, 5vw, 96px) 88px;
}
.docs-content > section {
  width: min(100%, 1040px);
  margin-right: auto;
  margin-left: auto;
}
.docs-hero {
  padding: 48px 0 34px;
  border-bottom: 1px solid var(--line-soft);
  scroll-margin-top: 88px;
}
.docs-hero h1 {
  max-width: 880px;
  margin-bottom: 14px;
  font-size: clamp(36px, 3.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.docs-hero .lead {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.45;
}
.docs-version {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-size: 12px;
}
.docs-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 760px;
  margin-top: 26px;
}
.docs-summary-grid div {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.docs-summary-grid span {
  color: var(--muted-2);
  font-size: 12px;
}
.docs-section {
  padding: 32px 0;
  border-bottom: 1px solid var(--line-soft);
  scroll-margin-top: 88px;
}
.docs-section h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.docs-section p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.55;
}
.docs-note {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(47,125,246,.34);
  border-radius: 8px;
  color: #cfe0ff;
  background: rgba(47,125,246,.10);
}
.docs-callout {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(47,125,246,.34);
  border-radius: 8px;
  color: #d7e5ff;
  background: rgba(47,125,246,.10);
}
.docs-callout.warning {
  border-color: rgba(245,184,46,.34);
  color: #f7df9d;
  background: rgba(245,184,46,.10);
}
.docs-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.docs-card-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.docs-card-grid article p { margin-bottom: 0; }
.docs-steps {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.55;
}
.docs-steps li::marker {
  color: var(--accent);
  font-weight: 800;
}
.docs-endpoint {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 18px 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.docs-endpoint span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 7px;
  color: #fff;
  background: var(--accent);
  font-size: 12px;
  font-weight: 800;
}
.docs-section a { color: #8ab4ff; }
.docs-section a:hover { color: #b9d3ff; }
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.docs-grid span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}
.docs-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.docs-table div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
}
.docs-table div:last-child { border-bottom: 0; }
.docs-table strong { color: var(--text); }
.docs-table span { color: var(--muted); }
.docs-table.compact div {
  grid-template-columns: minmax(180px, .6fr) minmax(0, .4fr);
}
.endpoint-table div {
  grid-template-columns: 140px minmax(0, 1fr);
}
.docs-field-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.docs-field-list div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface);
}
.docs-field-list div:last-child { border-bottom: 0; }
.docs-field-list span { color: var(--muted); }
.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
}
.check-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1120px) {
  .landing-hero,
  .editorial-grid,
  .workflow,
  .api-section,
  .privacy-block,
  .beta-note,
  .final-cta,
  .system-card.wide {
    grid-template-columns: 1fr;
  }
  .system-map { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .system-card.wide { grid-column: span 2; }
  .proof-bar { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .proof-bar span { border-bottom: 1px solid var(--line-soft); }
  .docs-shell { grid-template-columns: 1fr; }
  .docs-nav { position: relative; }
  .docs-shell { padding-top: 0; }
  .docs-sidebar {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: auto;
    height: auto;
    padding: 12px clamp(20px, 5vw, 72px);
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .docs-content {
    width: 100%;
    margin-left: 0;
    padding-top: 36px;
  }
  .docs-summary-grid,
  .docs-card-grid,
  .docs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-nav {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .site-nav nav,
  .site-footer,
  .site-footer nav,
  .final-actions {
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  .landing-hero { padding-top: 54px; }
  .product-shot { min-width: 0; }
  .shot-footer,
  .proof-bar,
  .system-map,
  .category-grid,
  .pricing-table div,
  .privacy-list p,
  .docs-sidebar,
  .docs-card-grid,
  .docs-grid,
  .docs-summary-grid,
  .docs-field-list div,
  .docs-table div {
    grid-template-columns: 1fr;
  }
  .system-card.wide { grid-column: auto; }
  .category-grid span,
  .proof-bar span {
    border-right: 0;
  }
  .category-grid span:nth-last-child(-n+4) { border-bottom: 1px solid var(--line-soft); }
  .category-grid span:last-child,
  .proof-bar span:last-child { border-bottom: 0; }
  .privacy-block,
  .beta-note,
  .final-cta {
    padding: 22px;
  }
}
