:root {
  --canvas: #050505;
  --surface: #111111;
  --surface-raised: #171717;
  --surface-violet: #17131f;
  --ink: #f5f5f5;
  --muted: #a6a3ac;
  --quiet: #6f6c75;
  --violet: #9b6cff;
  --violet-bright: #c6aeff;
  --line: rgba(255, 255, 255, .1);
  --line-strong: rgba(255, 255, 255, .18);
  --live: #d7f8cc;
  --content: min(1240px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
  color: var(--ink);
  scroll-behavior: smooth;
  scrollbar-color: var(--violet) #090909;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  letter-spacing: 0;
}

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

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

button {
  margin: 0;
  border: 0;
  color: inherit;
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 4px;
  background: var(--ink);
  color: var(--canvas);
  transition: transform 180ms ease;
}

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

.signal-bar {
  position: relative;
  z-index: 60;
  height: 36px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--violet);
  color: #09070d;
}

.signal-bar p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.signal-bar p > span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #0b0811;
  box-shadow: 0 0 0 4px rgba(11, 8, 17, .12);
  animation: signalPulse 1.8s ease-in-out infinite;
}

.signal-bar i {
  margin-left: 14px;
  font-style: normal;
  font-weight: 400;
}

@keyframes signalPulse {
  50% { transform: scale(.72); opacity: .55; }
}

.site-nav {
  position: fixed;
  z-index: 50;
  top: 20px;
  left: 50%;
  width: min(1216px, calc(100% - 48px));
  height: 60px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  padding: 8px 12px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 999px;
  background: rgba(23, 23, 23, .92);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, .8);
  backdrop-filter: blur(18px);
  transition: top 260ms ease, width 260ms ease, background 260ms ease;
}

body.is-scrolled .site-nav {
  top: 16px;
  width: min(1080px, calc(100% - 48px));
  background: rgba(19, 19, 19, .94);
}

.brand {
  justify-self: start;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  overflow: hidden;
  border-radius: 50%;
  background: #0d0d0d;
}

.brand-mark img {
  width: 74%;
  height: 74%;
  object-fit: cover;
  filter: invert(1) contrast(1.2);
  mix-blend-mode: screen;
}

.site-nav nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav nav a {
  position: relative;
  padding: 10px 0;
  color: #d7d5da;
  font-size: 15px;
  font-weight: 500;
  transition: color 150ms cubic-bezier(.4, 0, .2, 1);
}

.site-nav nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--violet);
  transition: transform 150ms cubic-bezier(.4, 0, .2, 1);
}

.site-nav nav a:hover,
.site-nav nav a:focus-visible {
  color: #fff;
}

.site-nav nav a:hover::after,
.site-nav nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-role {
  justify-self: end;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--violet-bright);
  font-family: "Azeret Mono", monospace;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}

.nav-progress {
  position: absolute;
  right: 22px;
  bottom: 0;
  left: 22px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--violet);
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.hero-atmosphere {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #050505;
  transition: background-color 240ms ease;
}

.hero[data-phase="0"] .hero-atmosphere { background: #0b0811; }
.hero[data-phase="1"] .hero-atmosphere { background: #120914; }
.hero[data-phase="2"] .hero-atmosphere { background: #080d0d; }
.hero[data-phase="3"] .hero-atmosphere { background: #0a0f09; }

.phase-ambient {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-scene {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 320ms ease, visibility 320ms ease;
}

.hero[data-phase="0"] .ambient-idea,
.hero[data-phase="1"] .ambient-design,
.hero[data-phase="2"] .ambient-build,
.hero[data-phase="3"] .ambient-live {
  visibility: visible;
  opacity: 1;
}

.ambient-orbit,
.ambient-radar {
  position: absolute;
  border: 1px solid rgba(198, 174, 255, .13);
  border-radius: 50%;
}

.ambient-idea .ambient-orbit-a {
  top: -38vw;
  right: -18vw;
  width: 88vw;
  height: 88vw;
  border-style: dashed;
}

.ambient-idea .ambient-orbit-b {
  right: 4vw;
  bottom: -42vw;
  width: 72vw;
  height: 72vw;
}

.hero[data-phase="0"] .ambient-orbit-a { animation: ambientSpin 34s linear infinite; }
.hero[data-phase="0"] .ambient-orbit-b { animation: ambientSpin 46s linear infinite reverse; }

.ambient-spark,
.ambient-signal {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet-bright);
  box-shadow: 0 0 24px 8px rgba(155, 108, 255, .22);
}

.ambient-spark-a { top: 17%; left: 13%; }
.ambient-spark-b { top: 29%; right: 9%; }
.ambient-spark-c { right: 20%; bottom: 16%; }
.ambient-spark-d { bottom: 22%; left: 8%; }
.hero[data-phase="0"] .ambient-spark-a { animation: ambientPulse 3.8s ease-in-out infinite; }
.hero[data-phase="0"] .ambient-spark-b { animation: ambientPulse 4.6s -1.2s ease-in-out infinite; }
.hero[data-phase="0"] .ambient-spark-c { animation: ambientPulse 4.1s -.8s ease-in-out infinite; }
.hero[data-phase="0"] .ambient-spark-d { animation: ambientPulse 5.2s -1.7s ease-in-out infinite; }

.ambient-link {
  position: absolute;
  height: 1px;
  transform-origin: left;
  background: rgba(198, 174, 255, .13);
}

.ambient-link-a { top: 21%; left: 13%; width: 38vw; transform: rotate(9deg); }
.ambient-link-b { right: 18%; bottom: 19%; width: 34vw; transform: rotate(-17deg); }

.ambient-glyph {
  position: absolute;
  color: rgba(245, 245, 245, .045);
  font-size: clamp(240px, 42vw, 680px);
  font-weight: 500;
  letter-spacing: -.09em;
  line-height: .72;
  white-space: nowrap;
}

.ambient-glyph-a { top: -2%; left: -5%; }
.ambient-glyph-b { right: -8%; bottom: -2%; color: rgba(155, 108, 255, .055); }
.hero[data-phase="1"] .ambient-glyph-a { animation: ambientGlyphA 10s ease-in-out infinite alternate; }
.hero[data-phase="1"] .ambient-glyph-b { animation: ambientGlyphB 12s ease-in-out infinite alternate; }

.ambient-swatch {
  position: absolute;
  width: clamp(30px, 4vw, 64px);
  height: 42vh;
  opacity: .14;
}

.ambient-swatch-a { top: 7%; right: 23%; background: var(--violet); }
.ambient-swatch-b { right: 17%; bottom: 6%; background: var(--ink); }
.ambient-swatch-c { top: 25%; right: 11%; background: var(--live); }
.hero[data-phase="1"] .ambient-swatch-a { animation: ambientSwatch 7s ease-in-out infinite; }
.hero[data-phase="1"] .ambient-swatch-b { animation: ambientSwatch 8.5s -2s ease-in-out infinite; }
.hero[data-phase="1"] .ambient-swatch-c { animation: ambientSwatch 6.5s -1s ease-in-out infinite; }

.ambient-measure {
  position: absolute;
  top: 14%;
  right: 7%;
  color: rgba(198, 174, 255, .28);
  font: 9px "Azeret Mono", monospace;
  font-weight: 400;
}

.ambient-code {
  position: absolute;
  top: 4%;
  right: 4%;
  width: min(64vw, 900px);
  display: grid;
  gap: 30px;
  color: rgba(215, 248, 204, .1);
  font: clamp(12px, 1.25vw, 19px) "Azeret Mono", monospace;
  white-space: nowrap;
}

.ambient-code span:nth-child(2),
.ambient-code span:nth-child(4) { color: rgba(198, 174, 255, .15); }
.hero[data-phase="2"] .ambient-code { animation: ambientCodeFlow 11s linear infinite; }

.ambient-module {
  position: absolute;
  height: 1px;
  background: rgba(215, 248, 204, .16);
}

.ambient-module::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--live);
}

.ambient-module-a { top: 24%; left: -8%; width: 54vw; }
.ambient-module-b { top: 52%; right: -9%; width: 62vw; }
.ambient-module-c { bottom: 18%; left: 10%; width: 44vw; }
.hero[data-phase="2"] .ambient-module::after { animation: ambientPacket 6s linear infinite; }
.hero[data-phase="2"] .ambient-module-b::after { animation-delay: -2s; }
.hero[data-phase="2"] .ambient-module-c::after { animation-delay: -4s; }

.ambient-live .ambient-radar-a { top: -28vw; right: -8vw; width: 82vw; height: 82vw; }
.ambient-live .ambient-radar-b { top: -8vw; right: 12vw; width: 52vw; height: 52vw; }
.ambient-live .ambient-radar-c { right: 28vw; bottom: -12vw; width: 34vw; height: 34vw; }
.hero[data-phase="3"] .ambient-radar-a { animation: ambientRadar 5.8s ease-out infinite; }
.hero[data-phase="3"] .ambient-radar-b { animation: ambientRadar 5.8s 1.7s ease-out infinite; }
.hero[data-phase="3"] .ambient-radar-c { animation: ambientRadar 5.8s 3.4s ease-out infinite; }

.ambient-signal { width: 6px; height: 6px; background: var(--live); box-shadow: 0 0 24px 7px rgba(215, 248, 204, .2); }
.ambient-signal-a { top: 20%; left: 17%; }
.ambient-signal-b { top: 32%; right: 14%; }
.ambient-signal-c { right: 34%; bottom: 11%; }
.hero[data-phase="3"] .ambient-signal-a { animation: ambientPulse 3.5s ease-in-out infinite; }
.hero[data-phase="3"] .ambient-signal-b { animation: ambientPulse 4.3s -1.4s ease-in-out infinite; }
.hero[data-phase="3"] .ambient-signal-c { animation: ambientPulse 3.9s -.8s ease-in-out infinite; }

.ambient-live-word {
  position: absolute;
  right: -2vw;
  bottom: -4vh;
  color: rgba(215, 248, 204, .035);
  font-size: clamp(150px, 26vw, 420px);
  font-weight: 600;
  line-height: .75;
}

@keyframes ambientSpin { to { transform: rotate(360deg); } }
@keyframes ambientPulse { 50% { transform: scale(1.8); opacity: .35; } }
@keyframes ambientGlyphA { to { transform: translate3d(4vw, 3vh, 0); } }
@keyframes ambientGlyphB { to { transform: translate3d(-5vw, -2vh, 0); } }
@keyframes ambientSwatch { 50% { transform: translateY(7vh); opacity: .08; } }
@keyframes ambientCodeFlow { from { transform: translateY(-22%); } to { transform: translateY(62%); } }
@keyframes ambientPacket { from { left: 0; } to { left: 100%; } }
@keyframes ambientRadar { 0% { transform: scale(.72); opacity: 0; } 26% { opacity: .7; } 100% { transform: scale(1.12); opacity: 0; } }

.hero-flow {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .9;
  transform-origin: center;
  will-change: transform, opacity;
  pointer-events: none;
}

.flow-readout {
  position: absolute;
  z-index: 3;
  top: 48%;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(198, 174, 255, .52);
  font-family: "Azeret Mono", monospace;
  font-size: 8px;
  line-height: 1;
  writing-mode: vertical-rl;
}

.flow-readout-left { left: 24px; }
.flow-readout-right { right: 24px; transform: rotate(180deg); }

.flow-readout i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 14px rgba(155, 108, 255, .9);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 180px;
  text-align: center;
}

.hero-kicker,
.eyebrow,
.chapter-number,
.demo-toolbar,
.project-copy > p,
.range-state > p {
  font-family: "Azeret Mono", monospace;
  text-transform: uppercase;
}

.hero-kicker {
  margin: 0 0 18px;
  color: #c8c5ce;
  font-size: 11px;
  line-height: 1.4;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: 116px;
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.035em;
  text-wrap: balance;
  text-shadow: 0 4px 30px #000, 0 0 50px rgba(0, 0, 0, .7);
}

.hero h1 span {
  color: var(--violet);
}

.hero h1 b { font-weight: inherit; }

.hero-summary {
  width: min(600px, 100%);
  margin: 22px auto 0;
  color: #c4c1c9;
  font-size: 17px;
  line-height: 1.5;
  text-shadow: 0 2px 20px #000;
}

.phase-console {
  position: absolute;
  z-index: 4;
  bottom: 100px;
  left: 50%;
  width: min(770px, calc(100% - 48px));
  height: 64px;
  min-height: 64px;
  display: block;
  overflow: hidden;
  transform: translateX(-50%);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(11, 11, 12, .86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
  backdrop-filter: blur(14px);
  will-change: width, height, bottom, border-radius;
}

.phase-stage {
  position: absolute;
  inset: 0 0 64px;
  overflow: hidden;
  border-radius: inherit;
  opacity: 0;
  visibility: hidden;
}

.phase-controls {
  position: absolute;
  z-index: 8;
  right: 7px;
  bottom: 0;
  left: 7px;
  height: 63px;
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: center;
  background: rgba(11, 11, 12, .92);
}

.hero.is-phase-expanded .phase-controls { border-top: 1px solid rgba(255, 255, 255, .1); }

.hero.is-static-phase .phase-console {
  width: min(1120px, calc(100% - 64px));
  height: min(640px, calc(100svh - 170px));
  bottom: 104px;
  border-radius: 14px;
}

.hero.is-static-phase .phase-stage {
  visibility: visible;
  opacity: 1;
}

.phase-status {
  padding: 0 16px;
  border-right: 1px solid var(--line);
}

.phase-status > span {
  display: block;
  margin-bottom: 4px;
  color: var(--quiet);
  font-family: "Azeret Mono", monospace;
  font-size: 8px;
  line-height: 1;
}

.phase-status strong {
  font-family: "Azeret Mono", monospace;
  font-size: 11px;
  font-weight: 400;
}

.phase-status b {
  color: var(--violet-bright);
  font-weight: 500;
}

.phase-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
}

.phase-tabs button {
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  background: transparent;
  color: #a6a3ac;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.phase-tabs button i {
  margin-right: 7px;
  color: #65616b;
  font-family: "Azeret Mono", monospace;
  font-size: 9px;
  font-style: normal;
}

.phase-tabs button:hover {
  color: #fff;
}

.phase-tabs button.is-active {
  background: var(--violet);
  color: #0a070f;
}

.phase-tabs button.is-active i {
  color: #2b174f;
}

.phase-tabs button:active {
  transform: scale(.98);
}

.phase-line {
  position: absolute;
  right: 34px;
  bottom: -17px;
  left: 34px;
  height: 1px;
  background: rgba(255, 255, 255, .08);
}

.phase-line i {
  display: block;
  width: 25%;
  height: 100%;
  transform-origin: left;
  transform: translateX(0) scaleX(0);
  background: var(--violet);
  box-shadow: 0 0 12px rgba(155, 108, 255, .6);
}

.phase-scene {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(280px, 38%) minmax(0, 62%);
  align-items: stretch;
  padding: 44px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.phase-scene.is-active {
  visibility: visible;
  opacity: 1;
}

.idea-scene { background: rgba(11, 8, 17, .88); }
.design-scene { background: rgba(18, 9, 20, .88); }
.build-scene { background: rgba(8, 13, 13, .88); }
.live-scene { background: rgba(10, 15, 9, .88); }

.phase-scene-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 38px 18px 0;
}

.phase-scene-copy > span {
  margin: 0 0 auto;
  color: var(--violet-bright);
  font-family: "Azeret Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.phase-scene-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .98;
}

.phase-scene-copy p {
  max-width: 340px;
  margin: 18px 0 0;
  color: rgba(245, 245, 245, .68);
  font-size: 15px;
  line-height: 1.5;
}

.idea-system,
.design-system-live,
.build-system-live,
.live-system {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.idea-system {
  display: grid;
  place-items: center;
}

.idea-ring {
  position: absolute;
  width: 310px;
  height: 310px;
  border: 1px dashed rgba(198, 174, 255, .25);
  border-radius: 50%;
}

.idea-ring.ring-two { width: 470px; height: 470px; opacity: .58; }
.idea-scene.is-active .ring-one { animation: phaseSpin 18s linear infinite; }
.idea-scene.is-active .ring-two { animation: phaseSpin 28s linear infinite reverse; }

.idea-core,
.idea-node {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198, 174, 255, .26);
  background: #15101d;
  color: #ded1ff;
  font-family: "Azeret Mono", monospace;
}

.idea-core {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--violet);
  color: #0a0611;
  font-size: 14px;
}

.idea-node { min-width: 108px; min-height: 44px; padding: 0 14px; border-radius: 5px; font-size: 9px; }
.idea-node-a { top: 15%; left: 12%; }
.idea-node-b { top: 22%; right: 7%; }
.idea-node-c { right: 13%; bottom: 18%; }
.idea-node-d { bottom: 12%; left: 8%; }
.idea-scene.is-active .idea-node-a { animation: phaseFloat 4.6s ease-in-out infinite; }
.idea-scene.is-active .idea-node-b { animation: phaseFloat 5.4s ease-in-out -1.1s infinite; }
.idea-scene.is-active .idea-node-c { animation: phaseFloat 4.9s ease-in-out -.6s infinite; }
.idea-scene.is-active .idea-node-d { animation: phaseFloat 5.8s ease-in-out -1.8s infinite; }

.design-system-live {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 1fr 1fr;
  padding: 28px;
  gap: 12px;
}

.design-type,
.design-palette,
.design-layout {
  border: 1px solid rgba(255, 255, 255, .11);
  background: rgba(5, 5, 5, .36);
}

.design-type { grid-row: 1 / 3; display: flex; flex-direction: column; padding: 28px; }
.design-type > span { color: #8f8794; font: 8px "Azeret Mono", monospace; }
.design-type strong { margin: auto 0; color: #f4eef7; font-size: 150px; font-weight: 500; letter-spacing: -.07em; line-height: .75; }
.design-type b { color: #8f8794; font: 9px "Azeret Mono", monospace; font-weight: 400; }
.design-palette { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; padding: 12px; }
.design-palette i:nth-child(1) { background: #9b6cff; }
.design-palette i:nth-child(2) { background: #f5f5f5; }
.design-palette i:nth-child(3) { background: #d7f8cc; }
.design-palette i:nth-child(4) { background: #17131f; }
.design-layout { display: grid; grid-template-columns: 1fr 1.5fr; grid-template-rows: .55fr 1fr; gap: 8px; padding: 14px; }
.design-layout span { background: rgba(198, 174, 255, .17); }
.design-layout span:first-child { grid-column: 1 / 3; }
.design-layout span:last-child { background: rgba(245, 245, 245, .12); }
.design-scene.is-active .design-type { animation: designSettle .8s cubic-bezier(.22, 1, .36, 1) both; }
.design-scene.is-active .design-palette { animation: designSettle .8s .08s cubic-bezier(.22, 1, .36, 1) both; }
.design-scene.is-active .design-layout { animation: designSettle .8s .16s cubic-bezier(.22, 1, .36, 1) both; }

.build-system-live { display: grid; grid-template-columns: .92fr 1.08fr; gap: 12px; padding: 28px; }
.build-code-live,
.build-browser-live { border: 1px solid rgba(255, 255, 255, .1); background: #080a0a; }
.build-code-live { display: flex; flex-direction: column; justify-content: center; gap: 17px; padding: 24px; }
.build-code-live span { color: #b6b2b9; font: 9px "Azeret Mono", monospace; white-space: nowrap; }
.build-code-live span i { display: inline-block; width: 28px; color: #4f5453; font-style: normal; }
.build-code-live span:nth-child(2), .build-code-live span:nth-child(4) { color: var(--violet-bright); }
.build-code-live b { display: inline-block; width: 5px; height: 12px; margin-left: 4px; background: var(--violet); vertical-align: -2px; }
.build-scene.is-active .build-code-live b { animation: cursorBlink .8s steps(1) infinite; }
.build-browser-live { position: relative; padding-top: 34px; }
.build-browser-live > i { position: absolute; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: #434846; }
.build-browser-live > i:nth-child(1) { left: 14px; }
.build-browser-live > i:nth-child(2) { left: 26px; }
.build-browser-live > i:nth-child(3) { left: 38px; }
.build-browser-live > div { height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 28px; background: #101615; }
.build-browser-live span { width: 44px; height: 3px; background: var(--violet); }
.build-browser-live strong { margin: 18px 0; color: #fff; font-size: 34px; font-weight: 500; line-height: 1; }
.build-browser-live b { width: 100%; height: 36%; background: #1a2421; transform-origin: left; }
.build-scene.is-active .build-browser-live b { animation: buildFill 1.3s cubic-bezier(.22, 1, .36, 1) both; }

.live-system { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 24px; padding: 28px; }
.live-radar { position: relative; width: min(270px, 90%); aspect-ratio: 1; margin: auto; border: 1px solid rgba(215, 248, 204, .18); border-radius: 50%; display: grid; place-items: center; }
.live-radar::before, .live-radar::after, .live-radar > i { content: ""; position: absolute; border: 1px solid rgba(215, 248, 204, .16); border-radius: 50%; }
.live-radar::before { inset: 18%; }
.live-radar::after { inset: 36%; }
.live-radar > i:nth-child(1) { inset: 50%; width: 1px; height: 1px; background: var(--live); border: 0; box-shadow: 0 0 28px 12px rgba(215, 248, 204, .3); }
.live-radar > i:nth-child(2) { inset: 8%; border-top-color: var(--live); }
.live-radar > i:nth-child(3) { inset: 28%; border-right-color: var(--live); }
.live-radar span { color: var(--live); font: 12px "Azeret Mono", monospace; }
.live-scene.is-active .live-radar > i:nth-child(2) { animation: phaseSpin 4.8s linear infinite; }
.live-scene.is-active .live-radar > i:nth-child(3) { animation: phaseSpin 3.6s linear infinite reverse; }
.live-signals { border-top: 1px solid rgba(255, 255, 255, .1); }
.live-signals p { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin: 0; padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); color: #a9aca9; font-size: 12px; }
.live-signals b { color: var(--live); font: 9px "Azeret Mono", monospace; font-weight: 400; text-transform: uppercase; }
.live-signals i { grid-column: 1 / 3; height: 2px; background: rgba(215, 248, 204, .12); transform-origin: left; }
.live-scene.is-active .live-signals i { animation: liveCheck 1s cubic-bezier(.22, 1, .36, 1) both; }
.live-scene.is-active .live-signals p:nth-child(2) i { animation-delay: .12s; }
.live-scene.is-active .live-signals p:nth-child(3) i { animation-delay: .24s; }

@keyframes phaseSpin { to { transform: rotate(360deg); } }
@keyframes phaseFloat { 50% { transform: translateY(-10px); } }
@keyframes designSettle { from { opacity: 0; transform: translateY(22px); } }
@keyframes cursorBlink { 50% { opacity: 0; } }
@keyframes buildFill { from { transform: scaleX(.08); } }
@keyframes liveCheck { from { transform: scaleX(0); } to { transform: scaleX(1); background: rgba(215, 248, 204, .55); } }

.platform-rail {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 72px;
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(600px, 3fr);
  align-items: center;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, .78);
  backdrop-filter: blur(12px);
}

.platform-rail p {
  margin: 0;
  color: #d4d1d8;
  font-size: 14px;
}

.platform-rail > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
}

.platform-rail > div span {
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  color: #7f7b85;
  font-size: 15px;
  font-weight: 500;
  transition: color 180ms ease, background 180ms ease;
}

.platform-rail > div span:hover {
  background: rgba(155, 108, 255, .06);
  color: var(--ink);
}

.hero-coordinate {
  position: absolute;
  right: 24px;
  bottom: 88px;
  display: flex;
  gap: 18px;
  color: #59565e;
  font-family: "Azeret Mono", monospace;
  font-size: 8px;
}

.about {
  position: relative;
  padding: 150px 0 42px;
  border-top: 1px solid var(--line);
  background: #080808;
}

.about-copy {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .72fr);
  gap: clamp(48px, 10vw, 150px);
  align-items: end;
}

.about-copy .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.about-copy h2 { margin: 0; color: #fff; font-size: clamp(48px, 5.4vw, 76px); font-weight: 500; letter-spacing: -.045em; line-height: .93; }
.about-copy h2 em { color: var(--violet); font-style: normal; }
.about-copy > p:last-child { margin: 0; color: #aaa6af; font-size: 17px; line-height: 1.55; }

.section-heading {
  width: var(--content);
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  color: #b2aeb8;
  font-size: 10px;
  line-height: 1;
}

.eyebrow span {
  color: var(--violet-bright);
}

.section-heading h2,
.range-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
}

.section-heading h2 em,
.range-copy h2 em {
  color: var(--violet);
  font-style: normal;
}

.section-intro {
  width: min(520px, 100%);
  margin: 26px 0 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.process {
  position: relative;
  padding: 150px 0 180px;
  background: #080808;
}

.process::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155, 108, 255, .55), transparent);
}

.process-layout {
  width: var(--content);
  margin: 90px auto 0;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: 32px;
}

.chapter-rail {
  position: sticky;
  top: 130px;
  padding: 16px 0 0;
}

.chapter-rail > p {
  margin: 0 0 24px;
  color: #65616b;
  font-family: "Azeret Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.chapter-rail > a {
  position: relative;
  min-height: 54px;
  display: grid;
  grid-template-columns: 12px 30px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: #706c76;
  font-size: 14px;
  transition: color 180ms ease;
}

.chapter-rail > a i {
  width: 6px;
  height: 6px;
  border: 1px solid #5e5a64;
  border-radius: 50%;
  transition: border 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.chapter-rail > a span {
  font-family: "Azeret Mono", monospace;
  font-size: 9px;
}

.chapter-rail > a.is-active {
  color: #fff;
}

.chapter-rail > a.is-active i {
  border-color: var(--violet);
  background: var(--violet);
  box-shadow: 0 0 12px rgba(155, 108, 255, .75);
}

.chapter-meter {
  height: 2px;
  margin-top: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, .07);
}

.chapter-meter i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(.25);
  transform-origin: left;
  background: var(--violet);
}

.chapter-stack {
  min-width: 0;
}

@media (min-width: 861px) {
  .chapter-rail { top: 104px; }

  .chapter-stack::after {
    content: "";
    display: block;
    height: 72svh;
  }

  .chapter {
    --chapter-top: 104px;
    position: sticky;
    top: var(--chapter-top);
    height: min(680px, calc(100svh - var(--chapter-top) - 24px));
    min-height: 560px;
    margin-bottom: 24px;
    z-index: 1;
  }

  .chapter:nth-child(2) { --chapter-top: 128px; z-index: 2; }
  .chapter:nth-child(3) { --chapter-top: 152px; z-index: 3; }
  .chapter:nth-child(4) { --chapter-top: 176px; z-index: 4; }
}

.chapter {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(320px, 39%) minmax(0, 61%);
  overflow: hidden;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-violet);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.chapter::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 39%;
  width: 1px;
  background: var(--line);
}

.chapter-copy {
  position: relative;
  z-index: 2;
  padding: 48px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chapter-number {
  margin: 0 0 64px;
  color: var(--violet-bright);
  font-size: 9px;
}

.chapter-copy h3 {
  margin: 0;
  color: #fff;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.05;
}

.chapter-copy > p:not(.chapter-number) {
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.chapter-copy ul {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.chapter-copy li {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  color: #d3d0d7;
  font-size: 13px;
}

.chapter-copy li span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}

.chapter-demo {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 0;
  margin: 20px 20px 20px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0b0b0c;
}

.demo-toolbar {
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: #77727d;
  font-size: 8px;
}

.demo-toolbar span {
  margin-right: auto;
}

.demo-toolbar i {
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-radius: 50%;
  background: #343137;
}

.demo-toolbar i:last-child {
  background: var(--violet);
  box-shadow: 0 0 10px rgba(155, 108, 255, .8);
}

.architecture-map {
  position: absolute;
  inset: 48px 0 0;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 46px 46px;
}

.map-label {
  position: absolute;
  top: 24px;
  left: 26px;
  color: #5f5a65;
  font-family: "Azeret Mono", monospace;
  font-size: 8px;
}

.map-node {
  position: absolute;
  z-index: 2;
  width: 148px;
  min-height: 74px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 4px;
  background: #121114;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .28);
}

.map-node b,
.map-node span {
  display: block;
}

.map-node b {
  color: #eeeaf3;
  font-size: 13px;
  font-weight: 500;
}

.map-node span {
  margin-top: 5px;
  color: #6e6973;
  font-size: 10px;
}

.map-root {
  top: 88px;
  left: calc(50% - 74px);
  border-color: rgba(155, 108, 255, .65);
  background: #1c1527;
}

.map-work { top: 286px; left: 7%; }
.map-story { top: 286px; left: calc(50% - 74px); }
.map-contact { top: 286px; right: 7%; }

.map-line {
  position: absolute;
  z-index: 1;
  top: 163px;
  left: 50%;
  width: 1px;
  height: 123px;
  background: rgba(155, 108, 255, .5);
  transform-origin: top;
}

.line-b,
.line-c {
  top: 224px;
  width: 32%;
  height: 1px;
  transform-origin: center;
}

.line-b { left: 18%; transform: rotate(-20deg); }
.line-c { left: 50%; transform: rotate(20deg); }

.map-signal {
  position: absolute;
  right: 22px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8a8690;
  font-family: "Azeret Mono", monospace;
  font-size: 8px;
}

.map-signal span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 12px rgba(215, 248, 204, .5);
}

.design-board {
  position: absolute;
  inset: 48px 0 0;
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  grid-template-rows: 1fr 1fr;
}

.design-board > div {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.design-board p {
  margin: 0;
  color: #67626d;
  font-family: "Azeret Mono", monospace;
  font-size: 8px;
}

.type-specimen {
  grid-row: 1 / 3;
  display: grid;
  align-content: space-between;
}

.type-specimen strong {
  color: #fff;
  font-size: 150px;
  font-weight: 500;
  line-height: .8;
}

.type-specimen span {
  color: #827d88;
  font-family: "Azeret Mono", monospace;
  font-size: 9px;
  line-height: 1.7;
}

.palette-specimen > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  color: #8c8791;
  font-family: "Azeret Mono", monospace;
  font-size: 8px;
}

.palette-specimen i {
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--violet);
}

.palette-specimen > div:nth-of-type(2) i { background: #f5f5f5; }
.palette-specimen > div:nth-of-type(3) i { background: #111; }

.spacing-specimen {
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 7px 10px;
}

.spacing-specimen p {
  grid-column: 1 / 3;
  margin-bottom: 6px;
}

.spacing-specimen i {
  width: var(--w);
  height: 5px;
  background: var(--violet);
  opacity: .7;
}

.spacing-specimen span {
  color: #69656e;
  font-family: "Azeret Mono", monospace;
  font-size: 8px;
}

.build-workspace {
  position: absolute;
  inset: 48px 0 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
}

.code-pane {
  min-width: 0;
  padding: 30px 22px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #0d0d0f;
}

.code-pane p {
  margin: 0 0 12px;
  white-space: nowrap;
  color: #8b8790;
  font-family: "Azeret Mono", monospace;
  font-size: 9px;
}

.code-pane p > span {
  display: inline-block;
  width: 27px;
  color: #3e3b41;
}

.code-pane b {
  color: #c8c4cd;
  font-weight: 400;
}

.code-pane .code-purple,
.code-pane i {
  color: var(--violet-bright);
  font-style: normal;
}

.preview-pane {
  position: relative;
  min-width: 0;
  margin: 26px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 5px;
  background: #f1eff4;
  color: #111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
}

.preview-nav {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.preview-nav i {
  width: 13px;
  height: 13px;
  margin-right: auto;
  border-radius: 2px;
  background: #111;
}

.preview-nav span {
  width: 34px;
  height: 3px;
  background: #aaa6af;
}

.preview-nav b {
  width: 20px;
  height: 20px;
  margin-left: 5px;
  border-radius: 50%;
  background: var(--violet);
}

.preview-hero {
  position: relative;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
  background: #131016;
  color: #fff;
}

.preview-hero span {
  position: relative;
  z-index: 2;
  margin-bottom: 13px;
  color: var(--violet-bright);
  font-family: "Azeret Mono", monospace;
  font-size: 7px;
}

.preview-hero strong {
  position: relative;
  z-index: 2;
  font-size: 29px;
  font-weight: 500;
  line-height: 1;
}

.preview-hero i {
  position: absolute;
  right: -30px;
  bottom: -50px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(155, 108, 255, .5);
  border-radius: 50%;
  box-shadow: inset 0 0 60px rgba(155, 108, 255, .22), 0 0 50px rgba(155, 108, 255, .13);
}

.preview-grid {
  height: 130px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px;
}

.preview-grid span {
  border: 1px solid rgba(0, 0, 0, .1);
  background: #fff;
}

.launch-board {
  position: absolute;
  inset: 48px 0 0;
  display: grid;
  grid-template-columns: .95fr 1.35fr;
  grid-template-rows: 1fr 145px;
}

.launch-score {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.launch-score::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(155, 108, 255, .5);
  border-radius: 50%;
  box-shadow: inset 0 0 46px rgba(155, 108, 255, .11), 0 0 30px rgba(155, 108, 255, .08);
}

.launch-score span {
  position: relative;
  color: #fff;
  font-size: 88px;
  font-weight: 500;
  line-height: .9;
}

.launch-score i {
  position: relative;
  margin-top: 14px;
  color: #77727d;
  font-family: "Azeret Mono", monospace;
  font-size: 8px;
  font-style: normal;
  text-transform: uppercase;
}

.launch-metrics {
  padding: 30px;
  border-bottom: 1px solid var(--line);
}

.launch-metrics > div {
  position: relative;
  min-height: 90px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  border-bottom: 1px solid var(--line);
}

.launch-metrics > div:last-child {
  border-bottom: 0;
}

.launch-metrics span {
  color: #87838d;
  font-size: 12px;
}

.launch-metrics strong {
  color: #e9e6ed;
  font-size: 13px;
  font-weight: 500;
}

.launch-metrics i {
  grid-column: 1 / 3;
  width: var(--value);
  height: 2px;
  margin-top: 10px;
  background: var(--violet);
  transform-origin: left;
}

.launch-devices {
  grid-column: 1 / 3;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 30px;
}

.launch-devices i {
  position: relative;
  width: 110px;
  height: 70px;
  border: 1px solid #49454f;
  border-radius: 3px;
}

.launch-devices i:nth-child(2) {
  width: 48px;
  height: 72px;
  border-radius: 5px;
}

.launch-devices i:nth-child(3) {
  width: 72px;
  height: 58px;
}

.launch-devices i::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: #18131e;
  box-shadow: inset 0 0 18px rgba(155, 108, 255, .18);
}

.launch-devices span {
  margin-left: auto;
  padding: 8px 12px;
  border: 1px solid rgba(215, 248, 204, .25);
  border-radius: 999px;
  color: var(--live);
  font-family: "Azeret Mono", monospace;
  font-size: 9px;
}

.work {
  padding-top: 160px;
  background: #050505;
}

.work-scroll {
  position: relative;
  margin-top: 80px;
}

.work-pin {
  position: relative;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090909;
}

.work-topline {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  height: 54px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid var(--line);
  color: #77737c;
  font-family: "Azeret Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.work-topline b {
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
}

.work-topline b i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--violet);
}

.work-topline strong {
  color: #b3afb8;
  font-weight: 400;
}

.work-track {
  position: absolute;
  top: 70px;
  bottom: 16px;
  left: 0;
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 0 16px;
  will-change: transform;
}

.project-slide {
  width: calc(100vw - 32px);
  min-width: 900px;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(220px, 18%) minmax(0, 82%);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #131313;
}

.project-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
}

.project-copy > p {
  margin: 0;
  color: var(--violet-bright);
  font-size: 8px;
}

.project-copy h3 {
  margin: 48px 0 16px;
  color: #fff;
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.project-copy > span {
  width: min(240px, 100%);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.project-copy > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 26px;
}

.project-copy > div i {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #8c8892;
  font-family: "Azeret Mono", monospace;
  font-size: 8px;
  font-style: normal;
  text-transform: uppercase;
}

.project-copy > a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #d8d5dc;
  font-size: 13px;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.project-copy > a b {
  color: var(--violet-bright);
  font-size: 18px;
  font-weight: 400;
}

.project-copy > a:hover {
  color: var(--violet-bright);
}

.project-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: #09090a;
  isolation: isolate;
}

.preview-fallback,
.allio-static-preview,
.project-media iframe {
  position: absolute;
  inset: 0;
  display: block;
}

.preview-fallback {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  filter: brightness(.62) saturate(.78);
  transform: scale(1.12);
  transition: opacity 360ms ease;
}

.project-media iframe {
  z-index: 2;
  width: 1440px;
  height: 1000px;
  border: 0;
  opacity: 0;
  background: #fff;
  transform: scale(var(--preview-scale, .5));
  transform-origin: top left;
  transition: opacity 360ms ease;
  pointer-events: none;
}

.live-preview.is-loaded iframe { opacity: 1; }
.live-preview.is-loaded .preview-fallback { opacity: 0; }

.preview-status {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(8, 8, 9, .82);
  color: #e0dde5;
  font-family: "Azeret Mono", monospace;
  font-size: 8px;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.preview-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 10px rgba(215, 248, 204, .55);
}

.static-preview .preview-status i {
  background: var(--violet-bright);
  box-shadow: 0 0 10px rgba(198, 174, 255, .6);
}

.allio-static-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  transform: none;
}

.range {
  position: relative;
  background: #070707;
}

.range-scroll {
  height: 360svh;
}

.range-pin {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: 70px;
  width: var(--content);
  margin: 0 auto;
  padding: 90px 0 60px;
}

.range-copy > p:not(.eyebrow) {
  width: min(430px, 100%);
  margin: 24px 0 44px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

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

.range-list button {
  width: 100%;
  min-height: 64px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: #77737d;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, padding 180ms ease;
}

.range-list button i,
.range-list button b {
  font-family: "Azeret Mono", monospace;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
}

.range-list button span {
  font-size: 16px;
  font-weight: 500;
}

.range-list button b {
  color: #54515a;
  text-transform: uppercase;
}

.range-list button:hover,
.range-list button.is-active {
  padding-left: 8px;
  color: #fff;
}

.range-list button.is-active i,
.range-list button.is-active b {
  color: var(--violet-bright);
}

.range-stage {
  position: relative;
  min-width: 0;
  height: min(680px, calc(100svh - 150px));
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #0e0d10;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.stack-matrix {
  position: absolute;
  z-index: 3;
  top: 34px;
  right: 34px;
  left: 34px;
  border-top: 1px solid var(--line);
}

.matrix-row {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(150px, 1.45fr) repeat(4, minmax(54px, 1fr));
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.matrix-row > span {
  color: #8c8891;
  font-size: 12px;
}

.matrix-head { min-height: 42px; }
.matrix-head span,
.matrix-head b {
  color: #66626b;
  font-family: "Azeret Mono", monospace;
  font-size: 8px;
  font-weight: 400;
  text-transform: uppercase;
}

.matrix-head b { text-align: center; transition: color 180ms ease; }

.matrix-row > i {
  position: relative;
  width: calc(100% - 18px);
  height: 3px;
  justify-self: center;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
}

.matrix-row > i::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(var(--score));
  transform-origin: left;
  background: rgba(255, 255, 255, .26);
  transition: background 220ms ease, opacity 220ms ease;
}

.range-stage[data-active="0"] .matrix-row > :nth-child(2),
.range-stage[data-active="1"] .matrix-row > :nth-child(3),
.range-stage[data-active="2"] .matrix-row > :nth-child(4),
.range-stage[data-active="3"] .matrix-row > :nth-child(5) { color: var(--violet-bright); }

.range-stage[data-active="0"] .matrix-row > i:nth-child(2)::after,
.range-stage[data-active="1"] .matrix-row > i:nth-child(3)::after,
.range-stage[data-active="2"] .matrix-row > i:nth-child(4)::after,
.range-stage[data-active="3"] .matrix-row > i:nth-child(5)::after { background: var(--violet); }

.range-grid {
  position: absolute;
  inset: 0;
  opacity: .38;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.range-state {
  position: absolute;
  z-index: 2;
  top: 372px;
  right: 42px;
  bottom: 58px;
  left: 42px;
  display: flex;
  flex-direction: column;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(28px);
}

.range-state.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.range-state > p {
  margin: 0;
  color: var(--violet-bright);
  font-size: 9px;
}

.range-state h3 {
  margin: 16px 0 10px;
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.05;
}

.range-state > span {
  width: min(510px, 100%);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.range-state > div:not(.range-readout) {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.range-state > div i {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #8d8993;
  font-family: "Azeret Mono", monospace;
  font-size: 8px;
  font-style: normal;
  text-transform: uppercase;
}

.range-readout {
  position: absolute;
  z-index: 4;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  color: #77727c;
  font-family: "Azeret Mono", monospace;
  font-size: 8px;
}

.range-readout i {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), rgba(155, 108, 255, .12));
}

.range-readout b {
  color: var(--violet-bright);
  font-weight: 400;
}

/* Platform engine sequence */
.range {
  --engine-accent: var(--violet);
  --engine-bg: #09070d;
  background: var(--engine-bg);
  transition: background-color 320ms ease;
}

.range[data-active="1"] { --engine-accent: var(--live); --engine-bg: #0a0d09; }
.range[data-active="2"] { --engine-accent: var(--violet-bright); --engine-bg: #07090c; }

.range-scroll { height: 340svh; }

.range-pin {
  position: sticky;
  top: 0;
  width: 100%;
  min-height: 100svh;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--engine-bg);
  transition: background-color 320ms ease;
}

.range-atmosphere {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.range-orbit {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--engine-accent) 18%, transparent);
  border-radius: 50%;
}

.range-orbit-a {
  top: -44vw;
  right: -22vw;
  width: 92vw;
  height: 92vw;
  border-style: dashed;
  animation: rangeOrbit 46s linear infinite;
}

.range-orbit-b {
  right: 17vw;
  bottom: -35vw;
  width: 62vw;
  height: 62vw;
  animation: rangeOrbit 34s linear infinite reverse;
}

.range-packet {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--engine-accent);
  box-shadow: 0 0 20px 6px color-mix(in srgb, var(--engine-accent) 24%, transparent);
}

.range-packet-a { top: 18%; left: 42%; animation: rangePacketA 6s ease-in-out infinite; }
.range-packet-b { top: 27%; right: 8%; animation: rangePacketB 7.5s -2.4s ease-in-out infinite; }
.range-packet-c { right: 34%; bottom: 18%; animation: rangePacketA 8.5s -4s ease-in-out infinite reverse; }

.range-copy {
  position: absolute;
  z-index: 4;
  top: clamp(96px, 14svh, 138px);
  left: max(24px, calc((100vw - 1240px) / 2));
  width: min(390px, 31vw);
}

.range-copy .eyebrow { margin-bottom: 24px; }

.range-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 5.25vw, 76px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .92;
}

.range-copy h2 em {
  color: var(--engine-accent);
  font-style: normal;
  transition: color 320ms ease;
}

.range-copy > p.range-intro {
  width: min(390px, 100%);
  margin: 24px 0 0;
  color: #aaa6af;
  font-size: 15px;
  line-height: 1.5;
}

.range-state-wrap {
  position: relative;
  height: 190px;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, .11);
}

.range-state {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  padding: 22px 0 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.range-state.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.range-state > p {
  margin: 0;
  color: var(--engine-accent);
  font-size: 8px;
  transition: color 320ms ease;
}

.range-state h3 {
  margin: 14px 0 9px;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1;
}

.range-state > span {
  display: block;
  width: min(370px, 100%);
  color: #9a969f;
  font-size: 13px;
  line-height: 1.48;
}

.range-stage {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.engine-axis {
  position: absolute;
  z-index: 0;
  opacity: .55;
  background: rgba(255, 255, 255, .08);
}

.engine-axis-x {
  top: 50%;
  right: 0;
  left: 39%;
  height: 1px;
}

.engine-axis-y {
  top: 0;
  bottom: 0;
  left: 70%;
  width: 1px;
}

.stack-engine {
  position: absolute;
  z-index: 2;
  top: 13svh;
  right: max(24px, calc((100vw - 1240px) / 2));
  width: min(56vw, 760px);
  height: min(64svh, 600px);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #09090a;
}

.engine-toolbar {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: #77737c;
  font: 8px "Azeret Mono", monospace;
  text-transform: uppercase;
}

.engine-toolbar > div { display: flex; gap: 7px; }
.engine-toolbar i { width: 6px; height: 6px; border-radius: 50%; background: #3b383e; }
.engine-toolbar i:last-child { background: var(--engine-accent); transition: background-color 320ms ease; }

.engine-screen {
  position: relative;
  height: calc(100% - 44px);
  overflow: hidden;
}

.engine-state {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transform: scale(.985);
  transition: opacity 300ms ease, transform 500ms cubic-bezier(.22, 1, .36, 1), visibility 300ms ease;
}

.engine-state.is-active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.wp-engine {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  background: #efedf1;
}

.wp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 25px 16px;
  background: #151218;
  color: #7e7884;
  font: 9px "Azeret Mono", monospace;
}

.wp-sidebar strong { margin-bottom: 17px; color: #d8cadf; font-size: 8px; font-weight: 400; }
.wp-sidebar span { padding: 8px 9px; }
.wp-sidebar span.is-current { background: var(--violet); color: #0b0810; }
.wp-sidebar i { height: 5px; margin-top: 12px; background: rgba(255, 255, 255, .08); }
.wp-sidebar i:nth-of-type(2) { width: 72%; }
.wp-sidebar i:nth-of-type(3) { width: 86%; }

.wp-page { display: flex; flex-direction: column; padding: 22px; }
.wp-page-head { height: 30px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #d0ccd2; }
.wp-page-head i { width: 7px; height: 7px; border-radius: 50%; background: var(--violet); }
.wp-page-head span { width: 70px; height: 5px; background: #beb8c1; }
.wp-page-head b { width: 40px; height: 5px; margin-left: auto; background: #8f8793; transform-origin: left; }
.wp-page-hero { min-height: 47%; display: flex; flex-direction: column; justify-content: center; padding: 24px; background: #17131f; }
.wp-page-hero > span { width: 34px; height: 3px; background: var(--violet); }
.wp-page-hero strong { width: min(310px, 100%); margin: 14px 0 19px; color: #fff; font-size: clamp(24px, 3vw, 42px); font-weight: 500; letter-spacing: -.035em; line-height: .98; }
.wp-page-hero i { width: 44%; height: 7px; background: rgba(255, 255, 255, .18); }
.wp-page-blocks { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding-top: 12px; }
.wp-page-blocks i { background: #d8d4db; transform-origin: bottom; }
.range-stage[data-active="0"] .wp-page-head b { animation: engineSweep 2.8s ease-in-out infinite; }
.range-stage[data-active="0"] .wp-page-blocks i { animation: engineBlocks 3.6s ease-in-out infinite alternate; }
.range-stage[data-active="0"] .wp-page-blocks i:nth-child(2) { animation-delay: -.8s; }
.range-stage[data-active="0"] .wp-page-blocks i:nth-child(3) { animation-delay: -1.6s; }

.shopify-engine {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  grid-template-rows: 52px minmax(0, 1fr) 105px;
  background: #efeee8;
  color: #10110f;
}

.shopify-engine header { grid-column: 1 / 3; display: flex; align-items: center; gap: 18px; padding: 0 19px; border-bottom: 1px solid #cac8bf; font-size: 11px; }
.shopify-engine header strong { margin-right: auto; font-size: 12px; }
.shopify-engine header i { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: #111; color: #fff; font-style: normal; }
.shopify-hero { position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 25px; overflow: hidden; background: #b9b4aa; }
.shopify-hero::before { content: ""; position: absolute; width: 290px; height: 290px; top: -90px; right: -40px; border: 1px solid rgba(17, 17, 17, .4); border-radius: 50%; }
.shopify-hero p { position: relative; margin: 0 0 auto; font: 8px "Azeret Mono", monospace; }
.shopify-hero strong { position: relative; font-size: clamp(30px, 4vw, 52px); font-weight: 500; letter-spacing: -.045em; line-height: .88; }
.shopify-hero span { position: absolute; top: 18%; right: 15%; width: 82px; height: 82px; border-radius: 50%; background: var(--live); }
.shopify-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; padding: 10px; background: #f7f6f0; }
.shopify-products i { background: #c6c1b7; }
.shopify-products i:nth-child(2) { background: #9d978e; }
.shopify-products i:nth-child(3) { background: #d8d4ca; }
.shopify-cart { grid-column: 2; grid-row: 2 / 4; display: flex; flex-direction: column; gap: 13px; padding: 20px 16px; border-left: 1px solid #cac8bf; background: #f8f7f1; }
.shopify-cart b { font: 8px "Azeret Mono", monospace; font-weight: 400; }
.shopify-cart span { height: 64px; background: #d5d1c8; }
.shopify-cart span:nth-of-type(2) { background: #bbb6ac; }
.shopify-cart strong { margin-top: auto; padding: 13px; background: #111; color: #fff; font-size: 9px; text-align: center; }
.range-stage[data-active="1"] .shopify-hero span { animation: shopObject 5s ease-in-out infinite; }
.range-stage[data-active="1"] .shopify-products i { animation: engineBlocks 3.8s ease-in-out infinite alternate; }
.range-stage[data-active="1"] .shopify-products i:nth-child(2) { animation-delay: -.9s; }
.range-stage[data-active="1"] .shopify-products i:nth-child(3) { animation-delay: -1.8s; }

.visual-engine {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) 126px;
  background: #161319;
}

.visual-layers,
.visual-properties { display: flex; flex-direction: column; gap: 4px; padding: 18px 12px; color: #77717e; font: 8px "Azeret Mono", monospace; }
.visual-layers { border-right: 1px solid rgba(255, 255, 255, .09); }
.visual-properties { border-left: 1px solid rgba(255, 255, 255, .09); }
.visual-layers strong,
.visual-properties strong { margin-bottom: 15px; color: #cbc2d0; font-size: 8px; font-weight: 400; }
.visual-layers span,
.visual-properties span { padding: 8px 7px; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.visual-canvas { position: relative; margin: 18px; overflow: hidden; background: #efedf1; }
.visual-block { position: absolute; }
.visual-block-a { top: 12%; left: 9%; width: 52%; height: 42%; border: 1px solid var(--violet); background: #b9a0ed; }
.visual-block-a i { position: absolute; width: 7px; height: 7px; border: 1px solid var(--violet); background: #fff; }
.visual-block-a i:nth-child(1) { top: -4px; left: -4px; }
.visual-block-a i:nth-child(2) { top: -4px; right: -4px; }
.visual-block-a i:nth-child(3) { right: -4px; bottom: -4px; }
.visual-block-a i:nth-child(4) { bottom: -4px; left: -4px; }
.visual-block-b { top: 12%; right: 8%; width: 24%; height: 62%; background: #17131f; }
.visual-block-c { right: 38%; bottom: 10%; width: 35%; height: 24%; background: var(--live); }
.visual-block-d { right: 8%; bottom: 10%; width: 24%; height: 16%; background: #c8c3cc; }
.range-stage[data-active="2"] .visual-block-a { animation: visualBlockA 5.5s ease-in-out infinite alternate; }
.range-stage[data-active="2"] .visual-block-b { animation: visualBlockB 6.2s ease-in-out infinite alternate; }
.range-stage[data-active="2"] .visual-block-c { animation: visualBlockC 4.8s ease-in-out infinite alternate; }

.custom-engine { display: grid; grid-template-columns: .88fr 1.12fr; background: #070909; }
.custom-code { display: flex; flex-direction: column; justify-content: center; gap: 22px; padding: 28px; border-right: 1px solid rgba(255, 255, 255, .1); }
.custom-code span { color: #ada9b1; font: 9px "Azeret Mono", monospace; white-space: nowrap; }
.custom-code span:nth-child(3),
.custom-code span:nth-child(4) { color: var(--violet-bright); }
.custom-code i { display: inline-block; width: 28px; color: #4d4950; font-style: normal; }
.custom-output { position: relative; display: grid; place-items: center; overflow: hidden; }
.custom-output::before,
.custom-output::after { content: ""; position: absolute; background: rgba(255, 255, 255, .08); }
.custom-output::before { width: 100%; height: 1px; }
.custom-output::after { width: 1px; height: 100%; }
.custom-output strong { position: relative; z-index: 2; color: #fff; font-size: clamp(34px, 5vw, 62px); font-weight: 500; letter-spacing: -.05em; line-height: .82; text-align: center; }
.custom-orbit { position: absolute; width: min(320px, 74%); aspect-ratio: 1; border: 1px dashed rgba(198, 174, 255, .25); border-radius: 50%; }
.custom-node { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 18px 5px rgba(155, 108, 255, .22); }
.custom-node-a { top: 18%; left: 20%; }
.custom-node-b { top: 28%; right: 13%; }
.custom-node-c { right: 30%; bottom: 15%; }
.range-stage[data-active="2"] .custom-orbit { animation: ambientSpin 18s linear infinite; }
.range-stage[data-active="2"] .custom-node-a { animation: ambientPulse 3.8s ease-in-out infinite; }
.range-stage[data-active="2"] .custom-node-b { animation: ambientPulse 4.5s -1.2s ease-in-out infinite; }
.range-stage[data-active="2"] .custom-node-c { animation: ambientPulse 4s -.7s ease-in-out infinite; }

.engine-readout {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #66626b;
  font: 8px "Azeret Mono", monospace;
  text-transform: uppercase;
}

.engine-readout b { color: var(--engine-accent); font-weight: 400; transition: color 320ms ease; }
.engine-readout i { font-style: normal; }
.engine-readout-top { top: calc(13svh - 12px); right: max(24px, calc((100vw - 1240px) / 2)); }
.engine-readout-bottom { right: max(24px, calc((100vw - 1240px) / 2)); bottom: 118px; }

.range-list {
  position: absolute;
  z-index: 5;
  right: max(24px, calc((100vw - 1240px) / 2));
  bottom: 24px;
  left: max(24px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  background: rgba(7, 7, 8, .72);
}

.range-list button {
  position: relative;
  width: 100%;
  min-height: 70px;
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, .09);
  border-bottom: 0;
  background: transparent;
  color: #77737d;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.range-list button:last-child { border-right: 0; }
.range-list button::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; transform: scaleX(0); transform-origin: left; background: var(--engine-accent); transition: transform 240ms ease, background-color 320ms ease; }
.range-list button i { grid-row: 1 / 3; align-self: center; color: #5c5861; font-size: 8px; }
.range-list button span { font-size: 13px; font-weight: 500; }
.range-list button b { color: #5d5962; font-size: 7px; }
.range-list button:hover,
.range-list button.is-active { padding-left: 20px; color: #fff; background: rgba(255, 255, 255, .035); }
.range-list button.is-active::after { transform: scaleX(1); }
.range-list button.is-active i,
.range-list button.is-active b { color: var(--engine-accent); transition: color 320ms ease; }

@keyframes rangeOrbit { to { transform: rotate(360deg); } }
@keyframes rangePacketA { 50% { transform: translate3d(8vw, 6vh, 0); opacity: .35; } }
@keyframes rangePacketB { 50% { transform: translate3d(-7vw, 9vh, 0); opacity: .35; } }
@keyframes engineSweep { 50% { transform: scaleX(.25); opacity: .45; } }
@keyframes engineBlocks { to { transform: scaleY(.82); opacity: .72; } }
@keyframes shopObject { 50% { transform: translate3d(-18px, 13px, 0) scale(1.08); } }
@keyframes visualBlockA { to { transform: translate3d(9%, 5%, 0); } }
@keyframes visualBlockB { to { transform: translate3d(-11%, 8%, 0); } }
@keyframes visualBlockC { to { transform: translate3d(-8%, -9%, 0); } }

.footer {
  position: relative;
  min-height: 720px;
  padding: 70px max(24px, calc((100vw - 1240px) / 2)) 26px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-top {
  position: relative;
  z-index: 2;
  min-height: 90px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 34px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.footer-top > p {
  margin: 0;
  color: #85818b;
  font-size: 13px;
  line-height: 1.55;
}

.footer-top > a:last-child {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #c9c6ce;
  font-size: 13px;
}

.footer-top > a:last-child span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--violet-bright);
}

.footer-title {
  position: relative;
  z-index: 2;
  min-height: 430px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 180px;
  font-weight: 500;
  line-height: .82;
  white-space: nowrap;
}

.footer-title strong {
  color: var(--violet);
  font-weight: 500;
}

.footer-base {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #66626b;
  font-family: "Azeret Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.footer-base span:nth-child(2) {
  justify-self: center;
}

@media (min-width: 861px) {
  .chapter {
    position: sticky;
    top: var(--chapter-top);
    height: min(680px, calc(100svh - var(--chapter-top) - 24px));
    min-height: 560px;
    max-height: 680px;
  }
}

@media (max-width: 1100px) {
  :root { --content: min(100% - 32px, 980px); }

  .site-nav {
    width: calc(100% - 32px);
    grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  }

  body.is-scrolled .site-nav { width: calc(100% - 32px); }
  .site-nav nav { gap: 24px; }

  .hero h1 { font-size: 78px; }
  .platform-rail { padding: 0 16px; }

  .process-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 18px;
  }

  .chapter {
    grid-template-columns: minmax(270px, 38%) minmax(0, 62%);
  }

  .chapter::before { left: 38%; }
  .chapter-copy { padding: 38px 28px; }
  .chapter-copy h3 { font-size: 32px; }
  .chapter-number { margin-bottom: 42px; }
  .map-node { width: 126px; }
  .map-root, .map-story { left: calc(50% - 63px); }
  .type-specimen strong { font-size: 124px; }

  .range-pin {
    grid-template-columns: minmax(320px, .8fr) minmax(480px, 1.2fr);
    gap: 36px;
  }

  .footer-title { font-size: 136px; }
}

@media (max-width: 860px) {
  .site-nav {
    grid-template-columns: 1fr auto;
  }

  .site-nav nav { gap: 20px; }
  .nav-role { display: none; }

  .hero {
    min-height: 720px;
  }

  .hero-copy { padding-top: 138px; }
  .hero h1 { font-size: 68px; }
  .phase-console { bottom: 94px; }
  .hero-coordinate { display: none; }
  .platform-rail { grid-template-columns: 150px 1fr; }

  .section-heading h2,
  .range-copy h2 { font-size: 52px; }

  .section-intro {
    margin-left: 0;
  }

  .about { padding: 112px 0 56px; }
  .about-copy { grid-template-columns: 1fr; gap: 28px; }
  .about-copy > p:last-child { max-width: 620px; }

  .process-layout {
    display: block;
    margin-top: 64px;
  }

  .chapter-rail {
    z-index: 8;
    top: 86px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 8px;
    margin: 0 0 18px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(8, 8, 8, .92);
    backdrop-filter: blur(14px);
  }

  .chapter-rail > p,
  .chapter-meter { display: none; }

  .chapter-rail > a {
    min-height: 42px;
    grid-template-columns: 10px 22px 1fr;
    border: 0;
    font-size: 12px;
  }

  .chapter { min-height: 630px; }

  .work-pin { min-height: 680px; }
  .work-track { top: 70px; }
  .project-slide {
    width: calc(100vw - 32px);
    min-width: 680px;
    grid-template-columns: minmax(220px, 28%) minmax(0, 72%);
  }
  .project-copy { padding: 32px 26px; }
  .project-copy h3 { margin-top: 48px; font-size: 40px; }
  .project-media { padding: 0; }

  .range-scroll { height: auto; }
  .range-pin {
    position: relative;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 120px 0;
  }

  .range-copy > p:not(.eyebrow) { margin-bottom: 34px; }
  .range-stage { height: 600px; }
  .footer-title { min-height: 360px; font-size: 104px; }
}

@media (max-width: 620px) {
  :root { --content: calc(100% - 24px); }

  .signal-bar { height: 32px; }
  .signal-bar p { font-size: 10px; }
  .signal-bar i { display: none; }

  .site-nav,
  body.is-scrolled .site-nav {
    top: 12px;
    width: calc(100% - 24px);
    height: 52px;
    grid-template-columns: auto 1fr;
    padding: 5px 7px;
  }

  body.is-scrolled .site-nav { top: 10px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-name { display: none; }
  .site-nav nav { justify-self: end; gap: 12px; padding-right: 4px; }
  .site-nav nav a { padding: 10px 0; font-size: 11px; }
  .nav-progress { right: 16px; left: 16px; }

  .hero {
    height: 100svh;
    min-height: 650px;
  }

  .flow-readout { display: none; }
  .hero-copy {
    width: calc(100% - 24px);
    padding-top: 116px;
  }
  .hero-kicker { margin-bottom: 13px; font-size: 8px; }
  .hero h1 { font-size: 42px; line-height: .98; letter-spacing: -.035em; }
  .hero h1 b { display: block; }
  .hero-summary { width: min(330px, 100%); margin-top: 15px; font-size: 14px; line-height: 1.4; }

  .about { padding: 88px 0 50px; }
  .about-copy { gap: 24px; }
  .about-copy .eyebrow { margin-bottom: 0; }
  .about-copy h2 { font-size: 43px; }
  .about-copy > p:last-child { font-size: 15px; line-height: 1.52; }

  .phase-console {
    bottom: 69px;
    width: calc(100% - 24px);
    min-height: 58px;
  }

  .phase-status,
  .phase-line { display: none; }
  .phase-controls { right: 5px; left: 5px; height: 55px; grid-template-columns: 1fr; }
  .phase-stage { bottom: 55px; }
  .hero.is-static-phase .phase-console {
    width: calc(100% - 24px);
    height: calc(100svh - 126px);
    bottom: 64px;
    border-radius: 10px;
  }
  .phase-tabs { gap: 2px; }
  .phase-tabs button { height: 46px; padding: 0 6px; font-size: 11px; }
  .phase-tabs button i { display: block; margin: 0 0 1px; font-size: 7px; }

  .platform-rail {
    height: 52px;
    grid-template-columns: 1fr;
    padding: 0 12px;
  }
  .platform-rail > p { display: none; }
  .platform-rail > div { grid-template-columns: repeat(3, 1fr); }
  .platform-rail > div span { font-size: 10px; }
  .platform-rail > div span:first-child { border-left: 0; }

  .phase-scene {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    padding: 22px;
  }

  .phase-scene-copy { padding: 0; }
  .phase-scene-copy > span { margin-bottom: 12px; }
  .phase-scene-copy h2 { font-size: 34px; }
  .phase-scene-copy p { margin-top: 10px; font-size: 12px; }
  .idea-system,
  .design-system-live,
  .build-system-live,
  .live-system { margin-top: 18px; border-top: 1px solid rgba(255, 255, 255, .1); border-left: 0; }
  .idea-ring { width: 190px; height: 190px; }
  .idea-ring.ring-two { width: 280px; height: 280px; }
  .idea-core { width: 66px; height: 66px; font-size: 10px; }
  .idea-node { min-width: 78px; min-height: 34px; padding: 0 9px; font-size: 7px; }
  .design-system-live { padding: 12px; }
  .design-type { padding: 16px; }
  .design-type strong { font-size: 88px; }
  .build-system-live { grid-template-columns: 1fr; padding: 12px; }
  .build-code-live { display: none; }
  .build-browser-live strong { font-size: 26px; }
  .live-system { padding: 12px; gap: 12px; }
  .live-radar { width: min(160px, 100%); }
  .live-signals p { padding: 11px 0; font-size: 9px; }

  .section-heading h2,
  .range-copy h2 { font-size: 43px; }
  .section-intro { margin-top: 20px; font-size: 15px; }
  .eyebrow { margin-bottom: 22px; }

  .process { padding: 100px 0 110px; }
  .process-layout { margin-top: 48px; }

  .chapter-rail {
    top: 72px;
    margin-right: -2px;
    margin-left: -2px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 5px;
  }

  .chapter-rail > a {
    min-width: 0;
    display: flex;
    justify-content: center;
    gap: 4px;
    font-size: 9px;
  }
  .chapter-rail > a i { width: 5px; height: 5px; }
  .chapter-rail > a span { display: none; }

  .chapter {
    min-height: 0;
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }

  .chapter::before { display: none; }
  .chapter-copy { min-height: 390px; padding: 34px 24px; }
  .chapter-number { margin-bottom: 38px; }
  .chapter-copy h3 { font-size: 31px; }
  .chapter-copy > p:not(.chapter-number) { margin: 18px 0 26px; font-size: 14px; }
  .chapter-demo { height: 430px; margin: 0 10px 10px; }

  .map-node { width: 102px; min-height: 64px; padding: 12px; }
  .map-node b { font-size: 11px; }
  .map-node span { font-size: 8px; }
  .map-root { top: 68px; left: calc(50% - 51px); }
  .map-work { top: 230px; left: 3%; }
  .map-story { top: 230px; left: calc(50% - 51px); }
  .map-contact { top: 230px; right: 3%; }
  .map-line { top: 132px; height: 98px; }
  .line-b, .line-c { top: 181px; height: 1px; }

  .design-board { grid-template-columns: 1.05fr .95fr; }
  .design-board > div { padding: 20px; }
  .type-specimen strong { font-size: 98px; }
  .palette-specimen > div { grid-template-columns: 32px 1fr; gap: 7px; }
  .palette-specimen i { height: 20px; }

  .build-workspace { grid-template-columns: 1fr; }
  .code-pane { display: none; }
  .preview-pane { margin: 20px; }
  .preview-hero { min-height: 250px; padding: 28px; }

  .launch-board { grid-template-columns: 1fr; grid-template-rows: 210px 1fr 90px; }
  .launch-score { border-right: 0; }
  .launch-score::before { width: 150px; height: 150px; }
  .launch-score span { font-size: 64px; }
  .launch-metrics { padding: 14px 22px; }
  .launch-metrics > div { min-height: 54px; }
  .launch-devices { grid-column: 1; padding: 14px 22px; gap: 14px; }
  .launch-devices i { width: 70px; height: 44px; }
  .launch-devices i:nth-child(2) { width: 30px; height: 48px; }
  .launch-devices i:nth-child(3) { width: 48px; height: 38px; }

  .work { padding-top: 100px; }
  .work-scroll { margin-top: 54px; }
  .work-pin {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 66px 12px 12px;
  }
  .work-topline { height: 54px; grid-template-columns: 1fr auto; padding: 0 14px; }
  .work-topline b { display: none; }
  .work-topline strong { font-size: 7px; }
  .work-track {
    position: static;
    width: 100%;
    display: grid;
    gap: 14px;
    padding: 0;
    transform: none !important;
  }
  .project-slide {
    width: 100%;
    min-width: 0;
    height: auto;
    grid-template-columns: 1fr;
  }
  .project-copy { min-height: 320px; padding: 28px 22px; }
  .project-copy h3 { margin: 42px 0 14px; font-size: 38px; }
  .project-copy > span { font-size: 14px; }
  .project-copy > a { margin-top: 36px; }
  .project-media {
    aspect-ratio: 1.44 / 1;
    padding: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .preview-status { top: 9px; right: 9px; padding: 7px 8px; font-size: 7px; }

  .range-pin { gap: 36px; padding: 100px 0; }
  .range-list button { grid-template-columns: 30px 1fr; min-height: 58px; }
  .range-list button b { display: none; }
  .range-stage { height: 550px; min-height: 0; }
  .stack-matrix { top: 20px; right: 18px; left: 18px; }
  .matrix-row { min-height: 45px; grid-template-columns: minmax(98px, 1.3fr) repeat(4, minmax(30px, .7fr)); }
  .matrix-row > span { font-size: 9px; }
  .matrix-head { min-height: 34px; }
  .matrix-head span, .matrix-head b { font-size: 6px; }
  .matrix-row > i { width: calc(100% - 8px); }
  .range-state { top: 270px; right: 22px; bottom: 58px; left: 22px; padding: 0; }
  .range-state h3 { font-size: 30px; }
  .range-state > span { font-size: 14px; }
  .range-readout { right: 20px; bottom: 20px; left: 20px; }

  .footer { min-height: 560px; padding-top: 42px; }
  .footer-top {
    grid-template-columns: 1fr auto;
    gap: 28px;
  }
  .footer-top > p { display: none; }
  .footer-title {
    min-height: 340px;
    display: block;
    padding-top: 90px;
    font-size: 68px;
    line-height: .9;
    white-space: normal;
  }
  .footer-title span,
  .footer-title strong { display: block; }
  .footer-base { grid-template-columns: 1fr auto; gap: 12px; }
  .footer-base span:nth-child(2) { display: none; }
}

@media (max-width: 860px) {
  .range-scroll { height: auto; }

  .range-pin {
    position: relative;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 104px 16px 24px;
  }

  .range-copy {
    order: 1;
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .range-copy h2 { font-size: 58px; }
  .range-copy > p.range-intro { width: min(520px, 100%); }
  .range-state-wrap { width: min(520px, 100%); height: 180px; }

  .range-stage {
    order: 3;
    position: relative;
    inset: auto;
    width: min(100%, 760px);
    height: 560px;
    min-height: 0;
    margin: 18px auto 0;
  }

  .stack-engine {
    top: 50%;
    right: auto;
    left: 50%;
    width: calc(100% - 16px);
    height: 500px;
    min-height: 0;
    transform: translate(-50%, -50%);
  }

  .engine-axis-x { left: 0; }
  .engine-axis-y { left: 50%; }
  .engine-readout { display: none; }

  .range-list {
    order: 2;
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 760px);
    margin: 8px auto 0;
  }

  .range-list button { padding: 0 12px; }
  .range-list button:hover,
  .range-list button.is-active { padding-left: 12px; }
  .range-list button b { display: none; }
}

@media (max-width: 620px) {
  .phase-ambient { opacity: .72; }
  .ambient-glyph { font-size: 260px; }
  .ambient-code { right: -42%; width: 140vw; }

  .range-pin { padding: 96px 12px 18px; }
  .range-copy h2 { font-size: 43px; line-height: .94; }
  .range-copy > p.range-intro { margin-top: 18px; font-size: 14px; }
  .range-state-wrap { height: 205px; margin-top: 30px; }
  .range-state { inset: 0; padding-top: 18px; }
  .range-state h3 { font-size: 27px; }
  .range-state > span { font-size: 13px; }

  .range-stage { height: 460px; margin-top: 4px; }
  .stack-engine { width: 100%; height: 420px; }
  .engine-toolbar { height: 40px; padding: 0 12px; }
  .engine-screen { height: calc(100% - 40px); }

  .wp-engine { grid-template-columns: 92px minmax(0, 1fr); }
  .wp-sidebar { gap: 2px; padding: 17px 9px; font-size: 7px; }
  .wp-sidebar strong { margin-bottom: 10px; font-size: 7px; }
  .wp-sidebar span { padding: 6px; }
  .wp-page { padding: 12px; }
  .wp-page-hero { padding: 16px; }
  .wp-page-hero strong { font-size: 25px; }

  .shopify-engine { grid-template-columns: minmax(0, 1fr) 112px; grid-template-rows: 44px minmax(0, 1fr) 86px; }
  .shopify-engine header { padding: 0 11px; font-size: 8px; }
  .shopify-engine header strong { font-size: 9px; }
  .shopify-hero { padding: 16px; }
  .shopify-hero strong { font-size: 31px; }
  .shopify-hero span { width: 54px; height: 54px; }
  .shopify-cart { gap: 8px; padding: 13px 9px; }
  .shopify-cart span { height: 50px; }
  .shopify-cart strong { padding: 9px 4px; font-size: 7px; }

  .visual-engine { grid-template-columns: 76px minmax(0, 1fr); }
  .visual-properties { display: none; }
  .visual-layers { padding: 12px 7px; font-size: 6px; }
  .visual-layers span { padding: 7px 4px; }
  .visual-canvas { margin: 12px; }

  .custom-engine { grid-template-columns: 1fr; }
  .custom-code { display: none; }
  .custom-output strong { font-size: 48px; }

  .range-list button {
    min-height: 62px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-items: center;
    padding: 0 4px;
    text-align: center;
  }

  .range-list button:hover,
  .range-list button.is-active { padding-left: 4px; }
  .range-list button i { grid-row: auto; margin-bottom: 3px; font-size: 7px; }
  .range-list button span { font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html[data-motion="reduced"] { scroll-behavior: auto; }

  html[data-motion="reduced"] *,
  html[data-motion="reduced"] *::before,
  html[data-motion="reduced"] *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  html[data-motion="reduced"] .hero-flow { transform: none !important; opacity: .72 !important; }
  html[data-motion="reduced"] .work-track { transform: none !important; }
}
