@font-face {
  font-family: Studio;
  src: url("/fonts/manrope-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: StudioMono;
  src: url("/fonts/plex-mono-latin.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
:root {
  --bg: #111110;
  --panel: #191918;
  --ink: #f0eee7;
  --muted: #aaa9a2;
  --accent: #ef9a66;
  --line: #343431;
  --mono: StudioMono, monospace;
  --sans: Studio, Arial, sans-serif;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p,
figure,
ul,
ol,
dl {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.08;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
a,
button {
  touch-action: manipulation;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
pre:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
button[hidden],
[hidden] {
  display: none !important;
}
::selection {
  background: var(--accent);
  color: #111;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.shell {
  width: min(1320px, calc(100% - 112px));
  margin-inline: auto;
}
.mono,
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.eyebrow {
  color: var(--accent);
  margin-bottom: 26px;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 10;
  background: var(--ink);
  color: var(--bg);
  padding: 12px;
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.6px;
}
.brand-light {
  font-weight: 400;
  color: var(--muted);
}
.site-header nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
  color: #c8c7bf;
}
.site-header nav a:hover {
  color: var(--accent);
}
.header-action {
  font-size: 13px;
  border: 1px solid #65635b;
  padding: 10px 17px;
  display: flex;
  gap: 25px;
}
.hero {
  padding-top: 30px;
}
.hero-topline {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
}
.hero-topline > span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.status-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: 0;
  min-height: 580px;
  padding: 28px 0 42px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(62px, 6.4vw, 94px);
  letter-spacing: -0.073em;
  line-height: 1.04;
  white-space: nowrap;
}
.hero h1 > span {
  color: var(--accent);
}
.hero-description {
  font-size: 17px;
  line-height: 1.85;
  color: #b3b2ab;
  max-width: 39ch;
  margin-top: 30px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  font-size: 13px;
  padding: 15px 22px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button-primary {
  background: var(--accent);
  color: #18130f;
}
.button:hover {
  background: #ffc19b;
  transform: translateY(-2px);
}
.text-link {
  font-size: 13px;
  display: inline-flex;
  gap: 17px;
  align-items: center;
}
.text-link:hover {
  color: var(--accent);
}
.requirements {
  font-size: 10px;
  color: #8e8d86;
  margin-top: 20px;
}
.hero-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  padding: 21px 0 35px;
  color: #b0afa6;
  font-size: 10px;
}
.hero-index span:last-child {
  text-align: right;
}
.hero-index span:nth-child(2),
.hero-index span:nth-child(3) {
  text-align: center;
}
.app-section {
  background: #eae9e2;
  color: #1c1d1a;
  padding: 90px 0 44px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 48px;
}
.section-heading h2,
.evidence-copy h2,
.faq-section h2 {
  font-size: clamp(35px, 4vw, 55px);
  letter-spacing: -0.055em;
  line-height: 1.13;
}
.section-heading > p {
  max-width: 34ch;
  color: var(--muted);
  font-size: 15px;
}
.app-section .eyebrow {
  color: #74604a;
}
.app-section .section-heading > p {
  color: #62635b;
}
.app-preview {
  border: 1px solid #565a59;
  border-radius: 12px;
  overflow: hidden;
  background: #101a20;
  box-shadow: 0 35px 65px #1c232225;
}
.preview-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: #172125;
  color: #ddd;
  gap: 12px;
}
.window-dots {
  display: flex;
  gap: 6px;
}
.window-dots i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4f5b5e;
}
.preview-switch {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 4px;
}
.preview-switch button {
  color: #b4b9b9;
  background: transparent;
  border: 0;
  padding: 8px 15px;
  font-size: 12px;
  border-radius: 4px;
  min-height: 36px;
}
.preview-switch button[aria-pressed="true"] {
  background: #3c494c;
  color: #fff;
}
.preview-local {
  font-size: 9px;
  color: #a3adad;
}
.screenshot-figure img {
  width: 100%;
  height: auto;
}
.preview-caption {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #64665e;
  margin-top: 17px;
}
.app-footnotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 55px;
  border-top: 1px solid #c9c9be;
  padding-top: 25px;
}
.app-footnotes p {
  font-size: 13px;
  line-height: 1.8;
  color: #64665e;
}
.app-footnotes b {
  display: block;
  color: #282b25;
  font-weight: 600;
}
.section-pad {
  padding-top: 110px;
  padding-bottom: 100px;
}
.workflow-section h2 span,
.install-copy h2 span {
  color: var(--accent);
}
.workflow-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.workflow-grid li {
  padding: 25px 28px 32px 0;
  min-width: 0;
}
.workflow-grid li + li {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: #939388;
  margin-bottom: 40px;
}
.step-head > span:first-child {
  color: var(--accent);
  font-size: 13px;
}
.workflow-grid h3 {
  font-size: 23px;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.workflow-grid p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  min-height: 130px;
}
.step-spec,
.parity-spec,
.policy-spec {
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #373832;
  background: #1b1c18;
  color: #cfcec3;
  font-size: 10px;
  padding: 15px;
}
.step-spec {
  flex-direction: column;
  gap: 3px;
}
.step-spec > span:nth-child(2) {
  color: var(--accent);
}
.parity-spec {
  flex-direction: column;
  gap: 3px;
}
.parity-spec > span:nth-child(2) {
  color: var(--accent);
}
.policy-spec span {
  padding: 8px 5px;
  border: 1px solid #4c4c43;
}
.section-footnote,
.models-note {
  font-size: 12px;
  color: #92938a;
  line-height: 1.8;
  margin-top: 22px;
}
.section-footnote a,
.models-note a {
  color: #d5d4cb;
  white-space: nowrap;
}
.models-section {
  padding-top: 0;
}
.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.model-card {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #21211d, #191a17);
  padding: 30px;
}
.model-card-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 10px;
  color: #a6a79c;
}
.verified-label {
  color: #bac8a9;
  font-size: 9px;
}
.model-card h3 {
  font-size: 44px;
  letter-spacing: -2px;
  margin: 36px 0 15px;
}
.model-card h3 > span {
  color: var(--accent);
}
.model-description {
  font-size: 14px;
  color: var(--muted);
  max-width: 39ch;
  min-height: 50px;
}
.model-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  padding: 22px 0;
  margin: 27px 0 20px;
  gap: 10px;
}
.model-stats dt {
  font-size: 10px;
  color: #94958c;
}
.model-stats dd {
  font: 14px var(--mono);
  margin: 8px 0 0;
}
.model-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #bfc0b4;
}
.model-card-bottom .mono {
  font-size: 10px;
  color: #929388;
}
.models-note {
  max-width: 100ch;
}
.evidence-section {
  background: #c5c9b7;
  color: #21241d;
  padding: 80px 0;
}
.evidence-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}
.evidence-copy .eyebrow {
  color: #505c40;
}
.evidence-copy h2 {
  font-size: clamp(32px, 3.2vw, 45px);
}
.evidence-copy h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.evidence-copy > p:not(.eyebrow) {
  max-width: 41ch;
  margin: 25px 0;
  font-size: 14px;
  color: #4f5948;
}
.evidence-list {
  list-style: none;
  padding: 0;
}
.evidence-list li {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid #a4ad95;
}
.evidence-list li:last-child {
  border-bottom: 1px solid #a4ad95;
}
.evidence-number {
  color: #6a775c;
  font-size: 10px;
}
.evidence-list h3 {
  font-size: 20px;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.evidence-list p {
  font-size: 12px;
  color: #515d48;
  max-width: 27ch;
}
.evidence-state {
  font-size: 10px;
  color: #364a2f;
}
.evidence-state.pending {
  color: #73583b;
}
.install-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.install-copy h2 {
  font-size: clamp(50px, 5.6vw, 80px);
  letter-spacing: -0.07em;
  line-height: 1.08;
  margin-bottom: 25px;
}
.install-copy > p:not(.eyebrow) {
  max-width: 39ch;
  font-size: 14px;
  color: var(--muted);
}
.install-copy .install-requirements {
  font-size: 12px !important;
  margin-top: 25px;
  color: #8f9086 !important;
}
.install-requirements a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.install-terminal {
  border: 1px solid #3b3c35;
  background: #1a1b18;
  min-width: 0;
}
.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  gap: 12px;
}
.terminal-header .mono {
  font-size: 10px;
  color: #a6a799;
}
.copy-button {
  font-size: 11px;
  padding: 7px 10px;
  border: 1px solid #5a5c50;
  color: #deded4;
  background: transparent;
  min-height: 34px;
}
.install-terminal pre {
  padding: 35px 22px 42px;
  overflow: auto;
  margin: 0;
  font: 12px/2.6 var(--mono);
  color: #d5c4ac;
  white-space: pre;
}
.terminal-footer {
  display: flex;
  gap: 18px;
  padding: 20px;
  border-top: 1px solid var(--line);
}
.terminal-footer .mono {
  white-space: nowrap;
  color: var(--accent);
  font-size: 10px;
}
.terminal-footer p {
  color: #a0a293;
  font-size: 12px;
}
.terminal-footer strong {
  font-weight: 500;
  color: #d2d4c6;
}
.copy-status {
  font-size: 12px;
  margin: 0 20px;
  color: #d8c9a8;
}
.copy-status:not(:empty) {
  padding-bottom: 18px;
}
.faq-section {
  padding-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}
.faq-intro {
  color: var(--muted);
  font-size: 14px;
  margin-top: 20px;
}
.faq-list details {
  border-top: 1px solid var(--line);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  list-style: none;
  font-size: 15px;
  padding: 25px 0;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  color: var(--accent);
  font-size: 20px;
  transition: transform 0.2s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details > div {
  padding-bottom: 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}
.faq-list details p + p {
  margin-top: 14px;
}
.data-path {
  display: block;
  overflow-wrap: anywhere;
  font-size: 11px;
  margin-block: 15px;
  color: #d2c0a5;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 48px;
  padding-bottom: 30px;
}
.footer-wordmark {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(60px, 11vw, 170px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 1.3;
}
.footer-wordmark > span {
  color: #73746a;
}
.footer-wordmark > i {
  font-size: 0.6em;
  color: var(--accent);
  font-style: normal;
  margin-left: auto;
  font-weight: 300;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  padding-top: 25px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: #a1a296;
}
.footer-bottom nav {
  display: flex;
  gap: 25px;
}
.footer-bottom > .mono {
  font-size: 9px;
}
.release-panel {
  padding-top: 20px;
}
.release-panel p {
  font-size: 12px;
  margin-top: 15px;
  color: var(--muted);
}
@media (min-width: 1500px) {
  .hero-layout {
    min-height: 650px;
  }
  .hero h1 {
    font-size: 100px;
  }
}
@media (max-width: 1100px) {
  .shell {
    width: calc(100% - 64px);
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-layout {
    min-height: 540px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading > p {
    max-width: 30ch;
  }
  .workflow-grid p {
    min-height: 155px;
  }
  .model-card {
    padding: 25px;
  }
  .evidence-layout,
  .install-section,
  .faq-section {
    gap: 40px;
  }
  .hero-actions {
    gap: 18px;
  }
  .button {
    gap: 18px;
    padding-inline: 18px;
  }
}
@media (max-width: 800px) {
  .shell {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 80px;
  }
  .site-header nav {
    gap: 18px;
  }
  .site-header nav a:nth-child(2) {
    display: none;
  }
  .header-action {
    display: none;
  }
  .hero-topline > span:last-child {
    display: none;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 50px;
    padding-bottom: 15px;
  }
  .hero-copy {
    max-width: 600px;
  }
  .hero h1 {
    font-size: clamp(55px, 9.8vw, 78px);
  }
  .hero-description {
    max-width: 42ch;
  }
  .hero-index {
    padding-bottom: 25px;
    font-size: 9px;
  }
  .app-section {
    padding-top: 65px;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading > p {
    margin-top: 22px;
    max-width: 46ch;
  }
  .section-heading h2,
  .faq-section h2 {
    font-size: 40px;
  }
  .app-footnotes {
    gap: 25px;
    margin-top: 35px;
  }
  .section-pad {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  .workflow-grid li {
    padding: 26px 0 !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 28px;
  }
  .workflow-grid li + li {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .step-head {
    grid-column: 1/-1;
    margin-bottom: 15px;
  }
  .workflow-grid p {
    min-height: 0;
    grid-column: 1;
  }
  .step-spec,
  .parity-spec,
  .policy-spec {
    grid-column: 2;
    grid-row: 2/4;
  }
  .workflow-grid h3 {
    margin: 0;
  }
  .model-grid {
    gap: 15px;
  }
  .model-card {
    padding: 22px;
  }
  .model-card-top {
    display: block;
  }
  .verified-label {
    display: block;
    margin-top: 8px;
  }
  .model-card h3 {
    font-size: 35px;
    margin-top: 25px;
  }
  .model-stats {
    grid-template-columns: 1fr;
  }
  .model-stats > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .model-stats dd {
    margin: 0;
    font-size: 12px;
  }
  .model-card-bottom {
    font-size: 11px;
    gap: 10px;
  }
  .model-card-bottom .mono {
    font-size: 9px;
  }
  .models-section {
    padding-top: 0;
  }
  .evidence-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .evidence-section {
    padding: 60px 0;
  }
  .evidence-list p {
    max-width: none;
  }
  .evidence-list li {
    gap: 15px;
  }
  .install-section,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .install-copy h2 {
    font-size: 65px;
  }
  .install-copy > p:not(.eyebrow) {
    max-width: 50ch;
  }
  .faq-section {
    padding-top: 0;
  }
  .footer-bottom > .mono {
    display: none;
  }
  .preview-local {
    display: none;
  }
  .preview-caption {
    font-size: 10px;
    gap: 20px;
  }
  .eyebrow {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .site-header nav {
    font-size: 11px;
    gap: 15px;
  }
  .brand {
    font-size: 18px;
  }
  .brand img {
    width: 26px;
  }
  .hero h1 {
    font-size: 52px;
    letter-spacing: -0.065em;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-index {
    font-size: 8px;
  }
  .hero-index > span {
    white-space: nowrap;
  }
  .preview-toolbar {
    padding: 10px;
    justify-content: center;
  }
  .window-dots {
    display: none;
  }
  .preview-switch button {
    font-size: 11px;
    padding-inline: 10px;
  }
  .preview-caption {
    display: block;
  }
  .preview-caption > span {
    display: block;
  }
  .app-footnotes {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .app-footnotes b {
    display: inline;
    margin-right: 5px;
  }
  .workflow-grid li {
    display: block;
  }
  .workflow-grid h3 {
    margin-bottom: 15px;
  }
  .step-spec,
  .parity-spec,
  .policy-spec {
    margin-top: 22px;
    min-height: 90px;
  }
  .model-grid {
    grid-template-columns: 1fr;
  }
  .model-card-top {
    display: flex;
    align-items: center;
  }
  .verified-label {
    margin: 0;
  }
  .model-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .model-stats > div {
    display: block;
  }
  .model-stats dd {
    margin-top: 8px;
    font-size: 12px;
  }
  .model-stats dt {
    font-size: 9px;
  }
  .evidence-list li {
    grid-template-columns: 20px 1fr auto;
    gap: 10px;
  }
  .evidence-list h3 {
    font-size: 19px;
  }
  .evidence-state {
    font-size: 9px;
  }
  .footer-wordmark {
    font-size: 62px;
  }
  .footer-bottom {
    align-items: flex-start;
    gap: 20px;
  }
  .footer-bottom nav {
    flex-direction: column;
    gap: 10px;
  }
  .terminal-header {
    padding: 14px;
  }
  .terminal-header .mono {
    font-size: 9px;
  }
  .install-terminal pre {
    padding: 25px 14px;
    font-size: 10px;
  }
  .terminal-footer {
    padding: 14px;
  }
  .copy-button {
    font-size: 10px;
  }
  .requirements {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .button:hover {
    transform: none;
  }
}
@media (forced-colors: active) {
  .status-dot {
    background: CanvasText;
  }
  button,
  .button,
  .header-action {
    border: 1px solid ButtonText;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(43px, 13.3vw, 52px);
  }
  .footer-wordmark {
    font-size: clamp(45px, 15vw, 62px);
  }
}
