:root {
  color-scheme: dark;
  --ink: #080a10;
  --ink-2: #121722;
  --space: #05060b;
  --void: #0b0e15;
  --paper: #f7f9fb;
  --paper-2: #eef3f8;
  --text: #f7f9fb;
  --muted: #b9c5d5;
  --dark-muted: #536171;
  --line: rgba(255, 255, 255, 0.16);
  --dark-line: rgba(20, 31, 45, 0.14);
  --blue: #8bd3ff;
  --green: #35d27a;
  --pink: #ff5d86;
  --yellow: #ffba62;
  --purple: #a783ff;
  --rust: #c9431d;
  --ember: #ff7a3d;
  --star: #f7fbff;
  --shadow: 0 22px 60px rgba(3, 6, 14, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, var(--space) 0%, #10141d 48%, #07090e 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  padding: 0;
  white-space: nowrap;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  color: #fff;
  background: rgba(5, 6, 11, 0.74);
  border-bottom: 1px solid rgba(255, 122, 61, 0.22);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  width: 28px;
  height: 28px;
  filter: invert(1) brightness(1.08) drop-shadow(0 0 12px rgba(255, 122, 61, 0.32));
}

.nav-links {
  gap: clamp(10px, 2vw, 24px);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: #fff;
}

.nav-action,
.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.nav-action {
  min-height: 36px;
  color: #140807;
  background: linear-gradient(135deg, #fff 0%, #ffd7b7 45%, #bde8ff 100%);
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: block;
  overflow: hidden;
  padding: 130px clamp(20px, 6vw, 96px) 72px;
  text-align: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(255, 248, 212, 0.16) 0%,
      rgba(121, 216, 196, 0.08) 20%,
      rgba(62, 119, 132, 0.035) 38%,
      transparent 58%),
    linear-gradient(180deg, #05060b 0%, #071014 56%, #111822 100%);
}

.hero-scrim,
.hero-starfield,
.hero-wordmark {
  position: absolute;
}

.hero-scrim {
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 120px, rgba(5, 6, 11, 0.16) 260px, rgba(5, 6, 11, 0.74) 100%),
    linear-gradient(0deg, rgba(5, 6, 11, 0.82) 0%, transparent 38%, rgba(5, 6, 11, 0.34) 100%);
}

.hero-starfield {
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 1;
}

.hero-wordmark {
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  isolation: isolate;
  pointer-events: none;
}

.hero-wordmark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: clamp(300px, 42vw, 520px);
  aspect-ratio: 1;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 52%,
      rgba(255, 255, 255, 0.20) 0%,
      rgba(139, 211, 255, 0.13) 19%,
      rgba(121, 216, 196, 0.07) 38%,
      rgba(5, 6, 11, 0) 68%);
}

.hero-content {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: calc(50% + clamp(128px, 12.5vw, 164px));
  width: min(560px, calc(100% - 40px));
  transform: translateX(-50%);
}

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

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.94;
  font-weight: 900;
}

.hero-wordmark-image {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: block;
  width: clamp(260px, 34vw, 390px);
  height: auto;
  max-width: none;
  transform: translate(-50%, -50%);
  filter: none;
  backface-visibility: hidden;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.1;
}

.hero-copy {
  max-width: 440px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.28;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 56px;
}

.hero-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.hero-button[hidden] {
  display: none;
}

.hero-button-primary {
  color: #160705;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.hero-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.primary-action {
  color: #06101a;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.start-band,
.light-band,
.enter-play-band,
.live-play-band,
.editor-access-band,
.setup-band,
.collab-band,
.agents-band,
.how-band {
  padding: clamp(72px, 10vw, 140px) clamp(20px, 6vw, 96px);
}

.start-band {
  background:
    linear-gradient(132deg, rgba(139, 211, 255, 0.07) 0 1px, transparent 1px 24px),
    linear-gradient(36deg, rgba(255, 122, 61, 0.09) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, #130907 0%, #090b12 48%, #111822 100%);
  border-top: 1px solid rgba(255, 122, 61, 0.22);
  border-bottom: 1px solid rgba(139, 211, 255, 0.16);
  text-align: center;
}

.download-emblem {
  width: clamp(72px, 9vw, 118px);
  height: clamp(72px, 9vw, 118px);
  margin: 0 auto clamp(42px, 5vw, 64px);
  border-radius: 22%;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.36)) drop-shadow(0 0 24px rgba(255, 122, 61, 0.26));
}

.download-groups {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

.download-group h3 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.download-grid-player {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.download-button {
  position: relative;
  display: inline-flex;
  min-height: 94px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  text-align: center;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.download-button:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.11);
}

.download-button-primary {
  color: #160705;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.download-button-primary:hover {
  background: #fff;
}

.download-button-disabled {
  cursor: default;
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.035);
}

.download-button-disabled:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.download-button-disabled .download-meta {
  opacity: 1;
  filter: none;
  visibility: visible;
  transform: none;
}

.download-button strong {
  position: relative;
  z-index: 1;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.1;
  transform: translateY(0);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.download-button-reveal:hover strong,
.download-button-reveal:focus-visible strong {
  transform: translateY(-10px);
}

.download-meta {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.25;
  opacity: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  transform: translateY(8px) scale(0.985);
  filter: blur(5px);
  visibility: hidden;
  white-space: nowrap;
  transition:
    opacity 160ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 190ms ease,
    visibility 0s linear 240ms;
}

.download-button-reveal:hover .download-meta,
.download-button-reveal:focus-visible .download-meta {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  visibility: visible;
  transition-delay: 0s;
}

.download-button-primary .download-meta {
  color: rgba(22, 7, 5, 0.58);
}

.download-note {
  width: min(100%, 1120px);
  margin: clamp(48px, 5vw, 72px) auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.9;
  text-align: center;
}

.download-note a {
  color: #fff;
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 3px;
}

.section-copy,
.section-heading {
  max-width: 780px;
}

.section-copy p,
.section-heading p {
  color: var(--dark-muted);
  font-size: clamp(17px, 1.6vw, 21px);
}

.light-band {
  background:
    linear-gradient(145deg, rgba(139, 211, 255, 0.12) 0 1px, transparent 1px 30px),
    var(--paper);
  color: var(--ink);
}

.iteration-compare {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 36px;
  align-items: stretch;
}

.speedup-panel,
.bar-compare {
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: #fff;
}

.speedup-panel {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(22px, 3vw, 34px);
}

.speedup-panel span {
  color: var(--dark-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.speedup-panel strong {
  color: var(--ink);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.88;
  font-variant-numeric: tabular-nums;
}

.speedup-panel p {
  margin: 0;
  color: var(--dark-muted);
  font-weight: 750;
}

.bar-compare {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3vw, 34px);
}

.bar-row-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 10px;
}

.bar-row-label span {
  color: var(--dark-muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.bar-row-label strong {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
}

.comparison-bar {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 4px;
  background: #e5ebf2;
}

.comparison-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
}

.typical-workflow {
  display: block;
}

.typical-breakdown {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  height: clamp(38px, 4.5vw, 46px);
  border-radius: 7px;
  background: transparent;
}

.typical-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 4px;
  border-right: 2px solid #fff;
  color: #10151d;
  font-size: clamp(8px, 0.85vw, 10px);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

.typical-stage:first-child {
  border-radius: 7px 0 0 7px;
}

.typical-stage:last-child {
  border-right: 0;
  border-radius: 0 7px 7px 0;
}

.typical-stage-switch {
  background: #a783ff;
}

.typical-stage-import {
  background: #7f8dff;
}

.typical-stage-build {
  background: #258cff;
}

.typical-stage-sign {
  background: #ff5d86;
}

.typical-stage-deploy {
  background: #ff7a3d;
}

.warp-fill {
  min-width: 2px;
  background: #258cff;
}

.source-note {
  max-width: 920px;
  margin-top: 26px;
  color: var(--dark-muted);
  font-size: 13px;
}

.source-note a {
  color: #0b66d8;
  font-weight: 800;
}

.enter-play-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(112deg, rgba(255, 122, 61, 0.12) 0 1px, transparent 1px 38px),
    #0b0e15;
}

.enter-play-copy p:not(.enter-play-note) {
  color: rgba(255, 255, 255, 0.74);
}

.enter-play-note {
  grid-column: 1 / -1;
  max-width: 980px;
  margin: -26px 0 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  line-height: 1.55;
}

.enter-play-graphic {
  display: grid;
  min-width: 0;
}

.enter-play-case-icon {
  position: relative;
  display: grid;
  width: clamp(52px, 5.4vw, 68px);
  aspect-ratio: 18.954 / 21.328;
  place-items: center;
}

.enter-play-case-play,
.enter-play-case-play svg {
  display: block;
  width: 100%;
  height: 100%;
}

.enter-play-case-play {
  color: rgba(255, 255, 255, 0.46);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.26));
}

.enter-play-case-animal {
  position: absolute;
  left: 39%;
  top: 50%;
  display: grid;
  width: 48%;
  height: 36%;
  place-items: center;
  color: #11151d;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.12));
  transform: translate(-50%, -50%);
}

.enter-play-case-animal svg {
  width: 100%;
  height: 100%;
}

.enter-play-race {
  display: grid;
  gap: clamp(28px, 4vw, 42px);
  min-width: 0;
}

.enter-play-lane {
  --race-start: 31%;
  --race-finish: 33%;
  min-width: 0;
}

.enter-play-lane-warp {
  --race-finish: 90%;
}

.enter-play-lane-label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.enter-play-track {
  position: relative;
  height: clamp(74px, 7.2vw, 94px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent calc(12.5% - 1px),
    rgba(255, 255, 255, 0.055) calc(12.5% - 1px),
    rgba(255, 255, 255, 0.055) 12.5%
  );
}

.enter-play-runner {
  position: absolute;
  left: var(--race-start);
  top: 50%;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
}

.enter-play-race-time {
  position: absolute;
  right: calc(100% + clamp(10px, 1.2vw, 16px));
  top: 50%;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(28px, 3.7vw, 52px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transform: translateY(-50%);
  white-space: nowrap;
}

.enter-play-lane-warp .enter-play-race-time {
  color: var(--ember);
}

.enter-play-lane-warp .enter-play-case-play {
  color: var(--ember);
}

.enter-play-lane-warp .enter-play-case-animal {
  color: #11151d;
}

.enter-play-graphic.is-running .enter-play-lane-typical .enter-play-runner {
  animation: enter-play-race 5.2s linear both;
}

.enter-play-graphic.is-running .enter-play-lane-warp .enter-play-runner {
  animation: enter-play-race 420ms cubic-bezier(0.12, 0.9, 0.2, 1) both;
}

@keyframes enter-play-race {
  from {
    left: var(--race-start);
  }

  to {
    left: var(--race-finish);
  }
}

.enter-play-speed {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.enter-play-speed strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.live-play-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: clamp(34px, 5.6vw, 82px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 50%, rgba(139, 211, 255, 0.16), transparent 36%),
    linear-gradient(180deg, #081018 0%, #10141d 100%);
  color: #fff;
}

.live-play-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.live-play-graphic {
  display: grid;
  grid-template-columns: minmax(250px, 1.08fr) clamp(20px, 2.4vw, 34px) minmax(170px, 0.72fr);
  gap: clamp(4px, 0.7vw, 10px);
  align-items: center;
  justify-self: center;
  width: min(100%, 860px);
  min-width: 0;
  --live-picked-color: #ff5d86;
  --live-car-color: #ff5d86;
  --picker-x: 50%;
  --picker-y: 14%;
}

.live-demo-device {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
}

.live-demo-mac {
  width: min(100%, 560px);
  aspect-ratio: 151 / 107;
}

.live-demo-ipad {
  width: min(100%, 340px);
  aspect-ratio: 100 / 108;
}

.live-device-icon {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  color: rgba(255, 255, 255, 0.86);
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.28));
}

.live-device-icon-mac {
  -webkit-mask: url("/assets/about/media/macbook-pro.svg") center / contain no-repeat;
  mask: url("/assets/about/media/macbook-pro.svg") center / contain no-repeat;
}

.live-device-icon-ipad {
  -webkit-mask: url("/assets/about/media/ipad-pro.svg") center / contain no-repeat;
  mask: url("/assets/about/media/ipad-pro.svg") center / contain no-repeat;
}

.live-device-screen {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  border-radius: 2px;
  pointer-events: none;
}

/* Screen bounds from the supplied MacBook SVG mask rect: 21.9746 15.072 107.549 70.3948 in a 151x107 viewBox. */
.live-mac-screen {
  left: 14.5527%;
  top: 14.086%;
  width: 71.2245%;
  height: 65.7895%;
}

/* Screen bounds from the supplied iPad SVG mask rect: 23.6016 18.8027 51.5957 70.3948 in a 100x108 viewBox. */
.live-ipad-screen {
  left: 23.6016%;
  top: 17.4100%;
  width: 51.5957%;
  height: 65.1804%;
  border-radius: 8%;
  background:
    radial-gradient(circle at 50% 28%, rgba(139, 211, 255, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.03);
}

.live-color-wheel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(52%, 220px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 7%, transparent 7.5%),
    radial-gradient(circle at center, transparent 0 34%, rgba(0, 0, 0, 0.18) 70%, rgba(0, 0, 0, 0.36) 100%),
    conic-gradient(
      #ff2d55,
      #ff9500,
      #ffcc00,
      #34c759,
      #00c7be,
      #32ade6,
      #5856d6,
      #af52de,
      #ff2d55
    );
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.5),
    inset 0 -18px 32px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%);
}

.live-color-wheel::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: inherit;
  background: radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.48), transparent 28%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.live-color-picker-dot {
  position: absolute;
  left: var(--picker-x);
  top: var(--picker-y);
  z-index: 1;
  width: 18px;
  aspect-ratio: 1;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--live-picked-color);
  transform: translate(-50%, -50%);
  transition:
    left 430ms cubic-bezier(0.22, 1, 0.36, 1),
    top 430ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease;
}

.live-link {
  position: relative;
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.live-link::before {
  content: none;
}

.live-pulse-stream {
  position: absolute;
  left: -82px;
  width: clamp(76px, 12vw, 128px);
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      transparent 0%,
      color-mix(in srgb, var(--live-picked-color) 18%, transparent) 22%,
      color-mix(in srgb, var(--live-picked-color) 54%, transparent) 58%,
      color-mix(in srgb, #fff 86%, var(--live-picked-color) 14%) 100%);
  filter: drop-shadow(0 0 10px color-mix(in srgb, var(--live-picked-color) 64%, transparent));
  opacity: 0;
  transform: translateX(-55%) scaleX(0.78);
}

.live-play-graphic.is-pulsing .live-pulse-stream {
  animation: live-straight-pulse 820ms cubic-bezier(0.16, 1, 0.3, 1);
}

.live-car-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  --live-track-step: 24px;
  --live-track-speed: 253ms;
  background:
    radial-gradient(circle at 50% 28%, rgba(139, 211, 255, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(8, 18, 31, 0.96), rgba(7, 30, 46, 0.86));
  -webkit-mask-image: linear-gradient(#000, #000);
  mask-image: linear-gradient(#000, #000);
}

.live-car-stage::before {
  content: "";
  position: absolute;
  inset: -46% -24%;
  z-index: 0;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(139, 211, 255, 0.24) 12% 14%, transparent 14% 86%, rgba(139, 211, 255, 0.24) 86% 88%, transparent 88%),
    repeating-linear-gradient(0deg, rgba(139, 211, 255, 0.38) 0 2px, transparent 2px var(--live-track-step)),
    repeating-linear-gradient(90deg, rgba(139, 211, 255, 0.18) 0 2px, transparent 2px 24px);
  opacity: 0.9;
  transform: translateY(0);
  animation: live-track-scroll var(--live-track-speed) linear infinite;
}

.live-car-stage::after {
  content: "";
  position: absolute;
  top: -22px;
  bottom: -22px;
  left: 50%;
  z-index: 0;
  width: 2px;
  border-radius: 999px;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0 8px, transparent 8px var(--live-track-step));
  box-shadow: 0 0 7px rgba(139, 211, 255, 0.3);
  transform: translate(-50%, calc(-1 * var(--live-track-step)));
  animation: live-road-dashes var(--live-track-speed) linear infinite;
}

.live-car-shadow {
  position: absolute;
  left: 50%;
  top: 74%;
  z-index: 1;
  width: 62%;
  height: 15%;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  filter: blur(8px);
  transform: translate(-50%, -50%);
  animation: live-car-shadow 2s ease-in-out infinite;
}

.live-car-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(34%, 68px);
  aspect-ratio: 26 / 45;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.4));
  transform: translate(-50%, -50%);
  animation: live-car-drive 2s ease-in-out infinite;
}

.live-car-bg,
.live-car {
  position: absolute;
  inset: 0;
  display: block;
  transition: background-color 90ms ease-out;
}

.live-car-bg {
  background-color: color-mix(in srgb, var(--live-car-color) 34%, #07131f 66%);
  -webkit-mask: url("/assets/about/media/car.svg") center / contain no-repeat;
  mask: url("/assets/about/media/car.svg") center / contain no-repeat;
}

.live-car {
  background-color: var(--live-car-color);
  -webkit-mask: url("/assets/about/media/car-detail.svg") center / contain no-repeat;
  mask: url("/assets/about/media/car-detail.svg") center / contain no-repeat;
}

.editor-access-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: center;
  padding-block: clamp(48px, 5vw, 72px);
  overflow: visible;
  background: #f7f9fc;
}

.editor-shot-stack {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 0;
  place-items: center;
  isolation: isolate;
}

.editor-shot {
  position: relative;
  grid-area: 1 / 1;
  justify-self: center;
  width: min(88%, 760px);
  overflow: visible;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: none;
  transform-origin: center;
  transform: none;
  translate: 0 0;
  rotate: 0deg;
  transition:
    translate 640ms cubic-bezier(0.22, 1, 0.36, 1),
    rotate 640ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, translate, rotate;
}

.editor-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.editor-shot figcaption {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(8, 13, 21, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.editor-shot-native {
  z-index: 1;
  transform: translate(-7%, 16%) rotate(-3deg);
  animation: editor-shot-native 5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.editor-shot-web {
  z-index: 3;
  transform: translate(6%, -12%) rotate(2deg);
  animation: editor-shot-web 5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.editor-access-copy h2 {
  color: var(--ink);
}

.editor-access-copy p {
  color: var(--dark-muted);
}

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.platform-strip span {
  padding: 8px 11px;
  border: 1px solid rgba(12, 19, 32, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.setup-band {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 38px),
    linear-gradient(180deg, #090c13 0%, #111822 100%);
  color: #fff;
}

.setup-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.setup-compare {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 36px;
  align-items: stretch;
}

.setup-metric,
.setup-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.setup-metric {
  container-type: inline-size;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  justify-items: center;
  gap: 24px;
  padding: clamp(22px, 3vw, 34px);
  text-align: center;
}

.setup-metric span {
  order: 2;
  width: min(100%, 34ch);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.setup-metric strong {
  align-self: center;
  max-width: 100%;
  color: #fff;
  font-size: 48px;
  font-size: clamp(32px, 10.5cqw, 52px);
  line-height: 0.88;
  white-space: nowrap;
  text-shadow: 0 0 34px rgba(139, 211, 255, 0.24);
}

.setup-metric p,
.setup-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 750;
}

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

.setup-card {
  container-type: inline-size;
  display: grid;
  grid-template-rows: 1fr auto;
  align-content: stretch;
  gap: 24px;
  min-height: 250px;
  padding: clamp(22px, 3vw, 34px);
}

.setup-card .bar-row-label {
  order: 2;
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  margin-bottom: 0;
  text-align: center;
}

.setup-card .bar-row-label span {
  width: min(100%, 28ch);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.25;
  overflow-wrap: break-word;
}

.setup-card .bar-row-label strong {
  max-width: 100%;
  color: #fff;
  flex: 0 0 auto;
  font-size: 28px;
  font-size: clamp(22px, 11cqw, 32px);
  white-space: nowrap;
}

.setup-card .blocking-progress,
.setup-card .ready-state {
  order: 1;
  align-self: center;
}

.blocking-progress {
  position: relative;
  display: grid;
  gap: 13px;
  min-height: 122px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(235, 241, 248, 0.16);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.blocking-window-chrome {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 12px;
}

.blocking-window-chrome span {
  width: 10px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.blocking-progress-labels {
  position: relative;
  min-height: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 750;
}

.blocking-label {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  animation: blocking-stage 300s linear infinite;
}

.blocking-label-a {
  opacity: 1;
}

.blocking-label-b {
  animation-delay: 75s;
}

.blocking-label-c {
  animation-delay: 150s;
}

.blocking-label-d {
  animation-delay: 225s;
}

.blocking-progress-track {
  position: relative;
  display: block;
  height: 16px;
  overflow: hidden;
  border: 1px solid rgba(5, 16, 30, 0.32);
  border-radius: 999px;
  background: rgba(8, 19, 35, 0.42);
  box-shadow:
    inset 0 1px 4px rgba(0, 0, 0, 0.34),
    0 1px 0 rgba(255, 255, 255, 0.12);
}

.blocking-progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(180deg, #79c8ff 0%, #2493ff 48%, #0b6ee8 100%);
  box-shadow: 0 0 18px rgba(36, 147, 255, 0.42);
  animation: blocking-progress-fill 300s linear infinite;
}

.ready-state {
  position: relative;
  min-height: 96px;
  display: grid;
  place-items: center;
}

.ready-dot {
  width: 34px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: #8bd3ff;
  box-shadow: 0 0 18px rgba(139, 211, 255, 0.8), 0 0 54px rgba(53, 210, 122, 0.36);
}

.ready-orbit {
  position: absolute;
  width: 74px;
  aspect-ratio: 1;
  border: 2px solid rgba(139, 211, 255, 0.54);
  border-radius: 999px;
  animation: ready-pulse 2.6s ease-out infinite;
}

.ready-orbit-b {
  animation-delay: -1.3s;
}

.setup-note {
  color: rgba(255, 255, 255, 0.54);
}

.collab-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  background:
    linear-gradient(28deg, rgba(255, 122, 61, 0.07) 0 1px, transparent 1px 30px),
    #fff;
  color: var(--ink);
}

.collab-graphic {
  position: relative;
  min-height: clamp(360px, 42vw, 560px);
  overflow: hidden;
}

.shared-project-node {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  width: clamp(132px, 14vw, 178px);
  height: clamp(132px, 14vw, 178px);
  border: 1px solid rgba(16, 24, 36, 0.16);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(22, 34, 49, 0.16);
  transform: translate(-50%, -50%);
}

.shared-project-node span {
  color: var(--dark-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.shared-project-node strong {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
}

.collab-line {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  --signal: rgba(37, 140, 255, 0.95);
  --line-delay: 0s;
  width: clamp(150px, 20vw, 250px);
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  transform-origin: left center;
  background: transparent;
  opacity: 1;
}

.collab-line::before,
.collab-line::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56%;
  border-radius: inherit;
  content: "";
  background:
    linear-gradient(90deg,
      transparent 0%,
      color-mix(in srgb, var(--signal) 12%, transparent) 36%,
      color-mix(in srgb, var(--signal) 42%, transparent) 74%,
      color-mix(in srgb, var(--signal) 82%, transparent) 91%,
      color-mix(in srgb, #fff 86%, var(--signal) 14%) 100%);
  filter: drop-shadow(0 0 10px color-mix(in srgb, var(--signal) 64%, transparent));
}

.collab-line::before {
  transform: translateX(-105%) scaleX(0.82);
  animation: signal-out 2.9s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  animation-delay: var(--line-delay);
}

.collab-line::after {
  background:
    linear-gradient(270deg,
      transparent 0%,
      color-mix(in srgb, var(--signal) 12%, transparent) 36%,
      color-mix(in srgb, var(--signal) 42%, transparent) 74%,
      color-mix(in srgb, var(--signal) 82%, transparent) 91%,
      color-mix(in srgb, #fff 86%, var(--signal) 14%) 100%);
  transform: translateX(205%) scaleX(1.02);
  animation: signal-in 3.35s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  animation-delay: calc(var(--line-delay) - 1.45s);
}

.collab-line-a {
  --signal: rgba(255, 93, 134, 0.95);
  --line-delay: -0.2s;
  transform: rotate(-34deg);
}

.collab-line-b {
  --signal: rgba(37, 140, 255, 0.95);
  --line-delay: -0.8s;
  transform: rotate(34deg);
}

.collab-line-c {
  --signal: rgba(53, 210, 122, 0.95);
  --line-delay: -1.4s;
  transform: rotate(151deg);
}

.collab-line-d {
  --signal: rgba(255, 186, 98, 0.95);
  --line-delay: -2s;
  transform: rotate(-151deg);
}

.id-bubble {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(92px, 10vw, 128px);
  aspect-ratio: 1;
  padding: 12px;
  border-radius: 999px;
  background: var(--bubble);
  box-shadow: 0 18px 42px color-mix(in srgb, var(--bubble) 28%, transparent);
  animation: id-float 5.6s ease-in-out infinite;
}

.id-bubble strong {
  color: #07101b;
  font-size: clamp(11px, 1.05vw, 14px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  max-width: 8ch;
  text-align: center;
  text-wrap: balance;
}

.id-bubble-ai {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #150d28;
}

.collab-ai-star {
  display: block;
  font-size: clamp(13px, 1.25vw, 17px);
  line-height: 1;
}

.id-bubble-a {
  left: 10%;
  top: 14%;
}

.id-bubble-b {
  right: 7%;
  top: 20%;
  animation-delay: -1.4s;
}

.id-bubble-c {
  left: 16%;
  bottom: 12%;
  animation-delay: -2.8s;
}

.id-bubble-d {
  right: 13%;
  bottom: 8%;
  animation-delay: -4.2s;
}

.collab-layer-story {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  margin-top: clamp(12px, 3vw, 28px);
  padding-top: clamp(30px, 5vw, 58px);
  border-top: 1px solid rgba(23, 34, 49, 0.1);
}

.layer-stack-visual {
  --stack-origin-y: -42px;
  --stack-gap: 40px;
  position: relative;
  min-height: clamp(220px, 26vw, 320px);
  isolation: isolate;
}

.layer-stack-visual::before {
  position: absolute;
  left: 50%;
  top: 66%;
  width: min(58%, 330px);
  height: 30px;
  border-radius: 999px;
  content: "";
  background: rgba(23, 34, 49, 0.14);
  filter: blur(20px);
  transform: translate(-50%, -50%);
}

.stack-layer {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: var(--z, 1);
  width: clamp(168px, 23vw, 300px);
  aspect-ratio: 600 / 297;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.4), transparent 36%),
    color-mix(in srgb, var(--layer) 86%, #fff 14%);
  filter:
    grayscale(1)
    saturate(0.18)
    drop-shadow(0 16px 18px color-mix(in srgb, var(--layer) 24%, transparent))
    drop-shadow(0 18px 28px rgba(23, 34, 49, 0.12));
  opacity: 0;
  transform: translate(-50%, -50%) translate(0, 8px) scale(0.96);
  transform-origin: center;
  transition:
    opacity 520ms ease,
    transform 980ms cubic-bezier(0.18, 1.05, 0.2, 1),
    filter 760ms ease;
  -webkit-mask: url("/assets/about/media/layer.svg") center / contain no-repeat;
  mask: url("/assets/about/media/layer.svg") center / contain no-repeat;
}

.stack-layer-designer {
  opacity: 0.92;
}

.layer-stack-visual.is-layer-stack-visible .stack-layer {
  filter:
    grayscale(0)
    saturate(1)
    drop-shadow(0 16px 18px color-mix(in srgb, var(--layer) 24%, transparent))
    drop-shadow(0 18px 28px rgba(23, 34, 49, 0.12));
  opacity: 0.9;
  transform: translate(-50%, -50%) translate(0, var(--stack-y)) scale(1);
}

.stack-layer-artist {
  --z: 4;
}

.stack-layer-developer {
  --z: 2;
}

.stack-layer-qa {
  --z: 3;
}

.stack-layer-designer {
  --z: 1;
}

.stack-layer-artist,
.stack-label-artist {
  --stack-y: var(--stack-origin-y);
}

.stack-layer-qa,
.stack-label-qa {
  --stack-y: calc(var(--stack-origin-y) + var(--stack-gap));
}

.stack-layer-developer,
.stack-label-developer {
  --stack-y: calc(var(--stack-origin-y) + var(--stack-gap) + var(--stack-gap));
}

.stack-layer-designer,
.stack-label-designer {
  --stack-y: calc(var(--stack-origin-y) + var(--stack-gap) + var(--stack-gap) + var(--stack-gap));
}

.stack-label {
  position: absolute;
  left: calc(50% + clamp(112px, 13vw, 168px));
  top: 50%;
  z-index: 8;
  color: #07101b;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateY(8px);
  transition:
    opacity 420ms ease,
    transform 980ms cubic-bezier(0.18, 1.05, 0.2, 1);
  white-space: nowrap;
}

.stack-label-composite {
  opacity: 1;
  transform: translateY(-50%) translateY(8px);
}

.layer-stack-visual.is-layer-stack-visible .stack-label-composite {
  opacity: 0;
  transform: translateY(-50%) translateY(-8px);
  transition-delay: 0ms;
}

.layer-stack-visual.is-layer-stack-visible .stack-label:not(.stack-label-composite) {
  opacity: 1;
  transform: translateY(-50%) translateY(var(--stack-y));
}

.collab-layer-copy {
  max-width: 560px;
}

.collab-layer-copy h3 {
  max-width: 12ch;
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.96;
}

.collab-layer-copy p {
  max-width: 50ch;
  margin-bottom: 0;
  color: var(--dark-muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
}

.deep-state-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: center;
  min-height: min(820px, 86svh);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 48%, rgba(139, 211, 255, 0.2), transparent 28%),
    radial-gradient(circle at 30% 62%, rgba(167, 131, 255, 0.17), transparent 34%),
    #0b1019;
  color: #fff;
}

.deep-state-mark {
  position: relative;
  display: grid;
  width: min(100%, 440px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
  color: #fff;
}

.deep-state-mark::before,
.deep-state-mark::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(139, 211, 255, 0.24);
  border-radius: 50%;
}

.deep-state-mark::before {
  inset: 8%;
  box-shadow: 0 0 80px rgba(139, 211, 255, 0.12);
}

.deep-state-mark::after {
  inset: 22%;
  border-color: rgba(183, 160, 255, 0.3);
}

.deep-state-mark > span {
  z-index: 1;
  display: inline-flex;
  width: 34%;
  height: 34%;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 30px rgba(139, 211, 255, 0.44));
}

.deep-state-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.deep-state-copy {
  max-width: 760px;
}

.deep-state-copy h2 {
  max-width: 12ch;
}

.deep-state-copy > p:not(.deep-state-callout) {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.72);
}

.deep-state-cases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.deep-state-cases > div {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.deep-state-cases strong {
  color: #fff;
  font-size: 15px;
}

.deep-state-cases span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.48;
}

.deep-state-callout {
  margin: 18px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--blue);
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.agents-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(360px, 1.12fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: center;
  min-height: min(860px, 88svh);
  overflow: hidden;
  background: #080b12;
  color: #fff;
}

.agents-copy {
  max-width: 650px;
}

.agents-copy h2 {
  max-width: 11ch;
}

.agents-copy > p {
  max-width: 57ch;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.58;
}

.agent-safety-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.agent-safety-list > div {
  display: grid;
  grid-template-columns: 28px minmax(130px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.agent-safety-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #b9a6ff;
}

.agent-safety-list > div:nth-child(2) .agent-safety-icon {
  color: #8bd3ff;
}

.agent-safety-list > div:nth-child(3) .agent-safety-icon {
  color: #83dcbb;
}

.agent-safety-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.agent-safety-list strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.agent-safety-copy {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.45;
}

.agent-setup-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.agent-setup-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid rgba(185, 166, 255, 0.34);
  border-radius: 999px;
  background: rgba(185, 166, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.agent-setup-links a:hover,
.agent-setup-links a:focus-visible {
  border-color: rgba(185, 166, 255, 0.74);
  background: rgba(185, 166, 255, 0.16);
  color: #fff;
}

.agent-setup-links a:focus-visible {
  outline: 2px solid rgba(139, 211, 255, 0.72);
  outline-offset: 3px;
}

.agent-swarm {
  position: relative;
  width: min(100%, 680px);
  aspect-ratio: 1;
  justify-self: center;
}

.agent-swarm-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.how-band {
  background: #090c13;
  color: #fff;
}

.how-band .section-heading {
  max-width: none;
}

.how-band h2 {
  margin-bottom: 26px;
}

.how-selector {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.how-picker {
  min-width: 0;
}

.how-workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.how-workflow-grid {
  margin-bottom: 12px;
}

.how-chip {
  width: 100%;
  appearance: none;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.how-chip:hover,
.how-chip:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.085);
}

.how-chip:focus-visible {
  outline: 2px solid rgba(139, 211, 255, 0.72);
  outline-offset: 3px;
}

.how-chip.is-selected {
  border-color: rgba(139, 211, 255, 0.62);
  background: rgba(139, 211, 255, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(139, 211, 255, 0.18),
    0 12px 32px rgba(0, 0, 0, 0.18);
}

.workflow-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: #fff;
}

.workflow-symbol svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.how-chip strong {
  min-width: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.08;
  text-align: left;
}

.how-detail {
  position: sticky;
  top: 92px;
  min-height: 286px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 10%, rgba(139, 211, 255, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.065);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.how-detail h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 0.98;
}

.how-detail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 650;
  line-height: 1.55;
}

@keyframes live-straight-pulse {
  0% {
    opacity: 0;
    transform: translateX(-85%) scaleX(0.45);
  }

  18%,
  72% {
    opacity: 1;
  }

  86% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    transform: translateX(145%) scaleX(1.08);
  }
}

@keyframes live-straight-pulse-vertical {
  0% {
    opacity: 0;
    transform: translate(-50%, -45%) scaleY(0.45);
  }

  18%,
  72% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 125%) scaleY(1.08);
  }
}

@keyframes live-car-drive {
  0%,
  100% {
    transform: translate(-50%, -50%) translateX(-13px) translateY(4px) rotate(-8deg);
  }

  18% {
    transform: translate(-50%, -50%) translateX(-5px) translateY(-4px) rotate(-3deg);
  }

  38% {
    transform: translate(-50%, -50%) translateX(14px) translateY(1px) rotate(9deg);
  }

  58% {
    transform: translate(-50%, -50%) translateX(8px) translateY(-6px) rotate(4deg);
  }

  78% {
    transform: translate(-50%, -50%) translateX(-15px) translateY(-1px) rotate(-10deg);
  }
}

@keyframes live-car-shadow {
  0%,
  100% {
    opacity: 0.34;
    transform: translate(-50%, -50%) scaleX(0.86);
  }

  50% {
    opacity: 0.22;
    transform: translate(-50%, -50%) scaleX(1.08);
  }
}

@keyframes live-track-scroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(var(--live-track-step));
  }
}

@keyframes live-road-dashes {
  0% {
    transform: translate(-50%, calc(-1 * var(--live-track-step)));
  }

  100% {
    transform: translate(-50%, 0);
  }
}

@keyframes editor-shot-native {
  0%,
  18% {
    z-index: 1;
    transform: translate(-7%, 16%) rotate(-3deg);
  }

  24% {
    z-index: 1;
    transform: translate(-25%, -7%) rotate(-6deg);
  }

  25%,
  68% {
    z-index: 3;
  }

  32%,
  68% {
    transform: translate(6%, -12%) rotate(2deg);
  }

  74% {
    z-index: 3;
    transform: translate(25%, 7%) rotate(6deg);
  }

  75%,
  100% {
    z-index: 1;
  }

  82%,
  100% {
    transform: translate(-7%, 16%) rotate(-3deg);
  }
}

@keyframes editor-shot-web {
  0%,
  18% {
    z-index: 3;
    transform: translate(6%, -12%) rotate(2deg);
  }

  24% {
    z-index: 3;
    transform: translate(25%, 7%) rotate(6deg);
  }

  25%,
  68% {
    z-index: 1;
  }

  32%,
  68% {
    transform: translate(-7%, 16%) rotate(-3deg);
  }

  74% {
    z-index: 1;
    transform: translate(-25%, -7%) rotate(-6deg);
  }

  75%,
  100% {
    z-index: 3;
  }

  82%,
  100% {
    transform: translate(6%, -12%) rotate(2deg);
  }
}

@keyframes id-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes blocking-progress-fill {
  0% {
    width: 1%;
  }

  28% {
    width: 28%;
  }

  54% {
    width: 43%;
  }

  82% {
    width: 78%;
  }

  100% {
    width: 98%;
  }
}

@keyframes blocking-stage {
  0%,
  24% {
    opacity: 1;
  }

  27%,
  100% {
    opacity: 0;
  }
}

@keyframes ready-pulse {
  0% {
    transform: scale(0.42);
    opacity: 0.82;
  }

  100% {
    transform: scale(1.48);
    opacity: 0;
  }
}

@keyframes line-breathe {
  0%,
  100% {
    opacity: 0.92;
  }

  50% {
    opacity: 1;
  }
}

@keyframes signal-out {
  0% {
    transform: translateX(-105%) scaleX(0.82);
  }

  54% {
    transform: translateX(78%) scaleX(1.04);
  }

  100% {
    transform: translateX(205%) scaleX(1.04);
  }
}

@keyframes signal-in {
  0% {
    transform: translateX(205%) scaleX(1.02);
  }

  54% {
    transform: translateX(22%) scaleX(1.04);
  }

  100% {
    transform: translateX(-105%) scaleX(0.82);
  }
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    gap: 12px;
  }

  .live-play-band {
    grid-template-columns: 1fr;
  }

  .editor-access-band {
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 40px);
  }

  .editor-shot-stack {
    width: min(100%, 720px);
    margin-inline: auto;
    order: 2;
  }

  .editor-access-copy {
    order: 1;
    max-width: 680px;
  }

  .collab-band {
    grid-template-columns: 1fr;
  }

  .deep-state-band {
    grid-template-columns: 1fr;
  }

  .deep-state-mark {
    width: min(72vw, 400px);
  }

  .agents-band {
    grid-template-columns: 1fr;
  }

  .agents-copy {
    max-width: 720px;
  }

  .agents-copy h2 {
    max-width: 13ch;
  }

  .agent-swarm {
    width: min(100%, 620px);
  }

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

  .collab-layer-copy {
    max-width: 680px;
  }

  .collab-layer-copy h3 {
    max-width: none;
  }

  .setup-compare {
    grid-template-columns: 1fr;
  }

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

  .collab-graphic {
    min-height: clamp(340px, 68vw, 520px);
  }

  .iteration-compare {
    grid-template-columns: 1fr;
  }

  .enter-play-band {
    grid-template-columns: 1fr;
  }

  .enter-play-copy {
    max-width: 720px;
  }

  .enter-play-graphic {
    width: min(100%, 720px);
  }

  .enter-play-note {
    margin-top: -16px;
  }

  .how-selector {
    grid-template-columns: 1fr;
  }

  .how-detail {
    position: static;
    min-height: 0;
  }

  .how-workflow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: 100vh;
    min-height: calc(100lvh + 2px);
    padding: 96px 18px 48px;
  }

  .hero-wordmark-image {
    width: clamp(240px, 66vw, 340px);
  }

  .hero-content {
    top: calc(50% + clamp(112px, 32vw, 142px));
  }

  h1 {
    font-size: 52px;
  }

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

  .how-chip {
    min-height: 0;
  }

  .setup-visual {
    grid-template-columns: 1fr;
  }

  .live-play-graphic {
    grid-template-columns: minmax(0, 1.08fr) clamp(18px, 4vw, 28px) minmax(0, 0.72fr);
    gap: clamp(3px, 1vw, 8px);
    width: min(100%, 620px);
  }

  .live-demo-device {
    justify-self: center;
  }

  .live-link {
    min-height: 70px;
  }

  .live-link::before {
    content: none;
  }

  .live-pulse-stream {
    left: -64px;
    top: auto;
    width: clamp(62px, 20vw, 96px);
    height: 4px;
    background:
      linear-gradient(90deg,
        transparent 0%,
        color-mix(in srgb, var(--live-picked-color) 18%, transparent) 22%,
        color-mix(in srgb, var(--live-picked-color) 54%, transparent) 58%,
        color-mix(in srgb, #fff 86%, var(--live-picked-color) 14%) 100%);
    transform: translateX(-55%) scaleX(0.78);
  }

  .live-play-graphic.is-pulsing .live-pulse-stream {
    animation-name: live-straight-pulse;
  }

  .live-color-wheel {
    width: min(52%, 190px);
  }

  .editor-shot {
    width: min(94%, 560px);
  }

  .platform-strip {
    gap: 7px;
  }

  .collab-graphic {
    min-height: 330px;
  }

  .collab-layer-story {
    gap: 22px;
    padding-top: 34px;
  }

  .layer-stack-visual {
    --stack-origin-y: -32px;
    --stack-gap: 28px;
    min-height: 210px;
  }

  .stack-layer {
    width: clamp(150px, 54vw, 230px);
  }

  .stack-label {
    left: calc(50% + clamp(78px, 28vw, 106px));
    font-size: 12px;
  }

  .collab-layer-copy p {
    font-size: 15px;
  }

  .id-bubble {
    width: 82px;
    padding: 10px;
  }

  .id-bubble-a {
    left: 2%;
    top: 12%;
  }

  .id-bubble-b {
    right: 1%;
    top: 16%;
  }

  .id-bubble-c {
    left: 7%;
    bottom: 7%;
  }

  .id-bubble-d {
    right: 6%;
    bottom: 4%;
  }

  .start-band,
  .light-band,
  .enter-play-band,
  .live-play-band,
  .editor-access-band,
  .setup-band,
  .collab-band,
  .deep-state-band,
  .agents-band,
  .how-band {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .download-note {
    white-space: normal;
  }

  .agents-band {
    gap: 32px;
  }

  .deep-state-band {
    gap: 22px;
  }

  .deep-state-mark {
    width: min(78vw, 320px);
  }

  .deep-state-cases {
    grid-template-columns: 1fr;
  }

  .agent-safety-list > div {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 5px 12px;
  }

  .agent-safety-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .agent-safety-list strong,
  .agent-safety-copy {
    grid-column: 2;
  }

  .agent-swarm {
    width: min(112%, 500px);
    margin-left: -6%;
  }

  .enter-play-graphic {
    width: 100%;
  }

  .enter-play-lane {
    --race-start: 36%;
    --race-finish: 38%;
  }

  .enter-play-lane-warp {
    --race-finish: 84%;
  }

  .enter-play-race-time {
    font-size: clamp(26px, 8vw, 34px);
  }

  .enter-play-speed {
    margin-top: 20px;
  }

  .enter-play-note {
    margin-top: -8px;
  }
}

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

  .id-bubble,
  .download-meta,
  .stack-layer,
  .stack-label,
  .editor-shot-native,
  .editor-shot-web,
  .live-car-wrap,
  .live-car-shadow,
  .live-car-stage::before,
  .live-car-stage::after,
  .live-pulse-stream,
  .live-color-picker-dot,
  .enter-play-runner,
  .blocking-label,
  .blocking-progress-fill,
  .ready-orbit,
  .collab-line,
  .collab-line::before,
  .collab-line::after {
    animation: none !important;
    transition: none !important;
  }

  .enter-play-runner {
    left: var(--race-finish);
  }
}
