:root {
  --parchment: #dbdad7;
  --paper: #ffffff;
  --sand: #e6e4e0;
  --fog: #f6f6f4;
  --ink: #111111;
  --smoke: #575757;
  --hairline: rgba(17, 17, 17, 0.16);
  --hairline-light: rgba(255, 255, 255, 0.2);
  --accent: #111111;
  --accent-wash: #e8e7e4;
  --unresolved: #676767;
  --unresolved-wash: #ebeae7;
  --serif: "Crimson Pro", Georgia, serif;
  --sans: "Geist", "Avenir Next", "Segoe UI", sans-serif;
  --ease-fluid: cubic-bezier(0.32, 0.72, 0, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 24px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.spotlight-page {
  --parchment: #ffffff;
  background: #05080d;
}

.spotlight-page > main {
  background: var(--parchment);
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--accent);
  color: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

p,
h1,
h2,
h3,
ul,
ol,
dl,
dd,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

p,
li,
dd {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 100;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  border-radius: 9999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  transform: translateY(-80px);
  transition: transform 700ms var(--ease-fluid);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  width: min(1200px, calc(100% - 48px));
  margin: 16px auto 0;
  pointer-events: none;
}

.nav-pill {
  position: relative;
  z-index: 52;
  display: flex;
  height: 64px;
  align-items: center;
  gap: 24px;
  padding: 8px 8px 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 160px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.08);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
  pointer-events: auto;
  transition:
    background-color 500ms var(--ease-fluid),
    border-color 500ms var(--ease-fluid),
    box-shadow 500ms var(--ease-fluid);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 28px;
  transition: color 500ms var(--ease-fluid);
}

.brand-mark {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
  transition: filter 500ms var(--ease-fluid);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--smoke);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 20px;
  transition:
    color 700ms var(--ease-fluid),
    transform 700ms var(--ease-fluid);
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 9999px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 700ms var(--ease-fluid),
    transform 700ms var(--ease-fluid);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.desktop-nav a:active {
  transform: translateY(2px);
}

.button {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  border: 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 24px;
  text-align: center;
  transition:
    color 700ms var(--ease-fluid),
    background-color 700ms var(--ease-fluid),
    border-color 700ms var(--ease-fluid),
    transform 700ms var(--ease-fluid),
    opacity 700ms var(--ease-fluid);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: scale(0.98);
}

.button:focus-visible,
.desktop-nav a:focus-visible,
.mobile-menu a:focus-visible,
.brand:focus-visible,
.menu-toggle:focus-visible,
.faq-list summary:focus-visible,
.site-footer a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.mobile-menu a:focus-visible {
  outline-color: var(--paper);
}

.button-primary {
  height: 48px;
  padding: 0 24px;
  border-radius: 160px;
  background: #111111;
  color: #ffffff;
}

.button-primary:hover {
  background: #272727;
}

.button-outline {
  padding: 11px 18px;
  border: 1px solid #111111;
  border-radius: 140px;
  background: transparent;
  color: #111111;
}

.button-outline:hover {
  background: #111111;
  color: #ffffff;
}

.button-inverse {
  height: 48px;
  padding: 0 24px;
  border: 1px solid #ffffff;
  border-radius: 160px;
  background: #ffffff;
  color: #111111;
}

.button-inverse:hover {
  border-color: var(--parchment);
  background: var(--parchment);
}

.header-cta {
  flex: 0 0 auto;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid var(--hairline);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.32);
  color: var(--ink);
  transition:
    color 500ms var(--ease-fluid),
    background-color 500ms var(--ease-fluid),
    border-color 500ms var(--ease-fluid);
}

.menu-toggle:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.menu-line {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 16px;
  height: 1px;
  border-radius: 9999px;
  background: currentColor;
  transition: transform 700ms var(--ease-fluid);
}

.menu-line-top {
  transform: translateY(-3px);
}

.menu-line-bottom {
  transform: translateY(3px);
}

.menu-toggle[aria-expanded="true"] .menu-line-top {
  transform: translateY(0) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-line-bottom {
  transform: translateY(0) rotate(-45deg);
}

body.menu-open .nav-pill {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(17, 17, 17, 0.88);
  box-shadow: none;
}

body.menu-open .site-header .brand {
  color: var(--paper);
}

body.menu-open .site-header .brand-mark {
  filter: invert(1) brightness(2);
}

body.menu-open .menu-toggle {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.mobile-menu {
  position: fixed;
  z-index: 51;
  visibility: hidden;
  overflow-y: auto;
  inset: 0;
  background: rgba(17, 17, 17, 0.97);
  color: var(--paper);
  -webkit-backdrop-filter: blur(36px) saturate(125%);
  backdrop-filter: blur(36px) saturate(125%);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 300ms var(--ease-fluid),
    visibility 300ms var(--ease-fluid);
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-panel {
  display: flex;
  width: min(560px, 100%);
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  margin-inline: auto;
  padding: 128px 32px 32px;
}

.mobile-menu-primary {
  display: flex;
  width: 100%;
  flex-direction: column;
  border-top: 1px solid var(--hairline-light);
  text-align: left;
}

.mobile-menu-primary > a {
  padding: 20px 0;
  border-bottom: 1px solid var(--hairline-light);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    color 500ms var(--ease-fluid),
    opacity 300ms var(--ease-fluid),
    padding-left 500ms var(--ease-fluid),
    transform 300ms var(--ease-fluid);
}

.mobile-menu-primary > a:hover {
  padding-left: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.mobile-menu.is-open .mobile-menu-primary > a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-watermark {
  width: 128px;
  height: 128px;
  align-self: center;
  filter: invert(1) brightness(2);
  object-fit: contain;
  opacity: 0.08;
  pointer-events: none;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 300ms var(--ease-fluid),
    transform 300ms var(--ease-fluid);
}

.mobile-menu.is-open .mobile-menu-actions {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-actions .button {
  width: max-content;
  align-self: center;
}

.mobile-menu-utility {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-menu-utility a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: color 500ms var(--ease-fluid);
}

.mobile-menu-utility a:hover {
  color: var(--paper);
}

.mobile-menu-email {
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.spotlight-page .nav-pill {
  border-color: rgba(176, 186, 200, 0.22);
  background: rgba(8, 13, 21, 0.86);
}

.spotlight-page .brand,
.spotlight-page .desktop-nav a:hover,
.spotlight-page .desktop-nav a[aria-current="page"] {
  color: #f5f7fa;
}

.spotlight-page .site-header .brand-mark {
  filter: invert(1);
}

.spotlight-page .desktop-nav a {
  color: #b0bac8;
}

.spotlight-page .desktop-nav a::after,
.spotlight-page .menu-line {
  background: #f5f7fa;
}

.spotlight-page .site-header :focus-visible {
  outline-color: #b6d7ff;
}

.hero {
  margin-top: -80px;
  padding-bottom: 80px;
}

.hero-intro {
  --night: #05080d;
  --moonlight: #f5f7fa;
  --night-muted: #b0bac8;
  position: relative;
  isolation: isolate;
  display: flex;
  overflow: hidden;
  min-height: max(800px, 100svh);
  align-items: center;
  padding-block: 180px 152px;
  background: var(--night);
  color: var(--moonlight);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* A fixed scrim protects copy contrast independently of the moving light. */
.hero-copy::before {
  position: absolute;
  z-index: -1;
  width: min(940px, 120vw);
  height: calc(100% + 240px);
  top: -120px;
  left: 50%;
  background: radial-gradient(
    ellipse,
    rgba(5, 8, 13, 0.94) 20%,
    rgba(5, 8, 13, 0.68) 45%,
    transparent 72%
  );
  pointer-events: none;
  transform: translateX(-50%);
  content: "";
}

.bug-stage,
.bug-stage canvas,
.bug-fallback {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  pointer-events: none;
}

.bug-stage canvas {
  display: block;
}

.bug-fallback {
  object-fit: contain;
  object-position: center;
}

.bug-stage[data-ready] .bug-fallback {
  visibility: hidden;
}

.hero-actions .button:focus-visible {
  outline: 2px solid #b6d7ff;
  outline-offset: 5px;
}

.eyebrow,
.artifact-kicker,
.inspector-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 16px;
  text-transform: uppercase;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 8px 16px;
  border: 1px solid var(--hairline);
  border-radius: 9999px;
  background: var(--paper);
}

.hero h1 {
  max-width: 680px;
  color: var(--moonlight);
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 72px;
}

.hero-subtitle {
  max-width: 680px;
  margin-top: 24px;
  color: var(--night-muted);
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 28px;
}

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

.artifact-frame {
  overflow: hidden;
  margin-top: 80px;
  padding: 12px;
  border: 1px solid var(--ink);
  border-radius: 16px;
  background: var(--ink);
  color: var(--paper);
}

.artifact-topbar {
  display: grid;
  min-height: 48px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 16px;
  text-transform: uppercase;
}

.window-controls {
  display: flex;
  gap: 8px;
}

.window-controls span {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 9999px;
}

.artifact-topbar > p {
  text-align: center;
}

.revision-pair {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.revision-pair code {
  font-family: var(--sans);
  font-size: 12px;
}

.artifact-canvas {
  display: grid;
  overflow: hidden;
  grid-template-columns: 180px minmax(0, 1fr) 240px;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
}

.artifact-sidebar {
  display: flex;
  min-height: 680px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 16px;
  border-right: 1px solid var(--hairline);
  background: var(--fog);
}

.artifact-repository {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.artifact-sidebar ul,
.coverage-list,
.security-principles ul,
.text-list,
.foundation-strip ul {
  list-style: none;
}

.artifact-sidebar ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.artifact-sidebar li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 9999px;
  color: var(--smoke);
  font-size: 12px;
  line-height: 16px;
}

.artifact-sidebar li.is-active {
  background: var(--sand);
  color: var(--ink);
  font-weight: 500;
}

.sealed-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--smoke);
  font-size: 12px;
  line-height: 16px;
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 9999px;
  background: var(--smoke);
}

.status-dot-ink {
  background: var(--accent);
}

.status-dot-unresolved {
  background: var(--unresolved);
}

.finding-panel {
  min-width: 0;
  padding: 32px;
}

.finding-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.status-label,
.confidence-label,
.mini-status,
.ledger-status {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.status-label {
  min-height: 24px;
  padding: 4px 8px;
}

.status-validated {
  background: var(--accent-wash);
  color: #303030;
}

.finding-header h2 {
  max-width: 680px;
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 36px;
}

.confidence-label {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid var(--hairline);
}

.finding-location {
  margin-top: 12px;
  color: var(--smoke);
  font-size: 12px;
  line-height: 16px;
}

.finding-location span {
  margin-inline: 4px;
  color: var(--accent);
}

.finding-summary {
  max-width: 680px;
  margin-top: 24px;
  color: #3f3f3f;
  font-size: 14px;
  line-height: 20px;
}

.code-evidence {
  overflow: hidden;
  margin-top: 24px;
  padding: 12px 0;
  border-radius: 8px;
  background: #181818;
  color: rgba(255, 255, 255, 0.8);
}

.code-evidence > div {
  display: grid;
  min-width: 0;
  grid-template-columns: 40px minmax(0, 1fr);
  padding: 4px 12px;
  font-size: 12px;
  line-height: 16px;
}

.code-evidence > div > span {
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--sans);
}

.code-evidence code {
  overflow: hidden;
  font-family: "SFMono-Regular", Consolas, monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.code-evidence .code-highlight {
  background: rgba(17, 17, 17, 0.24);
  color: var(--paper);
}

.finding-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.finding-facts > div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--paper);
}

.finding-facts dt {
  color: var(--smoke);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 16px;
  text-transform: uppercase;
}

.finding-facts dd {
  margin-top: 8px;
  font-size: 12px;
  line-height: 16px;
}

.artifact-inspector {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-left: 1px solid var(--hairline);
  background: var(--sand);
}

.artifact-inspector section {
  padding: 16px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--paper);
}

.inspector-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.artifact-inspector h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.inspector-heading span {
  color: var(--smoke);
  font-size: 12px;
  line-height: 16px;
}

.coverage-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.coverage-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  line-height: 16px;
}

.mini-status {
  padding: 4px 8px;
  background: var(--fog);
  color: var(--smoke);
}

.mini-status-validated {
  background: var(--accent-wash);
  color: #303030;
}

.mini-status-unresolved {
  background: var(--unresolved-wash);
  color: #454545;
}

.artifact-inspector section > h3 {
  margin-top: 4px;
}

.artifact-inspector section > p:not(.inspector-label) {
  margin-top: 8px;
  color: var(--smoke);
  font-size: 12px;
  line-height: 16px;
}

.validation-meter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 16px;
}

.validation-meter span {
  height: 4px;
  border-radius: 9999px;
  background: var(--accent);
}

.foundation-strip {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  margin-top: 64px;
  padding: 24px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.foundation-strip > strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

.foundation-strip > p {
  color: var(--smoke);
  font-size: 14px;
  line-height: 20px;
}

.benefits,
.method,
.polyglot-section,
.coverage-section,
.faq-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 48px;
  align-items: start;
}

.section-header h2,
.polyglot-copy h2,
.security-copy h2 {
  max-width: 680px;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 48px;
}

.section-header > p:last-child,
.polyglot-copy > p,
.security-copy > p {
  color: var(--smoke);
  font-size: 16px;
  line-height: 24px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 48px;
  margin-top: 64px;
  border-top: 1px solid var(--hairline);
}

.benefit-card {
  min-height: 0;
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
}

.benefit-card h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 36px;
}

.benefit-card > p:last-child {
  max-width: 440px;
  margin-top: 16px;
  color: var(--smoke);
  font-size: 14px;
  line-height: 20px;
}

.section-header.centered {
  display: flex;
  max-width: 680px;
  flex-direction: column;
  align-items: center;
  margin-inline: auto;
  text-align: center;
}

.section-header.centered h2 {
  margin-top: 0;
}

.section-header.centered > p:last-child {
  margin-top: 24px;
}

.method-steps {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 64px;
  border-top: 1px solid var(--hairline);
}

.method-steps article {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 48px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
}

.method-steps h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

.method-steps p {
  color: var(--smoke);
  font-size: 14px;
  line-height: 20px;
}

.polyglot-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: center;
}

.polyglot-copy h2 {
  margin-top: 0;
}

.polyglot-copy > p {
  max-width: 560px;
  margin-top: 24px;
}

.text-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.text-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
}

.text-list li::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 4px;
  border-radius: 9999px;
  background: var(--accent);
  content: "";
}

.system-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--sand);
}

.map-grid {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
}

.map-node {
  position: absolute;
  z-index: 2;
  min-width: 144px;
  padding: 12px 16px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--paper);
}

.map-node p {
  color: var(--smoke);
  font-size: 12px;
  line-height: 16px;
}

.map-node strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.map-node-center {
  top: 50%;
  left: 50%;
  width: 200px;
  padding: 16px;
  border-color: var(--accent);
  transform: translate(-50%, -50%);
}

.node-dot {
  display: block;
  width: 8px;
  height: 8px;
  margin-bottom: 8px;
  border-radius: 9999px;
  background: var(--accent);
}

.map-node-api {
  top: 48px;
  left: 32px;
}

.map-node-schema {
  top: 48px;
  right: 32px;
}

.map-node-worker {
  bottom: 80px;
  left: 32px;
}

.map-node-data {
  right: 32px;
  bottom: 80px;
}

.map-node-policy {
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.map-lines {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  inset: 0;
  fill: none;
  stroke: rgba(17, 17, 17, 0.24);
  stroke-dasharray: 4 8;
  stroke-width: 1;
}

.coverage-section .section-header h2 {
  max-width: 760px;
}

.coverage-ledger {
  overflow: hidden;
  margin-top: 64px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--paper);
}

.ledger-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
}

.ledger-heading h3 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
}

.ledger-heading > p {
  color: var(--smoke);
  font-size: 12px;
  line-height: 16px;
}

.ledger-table-scroll {
  overflow-x: auto;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.ledger-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.ledger-table caption {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.ledger-row {
  text-align: left;
}

.ledger-row:not(:last-child) > * {
  border-bottom: 1px solid var(--hairline);
}

.ledger-row > * {
  width: 22%;
  padding: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}

.ledger-row > *:first-child {
  width: 34%;
  font-weight: 600;
}

.ledger-row > *:not(:first-child) {
  border-left: 1px solid var(--hairline);
}

.ledger-header {
  background: var(--sand);
  color: var(--smoke);
}

.ledger-header > * {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 16px;
  text-transform: uppercase;
}

.ledger-status {
  padding: 4px 8px;
  background: var(--fog);
  color: #3f3f3f;
}

.ledger-status.is-validated {
  background: var(--accent-wash);
  color: #303030;
}

.ledger-status.is-unresolved {
  background: var(--unresolved-wash);
  color: #454545;
}

.ledger-status.is-muted {
  color: var(--smoke);
}

.ledger-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
}

.ledger-note .status-dot {
  margin-top: 8px;
}

.ledger-note p {
  max-width: 680px;
  color: var(--smoke);
  font-size: 14px;
  line-height: 20px;
}

.security-section {
  padding-top: 96px;
  padding-bottom: 96px;
  background: var(--ink);
  color: var(--paper);
}

.security-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 80px;
  align-items: start;
}

.security-copy h2 {
  margin-top: 0;
}

.security-copy > p:last-child {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.64);
}

.security-principles {
  padding: 24px;
  border: 1px solid var(--hairline-light);
  border-radius: 8px;
}

.security-principles ul {
  display: flex;
  flex-direction: column;
}

.security-principles li {
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline-light);
  font-size: 14px;
  line-height: 20px;
}

.security-principles li:first-child {
  padding-top: 0;
}

.security-caveat {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 16px;
}

.faq-section .section-header {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
}

.faq-list {
  max-width: 920px;
  margin-top: 64px;
  margin-left: auto;
  border-top: 1px solid var(--hairline);
}

.faq-list details {
  border-bottom: 1px solid var(--hairline);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span:last-child {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--hairline);
  border-radius: 9999px;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 28px;
  transition:
    color 700ms var(--ease-fluid),
    background-color 700ms var(--ease-fluid),
    transform 700ms var(--ease-fluid);
}

.faq-list details[open] summary span:last-child {
  background: var(--ink);
  color: var(--paper);
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 680px;
  padding: 8px 48px 24px 0;
  color: var(--smoke);
  font-size: 16px;
  line-height: 24px;
}

.site-footer {
  overflow: hidden;
  padding-top: 72px;
  background: var(--paper);
  color: var(--ink);
}

.footer-directory {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(360px, 0.72fr);
  gap: 64px;
  align-items: start;
  padding-bottom: 72px;
  color: rgba(17, 17, 17, 0.68);
  font-size: 14px;
  line-height: 20px;
}

.footer-directory a {
  color: inherit;
  transition: color 700ms var(--ease-fluid);
}

.footer-directory a:hover {
  color: var(--ink);
}

.footer-meta {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #333333;
}

.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
}

.footer-brand span {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 32px;
}

.footer-meta > p {
  margin-top: 24px;
  color: rgba(17, 17, 17, 0.62);
}

.footer-navigation {
  display: grid;
  width: min(100%, 360px);
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 64px;
  justify-self: end;
}

.footer-navigation > div {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-navigation a {
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.footer-socials a {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 160px;
  color: rgba(17, 17, 17, 0.72);
  place-items: center;
  transition:
    color 700ms var(--ease-fluid),
    background-color 700ms var(--ease-fluid),
    border-color 700ms var(--ease-fluid),
    transform 700ms var(--ease-fluid);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-socials a:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.footer-socials a:active {
  transform: translateY(0);
}

.footer-wordmark {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding-top: 32px;
  padding-bottom: 48px;
  border-top: 1px solid var(--hairline);
  color: #4d4d4d;
  transition: color 700ms var(--ease-fluid);
}

.footer-wordmark .brand-mark {
  width: 112px;
  height: 112px;
  opacity: 0.7;
  transition: opacity 700ms var(--ease-fluid);
}

.footer-wordmark span {
  overflow: hidden;
  font-family: var(--sans);
  font-size: 112px;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 112px;
  text-align: right;
  white-space: nowrap;
}

.footer-wordmark:hover {
  color: var(--ink);
}

.footer-wordmark:hover .brand-mark {
  opacity: 1;
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 500ms var(--ease-fluid),
    transform 500ms var(--ease-fluid);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  min-height: 100vh;
}

.legal-header {
  display: flex;
  width: min(920px, calc(100% - 48px));
  align-items: center;
  justify-content: space-between;
  margin: 24px auto 0;
  padding: 8px 8px 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 160px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.08);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
}

.legal-date {
  color: var(--smoke);
  font-size: 14px;
  line-height: 20px;
}

.legal-main {
  width: min(760px, calc(100% - 48px));
  margin-inline: auto;
  padding-top: 96px;
  padding-bottom: 96px;
}

.legal-main h1,
.not-found h1 {
  max-width: 680px;
  margin-top: 24px;
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 300;
  line-height: 60px;
}

.legal-main > p {
  max-width: 680px;
  margin-top: 24px;
  color: var(--smoke);
  font-size: 18px;
  line-height: 28px;
}

.legal-content {
  margin-top: 64px;
  padding: 32px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--paper);
}

.legal-content section + section {
  margin-top: 40px;
}

.legal-content h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
}

.legal-content p,
.legal-content li {
  color: var(--smoke);
  font-size: 16px;
  line-height: 24px;
}

.legal-content p,
.legal-content ul {
  margin-top: 16px;
}

.legal-content ul {
  padding-left: 24px;
}

.legal-footer {
  display: flex;
  width: min(920px, calc(100% - 48px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
  padding: 32px 0;
  border-top: 1px solid var(--hairline);
  color: var(--smoke);
  font-size: 12px;
  line-height: 16px;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.not-found-inner {
  display: flex;
  max-width: 680px;
  flex-direction: column;
  align-items: center;
}

.not-found h1 {
  font-size: 72px;
  line-height: 72px;
}

.not-found p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--smoke);
  font-size: 18px;
  line-height: 28px;
}

.not-found .button {
  margin-top: 32px;
}

@media (max-width: 1024px) {
  .artifact-canvas {
    grid-template-columns: 160px minmax(0, 1fr) 220px;
  }

  .finding-panel {
    padding: 24px;
  }

  .finding-facts {
    grid-template-columns: 1fr;
  }

  .polyglot-section,
  .security-inner {
    gap: 48px;
  }

  .footer-wordmark .brand-mark {
    width: 96px;
    height: 96px;
  }

  .footer-wordmark span {
    font-size: 96px;
    line-height: 96px;
  }
}

@media (max-width: 840px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .nav-pill {
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .artifact-canvas {
    grid-template-columns: 1fr;
  }

  .artifact-sidebar {
    display: none;
  }

  .artifact-inspector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--hairline);
    border-left: 0;
  }

  .foundation-strip {
    grid-template-columns: 1fr;
  }

  .foundation-strip ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header,
  .faq-section .section-header {
    grid-template-columns: 1fr;
  }

  .section-header > p:last-child {
    max-width: 560px;
  }

  .method-steps {
    grid-template-columns: 1fr;
  }

  .polyglot-section,
  .security-inner {
    grid-template-columns: 1fr;
  }

  .polyglot-section {
    gap: 64px;
  }

  .footer-directory {
    grid-template-columns: 1fr;
  }

  .footer-navigation {
    justify-self: start;
  }

  .footer-wordmark .brand-mark {
    width: 72px;
    height: 72px;
  }

  .footer-wordmark span {
    font-size: 72px;
    line-height: 72px;
  }
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 80px;
  }

  .section-shell,
  .site-header {
    width: calc(100% - 32px);
  }

  .site-header {
    top: 8px;
    margin-top: 8px;
  }

  .nav-pill {
    height: 64px;
    padding-left: 16px;
  }

  .brand {
    font-size: 16px;
    line-height: 24px;
  }

  .brand-mark {
    width: 24px;
    height: 24px;
  }

  .mobile-menu-panel {
    padding: 112px 24px 24px;
  }

  .mobile-menu nav > a {
    padding: 16px 0;
    font-size: 30px;
    line-height: 36px;
  }

  .hero {
    margin-top: -72px;
    padding-bottom: 64px;
  }

  .hero-intro {
    min-height: max(780px, 100svh);
    align-items: flex-start;
    padding-block: 172px 180px;
  }

  .hero-intro::after {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 96px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--parchment));
    pointer-events: none;
    content: "";
  }

  .hero-copy::before {
    width: calc(100% + 100px);
    height: calc(100% + 160px);
    top: -80px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 48px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-actions {
    width: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions .button {
    width: max-content;
  }

  .artifact-frame {
    margin-top: 64px;
    padding: 8px;
  }

  .artifact-topbar {
    grid-template-columns: auto 1fr;
    padding: 0 8px;
  }

  .artifact-topbar > p {
    text-align: right;
  }

  .revision-pair {
    display: none;
  }

  .finding-panel {
    padding: 24px 16px;
  }

  .finding-header {
    flex-direction: column;
  }

  .finding-header h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .code-evidence > div {
    grid-template-columns: 32px minmax(0, 1fr);
    padding-inline: 8px;
  }

  .artifact-inspector {
    grid-template-columns: 1fr;
  }

  .foundation-strip ul,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefits,
  .method,
  .polyglot-section,
  .coverage-section,
  .faq-section,
  .security-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-header h2,
  .polyglot-copy h2,
  .security-copy h2 {
    font-size: 36px;
    line-height: 40px;
  }

  .benefit-card {
    min-height: 0;
    padding: 24px 0;
  }

  .benefit-card h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .method-steps article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .system-map {
    min-height: 520px;
  }

  .map-node {
    min-width: 124px;
    padding: 8px 12px;
  }

  .map-node-center {
    width: 176px;
  }

  .map-node-api,
  .map-node-worker {
    left: 12px;
  }

  .map-node-schema,
  .map-node-data {
    right: 12px;
  }

  .ledger-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-list {
    margin-top: 48px;
  }

  .faq-list summary {
    font-size: 20px;
    line-height: 28px;
  }

  .site-footer {
    padding-top: 48px;
  }

  .footer-directory > nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 48px;
  }

  .footer-meta {
    align-items: flex-start;
  }

  .footer-wordmark {
    gap: 4px;
    padding-top: 24px;
    padding-bottom: 32px;
  }

  .footer-wordmark .brand-mark {
    width: 48px;
    height: 48px;
  }

  .footer-wordmark span {
    font-size: 48px;
    letter-spacing: -0.05em;
    line-height: 48px;
  }

  .legal-header,
  .legal-main,
  .legal-footer {
    width: calc(100% - 32px);
  }

  .legal-header .button {
    height: 40px;
    padding-inline: 16px;
    font-size: 14px;
    line-height: 20px;
  }

  .legal-main {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .legal-main h1,
  .not-found h1 {
    font-size: 48px;
    line-height: 48px;
  }

  .legal-content {
    padding: 24px;
  }

  .legal-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .footer-wordmark .brand-mark {
    width: 32px;
    height: 32px;
  }

  .footer-wordmark span {
    font-size: 36px;
    line-height: 40px;
  }
}

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

  .skip-link,
  .desktop-nav a,
  .desktop-nav a::after,
  .button,
  .menu-line,
  .mobile-menu,
  .mobile-menu nav > a,
  .mobile-menu-actions,
  .faq-list summary span:last-child,
  .footer-directory a,
  .footer-wordmark,
  .footer-wordmark .brand-mark {
    transition-duration: 0.01ms;
    transition-delay: 0ms;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-height: 700px) {
  .mobile-menu-watermark {
    display: none;
  }
}
