:root {
  --paper: #fafaf8;
  --paper-bright: #ffffff;
  --surface: #ffffff;
  --surface-subtle: #f4f3f2;
  --ink: #29252d;
  --ink-soft: #514b54;
  --muted: #6a646d;
  --rule: rgba(41, 37, 45, 0.14);
  --brand: #7714cf;
  --brand-secondary: #998dc7;
  --brand-tint: #d4c2fc;
  --coral: #d66a5e;
  --sans: "Geist Variable", "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Geist Mono Variable", "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --reading: 680px;
  --media: 860px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(229, 229, 229, 0.8);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1152px, 100%);
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 620;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 24px;
  height: 24px;
  border: 6px solid var(--ink);
  border-right-color: var(--brand);
  border-radius: 50%;
  transform: rotate(-25deg);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header nav a {
  color: #737373;
  font-size: 1.12rem;
  line-height: 1.6rem;
  text-decoration: none;
  transition: color 0.16s;
}

.site-header nav a:hover,
.site-header nav a.is-current {
  color: #171717;
}

.site-header nav a.is-current {
  font-weight: 520;
}

.blog-page {
  padding-top: 64px;
}

.back-to-blog-bar {
  padding: 28px 0 0;
  background: var(--paper-bright);
}

.back-to-blog-bar a {
  display: block;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.16s;
}

.back-to-blog-bar a:hover {
  color: var(--ink);
}

.launch-hero {
  overflow: hidden;
  padding: 28px 0 64px;
  background: var(--paper-bright);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 0 0 28px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.article-meta span:not(:last-child)::after,
.article-meta time::after {
  display: inline-block;
  width: 2px;
  height: 2px;
  margin-left: 22px;
  border-radius: 50%;
  background: var(--brand-secondary);
  content: "";
  vertical-align: middle;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

.launch-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(62px, 7.4vw, 112px);
  font-weight: 660;
  letter-spacing: -0.062em;
  line-height: 0.9;
}

.hero-authors {
  margin: 26px auto 0;
  color: var(--ink-soft);
}

.byline-names,
.byline-roles {
  margin: 0;
}

.byline-names {
  font-size: 16px;
  font-weight: 570;
  line-height: 1.55;
}

.byline-names span + span::before {
  color: var(--muted);
  content: ", ";
  font-weight: 400;
}

.byline-roles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 8px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.byline-roles i {
  color: var(--brand-secondary);
  font-style: normal;
}

.byline-contact {
  margin: 7px 0 0;
  color: var(--brand);
  font-size: 13px;
  line-height: 1.5;
}

.byline-contact a {
  text-decoration: none;
}

.byline-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-authors sup {
  color: var(--brand);
  font-size: 0.7em;
  font-weight: 700;
}

.hero-deck {
  max-width: 690px;
  margin: 25px auto 0;
  color: var(--ink-soft);
  font-size: clamp(19px, 1.8vw, 24px);
  letter-spacing: -0.025em;
  line-height: 1.48;
}

.hero-observable-art {
  position: relative;
  width: min(960px, calc(100vw - 40px));
  margin: 30px auto 0;
}

.hero-observable-art::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(41, 37, 45, 0.1);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(66, 35, 93, 0.09), inset 0 1px rgba(255, 255, 255, 0.8);
  content: "";
  pointer-events: none;
}

.hero-observable-art svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.observable-grid {
  fill: none;
  stroke: rgba(41, 37, 45, 0.045);
  stroke-width: 1;
}

.observable-curves,
.observable-halo {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.observable-curves path {
  vector-effect: non-scaling-stroke;
}

.observable-curves.is-neutral {
  stroke: #777079;
  stroke-width: 1.05;
  opacity: 0.17;
}

.observable-curves.is-green {
  stroke: url(#observableGreen);
  stroke-width: 1.5;
}

.observable-curves.is-coral {
  stroke: url(#observableCoral);
  stroke-width: 1.55;
}

.observable-curves.is-violet {
  stroke: url(#observableViolet);
  stroke-width: 2.25;
}

.observable-halo {
  stroke: rgba(119, 20, 207, 0.2);
  stroke-width: 11;
}

.observable-nodes {
  fill: #fff;
  stroke: var(--brand);
  stroke-width: 2;
}

.observable-label,
.observable-axis-label {
  fill: rgba(81, 75, 84, 0.72);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 570;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.observable-axis-label {
  fill: rgba(81, 75, 84, 0.46);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin-top: 24px;
}

.hero-action,
.closing-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border: 1px solid rgba(41, 37, 45, 0.24);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: border-color 0.14s, background 0.14s, color 0.14s;
}

.hero-action span,
.closing-action span {
  opacity: 0.7;
  font-size: 12px;
}

.hero-action:hover,
.closing-action:hover {
  border-color: rgba(119, 20, 207, 0.48);
  color: var(--brand);
  background: rgba(212, 194, 252, 0.18);
}

.hero-action.is-primary,
.closing-action {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
}

.hero-action.is-primary:hover,
.closing-action:hover {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.hero-figure {
  width: min(960px, calc(100% - 40px));
  margin: 58px auto 0;
}

.hero-figure,
.data-figure {
  margin-right: auto;
  margin-left: auto;
}

.figure-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 18px 16px;
  border: 1px solid var(--rule);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  background: var(--surface);
}

.figure-toolbar > div:first-child {
  display: grid;
  gap: 4px;
}

.figure-toolbar span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.figure-toolbar strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 620;
  letter-spacing: -0.015em;
}

.canvas-wrap {
  position: relative;
  width: 100%;
  border: 1px solid var(--rule);
  background: var(--surface);
  box-shadow: 0 20px 48px rgba(41, 37, 45, 0.09);
}

.canvas-wrap canvas {
  display: block;
  width: 100%;
  height: 410px;
}

.hero-canvas-wrap canvas {
  height: 430px;
}

.chart-status {
  position: absolute;
  inset: 0;
  display: grid;
  margin: 0;
  place-items: center;
  color: var(--muted);
  background: var(--surface);
  font-family: var(--mono);
  font-size: 12px;
}

.hero-figure figcaption,
.data-figure figcaption {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 16px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.52;
}

.hero-figure figcaption > span,
.data-figure figcaption > span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.hero-figure figcaption p,
.data-figure figcaption p {
  margin: 0;
}

.hero-figure figcaption strong,
.data-figure figcaption strong {
  color: var(--ink);
}

.data-figure figcaption.key-caption {
  font-size: 16px;
  line-height: 1.58;
}

.focus-figure {
  margin-top: 40px;
}

.supporting-figure {
  width: min(760px, 100%);
  margin-top: 34px;
}

.supporting-canvas-wrap canvas {
  height: 260px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 900px) minmax(150px, 190px);
  justify-content: center;
  gap: 44px;
  width: min(1328px, calc(100vw - 64px));
  margin: 0 auto;
  padding: 80px 0 120px;
}

.contents {
  align-self: start;
  grid-column: 1;
}

.contents > div {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-top: 5px;
}

.contents p {
  margin: 0 0 18px;
  color: #827b84;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contents a {
  position: relative;
  display: block;
  margin: 0 0 5px;
  padding: 9px 10px 9px 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
  text-decoration: none;
}

.contents a::before {
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 0;
  width: 2px;
  border-radius: 2px;
  background: transparent;
  content: "";
}

.contents a:hover,
.contents a.is-current {
  color: var(--ink);
}

.contents a:hover::before,
.contents a.is-current::before {
  background: var(--brand);
}

.contents a.is-current {
  font-weight: 620;
}

.article-main {
  min-width: 0;
  grid-column: 2;
}

.abstract-card {
  position: relative;
  overflow: hidden;
  max-width: 768px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid rgba(196, 181, 253, 0.8);
  border-radius: 16px;
  background: linear-gradient(135deg, #faf5ff, rgba(245, 243, 255, 0.82), rgba(253, 244, 255, 0.42));
  box-shadow: 0 12px 40px -20px rgba(124, 58, 237, 0.45);
}

.abstract-card::before {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(#a855f7, #7c3aed, #e879f9);
  content: "";
}

.abstract-card h2 {
  margin: 0;
  color: #6b21a8;
  font-size: 24px;
  font-weight: 560;
  letter-spacing: -0.025em;
}

.abstract-card p {
  margin: 16px 0 0;
  color: rgba(88, 28, 135, 0.82);
  font-size: 18px;
  line-height: 1.625;
}

.abstract-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 27px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(119, 20, 207, 0.18);
}

.abstract-stats > div {
  min-width: 0;
  padding: 0 22px;
  border-left: 1px solid rgba(119, 20, 207, 0.15);
}

.abstract-stats > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.abstract-stats dt {
  color: var(--brand);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 1;
}

.abstract-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 620;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.prose {
  max-width: var(--reading);
  margin-right: auto;
  margin-left: auto;
}

.abstract-card + .prose,
.prose + .prose,
.figure-section + .prose,
.figure-section,
.closing-section {
  margin-top: 96px;
}

.section-kicker,
.prose p.section-kicker {
  margin: 0 0 14px;
  color: var(--brand);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.prose h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.06;
  text-wrap: balance;
}

.prose > p:not(.section-kicker, .small-note) {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.008em;
  line-height: 1.68;
}

.small-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.5;
}

.facts-table {
  width: min(var(--media), 100%);
  margin: 54px auto 0;
  border: 1px solid var(--rule);
  border-top: 2px solid var(--brand);
  border-radius: 4px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(41, 37, 45, 0.05);
}

.table-caption {
  margin: 0;
  padding: 19px 18px 18px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 620;
  letter-spacing: -0.025em;
}

.facts-table dl {
  margin: 0;
}

.facts-table dl > div {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  border-top: 1px solid var(--rule);
}

.facts-table dt,
.facts-table dd {
  margin: 0;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.5;
}

.facts-table dt {
  color: var(--ink);
  background: var(--surface-subtle);
  font-weight: 620;
}

.facts-table dd {
  color: var(--ink-soft);
}

.workflow-list {
  width: min(var(--media), 100%);
  margin: 72px auto 0;
  padding: 0;
  border-top: 2px solid var(--brand);
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 46px 190px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 18px 4px;
  border-bottom: 1px solid var(--rule);
}

.workflow-list li > span {
  color: var(--brand);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}

.workflow-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 620;
  letter-spacing: -0.015em;
}

.workflow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.figure-intro {
  margin-bottom: 40px;
}

.data-figure {
  width: min(var(--media), 100%);
}

.setup-config-shell {
  width: min(var(--media), 100%);
  margin: 0 auto 36px;
  overflow-x: auto;
  border: 1px solid var(--rule);
  border-top: 2px solid var(--brand);
  border-radius: 4px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(41, 37, 45, 0.05);
}

.setup-config-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
}

.setup-config-table caption {
  padding: 18px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 620;
  letter-spacing: -0.025em;
  text-align: left;
}

.setup-config-table th,
.setup-config-table td {
  padding: 13px 16px;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
}

.setup-config-table th {
  background: var(--surface-subtle);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.setup-config-table td:first-child {
  color: var(--ink);
  font-weight: 620;
}

.setup-config-shell > p {
  margin: 0;
  padding: 12px 16px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.5;
}

.setup-config-after-figure {
  margin-top: 38px;
  margin-bottom: 0;
}

.figure-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
}

.figure-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.swatch {
  display: inline-block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
}

.swatch-primary {
  background: var(--brand);
}

.swatch-muted {
  background: #8b858e;
}

.swatch-secondary {
  background: #8b858e;
}

.swatch-coral {
  background: var(--coral);
}

.library-section {
  width: min(var(--media), 100%);
  margin: 112px auto 0;
  padding-top: 80px;
  border-top: 1px solid var(--rule);
}

.library-intro {
  margin-left: 0;
}

.library-section .facts-table {
  width: 100%;
}

.library-section .workflow-list {
  width: 100%;
  margin-top: 54px;
}

.library-product-figure {
  width: 100%;
  margin: 32px 0 0;
}

.explorer-interface-shot {
  min-height: 430px;
}

.explorer-shot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(10, 16, 20, 0.96);
}

.explorer-shot-header > div:first-child,
.explorer-shot-title > div,
.explorer-shot-chart-head > div:first-child {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.explorer-shot-header strong,
.explorer-shot-title strong,
.explorer-shot-chart-head strong {
  overflow: hidden;
  color: #fff;
  font-size: 11px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.explorer-shot-header span,
.explorer-shot-title span,
.explorer-shot-chart-head span,
.explorer-shot-hint {
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
}

.explorer-shot-body {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr);
  min-height: 370px;
}

.explorer-shot-nav {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
  padding: 12px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 26, 33, 0.92);
}

.explorer-shot-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 7px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.explorer-shot-node,
.explorer-shot-block > div {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.explorer-shot-node,
.explorer-shot-block {
  padding: 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.025);
  font-size: 7px;
}

.explorer-shot-node i {
  width: 7px;
  height: 7px;
  border: 1px solid #e0c08a;
  border-radius: 2px;
}

.explorer-shot-block {
  display: grid;
  gap: 4px;
}

.explorer-shot-block b {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #0a1014;
  background: #9fd4e4;
  font-size: 7px;
}

.explorer-shot-block strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 7px;
}

.explorer-shot-block > span {
  margin-left: 25px;
  padding: 3px 5px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.explorer-shot-block.is-active {
  border-color: rgba(159, 212, 228, 0.36);
  background: rgba(159, 212, 228, 0.06);
}

.explorer-shot-block .is-selected {
  border-left-color: #e0c08a;
  color: #fff;
  background: rgba(224, 192, 138, 0.09);
}

.explorer-shot-fade {
  color: rgba(255, 255, 255, 0.32);
  text-align: center;
}

.explorer-shot-detail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 14px;
  background: #0e151a;
}

.explorer-shot-title,
.explorer-shot-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.explorer-shot-chip {
  padding: 4px 7px;
  border: 1px solid rgba(159, 212, 228, 0.32);
  border-radius: 999px;
  color: #9fd4e4 !important;
  background: rgba(159, 212, 228, 0.08);
}

.explorer-shot-observables {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 13px 0;
}

.explorer-shot-observables span {
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 7px;
}

.explorer-shot-observables .is-active {
  border-color: rgba(224, 192, 138, 0.42);
  color: #fff;
  background: rgba(224, 192, 138, 0.1);
}

.explorer-shot-chart-head {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  background: rgba(18, 26, 33, 0.92);
}

.explorer-shot-chart {
  position: relative;
  flex: 1;
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 6px 6px;
  background: rgba(7, 12, 16, 0.72);
}

.explorer-shot-chart svg {
  display: block;
  width: 100%;
  height: 220px;
  padding: 4px 8px 9px;
}

.explorer-shot-y-axis {
  position: absolute;
  top: 22px;
  bottom: 40px;
  left: 12px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.46);
  font-size: 7px;
}

.explorer-shot-x-axis {
  position: absolute;
  right: 12px;
  bottom: 9px;
  left: 42px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.46);
  font-size: 7px;
}

.explorer-shot-hint {
  margin: 7px 0 0;
  text-align: right;
}

.library-product-figure figcaption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 18px;
  padding: 14px 2px 0;
}

.library-product-figure figcaption > span {
  color: var(--brand);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.library-product-figure figcaption p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.library-product-figure figcaption a {
  color: var(--brand);
  font-size: 13px;
  font-weight: 620;
  text-decoration: none;
  white-space: nowrap;
}

.library-product-figure figcaption a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.feedback-section {
  width: min(var(--media), 100%);
  margin: 112px auto 0;
  padding-top: 80px;
  border-top: 1px solid var(--rule);
}

.feedback-intro {
  margin-left: 0;
}

.feedback-paths {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 42px;
}

.feedback-paths article {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.45fr);
  align-items: center;
  gap: 30px;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(41, 37, 45, 0.05);
}

.feedback-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-self: stretch;
}

.feedback-number {
  color: var(--brand);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.feedback-paths h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.feedback-paths ol {
  display: grid;
  gap: 11px;
  margin: 22px 0 28px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.feedback-paths li::marker {
  color: var(--brand-secondary);
  font-family: var(--mono);
}

.feedback-paths strong {
  color: var(--ink-soft);
  font-weight: 620;
}

.feedback-copy > a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  margin-top: auto;
  color: var(--brand);
  font-size: 14px;
  font-weight: 620;
  text-decoration: none;
}

.feedback-copy > a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.feedback-copy > a span {
  font-size: 11px;
}

.interface-shot {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  background: #0e151a;
  box-shadow: 0 18px 42px rgba(26, 22, 30, 0.22);
  font-family: "Geist Variable", "Segoe UI", sans-serif;
  pointer-events: none;
  user-select: none;
}

.shot-toolbar,
.shot-page-head,
.shot-rail-head,
.shot-publish-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.shot-toolbar {
  min-height: 54px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(18, 26, 33, 0.96);
}

.shot-toolbar > div:first-child,
.shot-page-head > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.shot-toolbar strong,
.shot-page-head strong {
  overflow: hidden;
  color: #fff;
  font-size: 11px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shot-toolbar span,
.shot-page-head span,
.shot-publish-row span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
}

.shot-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 4px;
}

.shot-actions span,
.shot-note-row b,
.shot-publish-row b {
  padding: 4px 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
  font-size: 7px;
  font-style: normal;
  font-weight: 650;
}

.notes-shot-body {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(145px, 0.9fr);
  min-height: 246px;
  padding: 10px;
  gap: 8px;
}

.shot-chart {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(7, 12, 16, 0.7);
}

.shot-chart svg {
  display: block;
  width: 100%;
  height: 208px;
  padding: 7px;
}

.shot-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}

.shot-curve {
  fill: none;
  stroke: #9fd4e4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.shot-chart circle {
  fill: #e0c08a;
}

.shot-chart-label {
  position: absolute;
  top: 23px;
  bottom: 49px;
  left: 10px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 7px;
}

.shot-chart > p {
  position: absolute;
  right: 11px;
  bottom: 7px;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 7px;
}

.shot-notes-rail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: #182229;
}

.shot-rail-head strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shot-rail-head span,
.shot-notes-rail p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 7px;
}

.shot-notes-rail label,
.discovery-interface-shot label {
  display: grid;
  gap: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 7px;
  font-weight: 600;
}

.shot-notes-rail em,
.discovery-interface-shot em {
  color: rgba(255, 255, 255, 0.42);
  font-style: normal;
  font-weight: 400;
}

.shot-input,
.shot-textarea {
  display: block;
  min-width: 0;
  padding: 6px 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.44);
  background: rgba(7, 12, 16, 0.72);
  font-size: 7px;
  font-weight: 400;
}

.shot-notes-rail > .shot-textarea {
  min-height: 47px;
}

.shot-attach {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
}

.shot-note-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 7px;
}

.shot-note-row b,
.shot-publish-row b {
  border-color: rgba(159, 212, 228, 0.4);
  color: #fff;
  background: rgba(159, 212, 228, 0.14);
}

.shot-notes-rail p {
  margin: 1px 0 0;
  line-height: 1.4;
}

.discovery-interface-shot {
  display: grid;
  gap: 9px;
  padding: 14px;
}

.shot-page-head {
  align-items: flex-start;
  padding-bottom: 2px;
}

.shot-page-head > div {
  display: flex;
  flex-direction: column-reverse;
}

.shot-page-head strong {
  font-family: Georgia, serif;
  font-size: 15px;
}

.shot-page-head > div span {
  color: #e0c08a;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discovery-interface-shot > label > .shot-textarea {
  min-height: 51px;
  font-family: Georgia, serif;
  line-height: 1.45;
}

.discovery-interface-shot fieldset {
  min-width: 0;
  margin: 0;
  padding: 9px;
  border: 1px solid rgba(159, 212, 228, 0.24);
  border-radius: 7px;
  background: rgba(159, 212, 228, 0.035);
}

.discovery-interface-shot legend {
  padding: 0 4px;
  color: #fff;
  font-size: 8px;
  font-weight: 650;
}

.shot-discovery-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1fr;
  gap: 6px;
}

.shot-publish-row b {
  padding: 6px 8px;
}

.feedback-aside {
  margin: 22px 0 0;
  padding: 17px 19px;
  border-left: 3px solid var(--brand-tint);
  color: var(--muted);
  background: rgba(212, 194, 252, 0.12);
  font-size: 14px;
  line-height: 1.55;
}

.feedback-aside a {
  color: var(--brand);
  font-weight: 620;
}

.closing-section {
  padding-top: 72px;
  border-top: 1px solid var(--rule);
}

.closing-action {
  margin-top: 28px;
}

.site-footer {
  display: block;
  width: min(1152px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 42px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--brand);
  font-weight: 580;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-label {
  margin-bottom: 9px !important;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-contact {
  text-align: left;
}

@media (max-width: 1180px) {
  .article-layout {
    grid-template-columns: minmax(0, 900px);
    gap: 0;
    width: min(900px, calc(100vw - 48px));
  }

  .article-main {
    grid-column: 1;
  }

  .contents,
  .article-layout > div[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    padding: 0 18px;
  }

  .site-brand {
    gap: 8px;
    font-size: 15px;
  }

  .brand-mark {
    width: 20px;
    height: 20px;
    border-width: 5px;
  }

  .site-header nav {
    gap: 16px;
  }

  .site-header nav a {
    font-size: 15px;
  }

  .site-header nav a:first-child {
    display: none;
  }

  .back-to-blog-bar {
    padding-top: 20px;
  }

  .launch-hero {
    padding-top: 22px;
    padding-bottom: 48px;
  }

  .article-meta {
    flex-wrap: wrap;
    gap: 6px 14px;
    margin-bottom: 28px;
    font-size: 10.75px;
  }

  .article-meta span:not(:last-child)::after,
  .article-meta time::after {
    display: none;
  }

  .launch-hero h1 {
    font-size: clamp(50px, 14.4vw, 56px);
    letter-spacing: -0.04em;
    line-height: 0.98;
  }

  .hero-deck {
    max-width: 520px;
    font-size: 18px;
  }

  .hero-observable-art {
    width: calc(100vw - 28px);
    margin-top: 26px;
  }

  .hero-observable-art::after,
  .hero-observable-art svg {
    border-radius: 18px;
  }

  .hero-action {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero-figure {
    margin-top: 44px;
  }

  .figure-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
  }

  .canvas-wrap canvas,
  .hero-canvas-wrap canvas {
    height: 300px;
  }

  .supporting-canvas-wrap canvas {
    height: 240px;
  }

  .hero-figure figcaption,
  .data-figure figcaption {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
  }

  .article-layout {
    width: calc(100vw - 36px);
    padding: 64px 0 88px;
  }

  .abstract-card {
    padding: 24px 22px;
    border-radius: 12px;
  }

  .abstract-card h2 {
    font-size: 22px;
  }

  .abstract-card p {
    font-size: 17px;
    line-height: 1.65;
  }

  .abstract-stats dt {
    font-size: 28px;
  }

  .abstract-stats > div {
    padding: 0 14px;
  }

  .abstract-stats dd {
    font-size: 9px;
  }

  .abstract-card + .prose,
  .prose + .prose,
  .figure-section + .prose,
  .figure-section,
  .closing-section,
  .library-section {
    margin-top: 76px;
  }

  .prose h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .prose > p:not(.section-kicker, .small-note) {
    font-size: 17px;
    line-height: 1.65;
  }

  .facts-table {
    width: calc(100vw - 36px);
    margin-top: 42px;
  }

  .facts-table dl > div {
    grid-template-columns: 1fr;
  }

  .facts-table dt,
  .facts-table dd {
    padding: 12px 14px;
  }

  .facts-table dd {
    padding-top: 0;
    background: var(--surface-subtle);
  }

  .workflow-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px 12px;
  }

  .workflow-list p {
    grid-column: 2;
  }

  .explorer-shot-body {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .library-product-figure figcaption {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .library-product-figure figcaption a {
    justify-self: start;
  }

  .figure-intro {
    margin-bottom: 30px;
  }

  .figure-legend {
    justify-content: flex-start;
  }

  .library-section {
    padding-top: 62px;
  }

  .feedback-section {
    margin-top: 84px;
    padding-top: 62px;
  }

  .feedback-paths {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .feedback-paths article {
    grid-template-columns: 1fr;
    padding: 23px 21px;
  }

  .notes-shot-body {
    grid-template-columns: minmax(0, 1.45fr) minmax(138px, 0.85fr);
  }

  .closing-section {
    padding-top: 56px;
  }

  .site-footer {
    width: calc(100% - 36px);
    padding: 28px 0 34px;
  }
}

@media (max-width: 480px) {
  .hero-observable-art svg {
    width: auto;
    height: 190px;
    transform: translateX(-13%);
  }

  .hero-observable-art {
    overflow: hidden;
  }

  .observable-label {
    font-size: 12px;
  }

  .abstract-stats > div {
    padding: 0 12px;
  }

  .abstract-stats dd {
    margin: 0;
  }

  .notes-shot-body,
  .shot-discovery-grid {
    grid-template-columns: 1fr;
  }

  .explorer-shot-body {
    grid-template-columns: 1fr;
  }

  .explorer-shot-nav {
    display: none;
  }

  .explorer-shot-detail {
    padding: 10px;
  }

  .explorer-shot-observables span:not(.is-active) {
    display: none;
  }

  .explorer-shot-chart svg {
    height: 180px;
  }

  .shot-chart svg {
    height: 170px;
  }

  .shot-actions span:nth-child(-n + 2) {
    display: none;
  }
}

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