@font-face {
  font-family: "Archivo";
  src: url("../assets/fonts/archivo-latin-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Space Mono";
  src: url("../assets/fonts/space-mono-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Space Mono";
  src: url("../assets/fonts/space-mono-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --v5-bg: #080807;
  --v5-surface: #0f0f0d;
  --v5-surface-2: #171612;
  --v5-border: rgba(255, 255, 255, 0.075);
  --v5-text: #f4f1e8;
  --v5-muted: #9b968a;
  --v5-gold: #ffca00;
  --v5-gold-soft: #d6c27a;
  --v5-ink: #07090d;
  --v5-content: 1120px;
  --v5-nav-height: 80px;
  --v5-font-display: "Archivo", "Funnel Sans", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --v5-font-body: "Inter", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --v5-font-mono: "Space Mono", "Geist Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--v5-bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--v5-bg);
  color: var(--v5-text);
  font-family: var(--v5-font-body);
  -webkit-font-smoothing: antialiased;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--v5-gold);
  outline-offset: 4px;
}

.mobile-only {
  display: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--v5-nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(64px, calc((100vw - 1312px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(8, 8, 7, 0.66);
  backdrop-filter: blur(18px) saturate(115%);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--v5-text);
  text-decoration: none;
}

.brand-logo-full {
  width: auto;
  height: 44px;
  display: block;
  object-fit: contain;
}

.beta-button {
  min-width: 104px;
  height: 46px;
  border: 0;
  border-radius: 3px;
  background: var(--v5-gold);
  color: var(--v5-ink);
  font: 700 15px var(--v5-font-body);
  cursor: pointer;
  box-shadow: 0 0 0 rgba(255, 202, 0, 0);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.beta-button:hover {
  background: #ffd52d;
  box-shadow: 0 10px 28px rgba(255, 202, 0, 0.2);
  transform: translateY(-2px);
}

.beta-button:active {
  transform: translateY(0);
}

.site-main {
  padding-top: var(--v5-nav-height);
}

.hero {
  position: relative;
  min-height: 560px;
  height: calc(100svh - var(--v5-nav-height));
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #060605 url("../assets/cosmic-hero.png") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: radial-gradient(circle at 50% 52%, transparent 0 25%, rgba(0, 0, 0, 0.18) 60%, rgba(0, 0, 0, 0.58) 100%);
}

.hero-stars {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 0;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(180deg, #08080700 0%, #080807 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 40px));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(clamp(-62px, -6svh, -38px));
}

.date-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 47px;
  margin: 0;
  padding: 8px 20px;
  border: 1px solid rgba(255, 202, 0, 0.35);
  border-radius: 999px;
  background: rgba(10, 10, 8, 0.72);
  color: var(--v5-gold);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.date-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v5-gold);
  box-shadow: 0 0 12px var(--v5-gold);
}

.hero h1 {
  margin: 45px 0 0;
  font-family: var(--v5-font-display);
  font-size: clamp(62px, 6.1vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.065em;
  text-shadow: 0 8px 42px rgba(0, 0, 0, 0.72);
}

.hero-copy {
  margin: 29px 0 0;
  color: var(--v5-muted);
  font-size: 19px;
  line-height: 1.75;
}

.beta-button--hero {
  width: 153px;
  height: 59px;
  margin-top: 30px;
  font-size: 17px;
}

.hero-products {
  display: none;
}

.capabilities {
  min-height: 533px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--v5-border);
  background: linear-gradient(180deg, #080807 0%, #0f0f0d 100%);
}

.section-shell,
.feature-shell {
  width: min(var(--v5-content), calc(100% - 48px));
  margin-inline: auto;
}

.section-kicker {
  margin: 0;
  color: var(--v5-gold);
  font: 700 16px/1.4 var(--v5-font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.capabilities h2,
.feature-copy h2,
.demo-heading h2,
.beta-cta h2 {
  margin: 28px 0 0;
  font-family: var(--v5-font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.045em;
}

.section-lead,
.feature-copy > p:not(.section-kicker) {
  color: var(--v5-muted);
  font-size: 15px;
  line-height: 1.85;
}

.section-lead {
  width: min(740px, 100%);
  margin: 26px 0 0;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.capability-card {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.capability-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.capability-card h3 {
  margin: 0;
  font: 700 17px var(--v5-font-display);
}

.capability-card p {
  margin: 5px 0 0;
  color: var(--v5-muted);
  font-size: 12px;
}

.feature {
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.025);
  background: var(--v5-bg);
}

.site-main > .feature:nth-of-type(even) {
  background: var(--v5-surface);
}

.feature--atlas-demo {
  min-height: 1205px;
  padding: 108px 0 112px;
  align-items: flex-start;
}

.feature-shell--split {
  display: grid;
  grid-template-columns: 470px 570px;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.feature-shell--reverse {
  grid-template-columns: 570px 470px;
}

.feature-copy h2 {
  margin-top: 24px;
}

.feature-copy > p:not(.section-kicker) {
  margin: 24px 0 0;
}

.feature-list {
  display: grid;
  gap: 17px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #cbc7bd;
  font-size: 13px;
  line-height: 1.55;
}

.feature-list li {
  position: relative;
  padding-left: 19px;
}

.feature-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--v5-gold);
  border-radius: 50%;
}

.atlas-architecture,
.orbit-flow-canvas,
.observability-workspace,
.tron-orchestration {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--v5-border);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 202, 0, 0.045), transparent 43%),
    var(--v5-surface);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3);
}

.atlas-architecture {
  width: 570px;
  height: 430px;
  padding: 18px;
}

.diagram-head,
.visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #c2bdaf;
  font: 700 10px var(--v5-font-mono);
  letter-spacing: 0.08em;
}

.diagram-head b,
.visual-header > b {
  padding: 6px 9px;
  border: 1px solid rgba(255, 202, 0, 0.28);
  border-radius: 999px;
  color: var(--v5-gold);
  font-size: 8px;
}

.architecture-body {
  position: relative;
  height: 358px;
  margin-top: 20px;
  padding: 12px 12px 0;
}

.resource-hub {
  position: relative;
  z-index: 2;
  width: 200px;
  height: 55px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 202, 0, 0.48);
  border-radius: 6px;
  background: rgba(255, 202, 0, 0.06);
  color: var(--v5-text);
  font-size: 13px;
}

.mini-icon {
  color: var(--v5-gold);
}

.diagram-rail {
  width: 86%;
  height: 38px;
  margin: 0 auto -1px;
  border: solid rgba(255, 202, 0, 0.18);
  border-width: 0 1px 1px;
  opacity: 0;
}

.architecture-row {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 9px;
}

.architecture-row span {
  display: grid;
  place-items: center;
  min-height: 40px;
  border: 1px solid var(--v5-border);
  border-radius: 4px;
  background: #11110f;
  color: #a6a195;
  font: 600 10px var(--v5-font-body);
}

.architecture-row span.active {
  border-color: rgba(255, 202, 0, 0.36);
  color: var(--v5-gold);
}

.architecture-row--capabilities,
.architecture-row--knowledge {
  grid-template-columns: repeat(5, 1fr);
}

.architecture-row--knowledge {
  margin-top: 9px;
}

.diagram-spine {
  width: 1px;
  height: 30px;
  margin: 0 auto;
  background: linear-gradient(var(--v5-gold), rgba(255, 202, 0, 0.12));
  opacity: 0;
}

.architecture-row--ports {
  grid-template-columns: repeat(4, 1fr);
}

.diagram-caption {
  margin-top: 15px;
  color: #58554d;
  font: 700 8px var(--v5-font-mono);
  text-align: center;
  letter-spacing: 0.18em;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.diagram-icon {
  width: 1em;
  height: 1em;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.atlas-architecture,
.tron-orchestration {
  padding: 0;
  display: block;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.exact-diagram-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 570px;
  height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--v5-surface-2);
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.atlas-exact-stage {
  background:
    radial-gradient(circle at 50% 42%, rgba(43, 37, 19, 0.72), transparent 54%),
    #11110f;
}

.atlas-exact-stage::after {
  position: absolute;
  top: 43px;
  right: 0;
  left: 0;
  z-index: 1;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.06);
}

.atlas-header-icon,
.atlas-diagram-title,
.atlas-layer-count,
.atlas-layer-label,
.atlas-platform-node,
.atlas-category-grid,
.atlas-access-grid,
.atlas-diagram-caption {
  position: absolute;
  z-index: 3;
}

.atlas-header-icon {
  top: 14px;
  left: 18px;
  width: 16px;
  height: 16px;
  color: var(--v5-gold);
}

.atlas-diagram-title {
  top: 13px;
  left: 44px;
  color: var(--v5-text);
  font: 600 10px/13px var(--v5-font-mono);
  letter-spacing: 0.08em;
}

.atlas-layer-count {
  top: 10px;
  left: 478px;
  width: 74px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 202, 0, 0.25);
  border-radius: 12px;
  background: rgba(255, 202, 0, 0.06);
  color: var(--v5-gold);
  font: 700 8px var(--v5-font-mono);
}

.atlas-layer-label {
  left: 18px;
  color: var(--v5-muted);
  font: 600 8px/10px var(--v5-font-mono);
  letter-spacing: 0.06em;
}

.atlas-layer-label--platform { top: 61px; }
.atlas-layer-label--categories { top: 124px; }
.atlas-layer-label--access { top: 319px; }

.atlas-static-links,
.tron-static-links {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.atlas-static-links path {
  fill: none;
  stroke: rgba(255, 202, 0, 0.29);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.atlas-platform-node {
  top: 58px;
  left: 142px;
  width: 286px;
  height: 58px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 202, 0, 0.5);
  border-radius: 8px;
  background: linear-gradient(90deg, #322a0e, #1b1911);
}

.atlas-platform-icon {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 202, 0, 0.1);
  color: var(--v5-gold);
}

.atlas-platform-icon .diagram-icon {
  width: 18px;
  height: 18px;
}

.atlas-platform-node > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.atlas-platform-node strong {
  color: var(--v5-text);
  font: 700 15px var(--v5-font-body);
}

.atlas-platform-node small {
  color: #c9b95e;
  font: 600 7px var(--v5-font-mono);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.atlas-category-grid {
  top: 154px;
  left: 24px;
  width: 522px;
  display: grid;
  grid-template-columns: repeat(5, 98px);
  grid-auto-rows: 52px;
  gap: 10px 8px;
}

.atlas-category-grid article,
.atlas-category-grid > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  background: #181816;
  color: #d8d3c8;
}

.atlas-category-grid > a {
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.atlas-category-grid > a:hover {
  border-color: rgba(255, 202, 0, 0.32);
  background: #1d1a10;
  color: var(--v5-gold);
}

.atlas-category-grid .diagram-icon {
  width: 15px;
  height: 15px;
}

.atlas-category-grid span {
  color: var(--v5-text);
  font: 600 10px var(--v5-font-body);
  white-space: nowrap;
}

.atlas-category-grid > :nth-child(4) span {
  font-size: 9px;
}

.atlas-category-grid article.is-accent {
  border-color: rgba(255, 202, 0, 0.25);
  background: #1b190e;
  color: var(--v5-gold);
}

.atlas-category-grid article.is-accent span {
  color: #f0d85d;
}

.atlas-access-grid {
  top: 344px;
  left: 51px;
  width: 468px;
  display: grid;
  grid-template-columns: repeat(4, 108px);
  gap: 12px;
}

.atlas-access-grid article {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(14, 14, 13, 0.8);
  color: #a9a59a;
}

.atlas-access-grid .diagram-icon {
  width: 15px;
  height: 15px;
}

.atlas-access-grid strong {
  color: var(--v5-text);
  font: 700 10px var(--v5-font-mono);
}

.atlas-diagram-caption {
  top: 405px;
  left: 50%;
  color: #706c61;
  font: 600 7px/9px var(--v5-font-mono);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.demo-heading {
  width: 760px;
}

.demo-heading h2 {
  margin-top: 30px;
}

.demo-heading > p:last-child {
  margin: 22px 0 0;
  color: var(--v5-muted);
  font-size: 15px;
  line-height: 1.8;
}

.atlas-demo-host {
  position: relative;
  width: 1120px;
  height: 672px;
  margin-top: 42px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.atlas-demo-page.page {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.atlas-demo-host .stage-wrap {
  flex: none;
}

.interactive-demo-badge {
  position: absolute;
  right: 32px;
  bottom: 22px;
  z-index: 4;
  width: 262px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 202, 0, 0.44);
  border-radius: 21px;
  background: rgba(17, 17, 14, 0.95);
  box-shadow: 0 8px 20px rgba(255, 202, 0, 0.19);
  pointer-events: none;
}

.interactive-demo-badge__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--v5-gold);
  box-shadow: 0 0 10px rgba(255, 202, 0, 0.56);
}

.interactive-demo-badge__label {
  color: var(--v5-text);
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1px;
  white-space: nowrap;
}

.interactive-demo-badge__icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  fill: none;
  stroke: var(--v5-gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-demo-notes {
  display: none;
}

.orbit-flow-canvas,
.observability-workspace {
  width: 570px;
  height: 430px;
}

.orbit-flow-canvas {
  padding: 20px;
}

.visual-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.visual-title img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.visual-title span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.visual-title small {
  color: #6f6a60;
  font-size: 8px;
  letter-spacing: 0;
}

.flow-pipeline {
  display: grid;
  grid-template-columns: 106px 22px 106px 22px 106px 22px 106px;
  height: 136px;
  margin: 34px 18px 0;
}

.flow-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 11px;
  border: 1px solid var(--v5-border);
  background: #11110f;
  color: #777268;
  transition: border-color 300ms ease, background 300ms ease, color 300ms ease, box-shadow 300ms ease;
}

.flow-node small {
  font: 700 8px var(--v5-font-mono);
}

.flow-icon {
  margin-top: 9px;
  color: currentColor;
  font-size: 20px;
  font-style: normal;
}

.flow-node strong {
  margin-top: 8px;
  color: #c9c4b8;
  font: 700 10px var(--v5-font-mono);
}

.flow-node em {
  margin-top: 7px;
  color: #777268;
  font-size: 10px;
  font-style: normal;
}

.flow-node.is-done {
  border-color: rgba(255, 202, 0, 0.18);
}

.flow-node.is-active,
.flow-result.is-active {
  border-color: rgba(255, 202, 0, 0.72);
  background: rgba(255, 202, 0, 0.075);
  color: var(--v5-gold);
  box-shadow: 0 0 25px rgba(255, 202, 0, 0.08) inset;
}

.flow-node.is-active strong {
  color: var(--v5-gold);
}

.flow-connector {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #4a473f;
}

.flow-connector::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translateY(-50%);
}

.flow-connector i {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  display: grid;
  place-items: center;
  color: currentColor;
  font-size: 0;
  opacity: 0;
}

.flow-connector i::before {
  width: 5px;
  height: 5px;
  border: solid currentColor;
  border-width: 0 1.5px 1.5px 0;
  content: "";
  transform: rotate(-45deg);
}

.flow-connector.is-active {
  color: var(--v5-gold);
}

.flow-connector.is-active i {
  animation: flow-arrow 520ms ease-in-out both;
}

@keyframes flow-arrow {
  from { transform: translateX(-12px); opacity: 0; }
  35% { opacity: 1; }
  to { transform: translateX(12px); opacity: 0; }
}

.flow-connector--result {
  width: 22px;
  height: 18px;
  margin: 0 0 0 444px;
}

.flow-connector--result::before {
  top: 0;
  right: auto;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: auto;
  transform: translateX(-50%);
}

.flow-connector--result.is-active i {
  animation-name: flow-arrow-down;
}

.flow-connector--result i::before {
  transform: rotate(45deg);
}

@keyframes flow-arrow-down {
  from { transform: translateY(-9px); opacity: 0; }
  35% { opacity: 1; }
  to { transform: translateY(9px); opacity: 0; }
}

.flow-result {
  height: 64px;
  margin: 0 18px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--v5-border);
  background: #11110f;
  transition: border-color 300ms ease, background 300ms ease;
}

.flow-result .flow-icon {
  margin: 0;
  font-size: 18px;
}

.flow-result div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.flow-result strong {
  font: 700 11px var(--v5-font-mono);
}

.flow-result small {
  color: #777268;
  font-size: 9px;
}

.flow-result > b {
  color: #777268;
  font: 700 8px var(--v5-font-mono);
}

.flow-validation {
  margin: 16px 0 0;
  padding: 14px;
  border: 1px solid var(--v5-border);
  background: #0c0c0b;
  color: #777268;
  font: 600 9px var(--v5-font-mono);
}

.observability-workspace .visual-header {
  height: 56px;
  padding: 0 18px;
  border-bottom: 1px solid var(--v5-border);
}

.eye-icon {
  color: var(--v5-gold);
  font-size: 17px;
}

.observability-body {
  height: 374px;
  padding: 16px;
  display: grid;
  grid-template-columns: 148px 110px 258px;
  gap: 10px;
}

.trace-panel,
.variables-panel,
.logs-panel,
.runtime-preview {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--v5-border);
  background: #10100e;
}

.trace-panel header,
.variables-panel header,
.logs-panel header {
  height: 32px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--v5-border);
  color: #7f7a70;
  font: 700 8px var(--v5-font-mono);
}

.trace-panel article {
  position: relative;
  height: 77.5px;
  padding: 10px 13px;
  border-bottom: 1px solid var(--v5-border);
  color: #777268;
  transition: background 280ms ease, color 280ms ease;
}

.trace-panel article:last-child {
  border-bottom: 0;
}

.trace-panel article small,
.logs-panel p small {
  display: flex;
  justify-content: space-between;
  color: #5e5a51;
  font: 700 7px var(--v5-font-mono);
}

.trace-panel article small b {
  color: #777268;
}

.trace-panel article strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 10px;
  font-weight: 600;
}

.trace-panel article i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.025);
}

.trace-panel article.is-done {
  color: #8b867b;
}

.trace-panel article.is-done small b {
  color: #918d82;
}

.trace-panel article.is-active {
  color: var(--v5-gold);
  background: rgba(255, 202, 0, 0.055);
}

.trace-panel article.is-active small b {
  color: var(--v5-gold);
}

.data-stack {
  display: grid;
  grid-template-rows: 166px 166px;
  gap: 10px;
}

.variables-panel p,
.logs-panel p {
  height: 44.3px;
  margin: 0;
  padding: 7px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--v5-border);
}

.variables-panel p:last-child,
.logs-panel p:last-child {
  border-bottom: 0;
}

.variables-panel p span {
  color: #666258;
  font: 700 7px var(--v5-font-mono);
}

.variables-panel p strong {
  margin-top: 3px;
  color: #d0cbbf;
  font: 700 9px var(--v5-font-mono);
}

.logs-panel p small b {
  color: var(--v5-gold);
}

.logs-panel p span {
  margin-top: 4px;
  color: #777268;
  font-size: 7px;
  white-space: nowrap;
}

.runtime-preview {
  padding: 14px;
}

.runtime-preview > header {
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--v5-border);
  color: #878277;
  font: 700 7px var(--v5-font-mono);
}

.runtime-preview > header span {
  color: var(--v5-gold);
}

.runtime-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.runtime-metrics p {
  height: 60px;
  margin: 0;
  padding: 10px 8px;
  border: 1px solid var(--v5-border);
  background: #0c0c0b;
}

.runtime-metrics span {
  display: block;
  color: #69655c;
  font-size: 7px;
}

.runtime-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--v5-gold);
  font: 700 8px var(--v5-font-mono);
}

.runtime-waveform {
  height: 130px;
  margin-top: 12px;
  padding: 9px;
  border: 1px solid var(--v5-border);
  background: #090908;
}

.runtime-waveform > span {
  color: #625e55;
  font: 700 7px var(--v5-font-mono);
}

.runtime-waveform svg {
  width: 100%;
  height: 92px;
  margin-top: 3px;
}

.wave-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.045);
  stroke-width: 1;
}

.wave-signal {
  fill: none;
  stroke: var(--v5-gold);
  stroke-width: 2.5;
  filter: drop-shadow(0 0 4px rgba(255, 202, 0, 0.42));
  stroke-linecap: round;
  transition: d 450ms ease;
}

.runtime-link {
  height: 50px;
  margin: 12px 0 0;
  padding: 0 11px;
  display: flex;
  align-items: center;
  border: 1px solid var(--v5-border);
  color: #817c71;
  font: 700 7px var(--v5-font-mono);
}

.nexus-visual {
  width: 570px;
  height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.nexus-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tron-orchestration {
  width: 570px;
  height: 430px;
  padding: 18px;
}

.tron-core {
  position: relative;
  z-index: 2;
  width: 260px;
  height: 92px;
  margin: 44px auto 0;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 202, 0, 0.5);
  border-radius: 8px;
  background: rgba(255, 202, 0, 0.055);
  box-shadow: 0 0 28px rgba(255, 202, 0, 0.075);
}

.tron-core img,
.tron-tools img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.tron-core div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tron-core strong {
  color: var(--v5-gold);
  font: 700 15px var(--v5-font-display);
}

.tron-core span {
  color: #858075;
  font-size: 9px;
}

.tron-rail {
  width: 68%;
  height: 36px;
  margin: 0 auto;
  border: solid rgba(255, 202, 0, 0.32);
  border-width: 0 1px 1px;
  opacity: 0;
}

.tron-tools {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tron-tools article {
  height: 100px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--v5-border);
  border-radius: 6px;
  background: #10100e;
}

.tron-tools img {
  width: 24px;
  height: 24px;
}

.tron-tools b {
  margin-top: 8px;
  color: #c4bfb4;
  font: 700 10px var(--v5-font-mono);
}

.tron-tools small {
  margin-top: 5px;
  color: #656158;
  font-size: 7px;
}

.tron-orchestration > p {
  position: relative;
  z-index: 2;
  width: max-content;
  margin: 15px auto 0;
  padding: 6px 16px;
  border: 1px solid rgba(255, 202, 0, 0.22);
  border-radius: 999px;
  color: var(--v5-gold);
  font: 700 8px var(--v5-font-mono);
}

.tron-orchestration {
  padding: 0;
  display: block;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.tron-exact-stage {
  background:
    radial-gradient(circle at 51% 42%, rgba(51, 42, 13, 0.24), transparent 48%),
    var(--v5-surface-2);
}

.tron-diagram-title,
.tron-diagram-status,
.tron-intent-node,
.tron-core-panel,
.tron-capability-lanes > article,
.tron-measurement-node {
  position: absolute;
  z-index: 3;
}

.tron-diagram-title {
  top: 18px;
  left: 22px;
  color: var(--v5-text);
  font: 700 10px/13px var(--v5-font-mono);
  letter-spacing: 0.07em;
}

.tron-diagram-status {
  top: 18px;
  left: 462px;
  color: var(--v5-gold);
  font: 700 9px/12px var(--v5-font-mono);
}

.tron-static-links path {
  fill: none;
  stroke: #5f594a;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.tron-static-links .tron-static-links--primary {
  stroke: rgba(255, 202, 0, 0.4);
}

.tron-intent-node {
  top: 88px;
  left: 22px;
  width: 130px;
  height: 78px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
}

.tron-intent-node strong,
.tron-intent-node span {
  display: block;
}

.tron-intent-node strong {
  color: var(--v5-text);
  font: 700 13px/19px var(--v5-font-body);
}

.tron-intent-node span {
  margin-top: 6px;
  color: var(--v5-muted);
  font: 400 10px/14px var(--v5-font-body);
}

.tron-core-panel {
  top: 55px;
  left: 180px;
  width: 220px;
  height: 243px;
  border: 1px solid rgba(255, 202, 0, 0.4);
  border-radius: 8px;
  background: linear-gradient(180deg, #1d1909, #11100d);
}

.tron-core-panel > header {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 190px;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tron-core-panel > header img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 7px;
}

.tron-core-panel > header span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tron-core-panel > header strong {
  color: var(--v5-gold);
  font: 700 16px/21px var(--v5-font-display);
}

.tron-core-panel > header small {
  color: var(--v5-text);
  font: 400 10px/14px var(--v5-font-body);
}

.tron-core-divider {
  position: absolute;
  top: 62px;
  left: 15px;
  width: 190px;
  height: 1px;
  background: rgba(255, 202, 0, 0.14);
}

.tron-core-panel > article {
  position: absolute;
  left: 15px;
  width: 190px;
  height: 43px;
  display: grid;
  grid-template-columns: 21px 1fr;
  align-items: center;
}

.tron-core-panel > article:nth-of-type(1) { top: 72px; }
.tron-core-panel > article:nth-of-type(2) { top: 124px; }
.tron-core-panel > article:nth-of-type(3) { top: 176px; }

.tron-core-panel > article b {
  color: var(--v5-gold);
  font: 700 9px var(--v5-font-mono);
}

.tron-core-panel > article span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tron-core-panel > article strong {
  color: var(--v5-text);
  font: 600 12px/17px var(--v5-font-body);
}

.tron-core-panel > article small {
  color: var(--v5-muted);
  font: 400 9px/13px var(--v5-font-body);
}

.tron-capability-lanes {
  display: contents;
}

.tron-capability-lanes > article {
  left: 425px;
  width: 125px;
  height: 72px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.016);
}

.tron-capability-lanes > article:nth-child(1) { top: 56px; }
.tron-capability-lanes > article:nth-child(2) { top: 142px; }
.tron-capability-lanes > article:nth-child(3) { top: 228px; }

.tron-capability-lanes header {
  height: 34px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.tron-capability-lanes header strong {
  color: var(--v5-text);
  font: 700 11px/14px var(--v5-font-mono);
}

.tron-capability-lanes header i {
  height: 1px;
  margin-bottom: 6px;
  flex: 1;
  background: #5f594a;
}

.tron-capability-lanes header b {
  margin-bottom: 2px;
  color: #8f897b;
  font: 600 7px/9px var(--v5-font-mono);
}

.tron-capability-lanes article > span {
  display: block;
  margin-top: 6px;
  color: var(--v5-muted);
  font: 400 9px/12px var(--v5-font-body);
  white-space: nowrap;
}

.tron-measurement-node {
  top: 325px;
  left: 180px;
  width: 220px;
  height: 70px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 202, 0, 0.22);
  border-radius: 6px;
  background: rgba(255, 202, 0, 0.035);
}

.tron-measurement-node .diagram-icon {
  width: 19px;
  height: 19px;
  color: var(--v5-gold);
}

.tron-measurement-node span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tron-measurement-node strong {
  color: var(--v5-text);
  font: 700 14px/20px var(--v5-font-body);
}

.tron-measurement-node small {
  color: var(--v5-muted);
  font: 400 9px/13px var(--v5-font-body);
}

.beta-cta {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #060605 url("../assets/cosmic-footer.png") center / cover no-repeat;
}

.beta-cta::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.2);
}

.beta-cta-content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 40px));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.beta-cta h2 {
  margin-top: 27px;
}

.beta-cta-content > p:not(.section-kicker) {
  width: min(670px, 100%);
  margin: 24px 0 0;
  color: var(--v5-muted);
  font-size: 14px;
  line-height: 1.8;
}

.beta-button--large {
  width: 164px;
  height: 54px;
  margin-top: 28px;
  font-size: 16px;
}

.beta-cta-content > small {
  position: absolute;
  right: -210px;
  bottom: -106px;
  color: #5f5b53;
  font-size: 14px;
  white-space: nowrap;
}

.site-footer {
  min-height: 190px;
  padding: 38px max(64px, calc((100vw - 1312px) / 2));
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #050504;
}

.footer-brand .brand-logo-full {
  height: 28px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  color: #5e5a52;
  font: 400 12px var(--v5-font-mono);
}

.footer-meta a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-meta a:hover {
  color: var(--v5-gold);
}

.beta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.beta-actions .beta-button--large {
  margin-top: 0;
}

.beta-contact {
  width: 164px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid var(--v5-gold);
  border-radius: 3px;
  color: var(--v5-gold);
  font: 700 16px var(--v5-font-body);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.beta-contact:hover {
  background: rgba(255, 202, 0, 0.1);
  color: #ffd52d;
  transform: translateY(-2px);
}

.beta-modal[hidden] {
  display: none;
}

.beta-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: 36px 48px;
  display: grid;
  place-items: center;
  background: rgba(3, 3, 3, 0.76);
  backdrop-filter: blur(10px);
}

.beta-modal__dialog {
  position: relative;
  width: min(920px, calc(100vw - 96px));
  height: min(780px, calc(100svh - 72px));
  overflow: hidden;
  border: 1px solid rgba(255, 202, 0, 0.34);
  border-radius: 12px;
  background: #fff;
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.72),
    0 0 42px rgba(255, 202, 0, 0.1);
}

.beta-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(7, 9, 13, 0.82);
  color: #fff;
  font: 300 28px/1 Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.beta-modal__close span {
  transform: translateY(-1px);
}

.beta-modal__close:hover {
  border-color: rgba(255, 202, 0, 0.72);
  background: rgba(255, 202, 0, 0.94);
  color: var(--v5-ink);
  transform: rotate(6deg) scale(1.04);
}

.beta-modal__close:active {
  transform: scale(0.96);
}

.beta-modal__dialog:focus {
  outline: none;
}

.beta-modal iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #fff;
}

body.has-beta-modal {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .feature-shell--split,
  .feature-shell--reverse {
    grid-template-columns: minmax(350px, 0.85fr) minmax(500px, 1fr);
    gap: 48px;
  }

  .atlas-architecture,
  .orbit-flow-canvas,
  .observability-workspace,
  .nexus-visual,
  .tron-orchestration {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .beta-modal {
    padding: 16px;
  }

  .beta-modal__dialog {
    width: 100%;
    height: calc(100svh - 32px);
    border-radius: 9px;
    box-shadow:
      0 20px 52px rgba(0, 0, 0, 0.76),
      0 0 28px rgba(255, 202, 0, 0.08);
  }

  .beta-modal__close {
    top: 10px;
    right: 10px;
  }

  :root {
    --v5-nav-height: 64px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: initial;
  }

  .site-header {
    padding: 0 20px;
    background: rgba(7, 7, 6, 0.78);
  }

  .brand {
    gap: 8px;
  }

  .brand-logo-full {
    height: 32px;
  }

  .beta-button--header {
    min-width: 95px;
    height: 38px;
    font-size: 14px;
  }

  .hero {
    height: calc(100svh - var(--v5-nav-height));
    min-height: min(600px, calc(100svh - var(--v5-nav-height)));
    place-items: center start;
    background:
      radial-gradient(circle at 54% 71%, rgba(255, 202, 0, 0.16), transparent 25%),
      radial-gradient(circle at 4% 8%, rgba(255, 255, 255, 0.04), transparent 22%),
      #070706;
  }

  .hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    opacity: 0.62;
    background-image:
      radial-gradient(circle, rgba(255, 202, 0, 0.78) 0 1px, transparent 1.5px),
      radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 0.8px, transparent 1.2px);
    background-position: 25px 92px, 84px 144px;
    background-size: 107px 133px, 149px 177px;
  }

  .hero::after {
    background: linear-gradient(180deg, transparent 0 68%, rgba(0, 0, 0, 0.46) 100%);
  }

  .hero-content {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    transform: none;
  }

  .date-pill {
    min-height: 38px;
    padding: 7px 13px;
    gap: 8px;
    font-size: 13px;
  }

  .date-pill span {
    width: 5px;
    height: 5px;
  }

  .hero h1 {
    margin-top: clamp(56px, 9svh, 84px);
    font-size: clamp(38px, 10.8vw, 46px);
    line-height: 1.1;
    letter-spacing: -0.055em;
  }

  .hero-copy {
    margin-top: clamp(34px, 5.5svh, 50px);
    font-size: 15px;
    line-height: 1.8;
  }

  .beta-button--hero {
    width: 132px;
    height: 49px;
    margin-top: clamp(32px, 4.8svh, 46px);
    font-size: 15px;
  }

  .hero-products {
    position: absolute;
    bottom: max(24px, env(safe-area-inset-bottom));
    left: 20px;
    display: block;
    margin: 0;
    color: #777267;
    font: 700 7px var(--v5-font-mono);
    letter-spacing: 0.09em;
  }

  .section-shell,
  .feature-shell {
    width: calc(100% - 40px);
  }

  .capabilities {
    min-height: auto;
    align-items: flex-start;
    padding: 72px 0;
  }

  .section-kicker {
    font-size: 10px;
  }

  .capabilities h2,
  .feature-copy h2,
  .demo-heading h2,
  .beta-cta h2 {
    margin-top: 21px;
    font-size: 32px;
    line-height: 1.12;
  }

  .section-lead {
    margin-top: 23px;
    font-size: 14px;
    line-height: 1.8;
  }

  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 39px;
  }

  .capability-card {
    min-height: 95px;
    padding: 14px 12px;
    align-items: flex-start;
    gap: 9px;
    border: 1px solid var(--v5-border);
    border-radius: 6px;
    background: #0d0d0c;
  }

  .capability-card img {
    width: 28px;
    height: 28px;
  }

  .capability-card h3 {
    font-size: 14px;
  }

  .capability-card p {
    margin-top: 4px;
    font-size: 10px;
  }

  .feature {
    min-height: auto;
    height: auto;
    padding: 56px 0 60px;
    align-items: flex-start;
  }

  .feature--atlas,
  .feature--atlas-demo,
  .feature--flow,
  .feature--observability,
  .feature--nexus,
  .feature--tron {
    height: auto;
    min-height: auto;
  }

  .feature-shell--split,
  .feature-shell--reverse {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .feature-shell--reverse .feature-copy {
    order: -1;
  }

  .feature-copy {
    width: 100%;
  }

  .feature-copy h2 {
    margin-top: 21px;
  }

  .feature-copy > p:not(.section-kicker) {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.85;
  }

  .feature-list {
    gap: 14px;
    margin-top: 22px;
    font-size: 12px;
  }

  .atlas-architecture,
  .orbit-flow-canvas,
  .observability-workspace,
  .nexus-visual,
  .tron-orchestration {
    width: 100%;
    max-width: 570px;
    margin-inline: auto;
  }

  .atlas-architecture {
    height: 330px;
    padding: 0;
  }

  .architecture-body {
    height: 270px;
    margin-top: 10px;
    padding: 5px 5px 0;
  }

  .resource-hub {
    width: 178px;
    height: 42px;
  }

  .diagram-rail {
    height: 26px;
  }

  .architecture-row {
    gap: 6px;
  }

  .architecture-row span {
    min-height: 30px;
    font-size: 8px;
  }

  .architecture-row--knowledge {
    margin-top: 6px;
  }

  .diagram-spine {
    height: 20px;
  }

  .diagram-caption {
    margin-top: 10px;
  }

  .demo-heading {
    width: 100%;
  }

  .demo-heading h2 {
    margin-top: 21px;
  }

  .demo-heading > p:last-child {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.85;
  }

  .atlas-demo-host {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 3;
    margin-top: 40px;
  }

  .mobile-demo-notes {
    display: grid;
    gap: 10px;
    margin-top: 12px;
  }

  .mobile-demo-notes article {
    min-height: 58px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 202, 0, 0.18);
    border-radius: 5px;
    background: #0d0d0c;
  }

  .mobile-demo-notes b {
    color: #d9d4c8;
    font-size: 10px;
  }

  .mobile-demo-notes b::before {
    margin-right: 8px;
    content: "✦";
    color: var(--v5-gold);
  }

  .orbit-flow-canvas {
    order: 2;
    height: 310px;
    padding: 14px;
  }

  .flow-pipeline {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, auto);
    height: 206px;
    margin: 14px 0 0;
  }

  .flow-node {
    height: 42px;
    padding: 0 12px;
    display: grid;
    grid-template-columns: 24px 22px 1fr auto;
    align-items: center;
  }

  .flow-node .flow-icon {
    margin: 0;
    font-size: 15px;
  }

  .flow-node strong,
  .flow-node em {
    margin: 0;
  }

  .flow-node em {
    font-size: 8px;
  }

  .flow-connector {
    height: 10px;
  }

  .flow-connector::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: auto;
    transform: translateX(-50%);
  }

  .flow-connector i {
    display: none;
  }

  .flow-result,
  .flow-connector--result {
    display: none;
  }

  .flow-validation {
    height: 24px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
  }

  .observability-workspace {
    height: 340px;
  }

  .observability-body {
    height: 284px;
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: 172px 88px;
    gap: 8px;
    padding: 8px;
  }

  .trace-panel {
    grid-row: 1;
    grid-column: 1;
  }

  .trace-panel article {
    height: 34.75px;
    padding: 4px 7px;
  }

  .trace-panel article strong {
    margin-top: 3px;
    font-size: 8px;
  }

  .data-stack {
    grid-row: 1;
    grid-column: 2;
    grid-template-rows: 82px 82px;
    gap: 8px;
  }

  .variables-panel,
  .logs-panel {
    display: grid;
    grid-template-rows: 26px repeat(3, minmax(0, 1fr));
  }

  .variables-panel header,
  .logs-panel header {
    height: 26px;
    padding-inline: 6px;
  }

  .variables-panel p,
  .logs-panel p {
    height: auto;
    min-height: 0;
    padding: 1px 5px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .variables-panel p strong {
    margin-top: 0;
    font-size: 7px;
  }

  .logs-panel p small {
    flex: 0 0 auto;
    justify-content: flex-start;
    gap: 4px;
    white-space: nowrap;
  }

  .logs-panel p span {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    font-size: 6px;
    text-overflow: ellipsis;
  }

  .runtime-preview {
    grid-row: 2;
    grid-column: 1 / -1;
    padding: 6px;
  }

  .runtime-preview > header,
  .runtime-waveform,
  .runtime-link {
    display: none;
  }

  .runtime-metrics {
    height: 74px;
    margin: 0;
  }

  .runtime-metrics p {
    height: 74px;
    padding: 12px 8px;
  }

  .runtime-metrics span {
    font-size: 8px;
  }

  .runtime-metrics strong {
    margin-top: 11px;
    font-size: 11px;
  }

  .nexus-visual {
    order: 2;
    height: auto;
    aspect-ratio: 350 / 230;
  }

  .tron-orchestration {
    height: 310px;
    padding: 0;
  }

  .tron-core {
    width: 62%;
    height: 66px;
    margin-top: 22px;
    padding: 10px 14px;
  }

  .tron-rail {
    height: 26px;
  }

  .tron-tools {
    gap: 8px;
  }

  .tron-tools article {
    height: 76px;
  }

  .beta-cta {
    min-height: 560px;
    background:
      radial-gradient(circle at 50% 34%, rgba(255, 202, 0, 0.055), transparent 25%),
      #060605;
  }

  .beta-cta-content {
    width: calc(100% - 40px);
  }

  .beta-cta h2 {
    margin-top: 31px;
    font-size: 34px;
    line-height: 1.15;
  }

  .beta-cta-content > p:not(.section-kicker) {
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.85;
  }

  .beta-button--large {
    width: 150px;
    height: 54px;
  }

  .beta-actions {
    margin-top: 29px;
    gap: 10px;
  }

  .beta-contact {
    width: 150px;
    height: 54px;
  }

  .beta-cta-content > small {
    position: static;
    margin-top: 38px;
    color: #5f5b53;
    font-size: 14px;
    white-space: normal;
  }

  .site-footer {
    height: 180px;
    min-height: 180px;
    padding: 22px 20px;
    flex-direction: column;
    gap: 18px;
  }

  .footer-brand .brand-logo-full {
    height: 32px;
  }

  .footer-meta {
    width: 100%;
    padding-top: 22px;
    align-items: flex-start;
    gap: 12px;
    border-top: 1px solid var(--v5-border);
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .capabilities h2,
  .feature-copy h2,
  .demo-heading h2,
  .beta-cta h2 {
    font-size: 29px;
  }

  .capability-card {
    padding-inline: 9px;
  }

  .capability-card img {
    width: 24px;
    height: 24px;
  }

  .architecture-row span {
    font-size: 7px;
  }
}

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