:root {
  --page: #08090b;
  --surface: #0d1014;
  --surface-raised: #14181d;
  --ink: #f5f5f4;
  --muted: #979ca5;
  --line: rgba(255, 255, 255, 0.085);
  --line-strong: rgba(255, 255, 255, 0.15);
  --blue: #8ab4ff;
  --green: #7bd88f;
  --yellow: #e7bb72;
  --radius: 20px;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  overflow-x: clip;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(52, 104, 197, 0.08), transparent 26rem),
    var(--page);
}

body,
button {
  font: inherit;
}

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

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

::selection {
  color: #09101d;
  background: var(--blue);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 18px;
  top: -90px;
  padding: 11px 16px;
  border-radius: 10px;
  color: #07111f;
  background: var(--blue);
  font-weight: 800;
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 11, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 146px;
  height: auto;
  display: block;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #c8c9cc;
  font-size: 12px;
  font-weight: 750;
}

.nav-actions > a:hover {
  color: var(--ink);
}

.language-picker {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #aebbd0;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 160ms ease, background 160ms ease;
}

.language-picker:hover,
.language-picker:focus-within {
  border-color: rgba(138, 180, 255, 0.32);
  background: rgba(138, 180, 255, 0.06);
}

.language-picker svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.language-picker select {
  width: 104px;
  min-width: 0;
  padding: 0 2px;
  border: 0;
  outline: 0;
  color: #d6d9de;
  background: transparent;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.language-picker option {
  color: var(--ink);
  background: var(--surface-raised);
}

.nav-source {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 820;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #0b0c0f;
  background: var(--ink);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28), inset 0 -1px rgba(0, 0, 0, 0.15);
}

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

.quiet-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #b8bbc1;
  font-size: 13px;
  font-weight: 750;
}

.quiet-link:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 112px 0 90px;
  text-align: center;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0 50% auto;
  width: 100vw;
  height: 780px;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.62;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 18%, rgba(91, 148, 255, 0.17), transparent 46%);
  background-size: 48px 48px, 48px 48px, auto;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  content: "";
}

.hero h1 {
  position: relative;
  overflow: hidden;
  max-width: 1040px;
  margin: 0 auto 26px;
  padding: 34px 72px 38px 74px;
  border: 1px solid rgba(138, 180, 255, 0.15);
  border-inline-start: 4px solid var(--blue);
  border-radius: 0 22px 22px 0;
  background: linear-gradient(100deg, rgba(138, 180, 255, 0.105), rgba(123, 216, 143, 0.025) 62%, rgba(255, 255, 255, 0.012));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.025);
  font-size: clamp(48px, 5.25vw, 68px);
  line-height: 0.99;
  letter-spacing: -0.058em;
  font-weight: 780;
  text-align: start;
}

.hero h1::before {
  position: absolute;
  left: 20px;
  top: 4px;
  color: #9fc1ff;
  font: 700 62px/1 Georgia, serif;
  opacity: 0.8;
  content: "“";
}

.hero h1::after {
  position: absolute;
  right: 18px;
  top: -38px;
  color: rgba(123, 216, 143, 0.07);
  font-size: 150px;
  line-height: 1;
  content: "?";
}

.hero h1 > span {
  color: #b8d0ff;
  background: linear-gradient(110deg, #f5f5f4 15%, #9dc2ff 62%, #8be1b3);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1.hero-statement {
  max-width: 1120px;
  padding: 38px 56px 42px;
  font-size: clamp(44px, 4.7vw, 62px);
  line-height: 1.02;
}

.hero h1.hero-statement::before,
.hero h1.hero-statement::after {
  display: none;
}

.hero-lede {
  max-width: 880px;
  margin: 0 auto;
  color: #b1b3b8;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.6;
}

.hero-lede strong {
  color: #d9e7ff;
  font-weight: 750;
}

.open-source-proof {
  width: fit-content;
  display: flex;
  align-items: center;
  margin: 28px auto 0;
  padding: 7px;
  border: 1px solid rgba(123, 216, 143, 0.16);
  border-radius: 18px;
  background: linear-gradient(100deg, rgba(123, 216, 143, 0.07), rgba(138, 180, 255, 0.035));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03), 0 18px 50px rgba(0, 0, 0, 0.17);
}

.open-source-proof > span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.07);
  color: #aeb3bb;
  font-size: 12px;
  font-weight: 720;
  white-space: nowrap;
}

.open-source-proof .source-proof-lead {
  border-inline-start: 0;
  border-radius: 12px;
  color: #b9ecc6;
  background: rgba(123, 216, 143, 0.09);
}

.source-proof-lead svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.source-proof-lead strong {
  color: #d9f6e0;
  font-size: 13px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 36px;
}

.hero-principle {
  max-width: 760px;
  margin: 20px auto 0;
  color: #aeb2b9;
  font-size: 17px;
  line-height: 1.65;
}

.hero-principle strong {
  color: var(--ink);
}

.hero-problem-map {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
  gap: 16px;
  margin: 74px auto 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(10, 12, 15, 0.72);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  text-align: start;
}

.workload-cloud {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.workload-cloud span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #c3c7ce;
  background: rgba(255, 255, 255, 0.025);
  font-size: 11px;
  font-weight: 750;
}

.workload-cloud b {
  color: inherit;
  font: inherit;
}

.workload-cloud i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 16px rgba(138, 180, 255, 0.75);
}

.workload-cloud span:nth-child(2) i,
.workload-cloud span:nth-child(4) i {
  background: var(--green);
  box-shadow: 0 0 16px rgba(123, 216, 143, 0.65);
}

.load-connector {
  display: flex;
  align-items: center;
  color: #6f747d;
}

.load-connector span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, #59606a);
}

.load-connector b {
  font-size: 13px;
  font-weight: 500;
}

.laptop-load {
  padding: 16px;
  border: 1px solid rgba(231, 187, 114, 0.22);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(231, 187, 114, 0.08), rgba(255, 255, 255, 0.018));
}

.laptop-load-top,
.resource-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.laptop-load-top {
  margin-bottom: 14px;
  color: #e4e5e7;
  font-size: 11px;
  font-weight: 800;
}

.laptop-load-top em {
  color: var(--yellow);
  font-size: 9px;
  font-style: normal;
  font-weight: 750;
}

.resource-line + .resource-line {
  margin-top: 9px;
}

.resource-line > span {
  width: 46px;
  color: #797e86;
  font-size: 9px;
  font-weight: 700;
}

.resource-line > i {
  height: 5px;
  flex: 1;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.resource-line > i > b {
  width: 86%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
}

.resource-line:last-child > i > b {
  width: 73%;
}

.section {
  position: relative;
  padding: 106px 0;
  scroll-margin-top: 88px;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 58px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.relationship-copy h2,
.resource-copy h2,
.trust-copy h2,
.final-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.048em;
  font-weight: 760;
}

.section-heading p,
.relationship-copy p,
.resource-copy p,
.trust-copy p,
.final-cta p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.question-heading {
  position: relative;
  overflow: hidden;
  padding: 18px 54px 19px 50px;
  border-inline-start: 3px solid var(--blue);
  border-radius: 0 15px 15px 0;
  background: linear-gradient(90deg, rgba(138, 180, 255, 0.105), rgba(138, 180, 255, 0.018) 64%, transparent);
  text-align: start;
}

.question-heading::before {
  position: absolute;
  left: 14px;
  top: 8px;
  color: #9fc1ff;
  font: 700 34px/1 Georgia, serif;
  opacity: 0.78;
  content: "“";
}

.question-heading::after {
  position: absolute;
  right: 10px;
  top: -18px;
  color: rgba(138, 180, 255, 0.07);
  font-size: 88px;
  line-height: 1;
  content: "?";
}

.question-heading > span {
  color: #a9c8ff;
}

.agent-section .question-heading,
.outcomes .question-heading,
.resource-section .question-heading {
  border-inline-start-color: var(--green);
  background: linear-gradient(90deg, rgba(123, 216, 143, 0.1), rgba(123, 216, 143, 0.016) 64%, transparent);
}

.agent-section .question-heading::before,
.outcomes .question-heading::before,
.resource-section .question-heading::before,
.agent-section .question-heading > span,
.outcomes .question-heading > span,
.resource-section .question-heading > span {
  color: #8de4a7;
}

.install-section .question-heading,
.trust-section .question-heading {
  border-inline-start-color: var(--yellow);
  background: linear-gradient(90deg, rgba(231, 187, 114, 0.1), rgba(231, 187, 114, 0.016) 64%, transparent);
}

.install-section .question-heading::before,
.trust-section .question-heading::before,
.install-section .question-heading > span,
.trust-section .question-heading > span {
  color: #efc982;
}

.final-cta .question-heading {
  border-inline-start-color: var(--blue);
  background: linear-gradient(90deg, rgba(138, 180, 255, 0.09), rgba(123, 216, 143, 0.045), transparent);
}

.final-cta .question-heading > span {
  color: #98ddb0;
}

.product-tour {
  overflow: hidden;
  padding-top: 116px;
  background:
    radial-gradient(circle at 50% 45%, rgba(65, 113, 199, 0.09), transparent 34rem),
    var(--page);
}

.product-tour .section-heading {
  margin-bottom: 42px;
}

.tour-shell {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: #060709;
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(138, 180, 255, 0.035);
}

.tour-stage {
  position: relative;
  aspect-ratio: 1357 / 620;
  overflow: hidden;
}

.tour-panel {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.008);
  transition: opacity 420ms ease, transform 700ms ease, visibility 0s linear 420ms;
}

.tour-panel.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}

.tour-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tour-panel figcaption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 120px 38px 34px;
  background: linear-gradient(transparent, rgba(3, 4, 6, 0.94));
}

.tour-panel figcaption span {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tour-panel figcaption strong {
  display: block;
  font-size: clamp(19px, 2.1vw, 27px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.tour-panel figcaption p {
  max-width: 680px;
  margin: 7px 0 0;
  color: #b9bbc0;
  font-size: 13px;
  line-height: 1.55;
}

.tour-progress {
  height: 2px;
  background: #202226;
}

.tour-progress span {
  width: 0;
  height: 100%;
  display: block;
  background: var(--blue);
}

.tour-progress span.is-running {
  animation: tour-progress 18s linear forwards;
}

@keyframes tour-progress {
  to { width: 100%; }
}

.tour-controls {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.tour-control {
  min-width: 0;
  min-height: 60px;
  padding: 0 10px;
  border: 0;
  border-right: 1px solid var(--line);
  color: #72757b;
  background: #0c0e11;
  font-size: 11px;
  font-weight: 720;
  cursor: pointer;
}

.tour-control:last-child {
  border-right: 0;
}

.tour-control:hover,
.tour-control.is-active {
  color: var(--ink);
  background: linear-gradient(180deg, #171a20, #111318);
}

.outcomes-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.outcomes {
  background: linear-gradient(180deg, #0a0c0f, #0d1014);
}

.outcomes-list article {
  position: relative;
  min-width: 0;
  min-height: 330px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.outcomes-list article::after {
  position: absolute;
  right: -65px;
  bottom: -85px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0.14;
  filter: blur(35px);
  background: var(--green);
  content: "";
}

.outcomes-list article:nth-child(2)::after {
  background: var(--blue);
}

.outcomes-list article:nth-child(3)::after {
  background: var(--yellow);
}

.outcome-mark {
  display: block;
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font: 780 12px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.08em;
}

.outcome-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 54px;
}

.outcome-visual {
  width: 52px;
  height: 52px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(123, 216, 143, 0.16);
  border-radius: 15px;
  color: var(--green);
  background: rgba(123, 216, 143, 0.055);
}

.outcomes-list article:nth-child(2) .outcome-visual {
  border-color: rgba(138, 180, 255, 0.18);
  color: var(--blue);
  background: rgba(138, 180, 255, 0.06);
}

.outcomes-list article:nth-child(3) .outcome-visual {
  border-color: rgba(231, 187, 114, 0.17);
  color: var(--yellow);
  background: rgba(231, 187, 114, 0.055);
}

.outcome-visual svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.outcomes-list article:nth-child(2) .outcome-mark {
  color: var(--blue);
  font-size: 15px;
}

.outcomes-list h3 {
  margin-bottom: 13px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.outcomes-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.outcomes-list a {
  display: inline-block;
  margin-top: 20px;
  color: #b9cefa;
  font-size: 11px;
  font-weight: 750;
}

.relationship-section,
.trust-section {
  background: var(--surface);
}

.relationship-section,
.agent-section {
  overflow: hidden;
}

.relationship-section::after,
.agent-section::after {
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.12;
  filter: blur(90px);
  content: "";
}

.relationship-section::after {
  right: -300px;
  bottom: -260px;
  background: var(--blue);
}

.agent-section::after {
  left: -320px;
  bottom: -280px;
  background: var(--green);
}

.relationship-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(64px, 8vw, 108px);
}

.relationship-copy .quiet-link {
  margin-top: 28px;
}

.relationship-visual {
  position: relative;
  z-index: 1;
  padding: 18px 0;
}

.device-line,
.agent-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.device-line > span,
.provider-card {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #c8cbd0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.device-line > span {
  min-height: 104px;
  flex-direction: column;
}

.device-line svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
  filter: drop-shadow(0 0 10px rgba(138, 180, 255, 0.25));
}

.device-line b {
  font-size: inherit;
}

.provider-card {
  min-width: 0;
  min-height: 104px;
  gap: 14px;
  padding: 16px;
}

.provider-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  color: #f1f2f3;
  background: rgba(255, 255, 255, 0.045);
}

.provider-logo svg {
  width: 29px;
  height: 29px;
  display: block;
  fill: currentColor;
}

.provider-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
  text-align: start;
}

.provider-copy b {
  color: #f2f3f4;
  font-size: 12px;
  line-height: 1.15;
}

.provider-copy small {
  color: #777d86;
  font-size: 9px;
  font-weight: 750;
  line-height: 1.2;
}

.provider-claude .provider-logo {
  border-color: rgba(217, 119, 87, 0.22);
  color: #dc805f;
  background: rgba(217, 119, 87, 0.08);
}

.provider-kimi .provider-logo svg {
  width: 38px;
  height: auto;
}

.agent-section .project-computer {
  background: linear-gradient(145deg, rgba(123, 216, 143, 0.08), rgba(138, 180, 255, 0.05));
}

.relationship-arrow {
  position: relative;
  padding: 20px 0;
  color: #656970;
  text-align: center;
}

.relationship-arrow::before,
.relationship-arrow::after {
  position: absolute;
  top: 50%;
  width: calc(50% - 20px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong));
  content: "";
}

.relationship-arrow::before {
  left: 0;
}

.relationship-arrow::after {
  right: 0;
  transform: rotate(180deg);
}

.project-computer {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border: 1px solid rgba(138, 180, 255, 0.26);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(138, 180, 255, 0.1), rgba(123, 216, 143, 0.04));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.025);
}

.project-computer::after {
  position: absolute;
  right: -90px;
  top: -110px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  opacity: 0.13;
  filter: blur(38px);
  background: var(--blue);
  content: "";
}

.computer-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.computer-label {
  display: block;
  margin: 0;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.online-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #9ba0a8;
  font-size: 9px;
  font-weight: 750;
}

.online-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(123, 216, 143, 0.75);
}

.project-computer strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.computer-tools {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.computer-tools span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #c3c6cb;
  background: rgba(0, 0, 0, 0.18);
  font-size: 12px;
  font-weight: 720;
}

.install-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.72fr);
  column-gap: 96px;
  align-items: end;
  margin-bottom: 68px;
}

.install-heading h2 {
  margin-bottom: 0;
}

.install-heading p {
  padding-bottom: 7px;
}

.setup-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.setup-step {
  display: grid;
  grid-template-columns: 52px 0.72fr 1.28fr;
  align-items: start;
  gap: 34px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.027), rgba(255, 255, 255, 0.008));
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.setup-step:hover {
  border-color: rgba(138, 180, 255, 0.2);
  background: linear-gradient(145deg, rgba(138, 180, 255, 0.045), rgba(255, 255, 255, 0.01));
  transform: translateY(-2px);
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(138, 180, 255, 0.18);
  border-radius: 12px;
  color: #b8d0ff;
  background: rgba(138, 180, 255, 0.07);
  font: 800 11px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.08em;
}

.step-copy h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.step-copy p,
.step-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.step-copy code,
.step-detail code {
  color: #dfe8ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.92em;
}

.step-detail {
  min-width: 0;
}

.step-detail strong {
  color: #d7d8dc;
}

.dns-records {
  border-top: 1px solid var(--line);
}

.dns-records > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.dns-records code {
  overflow-wrap: anywhere;
}

.dns-records span {
  color: #74777e;
  font-size: 11px;
  font-weight: 700;
}

.single-command {
  margin: 0;
  padding: 21px 22px;
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  color: #dfe8ff;
  background: #060709;
  font: 13px/1.7 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.step-detail p + .single-command {
  margin-top: 14px;
}

.step-detail .step-warning {
  margin-top: 12px;
  color: var(--yellow);
  font-size: 11px;
}

.terminal {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #060709;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.terminal-topbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 14px 0 18px;
  border-bottom: 1px solid var(--line);
  color: #777a81;
  background: #121419;
  font-size: 10px;
  font-weight: 750;
}

.terminal-topbar button {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #d4d5d7;
  background: #1b1e23;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.terminal pre {
  margin: 0;
  padding: 34px 28px;
  overflow-x: auto;
  color: #dfe8ff;
  font: 13px/1.8 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  white-space: pre-wrap;
  word-break: break-word;
}

.terminal .prompt {
  color: var(--green);
}

.setup-step .terminal {
  box-shadow: none;
}

.setup-step .terminal pre {
  padding: 28px 24px;
}

.step-detail .step-note {
  margin-top: 12px;
  color: #74777e;
  font-size: 11px;
}

.first-project-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.first-project-list span {
  position: relative;
  padding: 13px 0 13px 20px;
  border-bottom: 1px solid var(--line);
  color: #b6b8bd;
  font-size: 12px;
  line-height: 1.55;
}

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

.resource-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 62%, rgba(123, 216, 143, 0.07), transparent 28rem),
    #0a0c0f;
}

.resource-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: clamp(64px, 8vw, 108px);
}

.resource-copy h2 {
  margin: 0 0 18px;
}

.resource-highlight {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(123, 216, 143, 0.24);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(123, 216, 143, 0.15), rgba(123, 216, 143, 0.055));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.resource-highlight strong {
  display: block;
  margin-bottom: 12px;
  color: #79e09a;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.resource-highlight span {
  display: block;
  color: #c5cbc7;
  font-size: 11px;
  line-height: 1.55;
}

.resource-comparison {
  display: grid;
  gap: 12px;
}

.resource-card {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.02);
}

.resource-card.is-remote {
  border-color: rgba(123, 216, 143, 0.16);
  background: linear-gradient(145deg, rgba(123, 216, 143, 0.055), rgba(255, 255, 255, 0.016));
}

.resource-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #ececed;
  font-size: 13px;
}

.resource-card-top strong {
  font-weight: 780;
}

.resource-card-top b {
  flex: 0 0 auto;
  color: #aecaFA;
  font-size: 12px;
  font-weight: 820;
}

.resource-card.is-remote .resource-card-top b {
  color: #8ae6a5;
}

.resource-meter {
  height: 7px;
  margin: 14px 0 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
}

.resource-meter span {
  width: 74.4%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #78acff, #86dfad);
}

.resource-card:nth-child(1) .resource-meter span {
  width: 4.5%;
}

.resource-card:nth-child(3) .resource-meter span {
  width: 92.5%;
}

.resource-card:nth-child(4) .resource-meter span {
  width: 100%;
}

.resource-card p {
  margin: 0;
  color: #8f949c;
  font-size: 10px;
  line-height: 1.55;
}

.resource-caveat {
  margin-top: 2px;
  padding: 18px 20px;
  border-inline-start: 3px solid var(--yellow);
  color: #b7bac0;
  background: rgba(231, 187, 114, 0.055);
}

.resource-caveat strong {
  display: block;
  margin-bottom: 6px;
  color: #e1e2e4;
  font-size: 11px;
}

.resource-caveat p {
  margin: 0;
  font-size: 10px;
  line-height: 1.55;
}

.resource-method {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #b6cefa;
  font-size: 10px;
  font-weight: 750;
}

.resource-method:hover {
  border-color: rgba(138, 180, 255, 0.2);
  color: var(--ink);
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(64px, 8vw, 108px);
}

.trust-copy {
  align-self: start;
}

.boundary-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
}

.boundary-list > div {
  min-height: 184px;
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.boundary-list dt {
  margin: 20px 0 18px;
  color: #d9dadc;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.boundary-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(138, 180, 255, 0.15);
  border-radius: 12px;
  color: #a9c6fb;
  background: rgba(138, 180, 255, 0.055);
}

.boundary-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.boundary-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.trust-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.trust-links a {
  color: #9da1a8;
  font-size: 11px;
  font-weight: 720;
}

.trust-links a:hover {
  color: var(--ink);
}

.final-cta {
  position: relative;
  max-width: 980px;
  margin: 132px auto 0;
  padding: 88px 56px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 120%, rgba(138, 180, 255, 0.16), transparent 55%),
    rgba(255, 255, 255, 0.018);
  text-align: center;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(138, 180, 255, 0.08), transparent 32%, transparent 68%, rgba(123, 216, 143, 0.07));
  content: "";
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: clamp(38px, 4.5vw, 56px);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #07080a;
}

.footer-row {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.footer-row .brand-logo {
  width: 128px;
}

.footer-row p {
  margin: 0;
  color: #5f6268;
  font-size: 10px;
}

.footer-row nav {
  justify-self: end;
  display: flex;
  gap: 20px;
  color: #777a80;
  font-size: 10px;
  font-weight: 700;
}

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

@media (max-width: 900px) {
  .relationship-layout,
  .trust-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .relationship-copy,
  .trust-copy {
    max-width: 720px;
  }

  .install-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .install-heading h2 {
    margin-bottom: 0;
  }

  .install-heading p {
    max-width: 680px;
    padding-bottom: 0;
  }

  .setup-step {
    grid-template-columns: 44px 1fr;
  }

  .step-detail {
    grid-column: 2;
  }

  .trust-links {
    justify-content: flex-start;
  }

}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 30px, 600px);
  }

  .nav {
    min-height: 64px;
  }

  .brand-logo {
    width: 128px;
  }

  .nav-actions {
    gap: 13px;
  }

  .language-picker select {
    width: 96px;
  }

  .hero {
    padding: 88px 0 74px;
  }

  .hero h1 {
    margin-top: 0;
    padding: 28px 34px 30px 48px;
    border-radius: 0 17px 17px 0;
    font-size: clamp(38px, 10.5vw, 48px);
  }

  .hero h1.hero-statement {
    padding: 30px 28px 32px;
    font-size: clamp(36px, 9.7vw, 44px);
  }

  .hero h1::before {
    left: 13px;
    top: 5px;
    font-size: 44px;
  }

  .hero h1::after {
    right: 8px;
    top: -20px;
    font-size: 100px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .open-source-proof {
    width: min(100%, 390px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 6px;
    border-radius: 17px;
  }

  .open-source-proof > span {
    justify-content: center;
    border-inline-start: 0;
  }

  .open-source-proof > span:nth-child(even) {
    border-inline-start: 1px solid rgba(255, 255, 255, 0.07);
  }

  .open-source-proof > span:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }

  .hero-principle {
    margin-top: 24px;
  }

  .hero-problem-map {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 54px;
    padding: 14px;
    border-radius: 19px;
  }

  .load-connector {
    width: 44px;
    height: 34px;
    justify-self: center;
    transform: rotate(90deg);
  }

  .workload-cloud span {
    min-height: 40px;
  }

  .section {
    padding: 92px 0;
  }

  .resource-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .resource-copy {
    max-width: 600px;
  }

  .resource-highlight {
    padding: 22px;
  }

  .resource-card {
    padding: 20px;
  }

  .resource-card-top {
    align-items: flex-start;
    font-size: 12px;
  }

  .section-heading h2,
  .relationship-copy h2,
  .resource-copy h2,
  .trust-copy h2,
  .final-cta h2 {
    font-size: clamp(31px, 8.8vw, 40px);
  }

  .question-heading {
    padding: 15px 38px 16px 40px;
    border-radius: 0 12px 12px 0;
  }

  .question-heading::before {
    left: 11px;
    top: 7px;
    font-size: 29px;
  }

  .question-heading::after {
    right: 6px;
    top: -10px;
    font-size: 68px;
  }

  .tour-shell {
    border-radius: 14px;
  }

  .tour-stage {
    aspect-ratio: 1.35 / 1;
  }

  .tour-panel figcaption {
    padding: 54px 18px 16px;
  }

  .tour-panel figcaption strong {
    font-size: 20px;
  }

  .tour-panel figcaption p {
    display: none;
  }

  .tour-control {
    min-height: 47px;
    padding: 0 4px;
    font-size: 0;
  }

  .tour-control::before {
    font-size: 10px;
    content: attr(data-short-label);
  }

  .outcomes-list {
    grid-template-columns: 1fr;
  }

  .outcomes-list article {
    min-height: auto;
    padding: 30px;
    border: 1px solid var(--line);
  }

  .outcomes-list article:first-child {
    border-top: 1px solid var(--line);
  }

  .outcome-mark {
    margin-bottom: 0;
  }

  .outcome-top {
    margin-bottom: 38px;
  }

  .device-line,
  .agent-line {
    grid-template-columns: repeat(3, 1fr);
  }

  .device-line > span,
  .provider-card {
    min-width: 0;
    min-height: 88px;
    flex-direction: column;
    padding: 12px 6px;
    font-size: 10px;
  }

  .device-line svg {
    width: 38px;
    height: 38px;
  }

  .provider-card {
    min-height: 112px;
  }

  .provider-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .provider-logo svg {
    width: 25px;
    height: 25px;
  }

  .provider-kimi .provider-logo svg {
    width: 34px;
    height: auto;
  }

  .provider-copy {
    gap: 3px;
    text-align: center;
  }

  .provider-copy b {
    font-size: 10px;
  }

  .provider-copy small {
    font-size: 8px;
  }

  .project-computer {
    padding: 26px;
  }

  .setup-step {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px;
  }

  .step-number {
    padding-top: 0;
  }

  .step-detail {
    grid-column: auto;
  }

  .dns-records > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .terminal pre {
    padding: 28px 20px;
    font-size: 11px;
  }

  .boundary-list > div {
    min-height: auto;
  }

  .boundary-list {
    grid-template-columns: 1fr;
  }

  .final-cta {
    margin-top: 92px;
    padding: 68px 24px;
    border-radius: 22px;
  }

  .footer-row {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 34px 0;
    text-align: center;
  }

  .footer-row nav {
    justify-self: center;
  }
}

@media (max-width: 430px) {
  .nav {
    gap: 10px;
  }

  .brand-logo {
    width: 116px;
  }

  .nav-actions {
    gap: 9px;
  }

  .nav-actions > a:first-child {
    display: none;
  }

  .language-picker {
    padding-inline: 8px;
  }

  .language-picker select {
    width: 88px;
  }

  .button {
    width: 100%;
  }

  .hero-actions .quiet-link {
    justify-content: center;
  }
}

@media (max-width: 340px) {
  .nav-source {
    display: none;
  }
}

html[dir="rtl"] .hero h1 {
  border-radius: 22px 0 0 22px;
  background: linear-gradient(260deg, rgba(138, 180, 255, 0.105), rgba(123, 216, 143, 0.025) 62%, rgba(255, 255, 255, 0.012));
}

html[dir="rtl"] .hero h1::before {
  right: 20px;
  left: auto;
}

html[dir="rtl"] .hero h1::after {
  right: auto;
  left: 18px;
  content: "؟";
}

html[dir="rtl"] .question-heading {
  border-radius: 15px 0 0 15px;
  background: linear-gradient(270deg, rgba(138, 180, 255, 0.105), rgba(138, 180, 255, 0.018) 64%, transparent);
}

html[dir="rtl"] .question-heading::before {
  right: 14px;
  left: auto;
}

html[dir="rtl"] .question-heading::after {
  right: auto;
  left: 10px;
  content: "؟";
}

html[dir="rtl"] .agent-section .question-heading,
html[dir="rtl"] .outcomes .question-heading,
html[dir="rtl"] .resource-section .question-heading {
  background: linear-gradient(270deg, rgba(123, 216, 143, 0.1), rgba(123, 216, 143, 0.016) 64%, transparent);
}

html[dir="rtl"] .install-section .question-heading,
html[dir="rtl"] .trust-section .question-heading {
  background: linear-gradient(270deg, rgba(231, 187, 114, 0.1), rgba(231, 187, 114, 0.016) 64%, transparent);
}

html[dir="rtl"] .final-cta .question-heading {
  background: linear-gradient(270deg, rgba(138, 180, 255, 0.09), rgba(123, 216, 143, 0.045), transparent);
}

html[dir="rtl"] .load-connector b {
  transform: scaleX(-1);
}

html[dir="rtl"] code,
html[dir="rtl"] pre,
html[dir="rtl"] .resource-card-top b {
  direction: ltr;
  unicode-bidi: isolate;
}

@media (max-width: 720px) {
  html[dir="rtl"] .hero h1 {
    padding: 28px 48px 30px 34px;
    border-radius: 17px 0 0 17px;
  }

  html[dir="rtl"] .hero h1.hero-statement {
    padding: 30px 28px 32px;
  }

  html[dir="rtl"] .hero h1::before {
    right: 13px;
  }

  html[dir="rtl"] .hero h1::after {
    left: 8px;
  }

  html[dir="rtl"] .question-heading {
    padding: 15px 40px 16px 38px;
    border-radius: 12px 0 0 12px;
  }

  html[dir="rtl"] .question-heading::before {
    right: 11px;
  }

  html[dir="rtl"] .question-heading::after {
    left: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
