:root {
  --ink: #071411;
  --ink-soft: #0b1d18;
  --ink-raised: #102720;
  --paper: #f2f0e8;
  --muted: #9eb1aa;
  --line: rgba(211, 233, 224, 0.14);
  --line-strong: rgba(211, 233, 224, 0.26);
  --mint: #9cf7c6;
  --mint-bright: #b9ffd9;
  --aqua: #67d8e9;
  --orange: #ffb26b;
  --max-width: 1240px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 10%, rgba(42, 163, 122, 0.13), transparent 25rem),
    var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--mint);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header,
main,
footer {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand strong {
  color: var(--mint);
  font-weight: 750;
}

.brand-symbol {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 11px;
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(7, 20, 17, 0.1);
}

.brand-symbol img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #b9c8c3;
  font-size: 0.84rem;
  font-weight: 650;
}

nav a {
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

nav a:hover {
  color: var(--paper);
}

.nav-cta {
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.nav-cta:hover {
  border-color: var(--mint);
}

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  min-height: 760px;
  padding: 70px 0 80px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2 {
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 680px;
  margin-bottom: 30px;
  font-size: clamp(3.7rem, 6.1vw, 6rem);
}

h1 em {
  color: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: #b8c8c2;
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 750;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--mint);
}

.button-primary:hover {
  background: var(--mint-bright);
}

.button-secondary {
  color: var(--paper);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
}

.button-secondary:hover {
  border-color: rgba(156, 247, 198, 0.65);
}

.hero-facts {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  margin: 56px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  display: grid;
  gap: 1px;
}

.hero-facts strong {
  color: var(--paper);
  font-size: 1.02rem;
}

.hero-facts span {
  color: #82958e;
  font-size: 0.71rem;
  letter-spacing: 0.04em;
}

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

.value-strip article {
  position: relative;
  padding: 32px 34px 34px;
}

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

.value-strip article > span {
  display: block;
  margin-bottom: 22px;
  color: var(--mint);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.63rem;
  letter-spacing: 0.1em;
}

.value-strip h2 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.value-strip p {
  max-width: 320px;
  margin-bottom: 0;
  color: #8fa29b;
  font-size: 0.8rem;
}

.system-map {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(155deg, rgba(19, 52, 42, 0.86), rgba(7, 20, 17, 0.92)),
    var(--ink-soft);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.27);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(156, 247, 198, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 247, 198, 0.18) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.map-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(58, 215, 155, 0.12);
  filter: blur(70px);
  transform: translate(-50%, -50%);
}

.map-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78%;
  height: 78%;
  object-fit: contain;
  opacity: 0.035;
  filter: invert(1);
  transform: translate(-50%, -50%);
}

.map-label {
  position: absolute;
  top: 22px;
  left: 28px;
  color: #718a81;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-node {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 38px auto;
  align-items: center;
  min-width: 142px;
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(9, 28, 23, 0.94);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.map-node strong,
.map-node small {
  grid-column: 2;
}

.map-node strong {
  font-size: 0.76rem;
}

.map-node small {
  color: #7f958d;
  font-size: 0.62rem;
}

.node-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--aqua);
  border: 1px solid rgba(103, 216, 233, 0.4);
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.57rem;
  font-weight: 700;
}

.source-a {
  top: 108px;
  left: 5%;
}

.source-b {
  bottom: 130px;
  left: 5%;
}

.output-a {
  top: 108px;
  right: 5%;
}

.output-b {
  right: 5%;
  bottom: 130px;
}

.map-node-output .node-icon {
  color: var(--orange);
  border-color: rgba(255, 178, 107, 0.4);
}

.map-node-core {
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  min-width: 176px;
  padding: 26px 20px 22px;
  border-color: rgba(156, 247, 198, 0.48);
  background: #0d2b22;
  transform: translate(-50%, -50%);
  text-align: center;
}

.core-logo {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 10px;
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.core-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.map-node-core strong,
.map-node-core small {
  grid-column: auto;
}

.map-node-core strong {
  font-size: 0.86rem;
}

.map-node-core small {
  margin-top: 2px;
  color: #90a69e;
  font-size: 0.64rem;
}

.pulse {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(156, 247, 198, 0.24);
  border-radius: 18px;
  animation: pulse 3s ease-out infinite;
  pointer-events: none;
}

.pulse-two {
  animation-delay: 1.5s;
}

.map-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(156, 247, 198, 0.36);
  stroke-dasharray: 5 7;
  stroke-width: 1.4;
}

.map-capabilities {
  position: absolute;
  right: 4%;
  bottom: 18px;
  left: 4%;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(156, 247, 198, 0.18);
  border-radius: 12px;
  background: rgba(7, 23, 19, 0.9);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.map-capabilities div {
  min-width: 0;
  padding: 10px 12px;
}

.map-capabilities div + div {
  border-left: 1px solid rgba(156, 247, 198, 0.14);
}

.map-capabilities div:nth-child(3n + 1) {
  border-left: 0;
}

.map-capabilities div:nth-child(n + 4) {
  border-top: 1px solid rgba(156, 247, 198, 0.14);
}

.map-capabilities strong,
.map-capabilities small {
  display: block;
}

.map-capabilities strong {
  margin-bottom: 2px;
  color: var(--mint);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-capabilities small {
  overflow: hidden;
  color: #839990;
  font-size: 0.58rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.96);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.14);
  }
}

.section {
  padding: 140px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 28px 80px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.section-heading > p:last-child {
  max-width: 460px;
  margin-bottom: 3px;
  color: #93a69f;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.project-card {
  position: relative;
  display: flex;
  grid-column: span 4;
  flex-direction: column;
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14, 37, 30, 0.66);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.project-card:hover {
  border-color: rgba(156, 247, 198, 0.42);
  background: rgba(17, 47, 38, 0.9);
  transform: translateY(-5px);
}

.project-card-featured {
  grid-column: span 8;
  background:
    linear-gradient(135deg, rgba(41, 122, 93, 0.28), transparent 66%),
    rgba(14, 37, 30, 0.66);
}

.project-card-demo {
  grid-column: span 8;
  min-height: 300px;
  background:
    linear-gradient(120deg, rgba(103, 216, 233, 0.12), transparent 62%),
    rgba(14, 37, 30, 0.66);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 52px;
  color: #799087;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-index {
  color: var(--mint);
}

.project-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.project-card p {
  max-width: 600px;
  color: #94a79f;
  font-size: 0.91rem;
}

.project-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 28px;
  padding: 0;
  list-style: none;
}

.project-card li {
  padding: 5px 10px;
  color: #9fb0aa;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.65rem;
}

.card-link {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  color: #ccd8d3;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 700;
}

.card-link b {
  color: var(--mint);
}

.runtime-section {
  border-top: 1px solid var(--line);
}

.operations-section {
  padding-block: 105px;
  border-top: 1px solid var(--line);
}

.operations-section .section-heading {
  margin-bottom: 48px;
}

.operations-section .section-heading h2 {
  max-width: 820px;
  font-size: clamp(2.7rem, 5.2vw, 4.7rem);
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.operations-card {
  display: flex;
  grid-column: span 6;
  min-height: 310px;
  padding: 30px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(156, 247, 198, 0.045), transparent 64%),
    rgba(14, 37, 30, 0.66);
}

.operations-card-continuity {
  border-color: rgba(156, 247, 198, 0.29);
  background:
    radial-gradient(circle at 90% 12%, rgba(156, 247, 198, 0.11), transparent 18rem),
    linear-gradient(145deg, rgba(41, 122, 93, 0.18), transparent 66%),
    rgba(14, 37, 30, 0.72);
}

.operations-card-cluster {
  border-color: rgba(103, 216, 233, 0.23);
  background:
    radial-gradient(circle at 88% 12%, rgba(103, 216, 233, 0.1), transparent 18rem),
    linear-gradient(145deg, rgba(103, 216, 233, 0.06), transparent 64%),
    rgba(14, 37, 30, 0.68);
}

.operations-card-secrets {
  border-color: rgba(219, 176, 90, 0.23);
  background:
    radial-gradient(circle at 12% 18%, rgba(219, 176, 90, 0.1), transparent 20rem),
    linear-gradient(145deg, rgba(219, 176, 90, 0.045), transparent 64%),
    rgba(14, 37, 30, 0.68);
}

.operations-card-catalog {
  border-color: rgba(156, 247, 198, 0.24);
  background:
    radial-gradient(circle at 88% 16%, rgba(156, 247, 198, 0.09), transparent 18rem),
    linear-gradient(145deg, rgba(103, 216, 233, 0.04), transparent 64%),
    rgba(14, 37, 30, 0.68);
}

.operations-card-config {
  border-color: rgba(181, 153, 255, 0.22);
  background:
    radial-gradient(circle at 12% 16%, rgba(181, 153, 255, 0.1), transparent 19rem),
    linear-gradient(145deg, rgba(181, 153, 255, 0.045), transparent 64%),
    rgba(14, 37, 30, 0.68);
}

.operations-card-placement {
  border-color: rgba(103, 216, 233, 0.23);
  background:
    radial-gradient(circle at 88% 14%, rgba(103, 216, 233, 0.1), transparent 18rem),
    linear-gradient(145deg, rgba(41, 122, 93, 0.1), transparent 66%),
    rgba(14, 37, 30, 0.7);
}

.operations-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
  color: #799087;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.operations-topline span:first-child {
  color: var(--mint);
}

.operations-card h3 {
  max-width: 500px;
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.operations-card p {
  max-width: 590px;
  margin-bottom: 26px;
  color: #91a49d;
  font-size: 0.88rem;
}

.operations-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.operations-card li {
  padding: 5px 10px;
  color: #9fb0aa;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.63rem;
}

.product-preview {
  padding-block: 100px;
  border-top: 1px solid var(--line);
}

.product-preview .section-heading {
  margin-bottom: 48px;
}

.product-preview .section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.7rem, 5.2vw, 4.7rem);
}

.product-preview-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1180px);
  margin-inline: auto;
}

.product-preview-card {
  display: flex;
  grid-column: span 2;
  min-width: 0;
  min-height: 410px;
  margin: 0;
  padding: 24px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(156, 247, 198, 0.055), transparent 64%),
    rgba(14, 37, 30, 0.66);
}

.product-preview-card:nth-child(4) {
  grid-column: span 3;
}

.product-preview-card:nth-child(5) {
  grid-column: span 3;
}

.product-preview-card-assistant .product-preview-image {
  aspect-ratio: 1.97;
}

.product-preview-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  color: #799087;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-preview-topline span:first-child {
  color: var(--mint);
}

.product-preview-image {
  position: relative;
  display: block;
  aspect-ratio: 1.45;
  overflow: hidden;
  border: 1px solid rgba(156, 247, 198, 0.25);
  border-radius: 14px;
  background: #f7f8f9;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  cursor: zoom-in;
  margin-top: auto;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-preview-image:hover,
.product-preview-image:focus-visible {
  border-color: rgba(156, 247, 198, 0.7);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(156, 247, 198, 0.12);
  transform: translateY(-2px);
}

.product-preview-image:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}

.product-preview-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transition: transform 240ms ease;
}

.product-preview-image:hover img,
.product-preview-image:focus-visible img {
  transform: scale(1.012);
}

.product-preview-open {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 7px 10px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(7, 20, 17, 0.86);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  opacity: 0.72;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition:
    background 180ms ease,
    opacity 180ms ease;
}

.product-preview-open svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.product-preview-image:hover .product-preview-open,
.product-preview-image:focus-visible .product-preview-open {
  color: var(--ink);
  background: var(--mint);
  opacity: 1;
}

.product-preview-card figcaption {
  padding-bottom: 18px;
}

.product-preview-card figcaption h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.product-preview-card figcaption p {
  margin-bottom: 0;
  color: #91a49d;
  font-size: 0.86rem;
}

.product-preview-action {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.product-preview-action p {
  margin: 0;
  color: #82958e;
  font-size: 0.78rem;
}

.media-viewer {
  width: min(1500px, calc(100vw - 48px));
  max-width: none;
  max-height: calc(100vh - 48px);
  margin: auto;
  padding: 0;
  overflow: visible;
  color: var(--paper);
  border: 0;
  background: transparent;
}

.media-viewer::backdrop {
  background: rgba(2, 9, 7, 0.88);
  backdrop-filter: blur(12px);
}

.media-viewer-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-viewer img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 108px);
  object-fit: contain;
  border: 1px solid rgba(156, 247, 198, 0.3);
  border-radius: 14px;
  background: var(--ink-soft);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.48);
}

.media-viewer p {
  margin: 0;
  color: #cbd8d3;
  font-size: 0.82rem;
}

.media-viewer-close {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(7, 20, 17, 0.88);
  cursor: pointer;
  place-items: center;
  backdrop-filter: blur(10px);
}

.media-viewer-close:hover,
.media-viewer-close:focus-visible {
  color: var(--ink);
  background: var(--mint);
}

.media-viewer-close:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

.media-viewer-close span {
  font-size: 1.55rem;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-1px);
}

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

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.roadmap-card {
  display: flex;
  grid-column: span 6;
  flex-direction: column;
  min-height: 330px;
  padding: 28px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(156, 247, 198, 0.055), transparent 64%),
    rgba(10, 28, 23, 0.56);
}

.roadmap-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}

.roadmap-icon {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 30px;
  padding: 0 8px;
  color: var(--mint);
  border: 1px solid rgba(156, 247, 198, 0.28);
  border-radius: 7px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.roadmap-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8ea39b;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.61rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.roadmap-status::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 11px rgba(156, 247, 198, 0.6);
  content: "";
}

.roadmap-card code {
  margin-bottom: 12px;
  color: #71877f;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.67rem;
}

.roadmap-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.roadmap-card > p,
.roadmap-card > div > p {
  margin-bottom: 0;
  color: #91a49d;
  font-size: 0.9rem;
}

.roadmap-card-runtime {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  min-height: 350px;
  border-style: solid;
  border-color: rgba(156, 247, 198, 0.3);
  background:
    radial-gradient(circle at 82% 20%, rgba(156, 247, 198, 0.12), transparent 21rem),
    linear-gradient(135deg, rgba(156, 247, 198, 0.08), transparent 60%),
    rgba(10, 28, 23, 0.74);
}

.runtime-overview {
  min-width: 0;
}

.runtime-boundary {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(156, 247, 198, 0.16);
  border-radius: 10px;
  background: rgba(156, 247, 198, 0.045);
}

.runtime-boundary strong {
  display: block;
  margin-bottom: 5px;
  color: #cfe0d9;
  font-size: 0.72rem;
}

.runtime-install {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.runtime-install > span {
  display: block;
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-tabs {
  display: inline-flex;
  gap: 3px;
  margin-bottom: 10px;
  padding: 3px;
  border: 1px solid rgba(211, 233, 224, 0.14);
  border-radius: 8px;
  background: rgba(4, 14, 12, 0.42);
}

.platform-tab {
  min-height: 30px;
  padding: 4px 10px;
  color: #82958e;
  border: 0;
  border-radius: 5px;
  background: transparent;
  font: inherit;
  font-size: 0.65rem;
  font-weight: 700;
  cursor: pointer;
}

.platform-tab:hover {
  color: var(--paper);
}

.platform-tab[aria-selected="true"] {
  color: var(--ink);
  background: var(--mint);
}

.platform-tab:focus-visible,
.copy-command-button:focus-visible,
.early-access-fields button:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}

.command-list {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.copy-command {
  position: relative;
  min-width: 0;
}

.runtime-install pre {
  max-width: 100%;
  margin: 0;
  overflow-x: auto;
  padding: 16px;
  color: #d8e6e0;
  border: 1px solid rgba(211, 233, 224, 0.14);
  border-radius: 9px;
  background: rgba(4, 14, 12, 0.72);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.69rem;
  line-height: 1.6;
  overflow-wrap: normal;
  white-space: pre-wrap;
}

.runtime-install .copy-command pre {
  padding-right: 60px;
}

.runtime-install pre code {
  color: inherit;
  font: inherit;
}

.copy-command-button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  color: #b8c8c2;
  border: 1px solid rgba(211, 233, 224, 0.2);
  border-radius: 6px;
  background: #102720;
  font: inherit;
  font-size: 0;
  cursor: pointer;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.copy-command-button::before,
.copy-command-button::after {
  position: absolute;
  width: 10px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  background: #102720;
  content: "";
}

.copy-command-button::before {
  top: 7px;
  left: 11px;
}

.copy-command-button::after {
  top: 11px;
  left: 7px;
}

.copy-command-button:hover {
  color: var(--paper);
  border-color: rgba(156, 247, 198, 0.5);
}

.copy-command-button[data-state="copied"] {
  color: var(--ink);
  border-color: var(--mint);
  background: var(--mint);
}

.copy-command-button[data-state="copied"]::before {
  top: 6px;
  left: 11px;
  width: 6px;
  height: 12px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  background: transparent;
  transform: rotate(45deg);
}

.copy-command-button[data-state="copied"]::after {
  display: none;
}

.copy-command-button[data-state="error"] {
  color: var(--orange);
  border-color: rgba(255, 178, 107, 0.55);
}

.runtime-install p {
  margin: 0 0 12px;
  color: #91a49d;
  font-size: 0.78rem;
}

.runtime-install a {
  color: #ccd8d3;
  font-size: 0.74rem;
  font-weight: 700;
}

.runtime-install a:hover {
  color: var(--mint);
}

.runtime-install a b {
  color: var(--mint);
}

.runtime-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.runtime-release {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  border: 1px solid rgba(156, 247, 198, 0.2);
  border-radius: 14px;
  background: rgba(6, 20, 17, 0.42);
}

.runtime-release > span {
  margin-bottom: 20px;
  color: var(--mint);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.runtime-release h4 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.runtime-release p {
  margin: 0 0 24px;
  color: #91a49d;
  font-size: 0.88rem;
}

.early-access-form {
  position: relative;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.early-access-form > label {
  display: block;
  margin-bottom: 8px;
  color: #ccd8d3;
  font-size: 0.7rem;
  font-weight: 700;
}

.early-access-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.early-access-fields input {
  min-width: 0;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--paper);
  border: 1px solid rgba(211, 233, 224, 0.22);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  font-size: 0.78rem;
}

.early-access-fields input::placeholder {
  color: #70847d;
}

.early-access-fields input:focus {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
  border-color: transparent;
}

.early-access-fields button {
  min-height: 44px;
  padding: 9px 14px;
  color: var(--mint);
  border: 1px solid rgba(156, 247, 198, 0.28);
  border-radius: 7px;
  background: rgba(156, 247, 198, 0.06);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.early-access-fields button:hover:not(:disabled) {
  border-color: var(--mint);
  background: rgba(156, 247, 198, 0.1);
}

.early-access-fields button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-privacy,
.form-status {
  display: block;
  margin-top: 10px;
  color: #91a49d;
  font-size: 0.75rem;
  line-height: 1.45;
}

.form-status {
  min-height: 1.45em;
  color: var(--mint);
}

.form-status[data-state="error"] {
  color: var(--orange);
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.roadmap-card-later {
  grid-column: 1 / -1;
  min-height: 0;
  border-style: solid;
  border-color: rgba(103, 216, 233, 0.27);
  background:
    radial-gradient(circle at 82% 20%, rgba(103, 216, 233, 0.12), transparent 21rem),
    linear-gradient(135deg, rgba(103, 216, 233, 0.07), transparent 60%),
    rgba(10, 28, 23, 0.74);
}

.assistant-roadmap-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 40px;
}

.assistant-roadmap-intro h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.assistant-roadmap-intro > p {
  max-width: 620px;
  color: #91a49d;
  font-size: 0.94rem;
}

.assistant-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(103, 216, 233, 0.16);
  border-radius: 14px;
  background: rgba(4, 18, 14, 0.35);
}

.assistant-roadmap-grid section {
  min-width: 0;
  padding: 22px;
}

.assistant-roadmap-grid section + section {
  border-left: 1px solid rgba(103, 216, 233, 0.16);
}

.assistant-roadmap-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--aqua);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.59rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.assistant-roadmap-grid h4 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.assistant-roadmap-grid p {
  color: #8da099;
  font-size: 0.74rem;
}

.assistant-roadmap-grid code {
  color: #a8bbb4;
  font-size: 0.7rem;
}

.roadmap-card-later > .assistant-roadmap-boundary {
  margin-top: 18px;
  color: #71877f;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.62rem;
}

.roadmap-status-later {
  color: var(--aqua);
}

.roadmap-status-later::before {
  background: var(--aqua);
  box-shadow: 0 0 11px rgba(103, 216, 233, 0.62);
}

.closing {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 120px;
  padding: 80px;
  border: 1px solid rgba(156, 247, 198, 0.25);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 25%, rgba(103, 216, 233, 0.13), transparent 18rem),
    linear-gradient(135deg, #13382c, #0b211b);
}

.closing h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
}

.closing-actions {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}

.text-link {
  color: #aebfb8;
  font-size: 0.78rem;
  font-weight: 700;
}

.text-link span {
  margin-left: 8px;
  color: var(--mint);
}

footer {
  display: grid;
  grid-template-columns: 0.6fr 1fr auto;
  gap: 40px;
  align-items: center;
  min-height: 150px;
  color: #778a83;
  border-top: 1px solid var(--line);
  font-size: 0.73rem;
}

footer p {
  margin: 0;
}

footer > div {
  display: flex;
  gap: 22px;
  align-items: center;
}

footer a:not(.brand):hover {
  color: var(--paper);
}

.docs-main {
  padding: 64px 0 120px;
}

.docs-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 820px);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.docs-sidebar {
  position: sticky;
  top: 28px;
  min-width: 0;
  padding-top: 36px;
}

.docs-sidebar-title {
  margin-bottom: 18px;
  color: var(--paper);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.docs-nav {
  display: grid;
  gap: 2px;
  align-items: stretch;
  padding-left: 14px;
  color: #82958e;
  border-left: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 650;
}

.docs-nav a {
  padding: 6px 0;
}

.docs-nav a:hover {
  color: var(--mint);
}

.docs-sidebar-back {
  display: inline-block;
  margin-top: 24px;
  color: #82958e;
  font-size: 0.72rem;
  font-weight: 700;
}

.docs-sidebar-back:hover {
  color: var(--paper);
}

.docs-content {
  min-width: 0;
}

.docs-article-header {
  padding: 36px 0 80px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 24px;
}

.docs-article-header h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 6vw, 5.4rem);
}

.docs-article-header > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: #a8bab3;
  font-size: 1.08rem;
}

.docs-path {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 12px;
  align-items: center;
  margin-top: 36px;
  color: #82958e;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.docs-path b {
  color: var(--mint);
  font-weight: 500;
}

.docs-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 24px;
}

.docs-section:last-child {
  border-bottom: 0;
}

.docs-kicker {
  margin-bottom: 14px;
  color: var(--mint);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.docs-section h2 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.docs-section h3 {
  margin: 42px 0 16px;
  font-size: 1.12rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.docs-section > p:not(.docs-kicker) {
  max-width: 720px;
  color: #9aada6;
}

.docs-content p code,
.docs-content li code {
  padding: 0.12em 0.35em;
  color: #c9d8d2;
  border: 1px solid rgba(211, 233, 224, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.82em;
}

.docs-checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.docs-checklist li {
  padding: 20px;
  color: #8fa29b;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
  font-size: 0.8rem;
}

.docs-checklist strong {
  display: block;
  margin-bottom: 7px;
  color: #d3ddd9;
  font-size: 0.76rem;
}

.docs-callout {
  margin-top: 26px;
  padding: 20px 22px;
  color: #96aaa2;
  border: 1px solid rgba(156, 247, 198, 0.2);
  border-left: 3px solid var(--mint);
  border-radius: 9px;
  background: rgba(156, 247, 198, 0.035);
  font-size: 0.82rem;
}

.docs-runtime-install {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(10, 28, 23, 0.66);
}

.docs-steps {
  display: grid;
  gap: 4px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.docs-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 18px 0;
  color: #8fa29b;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

.docs-steps li > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--mint);
  border: 1px solid rgba(156, 247, 198, 0.25);
  border-radius: 50%;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.65rem;
}

.docs-steps strong {
  display: block;
  margin-bottom: 3px;
  color: #d3ddd9;
}

.docs-steps a {
  color: var(--mint);
  font-weight: 650;
}

.docs-steps a:hover {
  color: var(--mint-bright);
}

.docs-command-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.docs-command {
  min-width: 0;
}

.docs-command > span {
  display: block;
  margin-bottom: 8px;
  color: #82958e;
  font-size: 0.67rem;
  font-weight: 700;
}

.docs-command pre {
  max-width: 100%;
  margin: 0;
  overflow-x: auto;
  padding: 16px;
  color: #d8e6e0;
  border: 1px solid rgba(211, 233, 224, 0.14);
  border-radius: 9px;
  background: rgba(4, 14, 12, 0.72);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.69rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

.docs-command .copy-command pre {
  min-height: 86px;
  padding-right: 60px;
}

.docs-command pre code {
  color: inherit;
  font: inherit;
}

.docs-troubleshooting {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.docs-troubleshooting details {
  border-bottom: 1px solid var(--line);
}

.docs-troubleshooting summary {
  position: relative;
  padding: 20px 36px 20px 0;
  color: #d3ddd9;
  font-size: 0.88rem;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.docs-troubleshooting summary::-webkit-details-marker {
  display: none;
}

.docs-troubleshooting summary::after {
  position: absolute;
  top: 19px;
  right: 4px;
  color: var(--mint);
  content: "+";
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1rem;
}

.docs-troubleshooting details[open] summary::after {
  content: "−";
}

.docs-troubleshooting summary code {
  color: #d3ddd9;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.84em;
  font-weight: 650;
}

.docs-troubleshooting-body {
  padding-bottom: 30px;
}

.docs-troubleshooting p {
  max-width: 680px;
  margin-bottom: 22px;
  color: #91a49d;
  font-size: 0.84rem;
}

.docs-location-list {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.docs-location-list > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(4, 14, 12, 0.5);
}

.docs-location-list span {
  color: #82958e;
  font-size: 0.7rem;
  font-weight: 700;
}

.docs-location-list code {
  overflow-wrap: anywhere;
  color: #d8e6e0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
}

.docs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 100px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .system-map {
    min-height: 600px;
  }

  .value-strip article {
    padding-inline: 24px;
  }

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

  .project-card,
  .project-card-featured,
  .project-card-demo {
    grid-column: span 6;
  }

  .roadmap-card-runtime,
  .roadmap-card-later {
    grid-column: 1 / -1;
  }

  .assistant-roadmap-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .assistant-roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assistant-roadmap-grid section:nth-child(3) {
    border-left: 0;
  }

  .assistant-roadmap-grid section:nth-child(n + 3) {
    border-top: 1px solid rgba(103, 216, 233, 0.16);
  }

  .product-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .product-preview-card,
  .product-preview-card:nth-child(4),
  .product-preview-card:nth-child(5) {
    grid-column: auto;
  }

  .closing {
    grid-template-columns: 1fr;
    padding: 58px;
  }

  .docs-shell {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .docs-sidebar {
    position: static;
    padding: 0 0 24px;
    border-bottom: 1px solid var(--line);
  }

  .docs-sidebar-title {
    margin-bottom: 12px;
  }

  .docs-nav {
    display: flex;
    gap: 18px;
    max-width: 100%;
    overflow-x: auto;
    padding: 0 0 8px;
    border-left: 0;
    white-space: nowrap;
    scrollbar-width: thin;
  }

  .docs-nav a {
    padding: 2px 0;
  }

  .docs-sidebar-back {
    margin-top: 12px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  footer > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .site-header,
  main,
  footer {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .site-header {
    min-height: 78px;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .docs-nav a:not(.nav-cta) {
    display: block;
  }

  .hero {
    gap: 60px;
    padding: 72px 0 58px;
  }

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

  .hero-facts {
    gap: 18px;
    justify-content: space-between;
  }

  .hero-facts span {
    max-width: 86px;
  }

  .value-strip {
    grid-template-columns: 1fr;
  }

  .value-strip article {
    padding: 26px 22px;
  }

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

  .value-strip article > span {
    margin-bottom: 12px;
  }

  .system-map {
    min-height: 600px;
    border-radius: 20px;
  }

  .map-node {
    min-width: 126px;
    padding: 11px;
  }

  .source-a,
  .source-b {
    left: 3%;
  }

  .output-a,
  .output-b {
    right: 3%;
  }

  .map-node-core {
    min-width: 156px;
  }

  .map-lines {
    opacity: 0.7;
  }

  .section {
    padding: 80px 0;
  }

  .docs-main {
    padding: 40px 0 80px;
  }

  .docs-article-header {
    padding: 52px 0 60px;
  }

  .docs-article-header h1 {
    font-size: clamp(2.9rem, 13vw, 4.2rem);
  }

  .docs-section {
    padding: 52px 0;
  }

  .docs-checklist,
  .docs-command-grid {
    grid-template-columns: 1fr;
  }

  .docs-command .copy-command pre {
    min-height: 0;
  }

  .docs-location-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .project-card,
  .project-card-featured,
  .project-card-demo {
    grid-column: 1 / -1;
    min-height: 290px;
    padding: 24px;
  }

  .roadmap-card,
  .roadmap-card-runtime,
  .roadmap-card-later {
    grid-column: 1 / -1;
  }

  .operations-card {
    grid-column: 1 / -1;
    min-height: 280px;
    padding: 24px;
  }

  .operations-topline {
    margin-bottom: 34px;
  }

  .roadmap-card {
    min-height: 290px;
    padding: 24px;
  }

  .product-preview .section-heading {
    margin-bottom: 36px;
  }

  .product-preview-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-preview-card {
    width: min(100%, 520px);
    min-height: 390px;
    padding: 22px;
  }

  .product-preview-card figcaption {
    padding-bottom: 18px;
  }

  .product-preview-image {
    aspect-ratio: 1.5;
  }

  .product-preview-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-preview-open {
    top: 9px;
    right: 9px;
    padding: 6px 9px;
    opacity: 1;
  }

  .media-viewer {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
  }

  .media-viewer img {
    max-height: calc(100vh - 84px);
    border-radius: 10px;
  }

  .roadmap-card-later {
    min-height: 0;
  }

  .roadmap-card-runtime {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .assistant-roadmap-grid {
    grid-template-columns: 1fr;
  }

  .assistant-roadmap-grid section + section,
  .assistant-roadmap-grid section:nth-child(3) {
    border-top: 1px solid rgba(103, 216, 233, 0.16);
    border-left: 0;
  }

  .runtime-release {
    padding: 24px;
  }

  .early-access-fields {
    grid-template-columns: 1fr;
  }

  .closing {
    margin-bottom: 80px;
    padding: 38px 26px;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 42px 0;
  }

  footer > div {
    grid-column: auto;
    flex-wrap: wrap;
  }
}

@media (max-width: 500px) {
  .system-map {
    min-height: 720px;
  }

  .source-a {
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
  }

  .source-b {
    top: 140px;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .map-node-core {
    top: 48%;
  }

  .output-a {
    top: auto;
    right: auto;
    bottom: 220px;
    left: 50%;
    transform: translateX(-50%);
  }

  .output-b {
    right: auto;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
  }

  .map-lines {
    display: none;
  }

  .map-capabilities {
    right: 12px;
    bottom: 14px;
    left: 12px;
  }

  .map-capabilities div {
    padding: 9px 7px;
    text-align: center;
  }

  .map-capabilities strong {
    font-size: 0.54rem;
  }

  .map-capabilities small {
    font-size: 0.5rem;
  }
}

@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;
  }
}
