:root {
  color-scheme: dark;
  --ink: #f4f7f4;
  --muted: #a8b3ad;
  --muted-strong: #cbd4ce;
  --canvas: #0b0f0d;
  --canvas-raised: #111713;
  --canvas-soft: #171e1a;
  --line: #2a352f;
  --line-strong: #46584e;
  --green: #7ee2a8;
  --green-strong: #41c57a;
  --green-soft: #15291d;
  --amber: #f2c879;
  --shadow: 0 28px 90px rgb(0 0 0 / 38%);
  --radius: 14px;
  --content: 1180px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgb(55 127 83 / 13%), transparent 30rem),
    var(--canvas);
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  content: "";
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--green);
  text-underline-offset: 0.2em;
}

a:hover {
  color: #a7f0c5;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

code,
pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

code {
  padding: 0.12em 0.34em;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #b8f3cf;
  background: var(--canvas-soft);
  font-size: 0.88em;
}

pre {
  overflow-x: auto;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #080b09;
  line-height: 1.5;
}

pre code {
  padding: 0;
  border: 0;
  background: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  transform: translateY(-200%);
  border-radius: 7px;
  color: #07110a;
  background: var(--green);
  font-weight: 750;
}

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

.release-banner {
  display: flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.1rem;
  padding: 0.4rem 1rem;
  border-bottom: 1px solid #49512e;
  color: #e8e7d7;
  background: #252819;
  font-size: 0.82rem;
  text-align: center;
}

.release-banner strong {
  color: var(--amber);
}

.release-banner a {
  color: #fff4d6;
  font-weight: 700;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgb(11 15 13 / 88%);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  width: min(calc(100% - 2rem), var(--content));
  min-height: 76px;
  margin-inline: auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 760;
  letter-spacing: -0.015em;
  text-decoration: none;
}

.brand:hover {
  color: #fff;
}

.brand img {
  border-radius: 8px;
}

.site-header nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: 0.15rem;
}

.site-header nav a {
  padding: 0.48rem 0.65rem;
  border-radius: 6px;
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--canvas-soft);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border: 1px solid var(--green-strong);
  border-radius: 7px;
  color: #07110a;
  background: var(--green);
  box-shadow: 0 7px 25px rgb(65 197 122 / 14%);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.2;
  text-decoration: none;
}

.button:hover {
  color: #07110a;
  background: #a2efc0;
}

.button--compact {
  min-height: 36px;
  padding: 0.48rem 0.78rem;
  font-size: 0.8rem;
}

.button--secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: var(--canvas-soft);
  box-shadow: none;
}

.button--secondary:hover {
  color: #fff;
  background: #202a24;
}

.home {
  overflow: hidden;
}

.hero,
.section,
.outcome-strip,
.final-cta {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.hero {
  display: grid;
  min-height: 650px;
  padding: 5.7rem 0 4.7rem;
  align-items: center;
  gap: 3.4rem;
  grid-template-columns: minmax(0, 0.83fr) minmax(540px, 1.17fr);
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.115em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-block: 0;
  font-weight: 730;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero h1 {
  max-width: 760px;
  margin-top: 1rem;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.lede {
  max-width: 650px;
  margin: 1.45rem 0 0;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.68;
}

.hero__actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.hero__actions {
  margin-top: 2rem;
}

.hero__note {
  max-width: 600px;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero__note strong {
  color: var(--amber);
}

.product-frame {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #111417;
  box-shadow: var(--shadow);
}

.product-frame--hero {
  width: 100%;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transform-origin: center left;
}

.product-frame figcaption {
  display: flex;
  height: 36px;
  align-items: center;
  gap: 6px;
  padding-inline: 12px;
  border-bottom: 1px solid #30373d;
  color: #9ca3a7;
  background: #202428;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.68rem;
}

.product-frame figcaption span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #697176;
}

.product-frame figcaption strong {
  margin-left: 7px;
  font-weight: 600;
}

.product-frame img {
  width: 100%;
  height: auto;
}

.outcome-strip {
  display: grid;
  margin-bottom: 3rem;
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.outcome-strip p {
  display: grid;
  margin: 0;
  padding: 1.4rem 1.8rem;
  gap: 0.2rem;
}

.outcome-strip p + p {
  border-left: 1px solid var(--line);
}

.outcome-strip strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.outcome-strip span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.section {
  padding-block: 7rem;
  border-bottom: 1px solid var(--line);
}

.section h2,
.final-cta h2 {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.section--split {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.prose-large {
  color: var(--muted-strong);
  font-size: 1.1rem;
}

.prose-large p:first-child {
  margin-top: 0;
}

.section__header {
  max-width: 790px;
}

.section__header > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.workspace-flow,
.roadmap-preview {
  display: grid;
  margin-top: 3.2rem;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.workspace-flow article,
.roadmap-preview article {
  min-height: 245px;
  padding: 2rem;
  background: linear-gradient(150deg, var(--canvas-raised), #0e1310);
}

.workspace-flow article > span:not(.status-label) {
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
}

.workspace-flow h3,
.roadmap-preview h3 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.workspace-flow p,
.roadmap-preview p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section__action {
  margin: 2rem 0 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.section--media {
  display: grid;
  align-items: center;
  gap: 4.5rem;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.section--media-reverse .media-copy {
  order: 2;
}

.section--media-reverse .product-frame {
  order: 1;
}

.media-copy p {
  color: var(--muted-strong);
}

.media-copy > a {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.boundary-note {
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--amber);
  background: rgb(242 200 121 / 7%);
}

.evidence-boundary {
  display: grid;
  align-items: start;
  gap: 1.5rem 4rem;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.evidence-boundary .section__action {
  grid-column: 2;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 2rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted-strong);
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
}

.status-label {
  display: inline-flex;
  padding: 0.25rem 0.5rem;
  border: 1px solid #396748;
  border-radius: 999px;
  color: #a5e8be;
  background: var(--green-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roadmap-preview h3 {
  margin-top: 1.2rem;
}

.open-source {
  display: grid;
  align-items: center;
  gap: 4rem;
  grid-template-columns: 220px 1fr;
}

.open-source img {
  width: 220px;
  filter: drop-shadow(0 20px 35px rgb(0 0 0 / 40%));
}

.open-source p {
  max-width: 680px;
  color: var(--muted-strong);
}

.final-cta {
  padding-block: 8rem;
  text-align: center;
}

.final-cta h2 {
  max-width: 820px;
  margin-inline: auto;
}

.final-cta .inline-actions {
  justify-content: center;
  margin-top: 2rem;
}

.article-shell {
  display: grid;
  width: min(calc(100% - 2rem), 980px);
  min-height: 65vh;
  margin-inline: auto;
  padding: 5rem 0 7rem;
  gap: 2.5rem 4rem;
  grid-template-columns: minmax(0, 1fr);
}

.article-intro {
  max-width: 800px;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.article-intro h1 {
  margin-top: 0.7rem;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.article-intro p {
  max-width: 650px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.docs-shell {
  width: min(calc(100% - 2rem), var(--content));
  grid-template-columns: 220px minmax(0, 760px);
}

.docs-shell .article-intro {
  grid-column: 1 / -1;
}

.docs-navigation {
  position: sticky;
  top: 1.25rem;
  display: flex;
  height: max-content;
  padding-right: 1.5rem;
  border-right: 1px solid var(--line);
  flex-direction: column;
  gap: 0.12rem;
}

.docs-navigation strong {
  margin-bottom: 0.6rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.docs-navigation a {
  padding: 0.46rem 0.6rem;
  border-radius: 6px;
  color: var(--muted-strong);
  font-size: 0.82rem;
  text-decoration: none;
}

.docs-navigation a:hover,
.docs-navigation a[aria-current="page"] {
  color: var(--ink);
  background: var(--canvas-soft);
}

.article-content {
  min-width: 0;
  color: var(--muted-strong);
}

.article-content > :first-child {
  margin-top: 0;
}

.article-content h2 {
  margin: 3.3rem 0 1rem;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.article-content h3 {
  margin: 2.3rem 0 0.7rem;
  color: var(--ink);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.article-content p,
.article-content li {
  max-width: 72ch;
}

.article-content li + li {
  margin-top: 0.5rem;
}

.article-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--amber);
  color: #e4ddcc;
  background: rgb(242 200 121 / 7%);
}

.article-content blockquote p {
  margin: 0;
}

.article-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.article-content th,
.article-content td {
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-content th {
  color: var(--ink);
  background: var(--canvas-soft);
}

.site-footer {
  display: grid;
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
  padding: 4rem 0;
  border-top: 1px solid var(--line);
  gap: 4rem;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
}

.brand--footer {
  margin-bottom: 0.7rem;
}

.site-footer p {
  max-width: 600px;
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer .fine-print {
  font-size: 0.72rem;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 0.55rem 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.site-footer nav a {
  color: var(--muted-strong);
  font-size: 0.8rem;
}

.not-found {
  display: grid;
  width: min(calc(100% - 2rem), 680px);
  min-height: 100vh;
  margin-inline: auto;
  align-content: center;
}

.not-found h1 {
  margin-top: 0.8rem;
  font-size: clamp(2.3rem, 7vw, 4.6rem);
}

.not-found p {
  color: var(--muted);
}

@media (max-width: 960px) {
  .site-header__inner {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    padding-block: 0.8rem;
  }

  .site-header nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .site-header .button {
    margin-left: auto;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .product-frame--hero {
    width: 100%;
    transform: none;
  }

  .section--media {
    grid-template-columns: 1fr;
  }

  .section--media-reverse .media-copy,
  .section--media-reverse .product-frame {
    order: initial;
  }

  .docs-shell {
    grid-template-columns: 185px minmax(0, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .release-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    text-align: left;
  }

  .release-banner a {
    position: absolute;
    right: 1rem;
  }

  .brand span {
    max-width: 150px;
    line-height: 1.2;
  }

  .site-header__inner {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .site-header nav a {
    padding-inline: 0.45rem;
  }

  .hero,
  .section,
  .outcome-strip,
  .final-cta,
  .site-footer,
  .article-shell,
  .docs-shell {
    width: min(calc(100% - 1.5rem), var(--content));
  }

  .hero {
    min-height: 0;
    padding: 4rem 0 3rem;
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.3rem);
  }

  .outcome-strip,
  .workspace-flow,
  .roadmap-preview,
  .section--split,
  .evidence-boundary,
  .open-source,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .outcome-strip p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding-block: 4.5rem;
  }

  .section--split,
  .section--media {
    gap: 2.5rem;
  }

  .workspace-flow article,
  .roadmap-preview article {
    min-height: 0;
  }

  .evidence-boundary .section__action {
    grid-column: auto;
  }

  .open-source {
    gap: 2rem;
  }

  .open-source img {
    width: 150px;
  }

  .final-cta {
    padding-block: 5rem;
  }

  .article-shell,
  .docs-shell {
    display: block;
    padding: 3.5rem 0 5rem;
  }

  .docs-navigation {
    position: static;
    margin: 2rem 0;
    padding: 0 0 1.3rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    flex-direction: row;
    flex-wrap: wrap;
  }

  .docs-navigation strong {
    width: 100%;
  }

  .site-footer {
    gap: 2rem;
  }
}

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