@font-face {
  font-family: "Inter";
  src: url("/assets/inter-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --paper: #101011;
  --ink: #f0eff2;
  --muted: #b0aeb7;
  --accent: #b39af8;
  --purple: #7950dc;
  --line: #303035;
  --surface: #1b1b1e;
  --max: 1120px;
  --font-hero: clamp(3.5rem, 6vw, 4.75rem);
  --font-section: clamp(2.5rem, 4.2vw, 3.25rem);
  --font-article: clamp(2.75rem, 4.8vw, 3.75rem);
  --font-closing: clamp(2.75rem, 4.6vw, 3.5rem);
  --font-body: 1.0625rem;
  --section-space: clamp(4.5rem, 8vw, 7rem);
  --layout-gap: clamp(2rem, 5vw, 5rem);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Inter",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: var(--font-body);
  line-height: 1.65;
  font-optical-sizing: auto;
  font-feature-settings: "cv11" 0, "calt" 1;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
button {
  font: inherit;
  cursor: pointer;
}
a,
button,
summary {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
p,
h1,
h2,
h3,
figure {
  margin: 0;
}
p {
  color: var(--muted);
}
p + p {
  margin-top: 1em;
}
h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
h1 {
  font-size: clamp(2.75rem, 4.8vw, 4rem);
}
h2 {
  font-size: var(--font-section);
}
h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
::selection {
  background: #6442a6;
  color: #fff;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
main {
  overflow: clip;
}
.wrap {
  width: calc(100% - 96px);
  max-width: var(--max);
  margin-inline: auto;
}
.eyebrow {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 550;
  letter-spacing: 0.075em;
  line-height: 1.5;
  margin-bottom: 20px;
}
.site-header {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 88px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-size: 1.65rem;
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1;
}
.orlix-mark {
  display: inline-block;
  position: relative;
  width: 29px;
  height: 29px;
  color: var(--accent);
  transform: rotate(-30deg);
}
.orlix-mark i {
  position: absolute;
  inset: 6px 0;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.orlix-mark i + i {
  inset: 0 7px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
.site-header nav a {
  color: #bdbbc4;
  font-size: 0.875rem;
  text-decoration: none;
  font-weight: 500;
}
.site-header nav a:hover,
.site-header nav a[aria-current] {
  color: #fff;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 24px;
  border: 1px solid transparent;
  border-radius: 20px;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 560;
  text-decoration: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    background 180ms,
    border-color 180ms,
    box-shadow 240ms,
    transform 280ms cubic-bezier(.2, .8, .2, 1);
}
.button > span {
  font-size: 1.25rem;
}
.dark-button {
  background: var(--purple);
  color: #fff;
  border-color: #936ceb;
}
.dark-button:hover {
  background: #895feb;
  border-color: #a98af2;
}
.nav-cta {
  margin-left: auto;
  padding: 9px 14px;
  font-size: 0.875rem;
  border-color: var(--line);
  color: var(--ink);
}
.nav-cta:hover {
  background: #222126;
}
.nav-cta > span {
  font-size: 1rem;
}
.text-link {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  font-weight: 550;
  text-decoration: none;
}
.text-link:hover {
  color: #cebbff;
  text-decoration: underline;
}
.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 20;
  background: var(--purple);
  color: #fff;
  padding: 12px 20px;
}
.skip-link:focus {
  top: 12px;
}
.menu-toggle {
  display: none;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 8px 12px;
  font-size: 0.875rem;
}
.hero {
  padding-top: 91px;
}
.hero-top {
  margin-bottom: 64px;
}
.hero h1 {
  max-width: 1120px;
  font-size: var(--font-hero);
  font-weight: 620;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.hero-description {
  max-width: 770px;
  font-size: clamp(1.6rem, 2.65vw, 2.15rem);
  font-weight: 460;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-top: 30px;
  color: #bcbac2;
}
.hero .actions {
  margin-top: 39px;
}
.availability {
  font-size: 0.8125rem;
  margin-top: 15px;
  color: #a29faa;
}
.product-figure {
  position: relative;
}
.product-stage {
  background: #202023;
  border: 1px solid #45444c;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 30px 80px #0005;
}
.product-window img {
  width: 100%;
}
figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #a09da9;
  font-size: 0.75rem;
  padding-top: 13px;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  padding-block: 74px 0;
}
.principles h2 {
  line-height: 1.3;
  letter-spacing: -.02em;
  font-size: 1.3125rem;
  margin-bottom: 15px;
}
.principles p {
  font-size: 1rem;
  line-height: 1.65;
}
.switch-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding-block: 145px 120px;
}
.section-title > p:not(.eyebrow) {
  font-size: 1.2rem;
  margin-block: 25px;
  max-width: 400px;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps li {
  display: flex;
  gap: 25px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.steps li:first-child {
  padding-top: 0;
  border: 0;
}
.step-number {
  color: var(--accent);
  font-family: ui-monospace, Menlo, monospace;
  font-size: 0.875rem;
  line-height: 1.5;
  padding-top: 3px;
}
.steps h3 {
  font-size: 1.25rem;
  margin-bottom: 9px;
}
.steps p {
  font-size: 1rem;
}
.quiet-note {
  font-size: 0.875rem;
  margin-top: 23px;
}
.quiet-note .text-link {
  font-size: 0.875rem;
  margin-top: 12px;
}
.search-section {
  padding-block: 35px 90px;
}
.section-heading-row {
  max-width: 760px;
  margin: 0 auto 55px;
}
.section-heading-row > p,
.section-heading-row > div + div {
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  line-height: 1.55;
  margin-top: 23px;
  max-width: 730px;
}
.section-heading-row > div + div .text-link {
  margin-top: 18px;
}
.search-demo {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px 38px 0;
}
.search-demo-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.search-demo-top .eyebrow {
  color: var(--muted);
  margin: 0;
  font-size: 0.75rem;
}
.demo-tag {
  font-size: 0.75rem;
  color: #c5b3f4;
  border: 1px solid #484055;
  border-radius: 5px;
  padding: 4px 10px;
}
.demo-question {
  font-size: 1.7rem;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.35;
  margin-block: 28px 20px;
}
.search-input-display {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 460px;
  border: 1px solid #46434e;
  padding: 12px 16px;
  border-radius: 6px;
  background: #131315;
}
.search-input-display > span {
  font-size: 1.6rem;
  line-height: 1;
}
.search-input-display kbd {
  margin-left: auto;
}
.search-demo-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.6fr;
  gap: 45px;
  margin-top: 32px;
}
.result-list {
  padding: 0 32px 32px 0;
  border-right: 1px solid var(--line);
}
.result-count {
  font-size: 0.8125rem;
  margin-bottom: 16px;
}
.search-result {
  display: block;
  text-decoration: none;
  padding: 15px;
  border: 1px solid #37333f;
  border-radius: 6px;
  background: #242127;
  margin-bottom: 12px;
}
.search-result:hover {
  background: #302937;
  border-color: #80708f;
}
.search-result > span,
.search-result small {
  display: block;
  font-size: 0.75rem;
  color: #b6b0c1;
}
.search-result strong {
  display: block;
  font-size: 1rem;
  font-weight: 550;
  margin: 7px 0;
}
.search-result p {
  font-size: 0.875rem;
}
.search-result small {
  margin-top: 12px;
}
.original-note {
  padding: 12px 0 32px;
}
.file-label {
  font-size: 0.8125rem;
  color: var(--muted);
}
.original-note h3 {
  font-size: 2rem;
  margin-block: 17px 27px;
  font-weight: 580;
}
.original-note > p {
  position: relative;
  font-size: 1rem;
  padding-left: 26px;
  margin-bottom: 17px;
}
.line-no {
  position: absolute;
  left: 0;
  color: #9b96a8;
  font-size: 0.8125rem;
  font-family: ui-monospace, Menlo, monospace;
}
.note-reference {
  border-top: 1px solid var(--line);
  padding-top: 19px;
  margin-top: 29px;
}
.note-reference > span {
  display: block;
  color: #b6b0c1;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.note-reference strong {
  font-size: 0.9375rem;
  color: var(--accent);
  font-weight: 550;
}
.note-reference p {
  font-size: 0.875rem;
  margin-top: 9px;
}
.original-note :target {
  outline: 2px solid var(--accent);
  outline-offset: 8px;
}
mark {
  background: #503967;
  color: #f0e5ff;
  padding: 0 3px;
  border-radius: 2px;
}
.demo-footnote {
  border-top: 1px solid var(--line);
  padding-block: 17px;
  font-size: 0.75rem;
}
.search-detail {
  display: flex;
  gap: 45px;
  align-items: start;
  justify-content: space-between;
  margin-top: 28px;
}
.search-detail p {
  max-width: 730px;
  font-size: 1rem;
}
.search-detail strong {
  color: var(--ink);
  font-weight: 550;
}
.search-detail .text-link {
  white-space: nowrap;
  margin-top: 3px;
}
.cli-section {
  background: #141316;
  padding-block: 95px;
  border-block: 1px solid #242127;
}
.cli-section h2 span {
  color: var(--ink);
}
.cli-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
}
.terminal {
  background: #101012;
  border: 1px solid #3a3543;
  border-radius: 9px;
  overflow: hidden;
  align-self: start;
}
.terminal-bar {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 22px;
  border-bottom: 1px solid var(--line);
  color: #b6afc2;
  font-size: 0.75rem;
}
.terminal-bar > span:first-child {
  letter-spacing: 3px;
  color: #93879e;
  font-size: 0.625rem;
}
.code-block {
  background: #18171d;
  color: #e4def0;
  border: 1px solid #39313f;
  border-radius: 7px;
  margin-block: 25px;
  overflow: hidden;
}
.code-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 18px;
  border-bottom: 1px solid #39313f;
  color: #bdb4cb;
  font:
    0.75rem ui-monospace,
    Menlo,
    monospace;
}
.copy-button {
  background: transparent;
  color: #d8cbee;
  font-size: 0.75rem;
  padding: 4px 10px;
  min-height: 32px;
  border: 1px solid #65576f;
  border-radius: 4px;
}
.copy-button:hover {
  background: #3a2c48;
}
.code-block pre {
  margin: 0;
  padding: 23px;
  overflow: auto;
  font:
    0.8125rem/1.9 ui-monospace,
    Menlo,
    Consolas,
    monospace;
  tab-size: 2;
}
.code-block code,
.article-section .code-block code {
  font: inherit;
  white-space: pre;
  color: inherit;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.terminal .code-block {
  border: 0;
  border-radius: 0;
  background: transparent;
  margin: 0;
}
.terminal .code-bar {
  padding: 25px 25px 0;
  border: 0;
  color: var(--accent);
  font-size: 0.75rem;
  gap: 15px;
}
.terminal pre {
  padding: 20px 25px;
}
.terminal-evidence {
  margin: 0 25px 26px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font:
    0.8125rem/1.7 ui-monospace,
    Menlo,
    monospace;
}
.mono-label {
  color: var(--accent);
  font-size: 0.75rem;
  margin-bottom: 20px;
}
.terminal-source {
  color: #e1d8ed;
  overflow-wrap: anywhere;
}
.terminal-muted {
  color: #b5acbe;
  font-size: 0.75rem;
}
.terminal-evidence blockquote {
  margin: 19px 0;
  padding-left: 16px;
  border-left: 2px solid #8a67c1;
  font-size: 0.875rem;
  line-height: 1.7;
}
.agent-story {
  display: grid;
  gap: 35px;
  padding-top: 6px;
}
.agent-story .step-number {
  display: block;
  margin-bottom: 12px;
}
.agent-story h3 {
  font-size: 1.65rem;
  margin-bottom: 15px;
}
.agent-story p {
  font-size: 1rem;
}
.agent-story .text-link {
  margin-top: 18px;
}
.cli-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 50px;
  color: var(--muted);
  font-size: 0.875rem;
}
.trust-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px 80px;
  padding-block: 125px;
}
.trust-intro {
  margin-top: 23px;
  font-size: 1.2rem;
}
.trust-rows > div {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px 17px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
}
.trust-rows > div:first-child {
  padding-top: 0;
  border: 0;
}
.trust-rows > div > span {
  color: var(--accent);
  font:
    0.8125rem/1.8 ui-monospace,
    Menlo,
    monospace;
}
.trust-rows h3 {
  font-size: 1.25rem;
}
.trust-rows p {
  grid-column: 2;
  font-size: 1rem;
}
.evidence-note {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  align-items: start;
  gap: 30px;
}
.evidence-note strong {
  font-weight: 550;
  font-size: 0.9375rem;
}
.evidence-note p {
  font-size: 0.875rem;
}
.evidence-note .text-link {
  font-size: 0.875rem;
  white-space: nowrap;
}
.compare-section {
  padding-bottom: 110px;
}
.comparison {
  overflow: auto;
  border-top: 1px solid var(--line);
}
table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.65;
}
caption {
  text-align: left;
  padding-block: 17px;
  color: var(--muted);
  font-size: 0.8125rem;
}
th,
td {
  padding: 21px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
thead th {
  font-size: 0.875rem;
  color: #c9c5d0;
  font-weight: 500;
}
tbody th {
  font-weight: 500;
  width: 30%;
}
th:first-child {
  padding-left: 0;
}
td {
  width: 35%;
  color: var(--muted);
}
th:nth-child(2),
td:nth-child(2) {
  background: #211b2c;
}
.comparison-bottom {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 32px;
  margin-top: 24px;
}
.comparison-bottom p {
  font-size: 0.875rem;
}
.comparison-bottom .text-link {
  white-space: nowrap;
  font-size: 0.875rem;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  padding-block: 70px 95px;
  border-top: 1px solid var(--line);
}
.faq-section h2 {
  font-size: var(--font-section);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 500;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  color: var(--muted);
}
details[open] summary > span {
  transform: rotate(45deg);
}
.answer {
  padding: 0 25px 23px 0;
  font-size: 1rem;
}
.answer a {
  color: var(--accent);
}
.closing {
  text-align: center;
  padding-block: 85px 130px;
}
.closing > div {
  max-width: 850px;
  margin-inline: auto;
}
.closing-mark {
  display: inline-flex;
  margin-bottom: 24px;
}
.closing-mark .orlix-mark {
  width: 54px;
  height: 54px;
}
.closing-mark .orlix-mark i {
  border-width: 3px;
  inset: 12px 0;
}
.closing-mark .orlix-mark i + i {
  inset: 0 15px;
}
.closing h2 {
  font-size: var(--font-closing);
}
.closing p {
  font-size: 1.35rem;
  margin-top: 23px;
}
.closing .actions {
  justify-content: center;
  margin-top: 30px;
}
.closing p.closing-status {
  font-size: 0.8125rem;
  margin-top: 18px;
}
.site-footer {
  padding-bottom: 30px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 1fr 1fr;
  gap: 35px;
  padding-block: 47px 55px;
}
.footer-top .brand {
  align-self: start;
}
.footer-top p {
  font-size: 0.875rem;
}
.footer-top > div {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 13px;
}
.footer-top > div a {
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--muted);
}
.footer-top > div a:hover {
  color: var(--ink);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  color: #a09ba9;
  font-size: 0.75rem;
}
.footer-bottom a {
  text-decoration: none;
}
.article-heading {
  padding-block: 80px 55px;
  border-bottom: 1px solid var(--line);
}
.article-heading h1 {
  font-size: var(--font-article);
  max-width: 960px;
}
.lead {
  max-width: 790px;
  font-size: 1.3rem;
  line-height: 1.55;
  letter-spacing: -0.015em;
  margin-top: 29px;
}
.article-layout {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
  gap: 65px;
  margin-block: 60px 70px;
}
.article-layout:not(:has(.toc)) {
  display: block;
  max-width: 850px;
}
.toc {
  position: sticky;
  top: 35px;
  align-self: start;
}
.toc .eyebrow {
  font-size: 0.75rem;
  color: #9e97a9;
}
.toc nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.toc a {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
}
.toc a:hover {
  color: var(--accent);
}
.article-body {
  min-width: 0;
  max-width: 850px;
}
.article-section + .article-section {
  margin-top: 55px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}
.article-section h2 {
  font-size: clamp(1.75rem, 2.6vw, 2.125rem);
  line-height: 1.2;
  margin-bottom: 24px;
}
.article-section p {
  font-size: 1rem;
  margin-bottom: 21px;
}
.article-section p a,
.article-section li a {
  color: var(--accent);
}
.article-section h3 {
  font-size: 1.375rem;
  margin-block: 17px 13px;
}
.article-section .text-link {
  margin-top: 8px;
}
.article-section > .steps {
  margin-top: 28px;
}
.article-section .steps h3 {
  margin-top: 0;
}
.article-section .steps p {
  margin-bottom: 0;
}
.article-section .steps .step-number {
  min-width: 24px;
}
.article-section ul {
  padding-left: 23px;
  color: var(--muted);
}
.article-section li {
  margin-bottom: 12px;
}
.article-section .comparison {
  margin-block: 28px;
}
.article-section table {
  font-size: 0.875rem;
}
.article-section .source-note {
  font-size: 0.8125rem;
}
p code,
td code {
  font:
    0.875em ui-monospace,
    Menlo,
    Consolas,
    monospace;
  color: #d4c6ed;
  background: #29232f;
  padding: 3px 5px;
  border-radius: 3px;
  overflow-wrap: anywhere;
}
.notice {
  border-left: 3px solid #9972db;
  background: #211c29;
  padding: 21px 25px;
  margin-block: 28px;
}
.notice strong {
  font-size: 1rem;
  font-weight: 550;
}
.notice p {
  margin: 9px 0 0;
  font-size: 0.9375rem;
}
.compatibility-groups > div {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.compatibility-groups {
  margin-bottom: 25px;
}
.pill {
  display: inline-block;
  padding: 5px 9px;
  font-size: 0.75rem;
  letter-spacing: 0.035em;
  border-radius: 4px;
  color: #d3bffa;
  background: #322440;
}
.pill.neutral {
  background: #2d2a31;
  color: #c4bdcd;
}
.source-note {
  font-size: 0.8125rem;
  margin-top: 35px;
}
.source-note a {
  font-size: inherit;
}
.source-list {
  list-style: none;
  padding: 0 !important;
}
.source-list li {
  border-bottom: 1px solid var(--line);
  padding-block: 17px;
}
.source-list a {
  display: block;
  font-weight: 500;
}
.source-list span {
  display: block;
  font-size: 0.875rem;
  margin-top: 7px;
}
.release-gates {
  list-style: none;
  padding: 0 !important;
}
.release-gates li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.release-gates strong {
  color: var(--ink);
  font-weight: 500;
}
.release-gates span {
  color: var(--accent);
  font-size: 0.8125rem;
}
.not-found {
  padding-block: 90px 130px;
}
.not-found p:not(.eyebrow) {
  max-width: 530px;
  margin-block: 30px;
}
kbd {
  font-family: inherit;
  font-size: 0.75rem;
  padding: 2px 6px;
  border: 1px solid #514857;
  color: #c1b7cc;
  background: #252229;
  border-radius: 3px;
  white-space: nowrap;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .site-header {
    gap: 24px;
  }
  .site-header nav {
    gap: 19px;
  }
  .site-header nav a {
    font-size: 0.8125rem;
  }
  .hero {
    padding-top: 72px;
  }
  .principles {
    gap: 32px;
  }
  .switch-section {
    gap: 65px;
  }
  .cli-grid {
    gap: 45px;
  }
  .trust-section {
    gap: 45px 55px;
  }
  .evidence-note {
    grid-template-columns: 1fr 1.6fr;
  }
  .evidence-note a {
    grid-column: 2;
  }
  .faq-section {
    gap: 55px;
  }
  .article-layout {
    grid-template-columns: 175px minmax(0, 1fr);
    gap: 40px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .site-header {
    flex-wrap: wrap;
    min-height: 78px;
    padding-block: 16px;
    gap: 12px;
  }
  .site-header .brand {
    margin-right: auto;
  }
  .menu-toggle:not([hidden]) {
    display: block;
  }
  .nav-cta {
    margin-left: 0;
  }
  .site-header nav {
    order: 4;
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }
  .site-header nav a {
    padding: 12px 0;
    font-size: 1rem;
  }
  .js .site-header nav:not(.is-open) {
    display: none;
  }
  .hero {
    padding-top: 54px;
  }
  .hero-top {
    margin-bottom: 43px;
  }
  .hero h1 {
    max-width: 700px;
    font-size: var(--font-hero);
  }
  .hero-description {
    font-size: 1.9rem;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 48px;
    max-width: 640px;
  }
  .principles h2 {
    margin-bottom: 9px;
  }
  .switch-section {
    gap: 36px;
    padding-block: 90px;
  }
  .switch-section h2 {
    font-size: var(--font-section);
  }
  .section-heading-row {
    margin-bottom: 35px;
  }
  .section-heading-row > p,
  .section-heading-row > div + div {
    font-size: 1.15rem;
  }
  .search-demo {
    padding: 25px 25px 0;
  }
  .search-demo-grid {
    gap: 25px;
    grid-template-columns: 1fr 1.4fr;
  }
  .result-list {
    padding-right: 23px;
  }
  .original-note h3 {
    font-size: 1.7rem;
  }
  .search-detail {
    gap: 25px;
  }
  .search-detail p {
    font-size: 0.9375rem;
  }
  .search-detail .text-link {
    font-size: 0.9375rem;
  }
  .cli-section {
    padding-block: 70px;
  }
  .cli-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .terminal pre {
    padding: 20px;
    font-size: 0.75rem;
  }
  .terminal .code-bar {
    padding-inline: 20px;
  }
  .terminal-evidence {
    margin-inline: 20px;
  }
  .agent-story h3 {
    font-size: 1.45rem;
  }
  .trust-section {
    padding-block: 85px;
    gap: 45px;
  }
  .trust-section h2 {
    font-size: var(--font-section);
  }
  .compare-section {
    padding-bottom: 80px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 55px 70px;
  }
  .closing {
    padding-block: 60px 90px;
  }
  .footer-top {
    grid-template-columns: 1fr 1.3fr;
    gap: 35px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 15px 25px;
  }
  .footer-bottom > span:first-child {
    flex-basis: 100%;
  }
  .article-heading {
    padding-block: 48px 40px;
  }
  .article-heading h1 {
    font-size: var(--font-article);
  }
  .article-layout {
    display: block;
    margin-top: 30px;
  }
  .toc {
    position: static;
    padding-bottom: 23px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 35px;
  }
  .toc nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 24px;
  }
  .toc .eyebrow {
    margin-bottom: 14px;
  }
}
@media (max-width: 580px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    gap: 8px;
    min-height: 74px;
  }
  .site-header .brand {
    font-size: 1.5rem;
    gap: 7px;
  }
  .menu-toggle {
    font-size: 0.8125rem;
    padding: 8px 10px;
  }
  .menu-toggle span {
    display: none;
  }
  .nav-cta {
    font-size: 0.8125rem;
    padding: 8px 10px;
    gap: 9px;
  }
  .hero {
    padding-top: 45px;
  }
  .hero h1 {
    font-size: var(--font-hero);
    line-height: 1.12;
    letter-spacing: -0.04em;
  }
  .hero-description {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-top: 22px;
  }
  .hero .actions {
    margin-top: 28px;
    gap: 19px;
  }
  .button {
    font-size: 1rem;
    padding: 14px 19px;
  }
  .nav-cta {
    font-size: 0.8125rem;
    padding: 8px 10px;
  }
  .hero .actions .button {
    width: 100%;
    justify-content: center;
  }
  .hero .actions .text-link {
    font-size: 0.9375rem;
  }
  .availability {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-top: 16px;
  }
  .hero-top {
    margin-bottom: 35px;
  }
  figcaption {
    display: block;
    font-size: 0.75rem;
  }
  figcaption span + span {
    display: block;
    margin-top: 3px;
  }
  .product-stage {
    border-radius: 5px;
  }
  .principles {
    gap: 29px;
    padding-top: 40px;
  }
  .principles h2 {
    font-size: 1.3125rem;
  }
  .switch-section {
    display: block;
    padding-block: 75px;
  }
  h2,
  .switch-section h2,
  .trust-section h2 {
    font-size: var(--font-section);
  }
  .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.045em;
    margin-bottom: 16px;
  }
  .section-title > p:not(.eyebrow) {
    font-size: 1.1rem;
    margin-block: 22px;
  }
  .switch-content {
    margin-top: 36px;
  }
  .steps li {
    gap: 22px;
  }
  .search-section {
    padding-block: 15px 70px;
  }
  .section-heading-row > p,
  .section-heading-row > div + div {
    font-size: 1.1rem;
    margin-top: 21px;
  }
  .search-demo {
    padding: 20px 18px 0;
  }
  .search-demo-top .eyebrow {
    font-size: 0.75rem;
    line-height: 1.6;
  }
  .demo-tag {
    display: none;
  }
  .demo-question {
    font-size: 1.375rem;
    margin-block: 21px 18px;
  }
  .search-input-display {
    padding: 10px 12px;
    gap: 10px;
  }
  .search-demo-grid {
    display: block;
    margin-top: 24px;
  }
  .result-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 0 23px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .result-count {
    margin: 0;
  }
  .search-result {
    margin: 0;
    padding: 14px;
  }
  .original-note {
    padding-block: 24px;
  }
  .original-note h3 {
    font-size: 1.75rem;
  }
  .demo-footnote {
    font-size: 0.75rem;
  }
  .search-detail {
    display: block;
  }
  .search-detail p {
    font-size: 1rem;
    margin-bottom: 19px;
  }
  .cli-section {
    padding-block: 65px;
  }
  .cli-grid {
    display: block;
  }
  .terminal-bar {
    padding: 14px 17px;
    font-size: 0.75rem;
  }
  .terminal pre {
    font-size: 0.75rem;
  }
  .terminal .code-bar {
    font-size: 0.75rem;
    gap: 10px;
  }
  .copy-button {
    font-size: 0.75rem;
    padding-inline: 8px;
  }
  .agent-story {
    margin-top: 35px;
    gap: 29px;
  }
  .agent-story > div {
    padding-top: 22px;
    border-top: 1px solid var(--line);
  }
  .agent-story h3 {
    font-size: 1.6rem;
  }
  .cli-bottom {
    display: block;
    margin-top: 33px;
    padding-top: 19px;
    font-size: 0.8125rem;
  }
  .cli-bottom span {
    display: block;
    margin-top: 8px;
  }
  .trust-section {
    display: block;
    padding-block: 75px;
  }
  .trust-intro {
    font-size: 1.1rem;
  }
  .trust-rows {
    margin-top: 33px;
  }
  .evidence-note {
    display: block;
    margin-top: 32px;
    padding-top: 23px;
  }
  .evidence-note p {
    margin-block: 14px;
  }
  .compare-section {
    padding-bottom: 65px;
  }
  .comparison table {
    font-size: 0.8125rem;
    min-width: 500px;
  }
  .comparison th,
  .comparison td {
    padding: 15px 12px;
  }
  .comparison th:first-child {
    padding-left: 0;
  }
  .comparison table[data-comparison] {
    min-width: 0;
    display: block;
  }
  .comparison table[data-comparison] caption {
    display: block;
  }
  .comparison table[data-comparison] thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
  .comparison table[data-comparison] tbody {
    display: block;
  }
  .comparison table[data-comparison] tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
  }
  .comparison table[data-comparison] th {
    grid-column: 1/-1;
    width: auto;
    border: 0;
    padding: 16px 0 11px;
    font-size: 1rem;
  }
  .comparison table[data-comparison] td {
    width: auto;
    border: 0;
    padding: 13px;
    font-size: 0.875rem;
  }
  .comparison table[data-comparison] td::before {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 9px;
    color: #c2b7d1;
  }
  .comparison table[data-comparison] td:nth-child(2)::before {
    content: "ORLIX · VORABVERSION";
  }
  .comparison-bottom {
    display: block;
  }
  .comparison-bottom p {
    margin-bottom: 18px;
  }
  .faq-section {
    padding-block: 50px 60px;
  }
  .faq-section h2 {
    font-size: var(--font-section);
  }
  summary {
    font-size: 1rem;
    padding-block: 20px;
  }
  .answer {
    padding-right: 10px;
  }
  .closing {
    padding-block: 50px 75px;
  }
  .closing h2 {
    font-size: var(--font-closing);
  }
  .closing p {
    font-size: 1.2rem;
  }
  .closing .actions {
    flex-direction: column;
    gap: 20px;
  }
  .closing .actions .button {
    width: 100%;
    max-width: 330px;
  }
  .closing .text-link {
    font-size: 0.9375rem;
  }
  .closing p.closing-status {
    font-size: 0.75rem;
  }
  .footer-top {
    gap: 30px 20px;
    padding-block: 35px;
  }
  .footer-top .brand {
    font-size: 1.5rem;
  }
  .footer-top p {
    font-size: 0.8125rem;
  }
  .footer-top > div a {
    font-size: 0.8125rem;
  }
  .footer-bottom {
    font-size: 0.75rem;
  }
  .article-heading {
    padding-block: 40px 35px;
  }
  .article-heading h1 {
    font-size: var(--font-article);
    line-height: 1.16;
    overflow-wrap: break-word;
  }
  .lead {
    font-size: 1.15rem;
    margin-top: 25px;
  }
  .article-layout {
    margin-bottom: 55px;
  }
  .toc a {
    font-size: 0.875rem;
  }
  .article-section h2 {
    font-size: clamp(1.75rem, 2.6vw, 2.125rem);
  }
  .article-section + .article-section {
    padding-top: 30px;
    margin-top: 38px;
  }
  .article-section .steps li {
    gap: 16px;
  }
  .article-section .steps h3 {
    font-size: 1.25rem;
  }
  .article-section .code-block pre {
    font-size: 0.75rem;
    padding: 17px;
  }
  .article-section .code-bar {
    padding-inline: 17px;
    font-size: 0.75rem;
  }
  .notice {
    padding: 18px 20px;
  }
  .release-gates strong {
    font-size: 0.9375rem;
  }
  .not-found {
    padding-block: 65px 90px;
  }
  .desktop-only {
    display: none;
  }
}
/* Soft corners are progressive: older browsers keep the rounded fallback. */
.button { --corner: 28px; }
.nav-cta, .menu-toggle { --corner: 20px; border-radius: 14px; }
.copy-button { --corner: 15px; border-radius: 10px; }
@supports (corner-shape: squircle) {
  .button, .menu-toggle, .copy-button {
    corner-shape: squircle;
    border-radius: var(--corner);
  }
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 20%, #ffffff24 48%, transparent 75%);
  transform: translateX(-130%);
}
.button > span, .text-link > span {
  transition: transform 280ms cubic-bezier(.2, .8, .2, 1);
}
.copy-button, .menu-toggle {
  transition: background 180ms, border-color 180ms, transform 180ms;
}
.button:focus-visible { box-shadow: 0 0 0 8px #b39af812; }
summary > span { transition: transform 260ms cubic-bezier(.2, .8, .2, 1); }
@media (prefers-reduced-motion: no-preference) {
  .hero-description { animation: orlix-enter 650ms cubic-bezier(.2, .8, .2, 1) both; }
  .hero-top > .actions { animation: orlix-enter 650ms 80ms cubic-bezier(.2, .8, .2, 1) both; }
  details[open] .answer { animation: orlix-enter 280ms ease-out; }
  .button:active, .copy-button:active, .menu-toggle:active { transform: scale(.97); }
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .button:hover { transform: translateY(-3px); }
  .dark-button:hover { box-shadow: 0 8px 28px #7950dc38, inset 0 1px 0 #ffffff30; }
  .button:hover::before { animation: orlix-sheen 650ms ease-out; }
  .button:hover > span, .text-link:hover > span { transform: translate(3px, -3px); }
  .button:active { transform: translateY(0) scale(.97); }
  .brand:hover .orlix-mark { animation: orlix-turn 1100ms cubic-bezier(.2, .8, .2, 1); }
}
@keyframes orlix-enter {
  from { opacity: .35; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes orlix-sheen {
  to { transform: translateX(130%); }
}
@keyframes orlix-turn {
  from { transform: rotate(-30deg); }
  to { transform: rotate(330deg); }
}

/* Small product details: shared line weight, surfaces and interaction feedback. */
h1, h2, h3 { text-wrap: balance; }
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c1b7d7;
  font-size: .75rem;
  font-weight: 550;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-kicker > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px #b39af80d;
}
@media (min-width: 801px) { .hero { padding-top: 55px; } }
.site-header nav a { position: relative; padding-block: 9px; }
.site-header nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.site-header nav a:is(:hover, :focus-visible, [aria-current])::after { transform: scaleX(1); }
.product-stage {
  border-radius: 15px;
  border-color: #5b5666;
  box-shadow: 0 0 0 6px #ffffff03, 0 25px 65px #0005;
}
.capture-actions { display: flex; align-items: center; gap: 18px; }
.preview-expand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c8b6f4;
  text-decoration: none;
  min-height: 32px;
}
.preview-expand svg { width: 15px; height: 15px; transition: transform 200ms; }
.preview-expand:hover svg { transform: scale(1.12); }
.preview-expand:hover { color: #e1d5ff; }
.principle-icon { width: 27px; height: 27px; color: var(--accent); margin-bottom: 18px; }
.search-demo, .terminal {
  border-color: #49434f;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 #ffffff08, 0 20px 50px #0002;
}
.search-input-display { border-radius: 12px; box-shadow: inset 0 1px 3px #0004; }
.search-input-display > .detail-icon { width: 19px; height: 19px; color: #b8abc9; flex-shrink: 0; }
.search-input-display .key-combo { display: inline-flex; margin-left: auto; gap: 4px; font-size: .7rem; }
.key-combo kbd { margin: 0; min-width: 22px; text-align: center; padding: 3px 4px; border: 1px solid #4d4658; border-bottom-width: 2px; border-radius: 5px; line-height: 1.2; color: #bcb3c8; }
.search-result { position: relative; border-radius: 12px; transition: background 180ms, border-color 180ms; }
.search-result::after { content: "↗"; position: absolute; right: 14px; top: 12px; color: #c6b0f2; opacity: 0; transition: opacity 180ms, transform 180ms; transform: translate(-3px, 3px); }
.search-result:is(:hover, :focus-visible, [aria-current="location"])::after { opacity: 1; transform: none; }
.search-result[aria-current="location"] { border-color: #9a7acb; background: #312739; }
.original-note :target { border-radius: 5px; outline-offset: 8px; }
.window-dots { display: inline-flex; align-items: center; gap: 6px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #696272; box-shadow: inset 0 1px 1px #ffffff20; }
.window-dots i:nth-child(2) { background: #82758f; }
.window-dots i:nth-child(3) { background: #ac8dce; }
.terminal-bar { background: #ffffff03; }
.syntax-command { color: #dcc5ff; font-weight: 650; }
.syntax-flag { color: #a8cbea; }
.syntax-string { color: #c3d7aa; }
.copy-button[data-state="success"] { color: #c1dfb5; border-color: #687c61; background: #222e20; }
.copy-button[data-state="error"] { color: #f0cfb4; border-color: #987857; }
.faq-list summary { transition: color 180ms; }
.faq-list summary:hover { color: var(--accent); }
.faq-list summary > span { display: grid; place-items: center; width: 27px; height: 27px; flex-shrink: 0; border: 1px solid #3a3542; border-radius: 9px; font-size: 1.15rem; }
.faq-list details[open] summary > span { color: var(--accent); border-color: #6a537e; }
.closing-mark { position: relative; isolation: isolate; }
.closing-mark::before, .closing-mark::after { content: ""; position: absolute; z-index: -1; border: 1px solid #b39af813; border-radius: 50%; width: 110px; height: 110px; left: 50%; top: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.closing-mark::after { width: 160px; height: 160px; border-color: #b39af809; }
.preview-dialog {
  color: var(--ink);
  background: #19181d;
  border: 1px solid #51495d;
  border-radius: 22px;
  padding: 0;
  width: min(1200px, calc(100vw - 48px));
  max-width: none;
  max-height: calc(100dvh - 48px);
  box-shadow: 0 35px 100px #0009;
  overscroll-behavior: contain;
}
.preview-dialog::backdrop { background: #08070bd9; backdrop-filter: blur(7px); }
body:has(.preview-dialog[open]) { overflow: hidden; }
.preview-dialog-bar { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 24px; }
.preview-dialog-bar h2 { font-size: 1rem; letter-spacing: -.015em; }
.preview-dialog-bar p { font-size: .75rem; margin-top: 5px; }
.preview-close { width: 40px; height: 40px; border: 1px solid #655a74; border-radius: 13px; background: #27232e; color: var(--ink); font-size: 1.5rem; }
.preview-close:hover { background: #3a2e49; }
.preview-touch-hint { display: none; }
.preview-dialog-image { background: #101011; padding: 0 12px; }
.preview-dialog-image img { max-height: calc(100dvh - 205px); object-fit: contain; width: 100%; }
.preview-original { display: block; width: fit-content; margin: 12px 24px; font-size: .75rem; color: var(--accent); }
@media (prefers-reduced-motion: no-preference) {
  .preview-dialog[open] { animation: orlix-enter 240ms ease-out; }
  .preview-dialog[open]::backdrop { animation: backdrop-enter 240ms ease-out; }
}
@keyframes backdrop-enter { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 600px) {
  .hero-kicker { font-size: .65rem; letter-spacing: .06em; margin-bottom: 15px; }
  .product-stage { border-radius: 10px; box-shadow: 0 0 0 4px #ffffff04, 0 18px 45px #0004; }
  .product-figure figcaption .capture-actions { display: flex; flex-wrap: wrap; gap: 0 15px; margin-top: 5px; }
  .capture-actions .preview-expand span { margin: 0; }
  .principles > div { position: relative; padding-left: 43px; }
  .principle-icon { position: absolute; left: 0; top: 2px; width: 24px; height: 24px; }
  .preview-dialog { width: calc(100vw - 24px); max-height: calc(100dvh - 24px); border-radius: 18px; }
  .preview-dialog-bar { padding: 16px; gap: 10px; }
  .preview-dialog-bar p { max-width: 210px; }
  .preview-touch-hint { display: block; font-size: .75rem; padding: 0 16px 12px; }
  .preview-dialog-image { padding: 0; overflow: auto; max-height: calc(100dvh - 220px); }
  .preview-dialog-image img { width: 800px; min-width: 800px; max-width: none; max-height: none; }
  .preview-original { margin-left: 16px; min-height: 32px; display: flex; align-items: center; }
  .key-combo kbd { min-width: 19px; }
}

/* Typography and spacing share one responsive scale across all routes. */
.hero-description {
  max-width: 680px;
  font-size: clamp(1.375rem, 2.25vw, 1.875rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.4;
  margin-top: 24px;
}
.hero .actions { margin-top: 32px; }
.hero-top { margin-bottom: 56px; }
.hero-kicker { margin-bottom: 20px; letter-spacing: .08em; font-weight: 500; }
.button { font-size: 1rem; line-height: 1.5; font-weight: 550; padding: 15px 24px; }
.nav-cta { font-size: .8125rem; padding: 10px 15px; }
.site-header nav { gap: 28px; }
.site-header nav a { font-size: .8125rem; }
.brand { font-weight: 650; letter-spacing: -.04em; }
.eyebrow { font-size: .6875rem; letter-spacing: .1em; margin-bottom: 16px; }
.principles { gap: 48px; padding-top: 64px; }
.principles h2 { line-height: 1.35; margin-bottom: 12px; font-weight: 550; letter-spacing: -.025em; }
.principles p, .steps p, .trust-rows p, .agent-story p { font-size: var(--font-body); line-height: 1.7; }
.principle-icon { margin-bottom: 20px; }
.switch-section { gap: var(--layout-gap); padding-block: var(--section-space); }
.section-title > p:not(.eyebrow) { margin-block: 24px; line-height: 1.65; font-size: 1.125rem; }
.steps li { padding-block: 24px; gap: 24px; }
.steps li:first-child { padding-top: 0; }
.steps h3, .trust-rows h3 { font-size: 1.1875rem; line-height: 1.4; font-weight: 550; }
.quiet-note { margin-top: 24px; line-height: 1.7; }
.search-section { padding-block: 0 var(--section-space); }
.section-heading-row { max-width: 800px; margin: 0 0 48px; }
.section-heading-row > p, .section-heading-row > div + div { max-width: 62ch; font-size: 1.1875rem; line-height: 1.65; margin-top: 24px; }
.search-demo { padding: 32px 40px 0; }
.demo-question { font-size: clamp(1.375rem, 2.1vw, 1.75rem); font-weight: 450; }
.search-demo-grid { gap: 40px; }
.original-note h3 { font-weight: 550; line-height: 1.2; margin-block: 16px 24px; }
.original-note > p { line-height: 1.75; }
.search-detail { margin-top: 24px; gap: 40px; }
.cli-section { padding-block: var(--section-space); }
.cli-grid { gap: var(--layout-gap); }
.agent-story { gap: 32px; }
.agent-story h3 { font-size: 1.5rem; line-height: 1.3; font-weight: 550; }
.trust-section { padding-block: var(--section-space); gap: 48px var(--layout-gap); }
.trust-intro { font-size: 1.125rem; line-height: 1.65; margin-top: 24px; }
.trust-rows > div { padding-block: 24px; gap: 8px 16px; }
.trust-rows > div:first-child { padding-top: 0; }
.compare-section { padding-bottom: var(--section-space); }
.faq-section { gap: var(--layout-gap); padding-block: 64px 80px; }
summary { font-size: 1rem; line-height: 1.55; padding-block: 24px; }
.answer { line-height: 1.75; max-width: 64ch; padding-bottom: 24px; }
.closing { padding-block: 80px var(--section-space); }
.closing h2 { max-width: 720px; margin-inline: auto; }
.closing p { font-size: 1.1875rem; line-height: 1.6; margin-top: 24px; }
.closing .actions { margin-top: 32px; }
.footer-top { padding-block: 48px; }
.article-heading { padding-block: 72px 48px; }
.article-heading h1 { max-width: 1000px; font-weight: 600; }
.lead { max-width: 65ch; font-size: 1.1875rem; line-height: 1.65; margin-top: 24px; }
.article-layout { gap: var(--layout-gap); margin-block: 48px 80px; }
.article-body { max-width: 68ch; }
.article-section > p, .article-section > ul { font-size: var(--font-body); line-height: 1.8; }
.article-section + .article-section { margin-top: 48px; padding-top: 40px; }
.article-section h2 { margin-bottom: 24px; line-height: 1.2; }
.toc nav { gap: 16px; }
.toc a { line-height: 1.5; }
@media (max-width: 1100px) {
  .site-header nav { gap: 20px; }
  .principles { gap: 32px; }
}
@media (max-width: 800px) {
  :root { --font-hero: clamp(2.75rem, 7.6vw, 3.75rem); --font-section: clamp(2.25rem, 5.8vw, 2.75rem); --font-body: 1rem; --font-article: clamp(2.5rem, 6.5vw, 3.25rem); }
  .site-header nav { gap: 0; }
  .site-header nav a { font-size: 1rem; padding-block: 14px; }
  .section-heading-row { margin-bottom: 32px; }
  .section-heading-row > p, .section-heading-row > div + div { font-size: 1.0625rem; margin-top: 20px; }
  .principles { padding-top: 48px; }
  .hero-top { margin-bottom: 40px; }
  .cli-grid { grid-template-columns: 1fr; gap: 40px; }
  .agent-story { grid-template-columns: 1fr 1fr; gap: 32px; }
  .agent-story h3 { font-size: 1.375rem; }
  .search-demo { padding: 24px 24px 0; }
  .search-demo-grid { gap: 24px; }
  .faq-section { padding-block: 48px 64px; gap: 32px; }
  .closing { padding-top: 64px; }
  .article-heading { padding-block: 48px 40px; }
  .article-layout { margin-top: 32px; }
}
@media (max-width: 580px) {
  :root { --font-hero: clamp(2.5rem, 10.8vw, 3.625rem); --font-section: clamp(2rem, 9.2vw, 2.5rem); --font-article: clamp(2.25rem, 9.5vw, 3rem); --font-closing: clamp(2.25rem, 9.8vw, 2.75rem); --section-space: 72px; }
  .hero { padding-top: 40px; }
  .hero h1 { line-height: 1.08; }
  .hero-kicker { font-size: .625rem; margin-bottom: 20px; }
  .hero-description { font-size: 1.375rem; line-height: 1.45; margin-top: 24px; max-width: 30ch; }
  .hero .actions { margin-top: 28px; gap: 20px; }
  .hero-top { margin-bottom: 40px; }
  .button { padding: 14px 20px; }
  .nav-cta { font-size: .75rem; padding: 9px 10px; }
  .principles { padding-top: 40px; gap: 32px; }
  .principles h2 { font-size: 1.1875rem; margin-bottom: 8px; }
  .principles p { font-size: .9375rem; }
  .section-title > p:not(.eyebrow) { font-size: 1.0625rem; margin-block: 20px; }
  .switch-content { margin-top: 32px; }
  .steps li { gap: 20px; }
  .search-demo { padding: 24px 20px 0; }
  .search-demo-top .eyebrow { font-size: .625rem; letter-spacing: .065em; }
  .demo-question { line-height: 1.4; margin-block: 20px; }
  .original-note h3 { font-size: 1.5rem; }
  .search-detail { margin-top: 24px; }
  .agent-story { grid-template-columns: 1fr; gap: 24px; margin-top: 32px; }
  .agent-story h3 { font-size: 1.375rem; }
  .trust-intro { font-size: 1.0625rem; }
  .trust-rows { margin-top: 32px; }
  .faq-section { padding-block: 48px 56px; gap: 24px; }
  summary { padding-block: 20px; gap: 16px; }
  .closing { padding-block: 64px 72px; }
  .closing p { font-size: 1.0625rem; }
  .closing .actions { gap: 24px; }
  .footer-top { padding-block: 40px; gap: 32px 20px; }
  .footer-top > div { gap: 16px; }
  .article-heading { padding-block: 40px 32px; }
  .lead { font-size: 1.0625rem; margin-top: 20px; }
  .article-section + .article-section { margin-top: 40px; padding-top: 32px; }
}

/* Editorial subpages use the same product surfaces, type scale and corner language. */
.article-heading { padding-top: 32px; padding-bottom: 64px; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; font-size: .75rem; line-height: 1.6; color: #aaa3b5; }
.breadcrumb a { text-decoration: none; color: #d5ccdf; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb > span[aria-hidden] { color: #756b84; }
.article-hero-grid { display: grid; gap: 56px; align-items: center; }
.article-hero-grid.has-visual { grid-template-columns: minmax(0, 1fr) 352px; }
.article-hero-copy { min-width: 0; }
.article-hero-copy h1 { font-size: clamp(2.75rem, 4.7vw, 3.625rem); line-height: 1.08; letter-spacing: -.045em; }
.article-hero-copy .lead { max-width: 58ch; font-size: 1.125rem; line-height: 1.65; }
.article-hero-copy .eyebrow { font-size: .6875rem; margin-bottom: 20px; }
.article-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 32px; }
.article-hero-actions .button { font-size: .875rem; padding: 13px 20px; gap: 12px; }
.article-hero-actions > span { font-size: .75rem; color: #aaa3b5; }
.article-visual { min-width: 0; border: 1px solid #49414f; border-radius: 22px; padding: 28px; background: #19171d; box-shadow: inset 0 1px 0 #ffffff08, 0 20px 45px #0002; }
.visual-label { color: var(--accent); font-size: .625rem; line-height: 1.6; font-weight: 550; letter-spacing: .09em; margin-bottom: 24px; }
.visual-title { color: var(--ink); font-size: 1.3125rem; line-height: 1.4; letter-spacing: -.025em; font-weight: 500; text-wrap: balance; }
.visual-facts { margin: 24px 0 0; }
.visual-facts > div { display: flex; justify-content: space-between; gap: 16px; padding-block: 14px; border-top: 1px solid #36303e; }
.visual-facts dt, .visual-facts dd { font-size: .75rem; line-height: 1.5; }
.visual-facts dt { color: var(--muted); }
.visual-facts dd { margin: 0; color: #ddd3ed; text-align: right; }
.article-visual-foot { border-top: 1px solid #36303e; padding-top: 16px; margin-top: 16px; font-size: .6875rem; line-height: 1.65; color: #aaa3b5; }
.vault-path { display: flex; align-items: center; gap: 10px; color: #ebe5f6; font-size: .9375rem; font-weight: 500; }
.vault-path svg { color: var(--accent); width: 21px; height: 21px; }
.visual-format { margin-left: auto; font: .6875rem ui-monospace, monospace; color: #c6b7d8; background: #2c2535; padding: 3px 7px; border-radius: 6px; }
.vault-files { display: grid; gap: 18px; border-left: 1px solid #53455f; margin: 20px 0 24px 10px; padding-left: 20px; font: .6875rem/1.6 ui-monospace, Menlo, monospace; color: #bcb2ca; overflow-wrap: anywhere; }
.vault-files span { position: relative; }
.vault-files span::before { content: ""; position: absolute; height: 1px; width: 10px; background: #53455f; left: -20px; top: .8em; }
.vault-editors { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: .8125rem; }
.vault-editors > span:not([aria-hidden]) { padding: 8px 16px; border: 1px solid #4e415c; border-radius: 12px; }
.vault-editors > span:last-child { background: #2b2139; color: #d1bcf5; }
.article-visual--cli { padding: 0; overflow: hidden; background: #151318; }
.visual-terminal-title { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; color: #b3a8c0; font-size: .625rem; background: #ffffff03; border-bottom: 1px solid #36303e; }
.article-visual--cli .code-block { margin: 0; border: 0; border-radius: 0; background: transparent; }
.article-visual--cli .code-bar { border: 0; padding: 24px 22px 0; font-size: .625rem; }
.article-visual--cli pre { padding: 20px 22px 24px; font-size: .75rem; line-height: 2; }
.article-visual--cli .article-visual-foot { margin: 0 22px 22px; }
.source-preview-title { display: flex; align-items: center; gap: 12px; font-size: .9375rem; color: var(--ink); }
.source-preview-title svg { color: var(--accent); }
.source-preview-title small { display: block; font-size: .6875rem; color: #b8acc7; margin-top: 4px; }
.source-preview-quote { margin: 24px 0; padding-left: 16px; border-left: 2px solid var(--accent); color: #d6ccdf; font-size: .9375rem; line-height: 1.75; }
.source-preview-route { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; font-size: .625rem; color: var(--accent); }
.source-preview-route > span[aria-hidden] { color: #8c7d9f; }
.visual-directory { display: grid; }
.visual-directory a { display: grid; grid-template-columns: 20px minmax(0, 1fr) 12px; gap: 12px; padding-block: 19px; border-top: 1px solid #36303e; text-decoration: none; color: #eee8f6; font-size: .875rem; line-height: 1.5; }
.visual-directory a > span:first-child { font: .6875rem/1.8 ui-monospace, monospace; color: #b49bd7; }
.visual-directory a small { display: block; font-size: .6875rem; color: #aea2be; margin-top: 6px; }
.visual-directory a > span:last-child { color: var(--accent); transition: transform 180ms; }
.visual-directory a:hover > span:last-child { transform: translate(2px, -2px); }
.visual-directory a:hover { color: var(--accent); }
.article-layout { grid-template-columns: 220px minmax(0, 1fr); gap: 64px; margin-block: 64px 96px; }
.article-body { max-width: none; }
.article-body > .article-section > p { max-width: 68ch; }
.article-section h2 { max-width: 29ch; font-size: clamp(1.75rem, 2.5vw, 2.125rem); }
.article-section + .article-section { margin-top: 56px; padding-top: 48px; }
.article-section > :last-child { margin-bottom: 0; }
.article-body > .source-note { border-top: 1px solid var(--line); padding-top: 24px; margin-top: 48px; line-height: 1.75; }
.toc { top: 32px; }
.toc .eyebrow { margin-bottom: 20px; font-size: .625rem; letter-spacing: .09em; }
.toc nav { gap: 4px; border-left: 1px solid #332c3c; }
.toc nav a { display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: 10px; margin-left: -1px; border-left: 2px solid transparent; padding: 12px 0 12px 16px; font-size: .8125rem; line-height: 1.5; transition: color 180ms, border-color 180ms; }
.toc-number { font: .625rem/1.95 ui-monospace, Menlo, monospace; color: #a89ab9; }
.toc nav a:is(:hover, :focus-visible, [aria-current="location"]) { color: #ded0f6; border-left-color: var(--accent); }
.toc nav a[aria-current="location"] .toc-number { color: var(--accent); }
.toc-home { display: inline-flex; margin-top: 28px; font-size: .75rem !important; color: #ada2bb !important; }
.article-section .code-block { border-radius: 16px; margin-block: 28px; box-shadow: inset 0 1px 0 #ffffff06; }
.article-section .code-bar { padding: 12px 20px; font-size: .6875rem; }
.article-section .code-block pre { padding: 24px; font-size: .8125rem; line-height: 1.85; }
.article-section .notice { border: 1px solid #493957; border-left: 3px solid #9972db; border-radius: 0 16px 16px 0; background: #201a28; padding: 24px 28px; margin-block: 32px; }
.article-section .notice p { font-size: .9375rem; line-height: 1.75; margin: 12px 0 0; }
.article-section .notice strong { font-weight: 550; line-height: 1.5; }
.article-section .comparison { border: 1px solid #3b3245; border-radius: 16px; padding-inline: 20px; margin-block: 32px; }
.article-section .comparison table { font-size: .875rem; }
.article-section .comparison caption { padding-block: 20px; }
.article-section .comparison tbody tr:last-child > * { border-bottom: 0; }
.article-section .comparison td, .article-section .comparison th { padding-block: 20px; }
.compatibility-groups { margin-block: 8px 32px; }
.compatibility-groups > div { padding-block: 28px; }
.compatibility-groups > div:first-child { padding-top: 0; }
.compatibility-groups .pill { font-size: .625rem; letter-spacing: .06em; border-radius: 8px; padding: 6px 10px; }
.compatibility-groups h3 { font-size: 1.25rem; margin-block: 16px 12px; }
.compatibility-groups p { font-size: 1rem; line-height: 1.75; }
.article-section .source-list li { margin: 0; padding: 22px 36px 22px 0; position: relative; }
.source-list li::after { content: "↗"; position: absolute; top: 22px; right: 4px; color: var(--accent); }
.source-list a { font-size: 1rem; text-decoration: none; }
.source-list a:hover { text-decoration: underline; }
.source-list span { font-size: .875rem; line-height: 1.6; }
.article-section .release-gates { border: 1px solid #3b3245; border-radius: 16px; padding: 8px 24px !important; margin-block: 28px; }
.release-gates li { padding-block: 18px; align-items: center; }
.release-gates li:last-child { border-bottom: 0; }
.release-gates strong { font-size: .9375rem; line-height: 1.6; }
.release-gates span { border: 1px solid #4b3b60; border-radius: 8px; padding: 3px 9px; font-size: .6875rem; }
.not-found { max-width: 900px; padding-block: 72px 112px; }
.not-found h1 { font-size: var(--font-hero); line-height: 1.08; letter-spacing: -.045em; }
.not-found-mark { display: block; margin-bottom: 40px; }
.not-found-mark .orlix-mark { width: 52px; height: 52px; }
.not-found-mark .orlix-mark i { inset: 11px 0; }
.not-found-mark .orlix-mark i + i { inset: 0 13px; }
@media (max-width: 1100px) {
  .article-hero-grid.has-visual { grid-template-columns: minmax(0, 1fr) 320px; gap: 32px; }
  .article-hero-copy h1 { font-size: 3rem; }
  .article-visual { padding: 24px; }
  .article-visual--cli { padding: 0; }
  .article-layout { grid-template-columns: 190px minmax(0, 1fr); gap: 40px; }
  .article-hero-actions > span { flex-basis: 100%; }
}
@media (max-width: 800px) {
  .article-heading { padding-top: 24px; padding-bottom: 48px; }
  .breadcrumb { margin-bottom: 32px; }
  .article-hero-grid.has-visual { grid-template-columns: 1fr; gap: 36px; }
  .article-hero-copy h1 { font-size: var(--font-article); }
  .article-hero-copy .lead { font-size: 1.0625rem; }
  .article-hero-actions > span { flex-basis: auto; }
  .article-visual { max-width: 540px; width: 100%; }
  .article-layout { display: block; margin-block: 32px 72px; }
  .toc { padding-bottom: 28px; margin-bottom: 40px; }
  .toc nav { display: grid; grid-template-columns: 1fr 1fr; border-left: 0; gap: 8px 16px; }
  .toc nav a { border-left: 0; border-bottom: 1px solid #39313f; margin: 0; padding: 10px 0; }
  .toc nav a:is(:hover, :focus-visible, [aria-current="location"]) { border-bottom-color: var(--accent); }
  .toc-home { display: none; }
  .article-section + .article-section { padding-top: 36px; margin-top: 40px; }
}
@media (max-width: 580px) {
  .article-heading { padding-top: 20px; padding-bottom: 40px; }
  .breadcrumb { font-size: .6875rem; margin-bottom: 32px; gap: 10px; }
  .article-hero-copy h1 { font-size: clamp(2.125rem, 9.2vw, 2.75rem); line-height: 1.12; overflow-wrap: anywhere; }
  .article-hero-copy .eyebrow { font-size: .625rem; line-height: 1.65; }
  .article-hero-copy .lead { line-height: 1.7; margin-top: 24px; }
  .article-hero-actions { gap: 16px; margin-top: 24px; }
  .article-hero-actions > span { flex-basis: 100%; }
  .article-visual { padding: 24px; border-radius: 18px; }
  .article-visual--cli { padding: 0; }
  .article-hero-grid.has-visual { gap: 32px; }
  .toc nav { gap: 8px 12px; }
  .toc nav a { grid-template-columns: 16px minmax(0, 1fr); font-size: .75rem; gap: 6px; }
  .article-section .notice { padding: 20px; margin-block: 24px; }
  .article-section .comparison { padding-inline: 12px; margin-block: 24px; }
  .article-section .code-block pre { padding: 20px; font-size: .75rem; }
  .article-section .code-bar { padding-inline: 16px; }
  .article-section .release-gates { padding-inline: 16px !important; }
  .release-gates li { gap: 12px; }
  .release-gates strong { font-size: .8125rem; }
  .not-found { padding-block: 48px 80px; }
  .not-found-mark { margin-bottom: 32px; }
}

/* Homepage: editorial opening, authentic product stage and three clear paths. */
.hero { padding-top: 64px; }
.hero-top { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr); gap: 64px; align-items: start; margin-bottom: 48px; }
.hero-title, .hero-intro { min-width: 0; }
.hero-intro { padding-top: 7px; }
.keep-together { white-space: nowrap; }
.hero h1 { font-size: clamp(3.5rem, 6.1vw, 5.5rem); line-height: 1.025; letter-spacing: -.055em; font-weight: 590; }
.hero h1 > span { color: #bda5f5; }
.hero-kicker { margin-bottom: 28px; }
.hero-description { font-size: clamp(1.125rem, 1.65vw, 1.375rem); line-height: 1.55; letter-spacing: -.02em; margin: 0; max-width: 32ch; }
.hero .actions { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 26px; }
.hero .actions .text-link { font-size: .8125rem; color: #c6c1d0; }
.hero .button { font-size: .9375rem; padding: 14px 22px; }
.hero .availability { font-size: .6875rem; margin-top: 18px; }
.hero-foundations { display: flex; align-items: center; gap: 28px; margin-bottom: 24px; color: #b3aebc; font-size: .75rem; }
.hero-foundations > span { display: inline-flex; gap: 10px; align-items: center; }
.hero-foundations > span + span::before { content: ""; width: 3px; height: 3px; background: #766780; border-radius: 50%; margin-right: 8px; }
.hero-foundations svg { width: 16px; height: 16px; color: var(--accent); }
.product-figure { isolation: isolate; }
.product-orlixs { position: absolute; inset: -35px -32px; z-index: -1; pointer-events: none; overflow: hidden; }
.product-orlixs i { position: absolute; inset: 16% 0; border: 1px solid #b39af812; border-radius: 50%; transform: rotate(-18deg); }
.product-orlixs i:nth-child(2) { inset: 4% 7%; transform: rotate(18deg); border-color: #b39af80d; }
.product-orlixs i:nth-child(3) { inset: 0 20%; transform: rotate(35deg); border-color: #b39af808; }
.hero .product-stage { padding: 0 12px 12px; background: #1c1a20; border-color: #514858; border-radius: 22px; box-shadow: 0 24px 70px #0005, 0 0 0 6px #ffffff03; }
.product-presentation-bar { display: flex; justify-content: space-between; gap: 20px; align-items: center; min-height: 52px; padding: 10px 10px; color: #c9c1d6; font-size: .75rem; }
.product-presentation-bar > span:first-child { display: flex; align-items: center; gap: 10px; }
.product-presentation-bar i { width: 6px; height: 6px; background: #bda5f5; border-radius: 50%; box-shadow: 0 0 0 4px #b39af810; }
.product-presentation-bar > span:last-child { font-size: .625rem; letter-spacing: .06em; color: #aca2b9; }
.hero .product-window { overflow: hidden; border: 1px solid #ffffff14; border-radius: 10px; }
.hero .product-figure figcaption { padding-top: 18px; font-size: .6875rem; }
.hero .principles { gap: 40px; padding-top: 56px; }
.hero .principles > div { min-width: 0; padding: 0; }
.principle-path { display: block; border-top: 1px solid #39323f; padding-top: 24px; text-decoration: none; }
.principle-heading { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 24px; }
.principle-number { font-size: .625rem; letter-spacing: .1em; color: #b5a9c4; }
.hero .principle-icon { width: 23px; height: 23px; position: static; margin: 0; color: var(--accent); }
.hero .principles h2 { font-size: 1.75rem; font-weight: 550; line-height: 1.2; letter-spacing: -.035em; margin-bottom: 16px; }
.hero .principles p { font-size: .9375rem; line-height: 1.7; max-width: 34ch; }
.principle-link { display: flex; justify-content: space-between; gap: 16px; font-size: .8125rem; font-weight: 500; color: var(--accent); margin-top: 24px; }
.principle-link > span { transition: transform 240ms ease; }
.principle-path { transition: border-color 240ms ease; }
.principle-path:is(:hover,:focus-visible) { border-color: var(--accent); }
.principle-path:is(:hover,:focus-visible) .principle-link > span { transform: translate(3px,-3px); }
.vault-continuity { max-width: 350px; margin-top: 40px; border-top: 1px solid #39323f; padding-top: 24px; }
.vault-continuity > div { display: flex; align-items: center; gap: 12px; font-size: .9375rem; color: #e0dae8; }
.vault-continuity svg { color: var(--accent); width: 22px; }
.vault-continuity > div > span { display: flex; justify-content: space-between; width: 100%; }
.vault-continuity small { font-size: .6875rem; color: #b3a8c0; }
.vault-continuity > p { display: flex; gap: 16px; align-items: center; margin: 20px 0 12px; font-size: .8125rem; }
.vault-connector { flex: 1; height: 1px; background: #53455f; position: relative; }
.vault-connector::before,.vault-connector::after { content:""; position: absolute; width: 5px; height: 5px; top: -2px; border: 1px solid #b39af8; background: #101011; border-radius: 50%; }
.vault-connector::before { left: 0; } .vault-connector::after { right: 0; }
.search-section .search-demo { box-shadow: inset 0 1px 0 #ffffff08, 0 22px 60px #0003; }
.cli-section { border-top: 1px solid #312a39; border-bottom: 1px solid #312a39; }
@media (max-width: 1100px) {
  .hero-top { gap: 40px; grid-template-columns: minmax(0,1.4fr) minmax(0,1fr); }
  .hero h1 { font-size: clamp(3.25rem, 6vw, 4.5rem); }
  .hero .principles { gap: 28px; }
}
@media (max-width: 800px) {
  .hero { padding-top: 40px; }
  .hero-top { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
  .hero h1 { font-size: clamp(3rem, 8.5vw, 4.5rem); }
  .hero-kicker { margin-bottom: 20px; }
  .hero-description { max-width: 40ch; font-size: 1.1875rem; }
  .hero .actions { flex-direction: row; align-items: center; gap: 24px; margin-top: 24px; }
  .hero-foundations { flex-wrap: wrap; gap: 12px 20px; font-size: .6875rem; }
  .hero .principles h2 { font-size: 1.4375rem; }
  .product-orlixs { inset-inline: -15px; }
}
@media (max-width: 580px) {
  .hero h1 { font-size: clamp(2.875rem, 11.2vw, 4rem); line-height: 1.04; }
  .hero-top { gap: 24px; margin-bottom: 28px; }
  .hero-description { font-size: 1.0625rem; line-height: 1.65; max-width: 32ch; }
  .hero .actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .hero .actions .button { width: auto; }
  .hero .availability { font-size: .625rem; margin-top: 16px; }
  .hero-foundations { gap: 10px 16px; font-size: .625rem; line-height: 1.5; }
  .hero-foundations > span:first-child { flex-basis: 100%; }
  .hero-foundations > span:nth-child(2)::before { display: none; }
  .hero-foundations > span + span::before { margin-right: 0; }
  .hero .product-stage { padding: 0 6px 6px; border-radius: 14px; box-shadow: 0 16px 40px #0004; }
  .product-presentation-bar { min-height: 42px; padding: 8px 6px; font-size: .625rem; gap: 8px; }
  .product-presentation-bar > span:last-child { font-size: .5rem; }
  .hero .product-window { border-radius: 6px; }
  .hero .product-figure figcaption { font-size: .625rem; line-height: 1.6; padding-top: 12px; }
  .hero .principles { gap: 28px; padding-top: 40px; }
  .principle-path { padding-top: 20px; }
  .principle-heading { margin-bottom: 16px; }
  .hero .principles h2 { font-size: 1.75rem; }
  .hero .principles h2 br { display: none; }
  .hero .principles p { max-width: 38ch; font-size: .9375rem; }
  .principle-link { margin-top: 16px; }
  .vault-continuity { max-width: none; margin-top: 32px; }
}
/* Fewer labels, one message per block, and the real application identity. */
.app-mark { display: block; width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.brand { gap: 10px; }
.brand-wordmark { display: block; width: 148px; height: auto; flex-shrink: 0; }
.closing-mark .app-mark { width: 76px; height: 76px; }
.not-found-mark .app-mark { width: 64px; height: 64px; }
.closing-mark::before, .closing-mark::after { display: none; }
.hero .product-stage { padding: 12px; }
.hero-top { margin-bottom: 56px; }
.hero .principles { gap: 48px; }
.principle-path { position: relative; padding-bottom: 32px; }
.principle-heading { justify-content: flex-start; margin-bottom: 20px; }
.principle-link { position: absolute; top: 22px; right: 0; margin: 0; font-size: 1rem; transition: transform 240ms ease; }
.principle-path:is(:hover,:focus-visible) .principle-link { transform: translate(3px,-3px); }
.hero .principles p { max-width: 31ch; }
.search-demo-top { margin-bottom: 16px; }
.search-demo .demo-question { margin-top: 0; }
.search-demo-grid { padding-top: 32px; }
.search-demo .result-list { padding-top: 0; }
.search-result strong { margin-top: 0; }
.original-note h3 { margin-top: 12px; }
.evidence-note { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 32px; }
.evidence-note > p { max-width: 76ch; }
@media (max-width:800px) { .evidence-note { grid-template-columns: 1fr; gap: 16px; } }
@media (max-width:580px) {
  .app-mark { width: 32px; height: 32px; }
  .hero-top { margin-bottom: 36px; }
  .hero .product-stage { padding: 6px; }
  .hero .principles { gap: 16px; }
  .principle-path { padding-bottom: 16px; }
  .hero .principles p { max-width: 35ch; }
  .hero .product-figure figcaption .capture-actions { margin-top: 0; }
  .search-demo-grid { padding-top: 24px; }
}
/* Fast, finite product illustrations; static sources remain readable throughout. */
.demo-play { display: inline-flex; align-items: center; justify-content: center; min-width: 120px; min-height: 36px; padding: 7px 12px; border: 1px solid #5b506a; border-radius: 12px; background: transparent; color: #d0c7de; font: inherit; font-size: .75rem; cursor: pointer; }
.demo-play[hidden] { display: none; }
@supports (corner-shape: squircle) { .demo-play, .agent-choice { corner-shape: squircle; border-radius: 20px; } }
.demo-play:hover { background: #b39af812; border-color: #a38ac5; }
.demo-play:disabled { border-color: transparent; color: #aba4b4; cursor: default; }
.search-demo-top { align-items: center; }
.search-demo-top .eyebrow { margin: 0; }
.search-demo .search-input-display { position: relative; max-width: 100%; }
.search-type { display: inline-block; min-width: 8ch; }
.search-type > span { display: block; width: 8ch; }
.search-pulse { width: 6px; height: 6px; border-radius: 50%; background: #b9a0ed; margin-left: auto; opacity: .6; }
.search-demo .original-note { position: relative; }
.search-demo .original-note::after { content: ''; position: absolute; inset: 0; border: 1px solid transparent; border-radius: 12px; pointer-events: none; }
.agent-demo { border: 1px solid #494050; border-radius: 24px; background: #17141b; padding: 28px 32px 0; box-shadow: inset 0 1px 0 #ffffff08; }
.agent-demo-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.agent-switch { display: flex; gap: 6px; padding: 5px; border: 1px solid #433a4d; border-radius: 17px; background: #111014; }
.agent-choice { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; border-radius: 12px; background: transparent; color: #aaa3b6; font: inherit; font-size: .875rem; min-height: 42px; padding: 8px 17px; cursor: pointer; }
.agent-choice[aria-pressed="true"] { color: #f0e8fb; background: #302639; border-color: #6a507f; }
.agent-choice:disabled { opacity: 1; cursor: default; }
.agent-glyph { font-family: ui-monospace, monospace; font-size: 1rem; color: #d9d2e4; }
.claude-glyph { color: #dfac8d; font-size: 1.25rem; }
.agent-route { display: grid; grid-template-columns: 120px minmax(30px,1fr) 120px minmax(30px,1fr) 120px; align-items: center; padding: 44px 20px 48px; }
.route-node { display: grid; justify-items: center; gap: 14px; }
.route-node strong { font-size: .8125rem; font-weight: 500; color: #d6cedf; }
.route-symbol, .source-node > svg { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid #60526e; border-radius: 17px; color: #ccbce2; background: #211c29; }
.route-symbol { font-family: ui-monospace, monospace; font-size: 1.375rem; }
.source-node > svg { padding: 13px; }
.orlix-node img { width: 56px; height: 56px; }
.request-track { position: relative; height: 1px; margin-top: -30px; background: #51435f; }
.request-track > span { position: absolute; top: 18px; width: 100%; text-align: center; color: #a99db7; font-size: .6875rem; }
.request-track > i { position: absolute; width: 18px; height: 3px; top: -1px; left: 0; border-radius: 3px; background: #c5a3ff; opacity: 0; box-shadow: 0 0 12px #c5a3ff65; }
.agent-demo .cli-grid { grid-template-columns: minmax(0,1.15fr) minmax(0,1fr); gap: 40px; padding-bottom: 32px; }
.agent-demo .terminal { box-shadow: none; background: #111014; }
.agent-demo .agent-story { gap: 28px; }
.agent-demo .agent-story h3 { font-size: 1.25rem; }
.agent-demo .agent-story p { font-size: .9375rem; line-height: 1.7; }
.agent-demo .agent-story .text-link { font-size: .8125rem; }
.agent-demo .code-block pre { font-size: .8125rem; }
.agent-demo .terminal-evidence blockquote { font-size: .8125rem; }
.agent-demo-caption { display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid #43384e; padding: 18px 0; font-size: .6875rem; color: #b6aabd; }
.request-stages { display: inline-flex; gap: 12px; font-family: ui-monospace,monospace; color: #c8b7db; }
.motion-demo.is-paused *, .motion-demo.is-paused *::after { animation-play-state: paused !important; }
@media (prefers-reduced-motion: no-preference) {
 .search-demo.is-playing .search-type > span { overflow: hidden; white-space: nowrap; animation: search-type 480ms steps(8,end) both; }
 .search-demo.is-playing .search-pulse { animation: search-ready 600ms 450ms ease-out both; }
 .search-demo.is-playing .search-result { animation: result-arrive 400ms 520ms cubic-bezier(.2,.8,.2,1) both; }
 .search-demo.is-playing .search-result:nth-child(2) { animation-delay: 650ms; }
 .search-demo.is-playing .original-note::after { animation: source-arrive 750ms 1250ms ease-out both; }
 .search-demo.is-playing .original-note mark { animation: source-mark 700ms 1250ms ease-out both; }
 .agent-demo.is-playing .request-track > i { animation: request-send 570ms 100ms cubic-bezier(.3,0,.2,1) 3; }
 .agent-demo.is-playing .request-track > i:nth-child(2) { animation-delay: 260ms; }
 .agent-demo.is-playing .request-track > i:nth-child(3) { animation-delay: 420ms; }
 .agent-demo.is-playing .return-track > i { animation-direction: reverse; animation-delay: 600ms; }
 .agent-demo.is-playing .return-track > i:nth-child(2) { animation-delay: 780ms; }
 .agent-demo.is-playing .return-track > i:nth-child(3) { animation-delay: 960ms; }
 .agent-demo.is-playing .orlix-node img { animation: cli-receive 600ms 450ms ease-out 3; }
 .agent-demo.is-playing .terminal-evidence { animation: evidence-arrive 650ms 1350ms ease-out both; }
 .agent-demo[data-phase="request"] [data-request-stage="1"], .agent-demo[data-phase="results"] [data-request-stage="2"], .agent-demo[data-phase="source"] [data-request-stage="3"] { color: #fff; text-shadow: 0 0 12px #d6adff; }
}
@keyframes search-type { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes search-ready { 0% { transform: scale(.6); opacity: .4; } 50% { transform: scale(1.8); opacity: 1; } 100% { transform: scale(1); opacity: .6; } }
@keyframes result-arrive { from { transform: translateY(8px); border-color: #ad8ade; } to { transform: translateY(0); border-color: #39333f; } }
@keyframes source-arrive { 0% { border-color: #bd9eef00; transform: translateX(-6px); } 40% { border-color: #bd9eef88; } 100% { border-color: #bd9eef00; transform: translateX(0); } }
@keyframes source-mark { 0% { background: #8a63c044; } 50% { background: #9468caaa; } 100% { background: #79529b66; } }
@keyframes request-send { 0% { left: 0; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: calc(100% - 18px); opacity: 0; } }
@keyframes cli-receive { 0%,100% { transform: scale(1); } 35% { transform: scale(1.07); } }
@keyframes evidence-arrive { from { transform: translateY(6px); } to { transform: translateY(0); } }
@media (max-width:1000px) { .agent-demo .cli-grid { grid-template-columns: 1fr; } .agent-demo .agent-story { grid-template-columns: 1fr 1fr; } }
@media (max-width:580px) {
 .demo-play { font-size: .625rem; min-width: 100px; min-height: 36px; padding: 6px 8px; }
 .search-demo-top { gap: 12px; }
 .search-demo-top .eyebrow { max-width: 130px; font-size: .5625rem; }
 .agent-demo { padding: 16px 16px 0; border-radius: 18px; }
 .agent-demo-toolbar { flex-wrap: wrap; gap: 12px; }
 .agent-switch { width: 100%; gap: 4px; padding: 4px; }
 .agent-choice { flex: 1; min-width: 0; font-size: .75rem; padding: 8px; gap: 7px; }
 .agent-demo-toolbar > .demo-play { margin-left: auto; }
 .agent-route { grid-template-columns: 62px minmax(14px,1fr) 62px minmax(14px,1fr) 62px; padding: 28px 0 36px; }
 .route-symbol,.source-node > svg { width: 42px; height: 42px; border-radius: 13px; }
 .source-node > svg { padding: 10px; }
 .orlix-node img { width: 46px; height: 46px; }
 .route-node { gap: 10px; }
 .route-node strong { font-size: .625rem; white-space: nowrap; }
 .request-track { margin-top: -23px; }
 .request-track > span { display: none; }
 .request-track > i { width: 10px; }
 .agent-demo .cli-grid { gap: 28px; padding-bottom: 24px; }
 .agent-demo .agent-story { grid-template-columns: 1fr; margin: 0; }
 .agent-demo .code-block pre { font-size: .6875rem; }
 .agent-demo .code-bar,.agent-demo .terminal-evidence { padding-inline: 16px; }
 .agent-demo .terminal-bar { padding-inline: 12px; gap: 8px; font-size: .5625rem; }
 .agent-demo .terminal-evidence blockquote { font-size: .75rem; }
 .agent-demo .terminal-source { overflow-wrap: anywhere; }
 .agent-demo-caption { flex-direction: column; align-items: flex-start; gap: 12px; font-size: .625rem; }
 .agent-demo .agent-story h3 { font-size: 1.125rem; }
}
/* All clients stay visible; the signals illustrate a shared local CLI. */
.parallel-section { padding-block: var(--section-space); background: #111014; border-bottom: 1px solid #312a39; }
.parallel-section h2 span { color: #b7a0d5; }
.parallel-demo { border: 1px solid #494050; border-radius: 24px; padding: 28px 32px 0; background: #17141b; box-shadow: inset 0 1px 0 #ffffff08; }
.parallel-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.parallel-kicker { display: inline-flex; align-items: center; gap: 10px; color: #bfb1cc; font-size: .625rem; font-weight: 550; letter-spacing: .09em; }
.parallel-kicker > i { width: 5px; height: 5px; border-radius: 50%; background: #b39af8; }
.parallel-map { position: relative; height: 400px; margin-block: 30px; isolation: isolate; }
.parallel-wires { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: -1; }
.wires-mobile { display: none; }
.parallel-wire { stroke: #675477; stroke-width: 1; vector-effect: non-scaling-stroke; }
.parallel-packet { stroke: #d3b5ff; stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 4 96; stroke-dashoffset: 100; opacity: 0; vector-effect: non-scaling-stroke; }
.packet-1 { stroke: #e8b59f; }
.packet-2 { stroke: #a7beff; }
.parallel-client { position: absolute; top: calc(12.5% + var(--client-index) * 25%); left: 0; transform: translateY(-50%); width: 24%; display: flex; align-items: center; gap: 15px; padding: 16px 18px; border: 1px solid #56465f; border-radius: 18px; background: #211b27; box-shadow: 0 7px 22px #0002, inset 0 1px 0 #ffffff05; }
.parallel-client > div { min-width: 0; }
.parallel-client strong { display: block; color: #e7dfee; font-size: .875rem; font-weight: 500; white-space: nowrap; }
.parallel-client code { display: block; color: #ad9dbb; font-size: .6875rem; margin-top: 6px; white-space: nowrap; }
.parallel-glyph { display: grid; place-items: center; width: 32px; flex: 0 0 32px; font: 1.5rem ui-monospace, monospace; color: #ccb6ed; }
.client-claude .parallel-glyph { color: #deb19b; font-size: 1.875rem; }
.client-gemini .parallel-glyph { color: #acc5ff; font-size: 2rem; }
.client-custom .parallel-glyph { color: #bdb4cb; }
.client-port { position: absolute; top: calc(50% - 3px); right: -4px; width: 7px; height: 7px; border: 1px solid #b299ca; border-radius: 50%; background: #211b27; }
.parallel-hub { position: absolute; left: 55%; top: 50%; transform: translate(-50%,-50%); display: grid; justify-items: center; text-align: center; width: 168px; }
.parallel-hub img { width: 88px; height: 88px; filter: drop-shadow(0 8px 20px #7861bf30); }
.parallel-hub strong { margin-top: 15px; font-size: 1.125rem; font-weight: 550; color: #eee6f5; }
.parallel-vault > span:last-child { display: block; color: #b4a5bf; margin-top: 8px; font-size: .6875rem; }
.parallel-constellation { position: absolute; top: 50%; left: 55%; width: 210px; height: 210px; transform: translate(-50%,-50%); z-index: -1; border-radius: 50%; background: #201925; }
.parallel-constellation > i { position: absolute; inset: 0; border: 1px solid #9170b12a; border-radius: 50%; }
.parallel-constellation > i:nth-child(2) { inset: -24px; border-style: dashed; opacity: .6; }
.parallel-constellation > i:nth-child(3) { inset: -48px; opacity: .4; }
.parallel-vault { position: absolute; top: 50%; left: 88%; transform: translate(-50%,-35px); width: 145px; display: grid; justify-items: center; text-align: center; }
.parallel-vault-symbol { width: 64px; height: 70px; position: relative; display: grid; place-items: center; border: 1px solid #766184; background: #211b28; border-radius: 18px; box-shadow: 5px -5px 0 -1px #201b25, 5px -5px 0 0 #504156, 10px -10px 0 -1px #1b171f, 10px -10px 0 0 #3e3347; }
.parallel-vault-symbol svg { width: 28px; height: 28px; color: #c9b3de; }
.parallel-vault-symbol > i { position: absolute; right: -5px; bottom: 9px; width: 8px; height: 8px; border: 2px solid #211b28; border-radius: 50%; background: #c2a0ef; }
.parallel-vault > strong { font-size: .9375rem; font-weight: 500; margin-top: 19px; color: #e7dfee; }
.parallel-source-line { display: flex; justify-content: space-between; align-items: center; gap: 24px; border: 1px solid #44384e; background: #131016; border-radius: 14px; padding: 20px 22px; margin-bottom: 28px; }
.parallel-source-line > span { display: flex; align-items: center; gap: 12px; }
.parallel-source-line svg { color: #b79aca; width: 18px; height: 18px; flex-shrink: 0; }
.parallel-source-line strong { font-size: .8125rem; font-weight: 450; color: #ded1e9; }
.parallel-source-line > code { color: #bca8cb; font-size: .6875rem; }
.parallel-format { font-family: ui-monospace, monospace; }
@supports (corner-shape: squircle) { .parallel-client,.parallel-source-line,.parallel-vault-symbol { corner-shape: squircle; border-radius: 28px; } }
@media (prefers-reduced-motion: no-preference) {
 .parallel-demo.is-playing .parallel-packet { animation: parallel-send 760ms 80ms linear 3; }
 .parallel-demo.is-playing .packet-1 { animation-delay: 140ms; }
 .parallel-demo.is-playing .packet-2 { animation-delay: 200ms; }
 .parallel-demo.is-playing .packet-3 { animation-delay: 260ms; }
 .parallel-demo.is-playing .packet-4 { animation-delay: 480ms; animation-direction: reverse; }
 .parallel-demo.is-playing .packet-echo { animation-delay: 410ms; }
 .parallel-demo.is-playing .packet-echo.packet-4 { animation-delay: 670ms; }
 .parallel-demo.is-playing .client-port { animation: parallel-port 760ms 80ms ease-out 3; }
 .parallel-demo.is-playing .parallel-hub img { animation: cli-receive 760ms 500ms ease-out 3; }
}
@keyframes parallel-send { 0% { stroke-dashoffset: 100; opacity: 0; } 8%,85% { opacity: 1; } 100% { stroke-dashoffset: 0; opacity: 0; } }
@keyframes parallel-port { 0%,100% { background: #211b27; } 30% { background: #d5b6f3; box-shadow: 0 0 10px #c7a0ef65; } }
@media (min-width:701px) and (max-width:1000px) {
 .parallel-client { padding: 14px 10px; gap: 8px; }
 .parallel-glyph { width: 24px; flex-basis: 24px; }
 .parallel-client strong { font-size: .75rem; }
 .parallel-client code { font-size: .625rem; }
 .parallel-constellation { width: 174px; height: 174px; }
 .parallel-constellation > i:nth-child(3) { display: none; }
 .parallel-vault { width: 110px; }
}
@media (max-width:700px) {
 .parallel-demo { padding: 20px 18px 0; border-radius: 20px; }
 .parallel-toolbar { gap: 12px; }
 .parallel-kicker { max-width: 145px; font-size: .5625rem; line-height: 1.8; gap: 8px; }
 .parallel-kicker > i { flex: 0 0 5px; }
 .parallel-map { height: 510px; margin-block: 24px 20px; }
 .wires-desktop { display: none; }
 .wires-mobile { display: block; }
 .parallel-client { width: 44%; height: 72px; padding: 8px; gap: 5px; top: 48px; flex-direction: column; justify-content: center; }
 .client-claude,.client-custom { left: 56%; }
 .client-gemini,.client-custom { top: 140px; }
 .parallel-client strong { font-size: .75rem; }
 .parallel-client code { display: none; }
 .parallel-glyph { font-size: 1.125rem; width: 24px; height: 24px; flex: 0 0 24px; }
 .client-claude .parallel-glyph,.client-gemini .parallel-glyph { font-size: 1.5rem; }
 .client-claude .client-port,.client-custom .client-port { right: auto; left: -4px; }
 .parallel-hub { left: 50%; top: 280px; }
 .parallel-hub img { width: 64px; height: 64px; }
 .parallel-hub strong { font-size: .9375rem; margin-top: 10px; }
 .parallel-vault > span:last-child { font-size: .625rem; margin-top: 7px; }
 .parallel-constellation { left: 50%; top: 280px; width: 162px; height: 162px; }
 .parallel-constellation > i:nth-child(2) { inset: -16px; }
 .parallel-constellation > i:nth-child(3) { inset: -32px; }
 .parallel-vault { top: 434px; left: 50%; width: 180px; transform: translate(-50%,-24px); }
 .parallel-vault-symbol { width: 46px; height: 48px; border-radius: 13px; }
 .parallel-vault-symbol svg { width: 23px; height: 23px; }
 .parallel-vault > strong { margin-top: 14px; font-size: .8125rem; }
 .parallel-source-line { align-items: flex-start; flex-direction: column; padding: 17px 14px; gap: 12px; margin-bottom: 20px; }
 .parallel-source-line > span { gap: 8px; }
 .parallel-source-line strong { font-size: .75rem; }
 .parallel-source-line > code { font-size: .625rem; line-height: 1.8; }
 .parallel-demo .agent-demo-caption { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width:360px) {
 .parallel-demo { padding-inline: 14px; }
 .parallel-client { padding-inline: 7px; }
 .parallel-client strong { font-size: .6875rem; }
 .parallel-source-line strong { font-size: .6875rem; }
 .parallel-source-line > code { font-size: .5625rem; }
}
/* A connected knowledge constellation anchors the homepage. */
.hero { padding-top: 32px; }
.hero-top { position: relative; isolation: isolate; grid-template-columns: minmax(0,1fr) minmax(0,1.07fr); gap: 28px; align-items: center; margin-bottom: 52px; }
.hero-atmosphere { position: absolute; z-index: -1; pointer-events: none; left: calc(50% - 50vw); top: -120px; width: 100vw; height: calc(100% + 220px); overflow: clip; mask-image: linear-gradient(transparent, #000 18%, #000 72%, transparent); }
.hero-atmosphere-light { position: absolute; inset: 0; background: radial-gradient(ellipse at 74% 45%, #6e448918, transparent 60%); }
.ambient-orlix { position: absolute; left: 69%; top: 47%; border: 1px solid #b899e320; border-radius: 50%; width: 1150px; height: 690px; transform: translate(-50%,-50%) rotate(-24deg); }
.ambient-orlix-two { width: 1340px; height: 470px; border-color: #ba9ad817; transform: translate(-50%,-50%) rotate(23deg); }
.ambient-orlix-three { width: 870px; height: 1000px; border-color: #9a89ca16; transform: translate(-50%,-50%) rotate(-38deg); }
.ambient-orlix > i { position: absolute; top: -3px; left: calc(50% - 3px); width: 5px; height: 5px; border-radius: 50%; background: #d2baf09c; box-shadow: 0 0 12px #b195d74d; }
.ambient-orlix-two > i { top: auto; bottom: -3px; width: 4px; height: 4px; background: #b3c6dc90; }
.ambient-orlix-three > i { width: 3px; height: 3px; background: #be9ce07d; }
.hero-copy { position: relative; z-index: 1; min-width: 0; }
.hero h1 { font-size: clamp(3.25rem,5.4vw,4.875rem); line-height: 1.04; }
.hero-intro { padding-top: 0; margin-top: 28px; }
.hero-description { max-width: 34ch; font-size: 1.125rem; line-height: 1.65; }
.hero .actions { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 28px; }
.hero .actions .text-link { font-size: .8125rem; }
.hero .availability { margin-top: 18px; }
.hero-graph { min-width: 0; margin: 0; position: relative; }
.graph-canvas { position: relative; width: 100%; aspect-ratio: 5 / 4; isolation: isolate; }
.graph-sky { position: absolute; inset: 5%; z-index: -1; background-image: radial-gradient(#bda5f526 1px, transparent 1px); background-size: 23px 23px; mask-image: radial-gradient(ellipse, black 10%, transparent 70%); }
.graph-small-nodes rect { stroke: #a289c174; fill: #211929; }
.graph-small-nodes path { stroke: #b49dc56b; stroke-width: 1; }
.graph-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.graph-orlix { stroke: #8d74b025; stroke-width: 1; }
.graph-orlix-inner { stroke: #8d74b018; }
.graph-secondary { stroke: #8d74b03a; stroke-width: 1; stroke-dasharray: 3 7; }
.graph-edge { stroke: #806796; stroke-width: 1.25; opacity: .75; transition: stroke 250ms, opacity 250ms; }
.graph-signal { stroke: #d8bcff; stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 5 95; stroke-dashoffset: 100; opacity: 0; }
.graph-stars { fill: #a28bb5; opacity: .55; }
.graph-node { position: absolute; display: inline-flex; align-items: center; gap: 10px; padding: 13px 15px; border: 1px solid #62516f; border-radius: 15px; color: #e1d9eb; background: #211b28; box-shadow: 0 8px 25px #0003, inset 0 1px 0 #ffffff07; font-size: .8125rem; white-space: nowrap; text-decoration: none; transform: translate(-50%,-50%); transition: border-color 220ms, background 220ms, box-shadow 220ms; }
.graph-node svg { color: #baa1db; width: 18px; height: 18px; flex-shrink: 0; }
.graph-node:hover { border-color: #c4a1ec; background: #30253b; box-shadow: 0 10px 30px #0005; }
.graph-node:focus-visible { outline-offset: 5px; }
.node-ideas::before,.node-project::before { content: ''; position: absolute; inset: -5px 6px 5px -6px; z-index: -1; border: 1px solid #8b6fa23d; border-radius: inherit; background: #19151e; }
.node-project::before { inset: 5px -5px -5px 5px; }
.node-socket { position: absolute; width: 5px; height: 5px; border: 1px solid #c9a8ec; border-radius: 50%; background: #302338; bottom: -3px; left: calc(50% - 2px); }
.node-ideas { left: 18%; top: 20%; }
.node-project { left: 80%; top: 18%; }
.node-sources { left: 86%; top: 52%; }
.node-codex { left: 18%; top: 75%; }
.node-claude { left: 70%; top: 85%; }
.node-codex,.node-claude { border-color: #635565; background: #201d24; }
.node-claude svg { color: #dcad96; }
.graph-hub { position: absolute; left: 50%; top: 48%; transform: translate(-50%,-50%); display: grid; justify-items: center; gap: 11px; color: #f0e8fa; text-decoration: none; font-size: .875rem; font-weight: 550; padding: 20px; }
.graph-hub img { width: 76px; height: 76px; filter: drop-shadow(0 8px 16px #0005); }
.hub-ring { position: absolute; width: 134px; height: 134px; left: 50%; top: 45%; transform: translate(-50%,-50%); z-index: -1; border: 1px solid #b490df30; border-radius: 50%; background: #21182750; box-shadow: 0 0 0 13px #aa7ce106, 0 0 0 35px #aa7ce104; }
.graph-dial { position: absolute; left: 50%; top: 45%; width: 166px; height: 166px; transform: translate(-50%,-50%); pointer-events: none; }
.graph-dial > circle:first-child { stroke: #b79aca44; stroke-width: 1.2; stroke-dasharray: .18 1.82; }
.graph-dial > path { stroke: #bf9fe987; stroke-width: 1; }
.graph-dial .dial-point { fill: #d3b3f1; }
.hero-graph figcaption { display: flex; justify-content: center; align-items: center; gap: 20px; padding-top: 8px; min-height: 44px; font-size: .625rem; color: #a69bac; }
.hero-motion-toggle { display: inline-flex; align-items: center; gap: 6px; border: 1px solid #88719640; border-radius: 10px; background: #21192775; padding: 8px 10px; min-height: 34px; color: #b9acc5; font: inherit; cursor: pointer; }
.hero-motion-toggle[hidden] { display: none; }
.hero-motion-toggle:hover { color: #eee6f6; border-color: #ac8dcb; }
.hero-motion-toggle:disabled { cursor: default; color: #a69bac; }
.hero-motion-toggle svg { stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.3; flex-shrink: 0; }
.hero-motion-toggle .motion-play-symbol { display: none; }
.hero-motion-toggle[aria-pressed="true"] .motion-play-symbol { display: block; }
.hero-motion-toggle[aria-pressed="true"] .motion-pause-symbol { display: none; }
.hero-top[data-motion-paused="true"] *, .hero-top[data-motion-paused="true"] *::before, .hero-top[data-motion-paused="true"] *::after { animation-play-state: paused !important; }
.hero-graph:has(.node-ideas:is(:hover,:focus-visible)) .edge-ideas,
.hero-graph:has(.node-project:is(:hover,:focus-visible)) .edge-project,
.hero-graph:has(.node-sources:is(:hover,:focus-visible)) .edge-sources,
.hero-graph:has(.node-codex:is(:hover,:focus-visible)) .edge-codex,
.hero-graph:has(.node-claude:is(:hover,:focus-visible)) .edge-claude { stroke: #e1c3ff; opacity: 1; stroke-width: 2; }
@supports (corner-shape: squircle) { .graph-node { corner-shape: squircle; border-radius: 24px; } }
@media (prefers-reduced-motion: no-preference) {
 .hero-motion-ready .ambient-orlix-one { animation: ambient-orlix-one 68s linear infinite; }
 .hero-motion-ready .ambient-orlix-two { animation: ambient-orlix-two 92s linear infinite; }
 .hero-motion-ready .ambient-orlix-three { animation: ambient-orlix-three 110s linear infinite; }
 .hero-motion-ready .graph-node { animation: graph-node-arrive 800ms calc(120ms + var(--node-index) * 100ms) cubic-bezier(.2,.8,.2,1) both; }
 .hero-motion-ready .graph-dial { animation: graph-dial-arrive 2200ms 250ms cubic-bezier(.2,.8,.2,1) both; }
 .hero-motion-ready .graph-edge { stroke-dasharray: 100; animation: graph-connect 1200ms 150ms ease-out both; }
 .hero-motion-ready .graph-signal { animation: graph-transmit 1800ms 850ms ease-in-out 1 both; }
 .signal-project { animation-delay: 1050ms; }
 .signal-sources { animation-delay: 1250ms; }
 .signal-codex { animation-delay: 1450ms; }
 .signal-claude { animation-delay: 1650ms; }
 .hero-graph:has(.node-ideas:hover) .signal-ideas,
 .hero-graph:has(.node-project:hover) .signal-project,
 .hero-graph:has(.node-sources:hover) .signal-sources,
 .hero-graph:has(.node-codex:hover) .signal-codex,
 .hero-graph:has(.node-claude:hover) .signal-claude { animation: graph-hover-transmit 900ms ease-out 1; }
}
@keyframes ambient-orlix-one { from { transform: translate(-50%,-50%) rotate(-24deg); } to { transform: translate(-50%,-50%) rotate(336deg); } }
@keyframes ambient-orlix-two { from { transform: translate(-50%,-50%) rotate(23deg); } to { transform: translate(-50%,-50%) rotate(-337deg); } }
@keyframes ambient-orlix-three { from { transform: translate(-50%,-50%) rotate(-38deg); } to { transform: translate(-50%,-50%) rotate(322deg); } }
@keyframes graph-node-arrive { from { opacity: .4; transform: translate(-50%,calc(-50% + 12px)); } to { opacity: 1; transform: translate(-50%,-50%); } }
@keyframes graph-dial-arrive { from { opacity: .15; transform: translate(-50%,-50%) rotate(-65deg); } to { opacity: 1; transform: translate(-50%,-50%) rotate(0); } }
@keyframes graph-connect { from { stroke-dashoffset: 100; opacity: .3; } to { stroke-dashoffset: 0; opacity: .75; } }
@keyframes graph-transmit { 0% { stroke-dashoffset: 100; opacity: 0; } 15% { opacity: 1; } 80% { opacity: 1; } 100% { stroke-dashoffset: 0; opacity: 0; } }
@keyframes graph-hover-transmit { 0% { stroke-dashoffset: 100; opacity: 0; } 15%,80% { opacity: 1; } 100% { stroke-dashoffset: 0; opacity: 0; } }
@media (max-width:1100px) and (min-width:801px) {
 .hero-top { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 20px; }
 .hero h1 { font-size: clamp(2.75rem,5.3vw,3.75rem); }
 .graph-node { font-size: .6875rem; padding: 11px 12px; gap: 6px; }
 .graph-node svg { width: 15px; height: 15px; }
 .graph-hub img { width: 60px; height: 60px; }
 .hub-ring { width: 112px; height: 112px; }
 .graph-dial { width: 140px; height: 140px; }
}
@media (max-width:800px) {
 .hero { padding-top: 36px; }
 .hero-top { grid-template-columns: 1fr; gap: 28px; margin-bottom: 40px; }
 .hero h1 { font-size: clamp(3rem,9vw,4.5rem); }
 .hero-graph { width: min(100%,560px); margin-inline: auto; }
 .hero .actions { gap: 20px; }
 .hero-atmosphere { top: -70px; height: calc(100% + 130px); }
 .ambient-orlix { left: 66%; top: 60%; width: 880px; height: 580px; }
 .ambient-orlix-two { width: 1050px; height: 360px; }
 .ambient-orlix-three { width: 600px; height: 800px; }
}
@media (max-width:580px) {
 .hero h1 { font-size: clamp(2.5rem,11.2vw,4rem); }
 .hero-intro { margin-top: 24px; }
 .hero-description { font-size: 1.0625rem; }
 .hero .actions { flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 24px; }
 .hero-top { gap: 24px; margin-bottom: 32px; }
 .graph-canvas { aspect-ratio: 1.18; }
 .graph-lines { height: 100%; }
 .graph-node { font-size: .625rem; gap: 6px; padding: 10px 11px; border-radius: 12px; }
 .graph-node svg { width: 14px; height: 14px; }
 .node-ideas { left: 19%; top: 20%; }
 .node-project { left: 78%; top: 18%; }
 .node-sources { left: 84%; top: 53%; }
 .node-codex { left: 18%; top: 76%; }
 .node-claude { left: 72%; top: 85%; }
 .graph-hub { top: 47%; font-size: .75rem; gap: 8px; padding: 12px; }
 .graph-hub img { width: 52px; height: 52px; }
 .hub-ring { width: 88px; height: 88px; box-shadow: 0 0 0 10px #aa7ce106,0 0 0 24px #aa7ce104; }
 .graph-dial { width: 113px; height: 113px; }
 .hero-graph figcaption { font-size: .625rem; gap: 12px; }
 .hero-motion-toggle { font-size: .5625rem; padding-inline: 8px; }
 .hero-atmosphere { opacity: .75; }
 .ambient-orlix { left: 50%; top: 63%; }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.hero h1 { text-wrap: balance; }

/* Real dark app capture with a thin, moving violet/blue perimeter. */
.hero .product-stage { position: relative; isolation: isolate; padding: 2px; border: 0; background: linear-gradient(125deg,#7d66ad,#bda1ec 30%,#4f8095 55%,#332b40 80%); border-radius: 22px; }
.hero .product-stage::before { content: ''; position: absolute; z-index: -1; left: 50%; top: 50%; width: 160%; aspect-ratio: 1; transform: translate(-50%,-50%) rotate(0); background: conic-gradient(from 0deg,#332b40 0deg,#332b40 35deg,#8c70c4 65deg,#d1b8ff 85deg,#7abfdc 105deg,#332b40 135deg,#332b40 215deg,#8c70c4 245deg,#d1b8ff 265deg,#7abfdc 285deg,#332b40 315deg); }
.hero .product-window { position: relative; border: 0; border-radius: 20px; background: #202022; }
.product-stage[data-motion-paused="true"]::before,[data-motion-paused="true"]::after { animation-play-state: paused !important; }
.product-motion-toggle { display: inline-flex; align-items: center; border: 1px solid #88719640; border-radius: 10px; background: #21192775; padding: 8px 10px; min-height: 34px; color: #b9acc5; font: inherit; font-size: .625rem; cursor: pointer; }
.product-motion-toggle[hidden] { display: none; }
.product-motion-toggle:hover { color: #eee6f6; border-color: #ac8dcb; }
.product-motion-toggle:disabled { cursor: default; color: #a69bac; }
.hero .product-figure figcaption { align-items: center; }
.hero .capture-actions { display: inline-flex; gap: 20px; align-items: center; }
.site-header .app-mark { background: transparent; border: 0; border-radius: 0; box-shadow: none; }
@media (prefers-reduced-motion: no-preference) { .product-motion-ready::before { animation: product-border-orlix 14s linear infinite; } }
@keyframes product-border-orlix { to { transform: translate(-50%,-50%) rotate(360deg); } }
@media (max-width:580px) {
 .hero .product-stage { padding: 2px; border-radius: 16px; }
 .hero .product-window { border-radius: 14px; }
 .hero .product-figure figcaption { flex-wrap: wrap; gap: 12px; }
 .hero .capture-actions { width: 100%; justify-content: space-between; gap: 12px; }
}

/* Official app artwork, shared by diagrams, labels and inline mentions. */
.agent-app-icon { display: block; width: 24px; height: 24px; flex-shrink: 0; object-fit: contain; }
.agent-brand { display: inline-flex; align-items: center; gap: .3em; white-space: nowrap; vertical-align: baseline; }
.agent-brand > .agent-app-icon { width: 1.1em; height: 1.1em; align-self: center; }
.agent-brand > span { color: inherit; }
.cli-section h2 .agent-brand { color: var(--ink); }
.cli-section h2 .agent-app-icon { width: .85em; height: .85em; }
.graph-node .agent-app-icon { width: 20px; height: 20px; }
.agent-choice .agent-app-icon { width: 22px; height: 22px; }
.route-symbol .agent-app-icon { width: 34px; height: 34px; }
.parallel-glyph .agent-app-icon { width: 32px; height: 32px; }
@media (max-width:1100px) and (min-width:801px) { .graph-node .agent-app-icon { width: 17px; height: 17px; } }
@media (max-width:700px) { .parallel-glyph .agent-app-icon { width: 25px; height: 25px; } }
@media (max-width:580px) {
 .graph-node .agent-app-icon { width: 16px; height: 16px; }
 .agent-choice .agent-app-icon { width: 20px; height: 20px; }
.route-symbol .agent-app-icon { width: 28px; height: 28px; }
}

/* Hero agent tiles: recognizable artwork first, quiet labels underneath. */
.graph-agent-node { flex-direction: column; justify-content: center; width: 96px; padding: 14px 12px; gap: 8px; text-align: center; line-height: 1.2; }
.graph-agent-node .agent-app-icon { width: 44px; height: 44px; filter: drop-shadow(0 3px 8px #0003); }
@media (max-width:1100px) and (min-width:801px) {
 .graph-agent-node { width: 80px; padding: 11px 10px; gap: 6px; }
 .graph-agent-node .agent-app-icon { width: 36px; height: 36px; }
}
@media (max-width:580px) {
 .graph-agent-node { width: 74px; padding: 8px 10px; gap: 5px; font-size: .6875rem; }
 .graph-agent-node .agent-app-icon { width: 32px; height: 32px; }
}

/* A quieter homepage, with motion contained to the visual stories. */
.hero-top { margin-bottom: 56px; }
.hero-description { max-width: 39ch; }
.hero .product-figure { margin-bottom: 0; }
.hero .product-stage { overflow: hidden; }
.graph-node { flex-direction: column; justify-content: center; width: 100px; min-height: 98px; padding: 14px 10px; gap: 9px; line-height: 1.2; text-align: center; border-color: #635565; background: #201d24; }
.graph-node > svg { width: 36px; height: 44px; stroke-width: 1.2; }
.node-ideas::before,.node-project::before { content: none; }
.graph-node > span:not(.node-socket) { white-space: normal; }
.node-sources { left: 85%; }
.graph-orlix { transform-origin: 300px 240px; }
.ambient-orlix > i:nth-child(2) { top: 50%; bottom: auto; left: -3px; }
.ambient-orlix > i:nth-child(3) { top: 50%; bottom: auto; left: auto; right: -3px; }
.ambient-orlix > i:nth-child(4) { top: auto; bottom: -3px; left: 50%; }
.ambient-orlix > i:nth-child(5) { top: 14.65%; bottom: auto; left: 14.65%; width: 3px; height: 3px; }
.ambient-orlix > i:nth-child(6) { top: 85.35%; bottom: auto; left: 85.35%; width: 3px; height: 3px; }
.graph-orlix { stroke-dasharray: 2 7; }
.parallel-section { background: transparent; border: 0; padding-block: 112px 96px; }
.parallel-section .section-heading-row { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: end; }
.parallel-section .section-heading-row > p { max-width: 39ch; font-size: 1.0625rem; line-height: 1.75; margin: 0 0 4px; }
.parallel-demo { padding: 24px 32px; background: radial-gradient(ellipse at 55% 50%,#2a203434,transparent 60%),#17141b; }
.parallel-map { margin-block: 12px; }
.parallel-packet.packet-echo { stroke: #a7c6ec; }
.parallel-section .cli-bottom { font-size: .8125rem; }
.ideas-section { padding-block: 72px 112px; }
.ideas-heading { max-width: 760px; margin: 0 auto 56px; }
.ideas-heading > p:last-child { max-width: 55ch; margin-top: 24px; color: var(--muted); font-size: 1.1875rem; line-height: 1.65; }
.idea-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.idea-card { min-width: 0; overflow: hidden; border: 1px solid #39333f; border-radius: 24px; background: #1b191f; }
.idea-card-copy { padding: 32px 32px 36px; }
.idea-card h3 { font-size: 1.5rem; letter-spacing: -.035em; margin-bottom: 12px; }
.idea-card-copy > p { color: #b4aebb; font-size: 1rem; line-height: 1.65; max-width: 44ch; }
.idea-link-preview,.idea-graph-preview { border: 1px solid #332c3a; background: #131116; border-radius: 15px 0 0 0; margin-left: 24px; min-height: 338px; }
.idea-window-bar { display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #302936; padding: 15px 18px; color: #bcb0c9; font-size: .6875rem; }
.idea-window-bar svg { width: 15px; height: 15px; }
.idea-example { margin-left: auto; color: #a89bad; font-size: .625rem; }
.idea-note { padding: 24px; font-size: .875rem; color: #c4bdcb; line-height: 1.7; }
.idea-tag { color: #ad95d3; font: .625rem ui-monospace,monospace; }
.idea-note h4 { font-size: 1.25rem; letter-spacing: -.025em; margin: 10px 0 12px; color: #eee9f3; }
.idea-wikilink { color: #c5a9f8; }
.idea-backlink { padding: 15px 17px; margin-top: 24px; border: 1px solid #46364e; border-radius: 12px; background: #211a29; }
.idea-backlink > span { display: block; font-size: .5625rem; letter-spacing: .09em; color: #b6a4c8; }
.idea-backlink strong { display: flex; align-items: center; gap: 9px; margin: 7px 0; color: #d5bfef; font-size: .8125rem; font-weight: 500; }
.idea-backlink svg { width: 14px; height: 14px; }
.idea-backlink p { font-size: .75rem; line-height: 1.6; }
.idea-graph-preview { position: relative; display: flex; flex-direction: column; justify-content: center; }
.idea-graph-preview > svg { width: 100%; height: 300px; }
.idea-graph-edges path { stroke: #716080; stroke-opacity: .4; stroke-width: 1; }
.idea-graph-dot { fill: #a58eb9; }
.idea-graph-dot.main-dot { fill: #c6abfa; filter: drop-shadow(0 0 12px #b99ae18c); }
.idea-graph-labels { fill: #d3c5df; font: 13px Inter,sans-serif; }
.idea-graph-legend { display: flex; align-items: center; gap: 8px; padding: 10px 24px 24px; font-size: .625rem; color: #aea0bb; }
.idea-graph-legend i { width: 5px; height: 5px; border-radius: 50%; background: #c6abfa; }
.ideas-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 24px; font-size: .8125rem; color: var(--muted); }
.closing > div { position: relative; isolation: isolate; max-width: none; padding: 76px 40px 64px; border: 1px solid #574365; border-radius: 36px; overflow: hidden; background: radial-gradient(ellipse at 50% 0,#6d459d30,transparent 65%),#19151e; box-shadow: inset 0 1px 0 #ffffff0a; }
.closing > div::before,.closing > div::after { content: ''; position: absolute; z-index: -1; left: 50%; top: 20%; width: 780px; height: 310px; border: 1px solid #9c73ca20; border-radius: 50%; transform: translate(-50%,-50%) rotate(-16deg); pointer-events: none; }
.closing > div::after { width: 930px; height: 470px; transform: translate(-50%,-50%) rotate(14deg); }
.closing h2 { max-width: 720px; margin-inline: auto; }
.site-motion-toggle { color: #b7a7c7; background: none; border: 1px solid #504357; border-radius: 10px; padding: 9px 12px; font: inherit; font-size: .6875rem; cursor: pointer; }
.site-motion-toggle[hidden] { display: none; }
.site-motion-toggle:hover { color: #f0e6fa; border-color: #b39af8; }
[data-motion-paused="true"] *,[data-motion-paused="true"] *::before,[data-motion-paused="true"] *::after,[data-motion-paused="true"]::before,[data-motion-paused="true"]::after { animation-play-state: paused !important; }
@supports (corner-shape: squircle) { .idea-card,.closing > div { corner-shape: squircle; border-radius: 40px; } }
@media (prefers-reduced-motion: no-preference) {
 .hero-motion-ready .graph-dial { animation: graph-dial-spin 24s linear infinite; }
 .hero-motion-ready .graph-orlix { animation: graph-orlix-spin 48s linear infinite; }
 .hero-motion-ready .graph-orlix-inner { animation-duration: 36s; animation-direction: reverse; }
 .continuous-ready .parallel-packet { animation: parallel-send 1100ms linear infinite; }
 .continuous-ready .parallel-packet.packet-1 { animation-delay: -240ms; }
 .continuous-ready .parallel-packet.packet-2 { animation-delay: -510ms; }
 .continuous-ready .parallel-packet.packet-3 { animation-delay: -790ms; }
 .continuous-ready .parallel-packet.packet-4 { animation-duration: 950ms; animation-delay: -300ms; }
 .continuous-ready .parallel-packet.packet-echo { animation-direction: reverse; animation-delay: -550ms; }
 .continuous-ready .parallel-packet.packet-echo.packet-1 { animation-delay: -100ms; }
 .continuous-ready .parallel-packet.packet-echo.packet-2 { animation-delay: -680ms; }
 .continuous-ready .parallel-packet.packet-echo.packet-3 { animation-delay: -900ms; }
}
@keyframes graph-dial-spin { from { transform: translate(-50%,-50%) rotate(0); } to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes graph-orlix-spin { from { rotate: 0deg; } to { rotate: 360deg; } }
@media (max-width:1100px) and (min-width:801px) {
 .graph-node { width: 84px; min-height: 82px; padding: 10px 8px; gap: 6px; }
 .graph-node > svg { width: 30px; height: 36px; }
}
@media (max-width:800px) {
 .parallel-section { padding-block: 80px 48px; }
 .parallel-section .section-heading-row { grid-template-columns: 1fr; gap: 24px; }
 .parallel-section .section-heading-row > p { max-width: 48ch; }
 .ideas-section { padding-block: 48px 80px; }
 .idea-cards { grid-template-columns: 1fr; }
 .ideas-heading { margin-bottom: 32px; }
 .ideas-bottom { flex-direction: column; gap: 12px; }
 .closing > div { padding: 56px 24px 48px; }
}
@media (max-width:580px) {
 .graph-node { width: 74px; min-height: 70px; padding: 8px 5px; gap: 5px; font-size: .625rem; }
 .graph-node > svg { width: 27px; height: 32px; }
 .node-ideas { left: 18%; }
 .node-project { left: 79%; }
 .node-sources { left: 85%; }
 .hero-graph { margin-bottom: 8px; }
 .parallel-demo { padding: 16px 14px; }
 .parallel-map { margin-block: 8px; }
 .idea-card-copy { padding: 26px 24px; }
 .idea-link-preview,.idea-graph-preview { margin-left: 16px; }
 .idea-note { padding: 20px; }
 .idea-graph-preview > svg { height: auto; }
 .ideas-heading > p:last-child { font-size: 1.0625rem; }
 .closing { padding-block: 56px 80px; }
 .closing > div { border-radius: 24px; }
}

/* Compact editorial interval after the product capture. */
.principles-strip { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 48px; padding-block: 48px 56px; border-bottom: 1px solid var(--line); }
.principles-strip article { min-width: 0; }
.principles-strip img { display: block; width: 100%; height: 170px; object-fit: contain; margin-bottom: 22px; mix-blend-mode: screen; }
.principles-strip h2 { font-size: 1.1875rem; letter-spacing: -.025em; line-height: 1.35; margin-bottom: 12px; }
.principles-strip p { font-size: .9375rem; line-height: 1.7; color: var(--muted); }
.ideas-heading { margin-inline: 0; }
.parallel-section .section-heading-row { max-width: none; grid-template-columns: 1fr 1fr; }
.parallel-section .section-heading-row > p { justify-self: end; text-align: right; }
.faq-list summary { align-items: center; }
.faq-toggle-icon { width: 28px; height: 28px; flex: 0 0 28px; display: grid; place-items: center; line-height: 1; transition: transform 220ms ease; }
.faq-toggle-icon svg { display: block; }
.parallel-constellation > i::before,.parallel-constellation > i::after { content: ''; position: absolute; width: 5px; height: 5px; border-radius: 50%; background: #c5a6ed; box-shadow: 0 0 9px #bc9ae54d; left: calc(50% - 2.5px); top: -3px; }
.parallel-constellation > i::after { top: auto; bottom: -3px; width: 3px; height: 3px; background: #aec6e4; }
.parallel-client .client-commands { position: relative; display: block; width: 13ch; height: 1.4em; line-height: 1.4; margin-top: 6px; }
.client-command { position: absolute; inset: 0; white-space: nowrap; opacity: 0; }
.client-command:first-child { opacity: 1; }
.benchmark-strip { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 48px; margin-top: 40px; padding: 32px 0 8px; }
.benchmark-number { display: flex; flex-direction: column; gap: 12px; }
.benchmark-number > strong { display: flex; align-items: baseline; gap: 9px; font-size: 3.75rem; font-weight: 550; line-height: 1; letter-spacing: -.065em; color: #d1b8f8; font-variant-numeric: tabular-nums; }
.benchmark-number strong > span { font-size: 1.25rem; letter-spacing: -.03em; color: #b4a6c3; }
.benchmark-number > span { color: #aaa0b5; font-size: .75rem; }
.benchmark-copy h3 { font-size: 1.25rem; letter-spacing: -.035em; margin-bottom: 12px; }
.benchmark-copy > p { max-width: 66ch; font-size: .9375rem; color: var(--muted); line-height: 1.7; }
.benchmark-details { margin-top: 14px; }
.benchmark-details > summary { display: inline-flex; align-items: center; gap: 9px; padding: 8px 0; font-size: .75rem; color: var(--accent); }
.benchmark-details > summary > span { font-size: .875rem; color: inherit; }
.benchmark-details[open] > summary > span { transform: rotate(90deg); }
.benchmark-details > div { padding-top: 10px; max-width: 68ch; font-size: .8125rem; line-height: 1.75; color: #b9adca; }
.benchmark-details p + p { margin-top: 14px; }
.benchmark-details a { display: inline-block; margin-top: 16px; color: var(--accent); }
@media (prefers-reduced-motion: no-preference) {
 .parallel-demo.continuous-ready .parallel-hub img { animation: parallel-hub-breathe 2200ms ease-in-out infinite; }
 .parallel-demo.continuous-ready .parallel-constellation > i { animation: parallel-ring-turn 24s linear infinite; }
 .parallel-demo.continuous-ready .parallel-constellation > i:nth-child(2) { animation-duration: 38s; animation-direction: reverse; }
 .parallel-demo.continuous-ready .parallel-constellation > i:nth-child(3) { animation-duration: 54s; }
 .parallel-demo.continuous-ready .client-port { animation: parallel-port-breathe 1800ms calc(var(--client-index) * -350ms) ease-in-out infinite; }
 .parallel-demo.continuous-ready .client-command { animation: command-type-cycle 12s calc(var(--command-step) * 3s - 12s) steps(13,end) infinite; }
 .closing > .continuous-ready::before { animation: closing-orlix-one 52s linear infinite; }
 .closing > .continuous-ready::after { animation: closing-orlix-two 68s linear infinite; }
}
@keyframes parallel-hub-breathe { 0%,100% { transform: scale(1); filter: drop-shadow(0 8px 20px #7861bf30); } 50% { transform: scale(1.045); filter: drop-shadow(0 8px 26px #9271d960); } }
@keyframes parallel-ring-turn { to { transform: rotate(360deg); } }
@keyframes parallel-port-breathe { 0%,100% { background: #2a2032; box-shadow: 0 0 0 0 #c0a0ec00; } 50% { background: #cdb2ed; box-shadow: 0 0 0 4px #c0a0ec12,0 0 12px #bd9ce54d; } }
@keyframes command-type-cycle { 0% { opacity: 1; clip-path: inset(0 100% 0 0); } 12%,21% { opacity: 1; clip-path: inset(0 0 0 0); } 24% { opacity: 1; clip-path: inset(0 100% 0 0); } 25%,100% { opacity: 0; clip-path: inset(0 100% 0 0); } }
@keyframes closing-orlix-one { from { transform: translate(-50%,-50%) rotate(-16deg); } to { transform: translate(-50%,-50%) rotate(344deg); } }
@keyframes closing-orlix-two { from { transform: translate(-50%,-50%) rotate(14deg); } to { transform: translate(-50%,-50%) rotate(-346deg); } }
@media (max-width:800px) {
 .principles-strip { gap: 28px; padding-block: 32px 40px; }
 .principles-strip img { height: 120px; }
 .principles-strip h2 { font-size: 1.0625rem; }
 .principles-strip p { font-size: .8125rem; }
 .parallel-section .section-heading-row { grid-template-columns: 1fr; }
 .parallel-section .section-heading-row > p { justify-self: start; text-align: left; }
 .benchmark-strip { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width:580px) {
 .principles-strip { grid-template-columns: 1fr; gap: 26px; padding-block: 30px 36px; }
 .principles-strip article { display: grid; grid-template-columns: 100px minmax(0,1fr); column-gap: 16px; align-items: start; }
 .principles-strip img { grid-row: span 2; width: 100px; height: 100px; margin: 0; align-self: center; object-fit: cover; }
 .principles-strip h2 { margin-bottom: 8px; font-size: .9375rem; }
 .principles-strip p { font-size: .8125rem; line-height: 1.65; }
 .parallel-client { height: 82px; }
 .parallel-client .client-commands { font-size: .5625rem; margin-top: 4px; margin-inline: auto; }
 .benchmark-strip { margin-top: 24px; padding-top: 16px; }
 .benchmark-number > strong { font-size: 3.25rem; }
 .benchmark-copy h3 { font-size: 1.125rem; }
}

@media (prefers-reduced-motion: reduce) { .faq-toggle-icon { transition: none; } }
.principles-strip img { object-fit: cover; mask-image: radial-gradient(ellipse at center,#000 35%,#0009 58%,transparent 76%); }
