:root {
  color-scheme: dark;
  --bg: #0b0d11;
  --surface: #11141b;
  --text: #f0f1f5;
  --muted: #a0a7b5;
  --accent: #8598ff;
  --line: #252a35;
  --blue: #4a62f0;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid #9dacff;
  outline-offset: 6px;
}
.wrap {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #0b0d11f5;
  border-bottom: 1px solid #20242d;
}
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  font-size: 23px;
  letter-spacing: -1px;
  font-weight: 650;
  white-space: nowrap;
}
.wordmark-period {
  color: var(--accent);
}
nav {
  display: flex;
  align-items: center;
  gap: 27px;
}
nav > a {
  font-size: 13px;
  color: #b8becb;
}
nav > a:hover,
.text-link:hover {
  color: white;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--blue);
  color: #fff;
  padding: 15px 20px;
  border: 1px solid #6b80ff;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  transition:
    background 0.2s,
    transform 0.2s;
  min-height: 48px;
}
.button:hover {
  background: #3d56e8;
  transform: translateY(-2px);
}
.button.small {
  font-size: 12px;
  padding: 12px 15px;
  gap: 14px;
  min-height: 44px;
  background: #171d31;
  border-color: #35416a;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  padding-top: 83px;
  padding-bottom: 76px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tiny-line {
  width: 20px;
  height: 1px;
  background: var(--accent);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(52px, 4.65vw, 72px);
  line-height: 1.075;
  letter-spacing: -3.3px;
  font-weight: 530;
  margin-bottom: 26px;
  max-width: 700px;
}
h1 > span {
  color: var(--accent);
}
.hero-description {
  max-width: 490px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: #c6cbd6;
  min-height: 44px;
}
.support {
  font-size: 12px;
  color: #929bab;
  margin-top: 19px;
  margin-bottom: 0;
}
.orchestration {
  position: relative;
  height: 540px;
  background: radial-gradient(ellipse at 50% 52%, #18244255, transparent 65%);
  isolation: isolate;
}
.diagram-caption {
  display: flex;
  justify-content: space-between;
  font:
    10px ui-monospace,
    monospace;
  letter-spacing: 1px;
  color: #939cac;
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
}
.connections {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  overflow: visible;
}
.connections path {
  stroke: #394766;
  stroke-width: 1;
}
.connections .signal {
  stroke: #8fa3ff;
  stroke-dasharray: 7 260;
  animation: flow 13s linear infinite;
}
.connections .orbit {
  stroke: #29334a;
  stroke-dasharray: 2 6;
  stroke-width: 0.7;
}
.connections .outer {
  stroke: #202737;
  stroke-dasharray: none;
}
.node {
  position: absolute;
  z-index: 2;
  background: linear-gradient(150deg, #191e29, #11151d);
  border: 1px solid #313846;
  border-radius: 6px;
  padding: 14px 16px;
  box-shadow: 0 10px 30px #0002;
  min-width: 140px;
}
.node strong {
  font-size: 13px;
  font-weight: 550;
  display: block;
}
.node small {
  display: block;
  color: #9ba5b6;
  font-size: 10px;
  line-height: 1.8;
  margin-top: 6px;
}
.node-symbol {
  color: #acbaff;
  font-size: 19px;
  position: absolute;
  right: 13px;
  top: 10px;
}
.people {
  top: 68px;
  left: 0;
}
.information {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
.systems {
  top: 96px;
  right: 0;
}
.core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 235px;
  text-align: center;
  background: linear-gradient(130deg, #1c294a, #131b2d);
  border: 1px solid #596ba6;
  border-radius: 9px;
  padding: 0 0 20px;
  box-shadow: 0 0 45px #526dff0b;
}
.core-top {
  border-bottom: 1px solid #46547a;
  font:
    9px ui-monospace,
    monospace;
  letter-spacing: 1.4px;
  padding: 9px;
  color: #b5c2ed;
}
.core strong {
  display: block;
  font-size: 25px;
  letter-spacing: -1px;
  padding-top: 13px;
  padding-bottom: 8px;
}
.core > span {
  display: block;
  font-size: 10px;
  color: #b0bbd0;
  line-height: 1.8;
}
.mini-node {
  position: absolute;
  bottom: 75px;
  padding: 13px 16px;
  background: #141923;
  border: 1px solid #384256;
  border-radius: 5px;
  font-size: 11px;
}
.mini-node small {
  display: block;
  font-size: 10px;
  color: #9ca7ba;
  margin-top: 4px;
}
.review {
  left: 0;
}
.review > span {
  color: var(--accent);
  margin-right: 7px;
}
.outcomes {
  right: 0;
  bottom: 52px;
}
.diagram-foot {
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  font:
    10px ui-monospace,
    monospace;
  color: #97a0b1;
  display: flex;
  gap: 9px;
  align-items: center;
}
.legend-line {
  width: 18px;
  height: 1px;
  background: var(--accent);
}
.diagram-cross {
  margin-left: auto;
  font-size: 20px;
}
.hero-baseline {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 42px;
  padding-block: 21px;
  color: #939eaf;
  font:
    10px ui-monospace,
    monospace;
  letter-spacing: 1px;
}
.hero-baseline > a {
  margin-left: auto;
  font-size: 17px;
}
.skip {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 99;
  background: var(--blue);
  padding: 12px;
}
.skip:focus {
  top: 10px;
}
@keyframes flow {
  to {
    stroke-dashoffset: -534;
  }
}
@media (min-width: 1600px) {
  .hero {
    padding-block: 110px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  nav {
    gap: 18px;
  }
  nav > a {
    font-size: 12px;
  }
  .button.small {
    display: none;
  }
  h1 {
    font-size: 56px;
  }
  .hero {
    gap: 24px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .node {
    min-width: 116px;
    padding: 12px;
  }
  .node small {
    font-size: 9px;
  }
  .core {
    width: 208px;
  }
  .node-symbol {
    display: none;
  }
  .mini-node {
    padding: 10px;
  }
  .orchestration {
    height: 505px;
  }
  .hero-baseline {
    gap: 26px;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav {
    height: 72px;
  }
  .wordmark {
    font-size: 22px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    background: none;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 8px 12px;
    min-height: 44px;
    font-size: 13px;
  }
  nav {
    display: none;
    position: absolute;
    top: 71px;
    left: 0;
    right: 0;
    padding: 20px;
    background: #11151d;
    border-bottom: 1px solid var(--line);
    align-items: stretch;
    gap: 5px;
  }
  nav.open {
    display: flex;
    flex-direction: column;
  }
  nav > a {
    font-size: 15px;
    padding: 12px;
  }
  nav .button.small {
    display: flex;
    margin-top: 8px;
    font-size: 13px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 51px;
    padding-bottom: 28px;
    gap: 47px;
  }
  h1 {
    font-size: 46px;
    letter-spacing: -2.2px;
    max-width: 570px;
  }
  .hero-description {
    font-size: 16px;
    line-height: 1.7;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.7px;
    margin-bottom: 22px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 17px;
  }
  .hero-actions .button {
    font-size: 12px;
    gap: 12px;
    padding: 14px;
  }
  .text-link {
    font-size: 12px;
    gap: 8px;
  }
  .support {
    font-size: 11px;
  }
  .orchestration {
    height: 475px;
    max-width: 550px;
    width: 100%;
    margin: auto;
  }
  .node {
    min-width: 105px;
    padding: 10px;
  }
  .node strong {
    font-size: 11px;
  }
  .node small {
    font-size: 9px;
  }
  .people {
    top: 65px;
  }
  .information {
    top: 35px;
  }
  .systems {
    top: 91px;
  }
  .core {
    width: 214px;
    top: 51%;
  }
  .core strong {
    font-size: 24px;
  }
  .review {
    bottom: 72px;
  }
  .outcomes {
    bottom: 37px;
  }
  .mini-node {
    font-size: 10px;
    padding: 10px;
  }
  .mini-node small {
    font-size: 9px;
  }
  .diagram-caption {
    font-size: 8px;
    left: 0;
    right: 0;
  }
  .diagram-foot {
    font-size: 9px;
    left: 0;
    right: 0;
  }
  .hero-baseline {
    font-size: 8px;
    gap: 17px;
    letter-spacing: 0.5px;
  }
  .hero-baseline > a {
    display: none;
  }
}
@media (max-width: 390px) {
  h1 {
    font-size: 42px;
  }
  .hero-actions {
    flex-wrap: wrap;
    gap: 8px;
  }
  .hero-baseline {
    gap: 12px;
    font-size: 7px;
  }
  .node {
    min-width: 98px;
  }
  .node small {
    font-size: 8px;
  }
  .systems {
    top: 101px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
.section {
  padding-block: 112px;
}
h2 {
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.16;
  letter-spacing: -1.8px;
  font-weight: 500;
  margin-bottom: 24px;
}
h3 {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.4px;
}
.muted {
  color: #858d9e;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.section-copy {
  color: var(--muted);
  padding-top: 45px;
  font-size: 16px;
}
.section-copy p:last-child {
  margin-bottom: 0;
}
.hidden-work {
  background: #0e1117;
  border-block: 1px solid #1c222d;
}
.task-field {
  margin-top: 52px;
  position: relative;
}
.task-field > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-block: 14px;
}
.task-field > div:nth-child(2) {
  transform: translateX(-24px);
}
.task-field > div:nth-child(3) {
  transform: translateX(20px);
}
.task-field span {
  padding: 11px 23px;
  font:
    13px ui-monospace,
    monospace;
  border: 1px solid #303744;
  border-radius: 4px;
  background: #151a23;
  color: #b4bdcd;
}
.task-field i {
  font-style: normal;
  color: #53617b;
}
.task-field > p {
  font-size: 13px;
  color: #939cad;
  text-align: center;
  margin-top: 35px;
}
.task-field strong {
  font-weight: 400;
  color: #c5ccd8;
}
.section-heading {
  max-width: 800px;
  margin-bottom: 54px;
}
.section-heading > p:last-child:not(.eyebrow) {
  color: var(--muted);
  max-width: 620px;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.capability-grid article {
  padding: 30px 30px 31px 0;
  border-top: 1px solid #313846;
  position: relative;
}
.capability-grid article:not(:nth-child(3n + 1)) {
  padding-left: 30px;
  border-left: 1px solid #252b36;
}
.cap-number {
  font:
    11px ui-monospace,
    monospace;
  color: #8798c5;
  display: block;
  margin-bottom: 29px;
}
.capability-grid h3 {
  font-size: 19px;
  margin-bottom: 14px;
}
.capability-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 345px;
  margin-bottom: 25px;
  min-height: 100px;
}
.cap-detail {
  font:
    9px ui-monospace,
    monospace;
  letter-spacing: 0.2px;
  color: #8792a7;
  display: flex;
  align-items: center;
  gap: 9px;
}
.cap-detail span {
  color: var(--accent);
}
.section-note {
  font-size: 12px;
  color: #929bab;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-bottom: 0;
}
.comparison-section {
  background: #0f1218;
  border-block: 1px solid #212733;
}
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #303745;
  border-radius: 7px;
  overflow: hidden;
}
.comparison article {
  padding: 26px 28px 18px;
  min-width: 0;
}
.before {
  border-right: 1px solid #303745;
}
.after {
  background: linear-gradient(140deg, #18213a66, #10151f);
}
.comparison-label {
  font:
    10px ui-monospace,
    monospace;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #c3cad7;
}
.comparison-label > span {
  font:
    12px -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  color: #939dae;
}
.after .comparison-label {
  color: var(--accent);
}
.tangle {
  height: 270px;
  position: relative;
  margin-top: 20px;
}
.tangle svg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  stroke: #495164;
  fill: none;
  stroke-width: 1;
  stroke-dasharray: 4 5;
  opacity: 0.7;
}
.tangle > span {
  position: absolute;
  background: #171b24;
  border: 1px solid #3b4352;
  border-radius: 4px;
  padding: 7px 11px;
  font-size: 10px;
  color: #aab4c5;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.t1 {
  left: 16%;
  top: 17%;
}
.t2 {
  left: 44%;
  top: 18%;
}
.t3 {
  left: 78%;
  top: 23%;
}
.t4 {
  left: 16%;
  top: 50%;
}
.t5 {
  left: 50%;
  top: 50%;
}
.t6 {
  left: 84%;
  top: 50%;
}
.t7 {
  left: 17%;
  top: 82%;
}
.t8 {
  left: 50%;
  top: 82%;
}
.t9 {
  left: 78%;
  top: 82%;
}
.comparison-description {
  font-size: 12px;
  color: #959faf;
  border-top: 1px solid #2b3240;
  padding-top: 20px;
  margin-top: 20px;
}
.ordered-flow {
  height: 270px;
  margin-top: 20px;
  padding-top: 10px;
  text-align: center;
}
.flow-sources {
  display: flex;
  justify-content: space-around;
  position: relative;
  padding-bottom: 18px;
  border-bottom: 1px solid #47587c;
}
.flow-sources > span {
  font-size: 11px;
  background: #192132;
  border: 1px solid #3c4c6b;
  padding: 6px 16px;
  border-radius: 3px;
}
.flow-stem {
  width: 1px;
  height: 25px;
  background: #5a6f9d;
  margin: auto;
}
.flow-engine {
  margin: auto;
  border: 1px solid #6e85c2;
  padding: 13px 25px;
  border-radius: 5px;
  background: #1d2947;
  font-size: 19px;
  width: 220px;
  line-height: 1.4;
}
.flow-engine small {
  display: block;
  font-size: 10px;
  color: #adbce0;
  margin-top: 4px;
}
.flow-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding-top: 30px;
  position: relative;
}
.flow-branches:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 15px;
  width: 1px;
  background: #596c94;
}
.flow-branches > div {
  font-size: 11px;
  position: relative;
}
.flow-branches > div:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -15px;
  width: 100%;
  height: 10px;
  border-top: 1px solid #596c94;
  border-left: 1px solid #596c94;
}
.flow-branches > div:last-child:before {
  left: -50%;
  border-left: 0;
  border-right: 1px solid #596c94;
}
.flow-branches small {
  display: block;
  font-size: 10px;
  color: #96a4bd;
  margin-top: 4px;
}
.comparison-end {
  font-size: 20px;
  text-align: center;
  margin: 38px 0 0;
  letter-spacing: -0.3px;
}
.comparison-end span {
  color: #8f9db9;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.step-number {
  font:
    12px ui-monospace,
    monospace;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.step-number > span {
  height: 1px;
  background: #3a4458;
  flex: 1;
  position: relative;
}
.step-number > span:after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border: 1px solid #5e7093;
  background: var(--bg);
}
.process-steps h3 {
  font-size: 22px;
}
.process-steps p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.human-section {
  border: 1px solid #354261;
  background: linear-gradient(115deg, #18213a70, #10151e);
  border-radius: 8px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 75px;
  align-items: center;
}
.human-section h2 {
  font-size: 36px;
  letter-spacing: -1.2px;
}
.human-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  max-width: 470px;
}
.human-section .human-principle {
  color: #c8d3f0 !important;
  font-size: 12px !important;
  margin-top: 27px;
  margin-bottom: 0;
}
.human-principle > span {
  color: var(--accent);
  margin-right: 8px;
}
.decision-flow {
  text-align: center;
  font-size: 12px;
}
.decision-start {
  border: 1px solid #414c63;
  border-radius: 4px;
  padding: 9px 30px;
  width: fit-content;
  margin: auto;
  background: #141c2a;
}
.decision-check {
  border: 1px solid #61719a;
  padding: 14px 8px;
  background: #1c2841;
  border-radius: 5px;
}
.decision-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-top: 29px;
  position: relative;
}
.decision-branches:before {
  content: "";
  height: 28px;
  width: 50%;
  position: absolute;
  left: 25%;
  top: 0;
  border-inline: 1px solid #5d6e94;
  border-top: 1px solid #5d6e94;
}
.branch-label {
  font-size: 10px;
  color: #9caac7;
  display: block;
  margin-bottom: 10px;
}
.decision-action {
  border: 1px solid #3e506d;
  border-radius: 4px;
  padding: 12px 8px;
  background: #192337;
  white-space: nowrap;
}
.decision-action > span {
  margin-left: 10px;
  color: var(--accent);
}
.review-action {
  border-color: #6d80ad;
  background: #242e46;
}
.decision-continue {
  border-top: 1px solid #455573;
  margin: 24px auto 0;
  width: 70%;
  padding-top: 16px;
  color: #acb8d2;
}
.decision-continue > span {
  margin-left: 10px;
}
.system-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 37px;
}
.system-list > span {
  border: 1px solid #303745;
  border-radius: 4px;
  padding: 10px 18px;
  font-size: 13px;
  color: #b5bed0;
  background: #11151d;
}
.engineering {
  border-block: 1px solid #232a35;
  background: #0f1218;
}
.engineering-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  max-width: 470px;
}
.principles article {
  display: flex;
  gap: 24px;
  padding-block: 27px;
  border-bottom: 1px solid #303745;
}
.principles article:first-child {
  padding-top: 0;
}
.principles article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.principles article > span {
  font:
    11px ui-monospace,
    monospace;
  color: var(--accent);
  padding-top: 6px;
}
.principles h3 {
  margin-bottom: 12px;
}
.principles p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.about > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
}
.founder {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 30px;
}
.founder-initials {
  font:
    12px ui-monospace,
    monospace;
  border: 1px solid #354059;
  background: #151b29;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #a7b7df;
}
.founder strong {
  font-size: 13px;
  font-weight: 500;
  display: block;
}
.founder div > span {
  font-size: 11px;
  color: #929daf;
}
.contact-section {
  border-block: 1px solid #35405a;
  background:
    radial-gradient(ellipse at 50% 100%, #1e2c5144, transparent 65%), #10151f;
  overflow: hidden;
}
.contact-inner {
  padding-block: 94px 108px;
  text-align: center;
  position: relative;
}
.contact-inner .eyebrow {
  justify-content: center;
}
.contact-inner h2 {
  font-size: 64px;
  letter-spacing: -2.5px;
}
.contact-inner h2 > span {
  color: var(--accent);
}
.contact-inner > p:not(.eyebrow) {
  max-width: 550px;
  color: #a3aec2;
  font-size: 16px;
  margin: 0 auto 30px;
}
.contact-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 27px;
}
.contact-email {
  font-size: 13px;
  color: #b4c0d8;
  border-bottom: 1px solid #445473;
  padding-block: 5px;
}
.contact-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 55%;
  height: 34px;
  transform: translateX(-50%);
  border-top: 1px solid #3b4b6d;
  display: flex;
  justify-content: space-between;
}
.contact-line span {
  width: 1px;
  height: 34px;
  background: #3b4b6d;
}
.footer {
  padding-block: 52px 25px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 42px;
}
.footer-top p {
  color: #939dad;
  font-size: 12px;
  line-height: 1.8;
  margin-top: 12px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-content: start;
  gap: 20px 37px;
  padding-top: 7px;
}
.footer-links a {
  font-size: 12px;
  color: #a4afc2;
}
.footer a:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 11px;
  color: #8e99ad;
}
.privacy-content {
  max-width: 750px;
  padding-block: 80px 100px;
}
.privacy-content h1 {
  font-size: 56px;
}
.privacy-content h2 {
  font-size: 24px;
  letter-spacing: -0.6px;
  margin-top: 36px;
  margin-bottom: 12px;
}
.privacy-content p,
.privacy-content li {
  color: var(--muted);
}
.privacy-content a:not(.text-link) {
  text-decoration: underline;
  color: #b2bfff;
}
.privacy-content .updated {
  font-size: 13px;
}
.privacy-content .text-link {
  margin-bottom: 40px;
}
@media (max-width: 1100px) {
  .split,
  .about {
    gap: 55px;
  }
  .task-field span {
    padding: 10px 15px;
    font-size: 11px;
  }
  .task-field > div {
    gap: 13px;
  }
  .human-section {
    padding: 42px;
    gap: 45px;
  }
  .cap-detail {
    font-size: 8px;
    gap: 5px;
  }
  .capability-grid article {
    padding-right: 20px;
  }
  .capability-grid article:not(:nth-child(3n + 1)) {
    padding-left: 20px;
  }
  .comparison article {
    padding: 22px 18px 14px;
  }
  .tangle > span {
    font-size: 9px;
    padding: 6px 8px;
  }
  .flow-sources > span {
    padding: 6px 10px;
  }
}
@media (max-width: 760px) {
  .section {
    padding-block: 72px;
  }
  h2 {
    font-size: 35px;
    letter-spacing: -1.3px;
  }
  .split,
  .about {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .section-copy {
    padding-top: 0;
    font-size: 15px;
  }
  .task-field {
    margin-top: 30px;
  }
  .task-field > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin: 9px 0;
  }
  .task-field > div:nth-child(2),
  .task-field > div:nth-child(3) {
    transform: none;
  }
  .task-field i {
    display: none;
  }
  .task-field span {
    font-size: 10px;
    padding: 12px 10px;
    position: relative;
  }
  .task-field span:after {
    content: "↗";
    position: absolute;
    right: 8px;
    color: #687da7;
  }
  .task-field > p {
    font-size: 12px;
    text-align: left;
    margin-top: 24px;
  }
  .task-field strong {
    display: block;
    margin-top: 3px;
  }
  .section-heading {
    margin-bottom: 35px;
  }
  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }
  .capability-grid article {
    padding: 23px 20px 25px 0 !important;
    border-left: 0 !important;
  }
  .capability-grid article:nth-child(2n) {
    padding-left: 20px !important;
    border-left: 1px solid #252b36 !important;
    padding-right: 0 !important;
  }
  .cap-number {
    margin-bottom: 20px;
  }
  .capability-grid h3 {
    font-size: 17px;
    min-height: 46px;
  }
  .capability-grid p {
    font-size: 13px;
    min-height: 150px;
    margin-bottom: 10px;
  }
  .cap-detail {
    font-size: 8px;
    line-height: 1.8;
    display: block;
  }
  .cap-detail span {
    margin-inline: 3px;
  }
  .section-note {
    font-size: 11px;
  }
  .comparison {
    grid-template-columns: 1fr;
  }
  .before {
    border-right: 0;
    border-bottom: 1px solid #303745;
  }
  .comparison article {
    padding: 24px 18px 15px;
  }
  .comparison-label {
    font-size: 10px;
  }
  .tangle > span {
    font-size: 10px;
  }
  .comparison-end {
    font-size: 18px;
    line-height: 1.7;
  }
  .comparison-end > span {
    display: block;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .process-steps article {
    border-left: 1px solid #3a4458;
    padding: 0 0 30px 27px;
    position: relative;
    margin-left: 11px;
  }
  .process-steps article:last-child {
    padding-bottom: 0;
  }
  .step-number {
    position: absolute;
    left: -12px;
    top: 0;
    background: var(--bg);
    padding: 3px 0;
    margin: 0;
  }
  .step-number > span {
    display: none;
  }
  .process-steps h3 {
    font-size: 21px;
    margin: 0 0 10px 14px;
  }
  .process-steps p {
    margin: 0 0 0 14px;
    max-width: 500px;
  }
  .human-section {
    grid-template-columns: 1fr;
    padding: 30px 23px;
    gap: 37px;
    width: calc(100% - 32px);
  }
  .human-section h2 {
    font-size: 32px;
  }
  .human-section p:not(.eyebrow) {
    font-size: 14px;
  }
  .decision-flow {
    max-width: 430px;
    width: 100%;
    margin: auto;
  }
  .system-list {
    gap: 9px;
    margin-top: 25px;
  }
  .system-list > span {
    padding: 8px 13px;
    font-size: 12px;
  }
  .principles {
    margin-top: 25px;
  }
  .principles article {
    gap: 18px;
  }
  .engineering-intro > p:not(.eyebrow) {
    font-size: 15px;
  }
  .about {
    gap: 10px;
  }
  .contact-inner {
    padding-block: 72px 87px;
  }
  .contact-inner h2 {
    font-size: 43px;
    letter-spacing: -1.7px;
  }
  .contact-inner > p:not(.eyebrow) {
    font-size: 15px;
  }
  .contact-actions {
    flex-direction: column;
    gap: 17px;
  }
  .contact-inner .eyebrow {
    font-size: 9px;
  }
  .footer {
    padding-top: 39px;
  }
  .footer-top {
    flex-direction: column;
    gap: 19px;
    margin-bottom: 32px;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 9px;
    font-size: 10px;
  }
  .privacy-content {
    padding-block: 48px 70px;
  }
  .privacy-content h1 {
    font-size: 44px;
  }
  .privacy-content h2 {
    font-size: 25px;
  }
}
@media (max-width: 390px) {
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .capability-grid article:nth-child(2n) {
    padding-left: 0 !important;
    border-left: 0 !important;
  }
  .capability-grid h3 {
    min-height: 0;
  }
  .capability-grid p {
    min-height: 0;
    font-size: 14px;
  }
  .cap-detail {
    font-size: 9px;
  }
  .contact-inner h2 {
    font-size: 39px;
  }
}
@media (max-width: 760px) {
  .orchestration {
    height: 470px;
    background: radial-gradient(ellipse at 50% 52%, #18244255, transparent 65%);
  }
  .connections {
    display: none;
  }
  .node {
    top: 48px !important;
    left: auto;
    right: auto;
    transform: none;
    width: 31.5%;
    min-width: 0;
    padding: 11px 8px;
    text-align: center;
    box-shadow: none;
  }
  .people {
    left: 0;
  }
  .information {
    left: 34.25%;
  }
  .systems {
    right: 0;
  }
  .node small {
    font-size: 9px;
    line-height: 1.7;
  }
  .node:after {
    content: "";
    position: absolute;
    top: 100%;
    height: 32px;
    width: 1px;
    background: #415275;
    left: 50%;
  }
  .core {
    top: 185px;
    transform: translateX(-50%);
    width: 230px;
  }
  .core:before {
    content: "";
    position: absolute;
    left: 50%;
    top: -30px;
    height: 29px;
    width: 1px;
    background: #6b81b4;
  }
  .orchestration:before {
    content: "";
    position: absolute;
    left: 15.75%;
    right: 15.75%;
    top: 155px;
    height: 1px;
    background: #415275;
  }
  .core:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    height: 30px;
    width: 1px;
    background: #6b81b4;
  }
  .mini-node {
    top: 367px;
    bottom: auto;
    width: 47%;
    padding: 11px 8px;
    text-align: center;
  }
  .mini-node:before {
    content: "";
    position: absolute;
    bottom: 100%;
    height: 28px;
    left: 50%;
    width: 1px;
    background: #415275;
  }
  .orchestration:after {
    content: "";
    position: absolute;
    left: 23.5%;
    right: 23.5%;
    top: 338px;
    height: 1px;
    background: #415275;
  }
  .review {
    left: 0;
  }
  .outcomes {
    right: 0;
  }
  .diagram-foot {
    bottom: 5px;
  }
  .node strong {
    font-size: 12px;
  }
  .diagram-caption {
    font-size: 9px;
  }
}
@media (min-width: 761px) and (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 60px;
    gap: 45px;
  }
  .hero-copy {
    max-width: 650px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
  .orchestration {
    max-width: 570px;
    width: 100%;
    margin: auto;
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero-description {
    max-width: 560px;
  }
  .capability-grid p {
    min-height: 126px;
  }
  .human-section {
    gap: 28px;
    padding: 32px;
  }
  .human-section h2 {
    font-size: 30px;
  }
  .decision-action {
    font-size: 10px;
  }
  .decision-action > span {
    margin-left: 3px;
  }
}
/* A concise landing page: recognition, proof of approach, conversation. */
.hero {
  padding-top: 60px;
  padding-bottom: 55px;
}
.hero h1 {
  max-width: 660px;
}
.recognition {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-block: 76px;
}
.recognition h2 {
  font-size: 38px;
}
.recognition > div > p:last-child {
  color: var(--muted);
  max-width: 360px;
  margin-bottom: 0;
}
.workflow-examples > div {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.workflow-examples > div:first-child {
  border-top: 1px solid var(--line);
}
.workflow-examples span {
  font:
    12px ui-monospace,
    monospace;
  color: var(--accent);
  white-space: nowrap;
}
.workflow-examples p {
  margin: 0;
  font-size: 16px;
  color: #c8d0df;
}
.comparison-section {
  padding-block: 76px;
}
.comparison-section .section-heading {
  margin-bottom: 35px;
}
.quick-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 34px;
}
.quick-process > div {
  display: flex;
  gap: 16px;
}
.quick-process > div > span {
  font:
    12px ui-monospace,
    monospace;
  color: var(--accent);
  padding-top: 5px;
}
.quick-process p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.quick-process strong {
  display: block;
  font-weight: 500;
  color: var(--text);
}
.contact-inner {
  padding-block: 75px 85px;
}
.contact-card {
  width: fit-content;
  max-width: 100%;
  margin: 27px auto 0;
  padding: 24px 32px 13px;
  border: 1px solid #3a4867;
  background: #131c2c;
  border-radius: 6px;
}
.contact-card-label {
  display: block;
  color: #a7b5cf;
  font:
    12px ui-monospace,
    monospace;
  letter-spacing: 1.4px;
}
.contact-address {
  display: block;
  font-size: 27px;
  letter-spacing: -0.6px;
  margin: 9px 0 22px;
  overflow-wrap: anywhere;
}
#copy-email {
  cursor: pointer;
}
#copy-status {
  color: #b8c5e6;
  font-size: 12px;
  min-height: 20px;
  margin: 11px 0 0;
}
.contact-inner > p:not(.eyebrow) {
  max-width: 460px;
}
@media (max-width: 760px) {
  .hero {
    padding-top: 46px;
    padding-bottom: 30px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .recognition {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 55px;
  }
  .recognition h2 {
    font-size: 34px;
  }
  .workflow-examples p {
    font-size: 15px;
  }
  .workflow-examples > div {
    gap: 15px;
    padding-block: 14px;
  }
  .comparison-section {
    padding-block: 55px;
  }
  .quick-process {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .contact-inner {
    padding-block: 58px 72px;
  }
  .contact-card {
    padding: 23px 18px 12px;
    width: 100%;
  }
  .contact-address {
    font-size: 22px;
  }
  .contact-card .contact-actions {
    gap: 9px;
  }
  .contact-inner h2 {
    font-size: 43px;
  }
}
/* The hosted form is the primary contact path; email stays available. */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  text-align: left;
}
.contact-grid .eyebrow {
  justify-content: flex-start;
}
.contact-intro h2 {
  font-size: 54px;
}
.contact-intro > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 440px;
}
.email-alternative {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid #34415b;
}
.email-alternative .contact-address {
  font-size: 23px;
  margin: 8px 0;
}
.copy-email-button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.tally-card {
  padding: 28px 30px 18px;
  border: 1px solid #2a3344;
  border-radius: 8px;
  background: #10151f;
  color-scheme: dark;
}
.tally-card iframe {
  display: block;
  border: 0;
  width: 100%;
  background: transparent;
  color-scheme: dark;
}
.form-note,
.form-direct-link {
  font-size: 12px;
  color: #a8b4cb;
  line-height: 1.7;
}
.form-note {
  margin: 16px 0 5px;
}
.form-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-direct-link {
  display: inline-block;
  padding-block: 8px;
}
@media (max-width: 1000px) {
  .contact-grid {
    gap: 36px;
  }
  .contact-intro h2 {
    font-size: 44px;
  }
  .tally-card {
    padding: 23px 20px 16px;
  }
}
@media (max-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-intro h2 {
    font-size: 43px;
  }
  .email-alternative {
    margin-top: 22px;
    padding-top: 19px;
  }
  .email-alternative .contact-address {
    font-size: 21px;
  }
  .tally-card {
    padding: 22px 18px 14px;
  }
}
/* One direct, accessible contact dialog for every workflow CTA. */
.dialog-open {
  overflow: hidden;
}
.contact-form-invite {
  border: 1px solid #3a4867;
  border-radius: 8px;
  padding: 36px;
  background: #151e30;
}
.contact-form-invite h3 {
  font-size: 28px;
}
.contact-form-invite > p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 26px;
}
.contact-dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 24px;
  border: 1px solid #4a5874;
  border-radius: 12px;
  background: #10151f;
  color: var(--text);
  box-shadow: 0 28px 100px #0008;
}
.contact-dialog::backdrop {
  background: #05070cce;
}
.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.dialog-header .eyebrow {
  margin-bottom: 10px;
  font-size: 11px;
}
.dialog-header h2 {
  font-size: 27px;
  letter-spacing: -0.7px;
  margin: 0;
}
.dialog-close {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #40506e;
  border-radius: 5px;
  color: white;
  background: #1a2436;
  font-size: 28px;
  cursor: pointer;
}
.dialog-close:hover {
  background: #2b3b58;
}
.contact-dialog .tally-card {
  padding: 20px 22px 12px;
}
.dialog-email {
  font-size: 13px;
  color: var(--muted);
  margin: 17px 0 0;
}
.dialog-email a {
  color: #c6d3f3;
  text-underline-offset: 3px;
  text-decoration: underline;
}
@media (max-width: 760px) {
  .contact-form-invite {
    padding: 27px 22px;
  }
  .contact-dialog {
    padding: 18px 14px;
    max-height: calc(100dvh - 24px);
    width: calc(100% - 20px);
  }
  .dialog-header h2 {
    font-size: 24px;
  }
  .contact-dialog .tally-card {
    padding: 15px 12px 10px;
  }
  .dialog-email {
    font-size: 12px;
  }
}
