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

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

:root {
  --bg: #0d0c12;
  --bg-raised: #13111b;
  --bg-soft: #191622;
  --surface: #1e1a29;
  --surface-2: #262133;
  --paper: #f1eee7;
  --paper-2: #e8e3d9;
  --ink: #121016;
  --white: #f8f6f1;
  --text: #d7d2dc;
  --text-soft: #aaa4b2;
  --muted: #7f788a;
  --line: rgba(255, 255, 255, 0.11);
  --line-bright: rgba(255, 255, 255, 0.2);
  --line-dark: rgba(18, 16, 22, 0.14);
  --violet: #746bff;
  --violet-deep: #554ce0;
  --violet-soft: #aaa4ff;
  --lavender: #c9c5ff;
  --green: #76e69a;
  --amber: #f0c66c;
  --red: #ff7770;
  --blue: #78c9ff;
  --radius: 0.9rem;
  --radius-sm: 0.45rem;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: 82rem;
  --copy: 42rem;
  --gut: clamp(1.2rem, 4vw, 3rem);
  --nav-h: 4.5rem;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1.5rem);
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--violet);
  color: white;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

a {
  color: inherit;
}

p,
ul,
ol,
dl,
figure {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--white);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 8vw, 7.4rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 5rem);
}

h3 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-200%);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  padding: 0.65rem 0.9rem;
  font-family: var(--mono);
  font-size: 0.76rem;
  text-decoration: none;
  transition: transform 180ms var(--ease);
}

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

#main-content {
  position: absolute;
  pointer-events: none;
}

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gut);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--violet-soft);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.status-dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0.25rem rgba(118, 230, 154, 0.12);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 220ms var(--ease),
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

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

.btn-primary {
  background: var(--violet);
  color: white;
}

.btn-primary:hover {
  background: #867eff;
}

.btn-secondary {
  border-color: var(--line-bright);
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.07);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-light:hover {
  background: white;
}

.btn-on-dark {
  border-color: rgba(255, 255, 255, 0.32);
  color: white;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
  color: var(--violet-deep);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link span,
.pillar-card > a span,
.usecase-list a span,
.hub-card-link i {
  transition: transform 200ms var(--ease);
}

.text-link:hover span,
.pillar-card > a:hover span,
.usecase-list a:hover span,
.hub-card:hover .hub-card-link i {
  transform: translateX(0.3rem);
}

/* Navigation */

.site-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(13, 12, 18, 0.88), rgba(13, 12, 18, 0));
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    backdrop-filter 240ms ease;
}

.site-nav.is-scrolled,
.site-nav.menu-open {
  border-color: var(--line);
  background: rgba(13, 12, 18, 0.86);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav-inner {
  display: flex;
  height: var(--nav-h);
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  background: rgba(116, 107, 255, 0.1);
}

.brand-mark img {
  width: 1.15rem;
  height: 1.15rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 1.8rem);
  margin-inline: auto;
}

.desktop-nav a {
  position: relative;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--violet-soft);
  content: "";
  transition: transform 200ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  min-height: 2.55rem;
  flex: none;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(170, 164, 255, 0.42);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  background: rgba(116, 107, 255, 0.1);
  color: var(--lavender);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.nav-cta:hover {
  border-color: var(--violet-soft);
  background: rgba(116, 107, 255, 0.2);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 2.75rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
}

.nav-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.nav-toggle i {
  position: absolute;
  width: 1rem;
  height: 1px;
  background: currentColor;
  transition: transform 220ms var(--ease);
}

.nav-toggle i:first-of-type {
  transform: translateY(-0.22rem);
}

.nav-toggle i:last-of-type {
  transform: translateY(0.22rem);
}

.nav-toggle[aria-expanded="true"] i:first-of-type {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] i:last-of-type {
  transform: rotate(-45deg);
}

.nav-drawer {
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  border-top: 1px solid var(--line);
  background: rgba(13, 12, 18, 0.98);
}

.nav-drawer[hidden] {
  display: none;
}

/* Without JavaScript the toggle is an ordinary link, so :target opens the
   drawer. With JavaScript the click is intercepted and this never matches. */
.nav-drawer[hidden]:target {
  display: block;
}

.drawer-grid {
  display: grid;
  gap: 2rem;
  padding-block: 2rem 4rem;
}

.drawer-intro p {
  max-width: 24rem;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.25;
}

.drawer-intro a {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--violet-soft);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.drawer-group > p,
.footer-links > p {
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.drawer-group > a {
  display: grid;
  grid-template-columns: minmax(8rem, 0.8fr) 1fr;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-block: 0.7rem;
  text-decoration: none;
}

.drawer-group > a b {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

.drawer-group > a span {
  color: var(--muted);
  font-size: 0.78rem;
}

.drawer-group > a[aria-current="page"] b,
.drawer-group > a:hover b {
  color: var(--violet-soft);
}

/* Home hero */

.home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: var(--nav-h);
  background:
    radial-gradient(circle at 74% 42%, rgba(91, 84, 232, 0.2), transparent 32rem),
    linear-gradient(145deg, #0d0c12 0%, #0f0d16 52%, #111020 100%);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 5rem 5rem;
  content: "";
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

.hero-orb {
  position: absolute;
  border: 1px solid rgba(170, 164, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb::before,
.hero-orb::after {
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--violet-soft);
  box-shadow: 0 0 1.5rem var(--violet);
  content: "";
}

.hero-orb-a {
  top: 16%;
  right: -11rem;
  width: 32rem;
  height: 32rem;
}

.hero-orb-a::before {
  top: 22%;
  left: 7%;
}

.hero-orb-a::after {
  right: 9%;
  bottom: 25%;
}

.hero-orb-b {
  bottom: 4rem;
  left: -13rem;
  width: 24rem;
  height: 24rem;
}

.hero-orb-b::before {
  top: 8%;
  right: 22%;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100svh - var(--nav-h) - 4rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(31rem, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  padding-block: clamp(4rem, 8vw, 8rem) 5rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 8.7ch;
  margin-top: 1.35rem;
  font-size: clamp(3.55rem, 6.8vw, 7.1rem);
  line-height: 0.91;
}

.hero-copy h1 > span {
  display: block;
}

.gradient-text {
  padding-bottom: 0.09em;
  background: linear-gradient(112deg, #f8f6f1 4%, var(--lavender) 44%, #8279ff 96%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero-lede {
  max-width: 39rem;
  margin-top: 1.7rem;
  color: #beb8c5;
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.55;
}

.hero-copy .actions {
  margin-top: 2.1rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.69rem;
}

.hero-note span {
  color: var(--violet-soft);
  font-size: 0.58rem;
}

/* Runtime stage */

.runtime-stage {
  position: relative;
  overflow: hidden;
  min-height: 39rem;
  border: 1px solid rgba(170, 164, 255, 0.22);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 50% 46%, rgba(116, 107, 255, 0.2), transparent 12rem),
    linear-gradient(145deg, rgba(29, 25, 43, 0.94), rgba(15, 13, 24, 0.96));
  box-shadow:
    0 3rem 8rem -3rem rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  color: var(--text);
  transform-style: preserve-3d;
}

.runtime-stage::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.11) 1px, transparent 1.2px),
    linear-gradient(rgba(255, 255, 255, 0.027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.027) 1px, transparent 1px);
  background-position: 0 0, 0 0, 0 0;
  background-size: 2.2rem 2.2rem, 5.5rem 5.5rem, 5.5rem 5.5rem;
  content: "";
  mask-image: radial-gradient(circle at center, black 0%, transparent 83%);
}

.stage-topbar {
  position: relative;
  z-index: 4;
  display: flex;
  height: 3.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-inline: 1rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.stage-topbar > span:first-child {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-soft);
}

.stage-topbar i {
  width: 0.42rem;
  height: 0.42rem;
  border: 1px solid var(--violet-soft);
  border-radius: 50%;
  background: rgba(170, 164, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(170, 164, 255, 0.08);
}

.stage-canvas {
  position: relative;
  height: 30.8rem;
  overflow: hidden;
}

.stage-wires {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.stage-wires path {
  fill: none;
  stroke: rgba(170, 164, 255, 0.21);
  stroke-dasharray: 3 8;
  stroke-linecap: round;
  stroke-width: 1.2;
  opacity: 0.42;
  transition:
    opacity 320ms ease,
    stroke 320ms ease,
    stroke-width 320ms ease;
  vector-effect: non-scaling-stroke;
}

.runtime-stage[data-mode="compose"] .stage-wires path:not([data-wire="policy"]),
.runtime-stage[data-mode="govern"] .stage-wires [data-wire="policy"],
.runtime-stage[data-mode="deploy"] .stage-wires [data-wire="policy"],
.runtime-stage[data-mode="deploy"] .stage-wires [data-wire="server"],
.runtime-stage[data-mode="govern"][data-caller="terminal"] .stage-wires [data-wire="terminal"],
.runtime-stage[data-mode="govern"][data-caller="server"] .stage-wires [data-wire="server"] {
  stroke: rgba(170, 164, 255, 0.42);
  stroke-width: 1.45;
  opacity: 1;
}

.stage-inputs,
.stage-outputs {
  position: absolute;
  z-index: 2;
  top: 2.15rem;
  bottom: 2.15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stage-inputs {
  left: 1.3rem;
}

.stage-outputs {
  top: 6rem;
  right: 1.3rem;
  bottom: 6rem;
}

.stage-inputs::before,
.stage-outputs::before {
  position: absolute;
  top: -1.35rem;
  color: rgba(170, 164, 255, 0.65);
  content: attr(data-column-label);
  font-family: var(--mono);
  font-size: 0.43rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.stage-inputs::before { left: 0; }
.stage-outputs::before { right: 0; }

.stage-node {
  position: relative;
  display: grid;
  width: 7.6rem;
  min-height: 3.15rem;
  grid-template-columns: 0.65rem 1fr;
  align-content: center;
  gap: 0.1rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.6rem;
  padding: 0.55rem 0.65rem;
  background: rgba(13, 12, 18, 0.72);
  box-shadow: 0 0.75rem 2rem -1.1rem rgba(0, 0, 0, 0.9);
  font-family: var(--mono);
  transition:
    border-color 260ms ease,
    background-color 260ms ease,
    opacity 260ms ease;
}

.stage-node > i {
  width: 0.48rem;
  height: 0.48rem;
  align-self: center;
  grid-row: 1 / span 2;
  border: 1px solid var(--violet-soft);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(116, 107, 255, 0.15);
}

.stage-node > span {
  color: var(--white);
  font-size: 0.64rem;
  line-height: 1.2;
}

.stage-node > small {
  color: var(--muted);
  font-size: 0.5rem;
  line-height: 1.2;
}

.runtime-stage[data-mode="compose"] [data-runtime-node],
.runtime-stage[data-mode="compose"] [data-runtime-output],
.runtime-stage[data-mode="deploy"] [data-runtime-output="server"],
.runtime-stage[data-mode="govern"] [data-policy-badge],
.runtime-stage[data-mode="deploy"] [data-policy-badge],
.runtime-stage[data-mode="govern"][data-caller="terminal"] [data-runtime-output="terminal"],
.runtime-stage[data-mode="govern"][data-caller="server"] [data-runtime-output="server"] {
  border-color: rgba(170, 164, 255, 0.52);
  background: rgba(116, 107, 255, 0.11);
}

.runtime-stage[data-mode="govern"] .policy-badge {
  box-shadow: 0 0 2rem rgba(255, 119, 112, 0.16);
}

.runtime-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: block;
  width: 8.5rem;
  height: 8.5rem;
  transform: translate(-50%, -50%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(170, 164, 255, 0.45);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(116, 107, 255, 0.3), rgba(17, 14, 30, 0.96) 62%);
  box-shadow:
    0 0 0 1rem rgba(116, 107, 255, 0.025),
    0 0 4rem rgba(84, 74, 220, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-family: var(--mono);
  transition:
    border-color 420ms ease,
    background 420ms ease,
    box-shadow 420ms ease;
}

.orbit-mark {
  --orbit-track: rgba(109, 102, 240, 0.28);
  --orbit-glyph: #aaa4ff;
  display: block;
  flex: 0 0 auto;
  aspect-ratio: 1;
}

.orbit-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  transform-box: fill-box;
  transform-origin: center;
}

.orbit-mark-ring {
  transform-box: view-box;
  transform-origin: 24px 24px;
  will-change: transform;
}

.orbit-mark-track {
  fill: none;
  stroke: var(--orbit-track);
  stroke-width: 0.55;
}

.orbit-mark-ring-a .orbit-mark-track {
  stroke-dasharray: 1.2 2.2;
}

.orbit-mark-ring-b .orbit-mark-track {
  stroke: rgba(139, 133, 245, 0.22);
  stroke-width: 0.5;
  stroke-dasharray: 2.2 2.8;
}

.orbit-mark-ring-c .orbit-mark-track {
  stroke: rgba(167, 139, 250, 0.2);
  stroke-width: 0.5;
  stroke-dasharray: 0.8 3.1;
}

.orbit-mark-node {
  filter: drop-shadow(0 1.4px 1.1px rgba(3, 2, 8, 0.92));
}

.orbit-mark-node-a {
  fill: #6d66f0;
  filter:
    drop-shadow(0 1.4px 1.1px rgba(3, 2, 8, 0.92))
    drop-shadow(0 0 1.1px rgba(109, 102, 240, 0.42));
}

.orbit-mark-node-b {
  fill: #8b85f5;
  filter:
    drop-shadow(0 1.4px 1.1px rgba(3, 2, 8, 0.92))
    drop-shadow(0 0 1.1px rgba(139, 133, 245, 0.4));
}

.orbit-mark-node-c {
  fill: #a78bfa;
  filter:
    drop-shadow(0 1.4px 1.1px rgba(3, 2, 8, 0.92))
    drop-shadow(0 0 1.1px rgba(167, 139, 250, 0.4));
}

.orbit-mark-shine {
  fill: rgba(255, 255, 255, 0.82);
  pointer-events: none;
}

.orbit-mark-glyph {
  fill: var(--orbit-glyph);
  filter:
    drop-shadow(0 1.5px 1.4px rgba(3, 2, 8, 0.9))
    drop-shadow(0 0 1.6px rgba(170, 164, 255, 0.48));
  transform-box: fill-box;
  transform-origin: center;
}

.orbit-mark-runtime {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4rem;
  transform: translate(-50%, -50%);
}

.runtime-core b {
  position: absolute;
  top: calc(50% + 1.75rem);
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.68rem;
  line-height: 1;
  white-space: nowrap;
}

.runtime-core small {
  position: absolute;
  top: calc(50% + 2.58rem);
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.5rem;
  line-height: 1;
  white-space: nowrap;
}

.runtime-stage[data-mode="govern"] .runtime-core {
  border-color: rgba(255, 119, 112, 0.42);
  background: radial-gradient(circle at 50% 35%, rgba(255, 119, 112, 0.13), rgba(17, 14, 30, 0.96) 64%);
  box-shadow:
    0 0 0 1rem rgba(255, 119, 112, 0.02),
    0 0 4rem rgba(255, 119, 112, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.runtime-stage[data-mode="deploy"] .runtime-core {
  border-color: rgba(118, 230, 154, 0.4);
  background: radial-gradient(circle at 50% 35%, rgba(118, 230, 154, 0.12), rgba(17, 14, 30, 0.96) 64%);
  box-shadow:
    0 0 0 1rem rgba(118, 230, 154, 0.02),
    0 0 4rem rgba(118, 230, 154, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.policy-badge {
  position: absolute;
  z-index: 4;
  top: calc(50% + 5.9rem);
  left: 50%;
  display: flex;
  min-width: 9.8rem;
  transform: translateX(-50%);
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  background: rgba(13, 12, 18, 0.88);
  font-family: var(--mono);
  transition:
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease;
}

.policy-icon {
  color: var(--amber);
  font-size: 0.9rem;
}

.policy-badge > span:last-child {
  display: grid;
}

.policy-badge b {
  color: var(--text);
  font-size: 0.54rem;
  font-weight: 700;
}

.policy-badge small {
  color: var(--muted);
  font-size: 0.45rem;
}

.stage-event {
  position: absolute;
  z-index: 5;
  bottom: 1.1rem;
  left: 50%;
  display: flex;
  min-width: 13rem;
  transform: translateX(-50%);
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.65rem;
  padding: 0.55rem 0.75rem;
  background: rgba(9, 8, 15, 0.9);
  box-shadow: 0 1rem 2.5rem -1rem rgba(0, 0, 0, 0.9);
  font-family: var(--mono);
}

.event-glyph {
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(118, 230, 154, 0.1);
  color: var(--green);
  font-size: 0.68rem;
}

.runtime-stage[data-mode="govern"] .event-glyph {
  background: rgba(255, 119, 112, 0.1);
  color: var(--red);
}

.stage-event > span:last-child {
  display: grid;
}

.stage-event b {
  color: var(--text);
  font-size: 0.55rem;
}

.stage-event small {
  color: var(--muted);
  font-size: 0.47rem;
}

.runtime-signal {
  position: absolute;
  z-index: 6;
  top: 0;
  left: 0;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: white;
  box-shadow:
    0 0 0.5rem white,
    0 0 1.2rem var(--violet-soft);
  opacity: 0;
  pointer-events: none;
}

.signal-b {
  background: var(--green);
  box-shadow: 0 0 0.8rem var(--green);
}

.signal-c {
  background: var(--amber);
  box-shadow: 0 0 0.8rem var(--amber);
}

.runtime-stage[data-mode="compose"] .runtime-signal {
  background: var(--violet-soft);
  box-shadow: 0 0 0.85rem var(--violet-soft);
}

.runtime-stage[data-mode="govern"] .runtime-signal {
  background: var(--red);
  box-shadow: 0 0 0.85rem var(--red);
}

.runtime-stage[data-mode="deploy"] .runtime-signal {
  background: var(--green);
  box-shadow: 0 0 0.85rem var(--green);
}

.stage-switcher {
  position: relative;
  z-index: 5;
  display: grid;
  height: 4.9rem;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stage-switcher button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: transparent;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.6rem;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.stage-switcher button:last-child {
  border-right: 0;
}

.stage-switcher button span {
  color: rgba(170, 164, 255, 0.48);
  font-size: 0.48rem;
}

.stage-switcher button:hover,
.stage-switcher button[aria-pressed="true"] {
  background: rgba(116, 107, 255, 0.08);
  color: var(--white);
}

.capability-rail {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 7, 11, 0.35);
}

.rail-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  padding: 1rem var(--gut);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rail-track i {
  color: var(--violet);
  font-size: 0.45rem;
  font-style: normal;
}

/* Shared home sections */

.story-section {
  position: relative;
  padding-block: clamp(6rem, 12vw, 11rem);
}

.section-heading {
  max-width: 51rem;
}

.section-heading h2 {
  margin-top: 1.15rem;
}

.section-heading-wide {
  max-width: 68rem;
}

.section-lede {
  max-width: var(--copy);
  color: inherit;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.58;
}

.problem-section {
  overflow: hidden;
  background: var(--paper);
  color: #403b43;
}

.problem-section::after {
  position: absolute;
  top: -16rem;
  right: -15rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(85, 76, 224, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(85, 76, 224, 0.025),
    0 0 0 10rem rgba(85, 76, 224, 0.02);
  content: "";
}

.problem-section h2,
.architecture-section h2 {
  color: var(--ink);
}

.problem-section .eyebrow,
.architecture-section .eyebrow {
  color: var(--violet-deep);
}

.problem-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.88fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.statement {
  max-width: 13ch;
  margin-top: 1.2rem;
}

.problem-copy {
  align-self: end;
}

.handoff-list {
  margin-top: 2.4rem;
  border-top: 1px solid var(--line-dark);
}

.handoff-list > div {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line-dark);
  padding-block: 0.9rem;
  font-family: var(--mono);
  font-size: 0.7rem;
}

.handoff-list dt {
  color: #77717b;
}

.handoff-list span {
  color: var(--violet-deep);
}

.handoff-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

/* Pillars */

.pillars-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 35%, rgba(116, 107, 255, 0.09), transparent 24rem),
    var(--bg);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: clamp(3rem, 6vw, 5.5rem);
}

.pillar-card {
  position: relative;
  display: flex;
  min-height: 35rem;
  overflow: hidden;
  transform: perspective(60rem);
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1.2rem;
  background: linear-gradient(160deg, rgba(36, 31, 50, 0.92), rgba(19, 17, 27, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.pillar-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(116, 107, 255, 0.2), transparent 14rem);
  content: "";
  opacity: 0;
  transition: opacity 280ms ease;
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.pillar-top i {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--violet-soft);
  font-style: normal;
}

.pillar-visual {
  position: relative;
  z-index: 1;
  height: 15rem;
  margin-block: 1.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.85rem;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1.1px),
    rgba(8, 7, 13, 0.38);
  background-size: 1.6rem 1.6rem;
}

.pillar-visual > span {
  position: absolute;
  display: grid;
  min-width: 4.9rem;
  min-height: 2rem;
  place-items: center;
  border: 1px solid rgba(170, 164, 255, 0.22);
  border-radius: 999px;
  background: rgba(17, 14, 28, 0.9);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.55rem;
}

.pillar-compose .pillar-visual > span:nth-child(1) { top: 16%; left: 12%; }
.pillar-compose .pillar-visual > span:nth-child(2) { top: 22%; right: 9%; }
.pillar-compose .pillar-visual > span:nth-child(3) { bottom: 18%; left: 18%; }
.pillar-compose .pillar-visual > span:nth-child(4) { right: 15%; bottom: 12%; }

.pillar-compose .pillar-visual::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.8rem;
  height: 2.8rem;
  transform: translate(-50%, -50%);
  border: 1px solid var(--violet-soft);
  border-radius: 50%;
  background: rgba(116, 107, 255, 0.18);
  box-shadow: 0 0 2rem rgba(116, 107, 255, 0.3);
  content: "◆";
  color: var(--lavender);
  font-family: var(--mono);
  font-size: 0.7rem;
  line-height: 2.8rem;
  text-align: center;
}

.pillar-govern .pillar-visual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0.35rem;
  padding: 1rem;
}

.pillar-govern .pillar-visual > span {
  position: static;
  min-width: 0;
  border-radius: 0.45rem;
}

.pillar-govern .pillar-visual > span:nth-child(2) { border-color: rgba(240, 198, 108, 0.45); color: var(--amber); }
.pillar-govern .pillar-visual > span:nth-child(3) { border-color: rgba(255, 119, 112, 0.45); color: var(--red); }
.pillar-govern .pillar-visual > span:nth-child(4) { border-color: rgba(118, 230, 154, 0.4); color: var(--green); }

.pillar-govern .pillar-visual::before {
  position: absolute;
  right: 13%;
  bottom: 28%;
  left: 13%;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--amber), var(--red), var(--green));
  content: "";
}

.pillar-deploy .pillar-visual > span:nth-child(1) { top: 17%; left: 50%; transform: translateX(-50%); }
.pillar-deploy .pillar-visual > span:nth-child(2) { top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--lavender); }
.pillar-deploy .pillar-visual > span:nth-child(3) { bottom: 13%; left: 8%; }
.pillar-deploy .pillar-visual > span:nth-child(4) { right: 8%; bottom: 13%; }

.pillar-deploy .pillar-visual::after {
  position: absolute;
  inset: 25% 18%;
  border-right: 1px dashed rgba(170, 164, 255, 0.26);
  border-bottom: 1px dashed rgba(170, 164, 255, 0.26);
  border-left: 1px dashed rgba(170, 164, 255, 0.26);
  content: "";
}

.pillar-card h3,
.pillar-card > p,
.pillar-card > a {
  position: relative;
  z-index: 2;
}

.pillar-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.pillar-card > p {
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

.pillar-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--lavender);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  text-decoration: none;
}

/* Proof / trace */

.proof-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6rem, 11vw, 10rem);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 24rem),
    linear-gradient(135deg, #5b53e7, #4037b8 72%, #332c94);
  color: rgba(255, 255, 255, 0.8);
}

.proof-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  content: "";
  mask-image: radial-gradient(circle at 70% 50%, black, transparent 66%);
}

.proof-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(19rem, 0.78fr) minmax(30rem, 1.22fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.proof-section .eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.proof-copy h2 {
  max-width: 11ch;
  margin-top: 1.2rem;
  color: white;
}

.proof-copy .section-lede {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.76);
}

.proof-rule {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2rem;
  font-family: var(--mono);
  font-size: 0.52rem;
}

.proof-rule span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.3rem 0.5rem;
  background: rgba(255, 255, 255, 0.06);
}

.proof-rule i {
  color: rgba(255, 255, 255, 0.42);
  font-style: normal;
}

.proof-closing {
  margin-top: 1.8rem;
  border-left: 2px solid rgba(255, 255, 255, 0.45);
  padding-left: 1rem;
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
}

.trace-figure {
  min-width: 0;
}

.trace-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.trace-toolbar > span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.trace-toolbar i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0.6rem var(--green);
}

.trace-toolbar button {
  border: 0;
  background: transparent;
  color: white;
  font-family: var(--mono);
  font-size: inherit;
  cursor: pointer;
}

.trace-figure figcaption {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 0.58rem;
}

.tui,
.file {
  --term-bg: #0b0a12;
  --term-raised: #13101f;
  --term-line: #29233f;
  --term-text: #d3cfdd;
  --term-muted: #777187;
  overflow: hidden;
  border: 1px solid rgba(201, 197, 255, 0.2);
  border-radius: 0.9rem;
  background: var(--term-bg);
  color: var(--term-text);
  box-shadow:
    0 2rem 5rem -2rem rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-family: var(--mono);
  font-variant-ligatures: none;
}

.tui-bar,
.file-bar {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid var(--term-line);
  padding: 0.7rem 0.85rem;
  background: var(--term-raised);
  color: var(--term-muted);
  font-size: 0.58rem;
}

.tui-dia {
  color: var(--violet-soft);
}

.tui-app {
  color: #f0eef7;
  font-weight: 700;
}

.tui-sep {
  opacity: 0.45;
}

.tui-ok,
.t-ok {
  color: var(--green);
}

.tui-warn,
.t-warn {
  color: var(--amber);
}

.tui-dim,
.t-muted {
  color: var(--term-muted);
}

.t-del {
  color: var(--red);
}

.t-accent {
  color: var(--violet-soft);
}

.tui-body {
  min-height: 20rem;
  padding: 1rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    var(--term-bg);
  background-size: 100% 1.8rem;
  color: var(--term-text);
  font-size: clamp(0.66rem, 1vw, 0.76rem);
  line-height: 1.75;
}

.tui-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  border-top: 1px solid var(--term-line);
  padding: 0.6rem 0.85rem;
  background: var(--term-raised);
  color: var(--term-muted);
  font-size: 0.55rem;
}

.tui-hints b {
  color: #a9a3bb;
  font-weight: 400;
}

.t-row {
  display: grid;
  grid-template-columns: 1.15rem minmax(0, 1fr);
  align-items: baseline;
  gap: 0.45rem;
}

.t-gl {
  text-align: center;
}

.t-cmd {
  overflow: hidden;
  color: var(--term-text);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.t-why,
.t-note {
  overflow: hidden;
  padding-left: 1.6rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.t-why {
  color: var(--red);
}

.t-note {
  color: var(--term-muted);
}

.t-narrow {
  display: none;
}

/* Architecture */

.architecture-section {
  background: var(--paper);
  color: #49434d;
}

.architecture-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(34rem, 1.28fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.architecture-copy h2 {
  max-width: 11ch;
  margin-top: 1.2rem;
}

.architecture-copy .section-lede {
  margin-top: 1.5rem;
}

.config-diagram {
  position: relative;
  display: grid;
  min-height: 34rem;
  grid-template-columns: minmax(12rem, 1fr) 4.5rem minmax(8rem, 0.65fr) 4.5rem minmax(12rem, 1fr);
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 1.15rem;
  padding: 2rem;
  background:
    radial-gradient(circle, rgba(18, 16, 22, 0.13) 1px, transparent 1.2px),
    rgba(255, 255, 255, 0.38);
  background-size: 1.8rem 1.8rem;
  box-shadow: 0 2rem 5rem -3rem rgba(46, 37, 77, 0.34);
  font-family: var(--mono);
}

.config-files {
  display: grid;
  gap: 0.55rem;
}

.config-files > p {
  margin-bottom: 0.15rem;
  color: var(--violet-deep);
  font-size: 0.62rem;
  font-weight: 700;
}

.config-files > span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line-dark);
  border-radius: 0.4rem;
  padding: 0.45rem 0.5rem;
  background: rgba(255, 255, 255, 0.72);
  color: #5e5763;
  font-size: 0.5rem;
}

.config-files > span i {
  width: 0.36rem;
  height: 0.48rem;
  border: 1px solid var(--violet-deep);
  border-radius: 1px;
}

.config-flow,
.surface-flow {
  position: relative;
  height: 6rem;
}

.config-flow::before,
.surface-flow::before,
.surface-flow::after {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line-dark);
  content: "";
}

.config-flow span,
.surface-flow span {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.28rem;
  height: 0.28rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--violet-deep);
}

.kernel-card {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border: 1px solid rgba(85, 76, 224, 0.33);
  border-radius: 50%;
  background: rgba(85, 76, 224, 0.08);
  box-shadow: 0 0 0 0.75rem rgba(85, 76, 224, 0.025);
  text-align: center;
}

.orbit-mark-kernel {
  --orbit-track: rgba(85, 76, 224, 0.3);
  --orbit-glyph: #554ce0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.8rem;
  transform: translate(-50%, -50%);
}

.orbit-mark-kernel .orbit-mark-node {
  filter:
    drop-shadow(0 1.5px 1.1px rgba(34, 26, 55, 0.28))
    drop-shadow(0 0 1px rgba(85, 76, 224, 0.22));
}

.orbit-mark-kernel .orbit-mark-glyph {
  filter:
    drop-shadow(0 1.5px 1.2px rgba(34, 26, 55, 0.28))
    drop-shadow(0 0 1.4px rgba(85, 76, 224, 0.2));
}

.kernel-card b {
  position: absolute;
  top: calc(50% + 1.8rem);
  left: 50%;
  transform: translateX(-50%);
  color: var(--ink);
  font-size: 0.58rem;
  line-height: 1;
  white-space: nowrap;
}

.kernel-card small {
  position: absolute;
  top: calc(50% + 2.5rem);
  left: 50%;
  width: max-content;
  max-width: 6rem;
  transform: translateX(-50%);
  color: #837b87;
  font-size: 0.42rem;
  line-height: 1;
}

.surface-flow::before {
  top: 30%;
  transform: rotate(-13deg);
  transform-origin: left;
}

.surface-flow::after {
  top: 70%;
  transform: rotate(13deg);
  transform-origin: left;
}

.surface-flow span:first-child { top: 21%; }
.surface-flow span:last-child { top: 79%; }

.surface-cards {
  display: grid;
  gap: 1.4rem;
}

.surface-cards > div {
  position: relative;
  display: grid;
  gap: 0.2rem;
  border: 1px solid var(--line-dark);
  border-radius: 0.65rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.78);
}

.surface-cards i {
  position: absolute;
  top: 50%;
  left: -0.25rem;
  width: 0.45rem;
  height: 0.45rem;
  transform: translateY(-50%);
  border: 1px solid white;
  border-radius: 50%;
  background: var(--violet-deep);
}

.surface-cards b {
  color: var(--ink);
  font-size: 0.57rem;
}

.surface-cards small {
  color: #817987;
  font-size: 0.45rem;
}

.config-pulse {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0.8rem var(--violet);
  opacity: 0;
  pointer-events: none;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.proof-strip > div {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  border-right: 1px solid var(--line-dark);
  padding: 1.35rem;
}

.proof-strip > div:last-child {
  border-right: 0;
}

.proof-strip b {
  color: var(--violet-deep);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.proof-strip span {
  color: #655f68;
  font-size: 0.78rem;
  line-height: 1.5;
}

/* Use cases and status */

.usecase-section {
  background: var(--bg);
}

.usecase-list {
  margin-top: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.usecase-list article {
  display: grid;
  grid-template-columns: 4rem minmax(12rem, 0.75fr) minmax(18rem, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  border-bottom: 1px solid var(--line);
  padding-block: 1.7rem;
}

.usecase-number {
  color: var(--violet-soft);
  font-family: var(--mono);
  font-size: 0.64rem;
}

.usecase-list h3 {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
}

.usecase-list p {
  max-width: 35rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.usecase-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lavender);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.status-section {
  padding-block: clamp(5rem, 10vw, 9rem);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 35%, rgba(116, 107, 255, 0.12), transparent 24rem),
    var(--bg-raised);
}

.status-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.9fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.status-layout h2 {
  max-width: 12ch;
  margin-top: 1.2rem;
}

.status-layout .section-lede {
  color: var(--text-soft);
}

.status-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

.status-points li {
  display: grid;
  grid-template-columns: 0.9rem 1fr;
  gap: 0.7rem;
  color: var(--text);
  font-size: 0.88rem;
}

.status-points li::before {
  content: "◆";
  color: var(--violet-soft);
  font-family: var(--mono);
  font-size: 0.5rem;
  line-height: 2;
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 38rem;
  background: linear-gradient(132deg, #5b53e7, #4a41c9 62%, #342b9a);
  color: white;
}

.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1.2px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 2.4rem 2.4rem, 7rem 7rem, 7rem 7rem;
  mask-image: radial-gradient(circle at 75% 50%, black, transparent 63%);
}

.final-cta::after {
  position: absolute;
  right: -8rem;
  bottom: -14rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(255, 255, 255, 0.025),
    0 0 0 10rem rgba(255, 255, 255, 0.02);
  content: "";
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 38rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.final-cta h2 {
  max-width: 11ch;
  margin-top: 1.1rem;
  color: white;
}

.final-cta-inner > p:not(.eyebrow) {
  max-width: 37rem;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.final-cta .actions {
  margin-top: 2rem;
}

/* Hubs */

.hub-page {
  background: var(--bg);
}

.hub-hero {
  position: relative;
  overflow: hidden;
  min-height: 46rem;
  padding-block: calc(var(--nav-h) + clamp(5rem, 10vw, 9rem)) clamp(5rem, 9vw, 8rem);
  background:
    radial-gradient(circle at 77% 42%, rgba(116, 107, 255, 0.2), transparent 30rem),
    var(--bg);
}

.hub-grid-bg,
.phead-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(to right, transparent, black 55%, transparent);
}

.hub-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.7fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.hub-hero h1 {
  max-width: 11ch;
  margin-top: 1.2rem;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.95;
}

.hub-tagline {
  max-width: 42rem;
  margin-top: 1.6rem;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hub-intro > p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.journey-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--line);
}

.journey-map > div {
  display: grid;
  min-height: 6.4rem;
  align-content: center;
  gap: 0.15rem;
  padding: 0.8rem;
  background: rgba(19, 17, 27, 0.96);
  font-family: var(--mono);
}

.journey-map span {
  color: var(--violet-soft);
  font-size: 0.52rem;
}

.journey-map b {
  color: var(--white);
  font-size: 0.66rem;
}

.journey-map small {
  color: var(--muted);
  font-size: 0.47rem;
}

.journey-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 1rem var(--violet-soft);
  pointer-events: none;
}

.hub-groups {
  background: var(--paper);
  color: #4b454e;
}

.hub-group {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  border-bottom: 1px solid var(--line-dark);
}

.hub-group:nth-child(even) {
  background: rgba(224, 218, 207, 0.38);
}

.hub-group-grid {
  display: grid;
  grid-template-columns: minmax(12rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
}

.hub-group header > span {
  color: var(--violet-deep);
  font-family: var(--mono);
  font-size: 0.66rem;
}

.hub-group h2 {
  margin-top: 0.75rem;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.hub-group header > p {
  max-width: 22rem;
  margin-top: 1rem;
  color: #716a73;
  font-size: 0.9rem;
}

.hub-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hub-card {
  position: relative;
  display: flex;
  min-height: 19rem;
  transform: perspective(60rem);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  text-decoration: none;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.hub-card::before {
  position: absolute;
  right: -6rem;
  bottom: -8rem;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgba(85, 76, 224, 0.12);
  border-radius: 50%;
  content: "";
  transition: transform 400ms var(--ease);
}

.hub-card:hover {
  border-color: rgba(85, 76, 224, 0.34);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1.6rem 3rem -2.2rem rgba(41, 31, 77, 0.38);
}

.hub-card:hover::before {
  transform: scale(1.18);
}

.hub-card-meta {
  position: relative;
  z-index: 1;
  color: var(--violet-deep);
  font-family: var(--mono);
  font-size: 0.59rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hub-card h3 {
  position: relative;
  z-index: 1;
  max-width: 15ch;
  margin-top: 2.7rem;
  color: var(--ink);
}

.hub-card > p {
  position: relative;
  z-index: 1;
  max-width: 32rem;
  margin-top: 1rem;
  color: #68616c;
  font-size: 0.86rem;
  line-height: 1.65;
}

.hub-card-link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  border-top: 1px solid var(--line-dark);
  padding-top: 0.85rem;
  color: var(--violet-deep);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
}

.hub-card-link i {
  font-style: normal;
}

.guide-contract {
  padding-block: clamp(4rem, 8vw, 7rem);
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 20%, rgba(116, 107, 255, 0.16), transparent 25rem),
    var(--bg-raised);
  color: var(--text);
}

.guide-contract header {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(20rem, 1fr);
  align-items: end;
  gap: 2rem;
}

.guide-contract header .eyebrow {
  align-self: start;
}

.guide-contract h2 {
  max-width: 14ch;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.guide-contract-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  gap: 1px;
  margin: clamp(2.5rem, 5vw, 4.5rem) 0 0;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0;
  background: var(--line);
  list-style: none;
}

.guide-contract-grid li {
  display: grid;
  min-height: 11rem;
  align-content: end;
  padding: 1.2rem;
  background: rgba(19, 17, 27, 0.96);
}

.guide-contract-grid li > span {
  align-self: start;
  margin-bottom: auto;
  color: var(--violet-soft);
  font-family: var(--mono);
  font-size: 0.58rem;
}

.guide-contract-grid strong {
  color: var(--white);
  font-size: 1rem;
}

.guide-contract-grid p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.hub-cta {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--bg-raised);
}

.hub-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.7fr);
  align-items: end;
  gap: 1.5rem 4rem;
}

.hub-cta-inner .eyebrow {
  grid-column: 1 / -1;
}

.hub-cta h2 {
  max-width: 13ch;
}

.hub-cta p:not(.eyebrow) {
  color: var(--text-soft);
  font-size: 1rem;
}

.hub-cta .btn {
  width: fit-content;
  margin-top: 1.25rem;
}

/* Detail pages */

.detail-page {
  background: var(--paper);
  color: #4d4651;
}

.phead {
  position: relative;
  overflow: hidden;
  padding-block: calc(var(--nav-h) + clamp(4.5rem, 10vw, 8rem)) clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 45%, rgba(116, 107, 255, 0.18), transparent 28rem),
    var(--bg);
}

.phead .shell {
  position: relative;
  z-index: 1;
}

.phead h1 {
  max-width: 15ch;
  margin-top: 1rem;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

.crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.crumb a {
  text-decoration: none;
}

.crumb a:hover {
  color: var(--violet-soft);
}

.crumb-separator {
  color: rgba(255, 255, 255, 0.23);
}

.crumb-current {
  overflow: hidden;
  max-width: min(36rem, 70vw);
  color: rgba(255, 255, 255, 0.52);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tagline {
  max-width: 46rem;
  margin-top: 1.4rem;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: var(--violet-soft);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-decoration: none;
}

.detail-page > .section,
.detail-page main > .section,
.detail-page .section {
  padding-block: clamp(3.8rem, 8vw, 7rem);
  border-bottom: 1px solid var(--line-dark);
}

.detail-page .section:nth-child(odd) {
  background: rgba(228, 222, 212, 0.35);
}

.detail-page .lede {
  max-width: 47rem;
  color: #3e3842;
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
  line-height: 1.65;
}

.detail-page .kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  color: var(--violet-deep);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-page .kicker::after {
  width: min(12rem, 30vw);
  height: 1px;
  background: linear-gradient(to right, rgba(85, 76, 224, 0.4), transparent);
  content: "";
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(20rem, 1.22fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.notes {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.notes li {
  display: grid;
  max-width: 58rem;
  grid-template-columns: 1.1rem minmax(0, 1fr);
  gap: 0.7rem;
  border-bottom: 1px solid var(--line-dark);
  padding-block: 0.85rem;
  color: #625b66;
  font-size: 0.88rem;
  line-height: 1.65;
}

.notes li::before {
  content: "!";
  color: #a97818;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
}

.notes[data-tone="why"] li::before {
  content: "→";
  color: var(--violet-deep);
}

.notes[data-tone="soon"] li::before {
  content: "○";
  color: #817987;
}

.fields {
  display: grid;
  overflow: hidden;
  gap: 1px;
  margin-top: 1.5rem;
  border: 1px solid var(--line-dark);
  border-radius: 0.8rem;
  background: var(--line-dark);
}

.field {
  display: grid;
  grid-template-columns: minmax(11rem, 0.38fr) minmax(0, 1fr);
  gap: 0.4rem 2rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.48);
}

.field dt {
  display: flex;
  grid-column: 1;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
}

.field .type {
  grid-column: 1;
  color: #288161;
  font-family: var(--mono);
  font-size: 0.62rem;
  overflow-wrap: anywhere;
}

.field dd {
  max-width: 54rem;
  grid-row: 1 / span 2;
  grid-column: 2;
  margin: 0;
  color: #625b66;
  font-size: 0.85rem;
  line-height: 1.65;
}

.req {
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0.05rem 0.35rem;
  color: #817987;
  font-size: 0.5rem;
  font-weight: 400;
  text-transform: uppercase;
}

.req[data-req="required"] {
  border-color: rgba(173, 114, 16, 0.3);
  color: #a16d14;
}

.examples {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}

.example > h4 {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: -0.02em;
}

.example > p {
  max-width: 48rem;
  margin-top: 0.5rem;
  color: #655e69;
  font-size: 0.87rem;
}

.file {
  max-width: 64rem;
  margin-top: 1rem;
  border-radius: 0.75rem;
}

.file-path {
  overflow: hidden;
  color: #d7d2df;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-kind {
  flex: none;
  margin-left: auto;
  color: var(--term-muted);
  text-transform: uppercase;
}

.file-body {
  margin: 0;
  overflow-x: auto;
  padding-block: 1rem;
  color: var(--term-text);
  font-family: var(--mono);
  font-size: 0.73rem;
  line-height: 1.75;
  overscroll-behavior-x: contain;
}

.file-body code {
  display: block;
  min-width: max-content;
  padding-inline: 1rem;
  white-space: pre;
}

.file-note {
  max-width: 50rem;
  margin-top: 0.85rem;
  color: #716a75;
  font-size: 0.84rem;
}

.fm,
.c {
  color: #787183;
}

.k {
  color: var(--blue);
}

.v {
  color: #eeeaf4;
}

.s {
  color: var(--green);
}

.related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  gap: 1px;
  margin-top: 1.4rem;
  border: 1px solid var(--line-dark);
  border-radius: 0.75rem;
  background: var(--line-dark);
}

.related a {
  display: grid;
  min-height: 5.4rem;
  align-content: center;
  gap: 0.2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.related a:hover {
  background: rgba(255, 255, 255, 0.85);
}

.related b {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.related span {
  color: #817987;
  font-family: var(--mono);
  font-size: 0.58rem;
}

.order {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  counter-reset: item;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.order li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.9rem;
  border-bottom: 1px solid var(--line-dark);
  padding-block: 0.85rem;
  counter-increment: item;
}

.order li::before {
  content: "0" counter(item);
  color: var(--violet-deep);
  font-family: var(--mono);
  font-size: 0.6rem;
}

.order b {
  display: block;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.order span {
  display: block;
  margin-top: 0.2rem;
  color: #6d6670;
  font-size: 0.82rem;
}

.tiles,
.gaps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  gap: 1px;
  margin-top: 1.5rem;
  border: 1px solid var(--line-dark);
  border-radius: 0.75rem;
  background: var(--line-dark);
}

.tiles a,
.gaps > div {
  display: grid;
  min-height: 7rem;
  align-content: start;
  gap: 0.3rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.tiles a:hover {
  background: rgba(255, 255, 255, 0.82);
}

.tiles b,
.gaps h4 {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.tiles span,
.gaps p {
  color: #716a75;
  font-size: 0.74rem;
}

.group-name {
  margin: 2.4rem 0 0.9rem;
  color: #817987;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.addr-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
  margin-top: 1.6rem;
}

.addr {
  color: var(--violet-deep);
  font-family: var(--mono);
  font-size: 1rem;
}

.addr-dim {
  color: #716a75;
}

/* Outcome-led product and playbook pages */

.story-callout {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(85, 76, 224, 0.18);
  border-radius: 1rem;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(116, 107, 255, 0.14), transparent 13rem),
    rgba(255, 255, 255, 0.52);
}

.story-callout::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.2rem;
  background: var(--violet);
  content: "";
}

.story-callout > span {
  color: var(--violet-deep);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-callout > p {
  max-width: 36rem;
  margin-top: 0.8rem;
  color: #302a36;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.story-section-heading {
  max-width: 52rem;
}

.story-section-heading h2,
.story-process h2 {
  max-width: 15ch;
  color: var(--ink);
  font-size: clamp(2.25rem, 4.8vw, 4.5rem);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.benefit-card {
  display: flex;
  min-height: 19rem;
  flex-direction: column;
  border: 1px solid var(--line-dark);
  border-radius: 1rem;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 1.7rem 3rem -2.7rem rgba(41, 31, 77, 0.26);
}

.benefit-card > span {
  color: var(--violet-deep);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.benefit-card h3 {
  max-width: 12ch;
  margin-top: auto;
  color: var(--ink);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.benefit-card p {
  margin-top: 0.9rem;
  color: #6c6570;
  font-size: 0.9rem;
  line-height: 1.65;
}

.detail-page .section.story-process {
  border-color: var(--line);
  background:
    radial-gradient(circle at 18% 28%, rgba(116, 107, 255, 0.14), transparent 24rem),
    var(--bg);
  color: var(--text);
}

.story-process-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.75fr) minmax(28rem, 1.25fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.story-process .kicker {
  color: var(--violet-soft);
}

.story-process h2 {
  color: var(--white);
}

.story-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.story-steps li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1.3rem;
  border-bottom: 1px solid var(--line);
  padding-block: 1.6rem;
}

.story-steps li > span {
  color: var(--violet-soft);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.story-steps h3 {
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.story-steps p {
  max-width: 36rem;
  margin-top: 0.55rem;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.story-related .related {
  margin-top: 1.5rem;
}

.story-guides {
  background: var(--paper-2);
}

.story-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  overflow: hidden;
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  border: 1px solid var(--line-dark);
  border-radius: 0.9rem;
  background: var(--line-dark);
}

.story-guide-grid a {
  display: flex;
  min-height: 9rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.story-guide-grid a:hover {
  background: rgba(255, 255, 255, 0.92);
}

.story-guide-grid b {
  max-width: 24ch;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.story-guide-grid span {
  color: var(--violet-deep);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.story-guide-grid i {
  font-style: normal;
}

.detail-cta {
  padding-block: clamp(5rem, 10vw, 8rem);
  background:
    radial-gradient(circle at 80% 45%, rgba(116, 107, 255, 0.18), transparent 25rem),
    var(--bg);
  color: var(--text);
}

.detail-cta h2 {
  max-width: 17ch;
  margin-top: 1rem;
  font-size: clamp(2.2rem, 4.7vw, 4.5rem);
}

.detail-cta p:not(.eyebrow) {
  max-width: 39rem;
  margin-top: 1.3rem;
  color: var(--text-soft);
}

.detail-cta .btn {
  margin-top: 1.8rem;
}

/* Step-by-step guides */

.guide-tutorial {
  --guide-code-height: 34rem;
}

.guide-phead {
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.guide-hero-meta {
  display: grid;
  max-width: 70rem;
  grid-template-columns: 1.35fr 0.55fr 1fr;
  overflow: hidden;
  gap: 1px;
  margin: clamp(2.5rem, 5vw, 4.5rem) 0 0;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0;
  background: var(--line);
}

.guide-hero-meta > div {
  display: grid;
  min-height: 6.5rem;
  align-content: center;
  gap: 0.4rem;
  padding: 1rem 1.2rem;
  background: rgba(16, 14, 23, 0.94);
}

.guide-hero-meta dt {
  color: var(--violet-soft);
  font-family: var(--mono);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-hero-meta dd {
  margin: 0;
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.5;
}

.guide-progress {
  position: sticky;
  z-index: 20;
  top: var(--nav-h);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(242, 238, 231, 0.94);
  box-shadow: 0 0.8rem 2rem -1.8rem rgba(39, 32, 48, 0.45);
  backdrop-filter: blur(1rem);
}

.guide-progress-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-progress a {
  display: flex;
  min-height: 3.7rem;
  align-items: center;
  gap: 0.65rem;
  border-right: 1px solid var(--line-dark);
  color: #625b66;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.guide-progress a:last-child {
  border-right: 0;
}

.guide-progress a:hover,
.guide-progress a:focus-visible {
  background: rgba(255, 255, 255, 0.62);
  color: var(--violet-deep);
}

.guide-progress a > span {
  color: var(--violet-deep);
  font-size: 0.52rem;
}

.guide-tutorial [id] {
  scroll-margin-top: calc(var(--nav-h) + 4rem);
}

.guide-intro-grid,
.guide-section-layout,
.guide-verify-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.68fr) minmax(28rem, 1.32fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.guide-outcome-list {
  margin: 0;
  border-top: 1px solid var(--line-dark);
  padding: 0;
  list-style: none;
}

.guide-outcome-list li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  border-bottom: 1px solid var(--line-dark);
  padding-block: 1.25rem;
}

.guide-outcome-list li > span,
.guide-step-number,
.guide-checklist li > span {
  color: var(--violet-deep);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
}

.guide-outcome-list strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.guide-outcome-list p {
  margin-top: 0.35rem;
  color: #716a75;
  font-size: 0.82rem;
  line-height: 1.6;
}

.guide-section-layout > header,
.guide-verify-grid > header {
  max-width: 27rem;
}

.guide-step-number {
  display: block;
  margin-bottom: 2rem;
}

.guide-section-layout h2,
.guide-wide-heading h2,
.guide-verify h2 {
  max-width: 13ch;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.5vw, 4.2rem);
}

.guide-section-layout > header > p:last-child,
.guide-wide-heading > p:last-child,
.guide-verify-grid > header > p:last-child {
  margin-top: 1.2rem;
  color: #716a75;
  font-size: 0.9rem;
  line-height: 1.7;
}

.guide-config {
  min-width: 0;
}

.guide-file {
  max-width: none;
  margin-top: 0;
}

.guide-file .file-body {
  max-height: var(--guide-code-height);
  overflow: auto;
  scrollbar-color: #4a4359 var(--term-bg);
}

.guide-config-note {
  margin-top: 1rem;
  border: 1px solid rgba(85, 76, 224, 0.2);
  border-radius: 0.75rem;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.52);
}

.guide-config-note > span {
  color: var(--violet-deep);
  font-family: var(--mono);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-config-note p {
  max-width: 53rem;
  margin-top: 0.55rem;
  color: #625b66;
  font-size: 0.82rem;
  line-height: 1.65;
}

.guide-wide-heading {
  max-width: 55rem;
}

.guide-example-list {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.guide-example {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.5);
}

.guide-example[open] {
  border-color: rgba(85, 76, 224, 0.28);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 1.8rem 3.5rem -3rem rgba(41, 31, 77, 0.35);
}

.guide-example summary {
  display: grid;
  min-height: 6.5rem;
  grid-template-columns: 8rem minmax(0, 1fr) 9rem;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  list-style: none;
}

.guide-example summary::-webkit-details-marker {
  display: none;
}

.guide-example summary:focus-visible {
  outline: 2px solid var(--violet-deep);
  outline-offset: -3px;
}

.guide-example-index {
  color: var(--violet-deep);
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-example summary strong {
  color: var(--ink);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.guide-example-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  color: #716a75;
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
}

.guide-example-action i {
  color: var(--violet-deep);
  font-size: 1.1rem;
  font-style: normal;
  transition: transform 220ms ease;
}

.guide-example[open] .guide-example-action i {
  transform: rotate(45deg);
}

.guide-example-body {
  border-top: 1px solid var(--line-dark);
  padding: clamp(1.1rem, 3vw, 2rem);
}

.guide-example-body > p {
  max-width: 54rem;
  margin-bottom: 1.25rem;
  color: #625b66;
  font-size: 0.88rem;
  line-height: 1.7;
}

.guide-example-file .file-body {
  max-height: 42rem;
}

.detail-page .section.guide-verify {
  border-color: var(--line);
  background:
    radial-gradient(circle at 78% 32%, rgba(116, 107, 255, 0.16), transparent 25rem),
    var(--bg);
  color: var(--text);
}

.guide-verify .kicker,
.guide-verify .guide-step-number {
  color: var(--violet-soft);
}

.guide-verify h2 {
  color: var(--white);
}

.guide-verify-grid > header > p:last-child {
  color: var(--text-soft);
}

.guide-checklist {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 0;
  list-style: none;
}

.guide-checklist li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-block: 1.45rem;
}

.guide-checklist li > span {
  color: var(--violet-soft);
}

.guide-checklist p {
  max-width: 45rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.65;
}

.guide-next-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 3rem;
}

.guide-next-grid > div:first-child > p:not(.eyebrow) {
  max-width: 42rem;
}

.guide-next-actions {
  display: flex;
  min-width: 12rem;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.guide-next-actions .btn {
  margin-top: 0;
}

.guide-all-link {
  color: var(--violet-soft);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  text-decoration: none;
}

.guide-all-link:hover {
  color: var(--white);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  background: #09080d;
  color: var(--text-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 1.7fr) repeat(3, minmax(8rem, 0.55fr));
  gap: 3rem;
  padding-block: 4.5rem 3.5rem;
}

.footer-brand > p {
  max-width: 22rem;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.83rem;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
}

.footer-status i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--green);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-soft);
  font-size: 0.75rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-block: 1.2rem;
  color: #635d6c;
  font-family: var(--mono);
  font-size: 0.55rem;
}

.error-page {
  display: flex;
  min-height: 75vh;
  align-items: center;
  padding-block: calc(var(--nav-h) + 5rem) 5rem;
}

.error-page h1 {
  margin-top: 1rem;
}

.error-page .btn {
  margin-top: 2rem;
}

/* Responsive */

@media (max-width: 72rem) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(27rem, 1.05fr);
    gap: 2.5rem;
  }

  .runtime-stage {
    min-height: 36rem;
  }

  .stage-canvas {
    height: 27.8rem;
  }

  .stage-node {
    width: 6.5rem;
    padding-inline: 0.5rem;
  }

  .proof-layout,
  .architecture-layout {
    gap: 3.5rem;
  }

  .config-diagram {
    grid-template-columns: minmax(9rem, 1fr) 2.7rem minmax(7rem, 0.65fr) 2.7rem minmax(9rem, 1fr);
    padding-inline: 1.2rem;
  }
}

@media (max-width: 61rem) {
  .desktop-nav,
  .nav-inner > .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 5rem;
  }

  .hero-copy {
    max-width: 51rem;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(4rem, 10vw, 6.8rem);
  }

  .runtime-stage {
    width: min(100%, 47rem);
    margin-inline: auto;
  }

  .problem-grid,
  .proof-layout,
  .architecture-layout,
  .status-layout,
  .hub-hero-grid,
  .hub-group-grid {
    grid-template-columns: 1fr;
  }

  .problem-copy,
  .proof-copy,
  .architecture-copy {
    max-width: 46rem;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: 28rem;
    display: grid;
    grid-template-columns: minmax(14rem, 0.8fr) minmax(18rem, 1fr);
    grid-template-rows: auto auto 1fr auto;
    gap: 0 2rem;
  }

  .pillar-top {
    grid-column: 1 / -1;
  }

  .pillar-visual {
    height: 20rem;
    grid-row: 2 / span 3;
    grid-column: 1;
  }

  .pillar-card h3,
  .pillar-card > p,
  .pillar-card > a {
    grid-column: 2;
  }

  .pillar-card h3 {
    align-self: end;
    margin-top: 3rem;
  }

  .pillar-card > a {
    align-self: end;
  }

  .proof-copy h2,
  .architecture-copy h2 {
    max-width: 15ch;
  }

  .config-diagram {
    min-height: 31rem;
  }

  .usecase-list article {
    grid-template-columns: 3rem minmax(12rem, 0.8fr) minmax(18rem, 1fr);
  }

  .usecase-list a {
    grid-column: 2 / -1;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip > div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .hub-hero {
    min-height: 0;
  }

  .hub-intro {
    max-width: 40rem;
  }

  .journey-map {
    grid-template-columns: repeat(4, 1fr);
  }

  .hub-cards {
    max-width: 55rem;
  }

  .guide-contract header,
  .guide-intro-grid,
  .guide-section-layout,
  .guide-verify-grid,
  .guide-next-grid {
    grid-template-columns: 1fr;
  }

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

  .guide-section-layout > header,
  .guide-verify-grid > header {
    max-width: 46rem;
  }

  .guide-next-actions {
    align-items: flex-start;
    flex-direction: row;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 14rem;
  }

  .story-process-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: minmax(15rem, 1.5fr) repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 46rem) {
  :root {
    --gut: 1.1rem;
    --nav-h: 4rem;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.7rem);
  }

  .drawer-group > a {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }

  .hero-layout {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 15vw, 5.2rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .actions .btn {
    width: 100%;
  }

  .runtime-stage {
    min-height: 32rem;
    border-radius: 0.9rem;
  }

  .stage-canvas {
    height: 24.5rem;
  }

  .stage-topbar > span:last-child {
    display: none;
  }

  .stage-inputs {
    top: 1rem;
    bottom: 1rem;
    left: 0.7rem;
  }

  .stage-inputs::before { top: -0.72rem; }
  .stage-outputs::before { top: -0.9rem; }

  .stage-outputs {
    top: 4.2rem;
    right: 0.7rem;
    bottom: 4.2rem;
  }

  .stage-node {
    width: 5.5rem;
    min-height: 2.65rem;
    grid-template-columns: 0.45rem 1fr;
    gap: 0.05rem 0.35rem;
    padding: 0.38rem 0.42rem;
  }

  .stage-node > span {
    font-size: 0.52rem;
  }

  .stage-node > small {
    font-size: 0.41rem;
  }

  .stage-node > i {
    width: 0.36rem;
    height: 0.36rem;
  }

  .runtime-core {
    width: 6.4rem;
    height: 6.4rem;
  }

  .orbit-mark-runtime { width: 3.7rem; }

  .runtime-core b { top: calc(50% + 1.5rem); }
  .runtime-core small { top: calc(50% + 2.25rem); }

  .policy-badge {
    top: calc(50% + 4.7rem);
    min-width: 8rem;
    padding: 0.35rem 0.55rem;
  }

  .policy-badge b { font-size: 0.46rem; }
  .policy-badge small { font-size: 0.38rem; }

  .stage-event {
    bottom: 0.45rem;
    min-width: 10.5rem;
    padding: 0.4rem 0.55rem;
  }

  .stage-switcher {
    height: 4.3rem;
  }

  .stage-switcher button {
    flex-direction: column;
    gap: 0.15rem;
  }

  .rail-track {
    justify-content: flex-start;
    padding-block: 0.8rem;
  }

  .problem-grid {
    gap: 2.5rem;
  }

  .handoff-list > div {
    grid-template-columns: 1fr auto;
  }

  .handoff-list dd {
    grid-column: 1 / -1;
  }

  .pillar-card {
    display: flex;
    min-height: 34rem;
  }

  .pillar-visual {
    width: 100%;
    height: 14rem;
  }

  .pillar-card h3 {
    margin-top: 0;
  }

  .tui-bar .tui-sep:nth-of-type(n + 4),
  .tui-bar .tui-dim:last-child {
    display: none;
  }

  .tui-body {
    min-height: 18rem;
    padding: 0.75rem;
    font-size: 0.62rem;
  }

  .t-wide {
    display: none;
  }

  .t-narrow {
    display: inline;
  }

  .proof-rule {
    gap: 0.3rem;
  }

  .config-diagram {
    min-height: 42rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto 2.5rem auto 2.5rem auto;
    gap: 0.4rem;
    padding: 1.2rem;
  }

  .config-files {
    width: min(100%, 19rem);
    margin-inline: auto;
  }

  .config-flow,
  .surface-flow {
    width: 1px;
    height: 2.5rem;
    margin-inline: auto;
    background: var(--line-dark);
  }

  .config-flow::before,
  .surface-flow::before,
  .surface-flow::after,
  .config-flow span,
  .surface-flow span {
    display: none;
  }

  .kernel-card {
    width: 7rem;
    margin-inline: auto;
  }

  .orbit-mark-kernel { width: 3.7rem; }

  .surface-cards {
    width: min(100%, 19rem);
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-inline: auto;
  }

  .surface-cards i {
    top: -0.23rem;
    left: 50%;
    transform: translateX(-50%);
  }

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

  .proof-strip > div,
  .proof-strip > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .proof-strip > div:last-child {
    border-bottom: 0;
  }

  .usecase-list article {
    grid-template-columns: 2.2rem 1fr;
    gap: 0.8rem 1rem;
  }

  .usecase-list p,
  .usecase-list a {
    grid-column: 2;
  }

  .journey-map,
  .hub-cards {
    grid-template-columns: 1fr;
  }

  .guide-contract-grid,
  .guide-hero-meta {
    grid-template-columns: 1fr;
  }

  .guide-contract-grid li {
    min-height: 8.5rem;
  }

  .guide-progress {
    overflow-x: auto;
    overscroll-behavior-x: contain;
  }

  .guide-progress-inner {
    display: flex;
    width: max-content;
  }

  .guide-progress a {
    width: 10.5rem;
    flex: none;
    padding-right: 0.8rem;
  }

  .guide-example summary {
    min-height: 6rem;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.45rem 1rem;
  }

  .guide-example-index {
    grid-column: 1 / -1;
  }

  .guide-example-action {
    font-size: 0;
  }

  .guide-file .file-body,
  .guide-example-file .file-body {
    max-height: 28rem;
    font-size: 0.66rem;
  }

  .guide-next-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .journey-map > div {
    min-height: 4.2rem;
  }

  .hub-card {
    min-height: 17rem;
  }

  .hub-cta-inner {
    grid-template-columns: 1fr;
  }

  .field {
    grid-template-columns: 1fr;
  }

  .field dt,
  .field .type,
  .field dd {
    grid-row: auto;
    grid-column: 1;
  }

  .field dd {
    margin-top: 0.45rem;
  }

  .related,
  .tiles,
  .gaps {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 24rem) {
  .runtime-stage {
    margin-inline: -0.35rem;
  }

  .stage-node {
    width: 4.9rem;
  }

  .runtime-core {
    width: 5.7rem;
    height: 5.7rem;
  }

  .orbit-mark-runtime { width: 3.2rem; }

  .runtime-core b { top: calc(50% + 1.35rem); }
  .runtime-core small { top: calc(50% + 2.05rem); }

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

  .footer-brand {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
