:root {
  color-scheme: dark;
  --canvas: #100e0d;
  --canvas-deep: #080707;
  --panel: #1a1714;
  --panel-raised: #252220;
  --panel-light: #302b27;
  --line: rgba(255, 225, 188, 0.14);
  --line-strong: rgba(255, 225, 188, 0.26);
  --ivory: #f5f0e8;
  --muted: #a69d94;
  --muted-dark: #706861;
  --amber: #ffb347;
  --amber-pale: #ffd180;
  --coral: #ff6b6b;
  --mint: #78f2c2;
  --cyan: #52d9ff;
  --violet: #a57bff;
  --lime: #b7f759;
  --scene: var(--coral);
  --scene-soft: rgba(255, 107, 107, 0.18);
  --display: "Geologica", "Inter", sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --page: min(1240px, calc(100vw - 48px));
  --section-space: clamp(88px, 10vw, 148px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(146, 64, 255, 0.08), transparent 35%),
    var(--canvas);
  color: var(--ivory);
  font-family: var(--body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0 0.45px, transparent 0.55px),
    radial-gradient(circle at center, rgba(255, 209, 128, 0.5) 0 0.35px, transparent 0.5px);
  background-position: 0 0, 2px 3px;
  background-size: 4px 4px, 7px 7px;
}

::selection {
  color: var(--canvas-deep);
  background: var(--amber);
}

a {
  color: inherit;
}

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

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

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

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

.page-width {
  width: var(--page);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 16px;
  transform: translateY(-150%);
  color: var(--canvas);
  background: var(--amber);
  border-radius: 5px;
  font-weight: 700;
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1320px, calc(100vw - 32px));
  min-height: 72px;
  padding: 10px 12px 10px 16px;
  margin-top: 14px;
  transform: translateX(-50%);
  border: 1px solid transparent;
  border-radius: 10px;
  transition:
    min-height 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  background: rgba(16, 14, 13, 0.82);
  border-color: var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ivory);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  background: #151214;
  border: 1px solid rgba(165, 123, 255, 0.35);
  border-radius: 7px 7px 7px 2px;
  box-shadow: inset 0 0 15px rgba(165, 123, 255, 0.08);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  background: var(--amber);
}

.brand-mark::before {
  right: -1px;
  bottom: -1px;
  width: 10px;
  height: 1px;
}

.brand-mark::after {
  right: -1px;
  bottom: -1px;
  width: 1px;
  height: 10px;
}

.brand-mark img {
  width: 31px;
  height: 31px;
  object-fit: cover;
  border-radius: 4px;
}

.brand-led {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 4px;
  height: 4px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--mint);
}

.brand-name {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.brand-name strong {
  color: var(--amber);
  font-weight: 700;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.primary-nav a,
.text-link {
  color: #c2bab2;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--ivory);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  overflow: hidden;
  color: var(--ivory);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 8px 8px 8px 3px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.45);
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background 150ms ease,
    box-shadow 150ms ease,
    color 150ms ease;
}

.button::after {
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
  transition: left 520ms var(--ease-out);
}

.button:hover::after {
  left: 130%;
}

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

.button:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
}

.button:focus-visible,
.scene-button:focus-visible,
.world-select:focus-visible,
.world-stage__play:focus-visible,
.world-transport__toggle:focus-visible,
.world-queue__item:focus-visible,
.world-progress:focus-visible,
.world-mute:focus-visible,
.product-tabs button:focus-visible,
.nav-toggle:focus-visible,
summary:focus-visible,
.inline-cta:focus-visible {
  outline: 2px solid var(--amber-pale);
  outline-offset: 3px;
}

.button--primary {
  color: #21130d;
  background: linear-gradient(110deg, var(--amber) 0%, #ff9a54 45%, var(--coral) 100%);
  border-color: rgba(255, 209, 128, 0.72);
  box-shadow:
    0 4px 0 #8b4035,
    0 14px 30px rgba(255, 107, 107, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.button--primary:hover {
  box-shadow:
    0 6px 0 #8b4035,
    0 18px 38px rgba(255, 107, 107, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.button--secondary {
  background: #2c2824;
  border-color: rgba(255, 179, 71, 0.28);
}

.button--secondary:hover,
.button--ghost:hover {
  color: var(--amber-pale);
  background: rgba(255, 179, 71, 0.08);
  border-color: rgba(255, 179, 71, 0.48);
}

.button--small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
}

.button--large {
  min-height: 56px;
  padding: 15px 23px;
}

.button-led {
  width: 7px;
  height: 7px;
  background: #fff6c7;
  border: 1px solid rgba(47, 18, 10, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 10px #fff6c7;
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--amber);
}

.hero {
  --scene: var(--coral);
  --scene-soft: rgba(255, 107, 107, 0.18);
  position: relative;
  min-height: 860px;
  padding: 132px 0 68px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 75% 34%, var(--scene-soft), transparent 24%),
    radial-gradient(circle at 17% 38%, rgba(165, 123, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #100e13 0%, #16101d 54%, #141415 100%);
  transition: --scene 400ms ease;
}

.hero[data-scene="forest"] {
  --scene: var(--mint);
  --scene-soft: rgba(120, 242, 194, 0.16);
}

.hero[data-scene="chase"] {
  --scene: var(--cyan);
  --scene-soft: rgba(82, 217, 255, 0.16);
}

.signal-field,
.final-signal {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  opacity: 0.78;
}

.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.09;
  background: repeating-linear-gradient(180deg, transparent 0 3px, rgba(255, 255, 255, 0.1) 3px 4px);
  mix-blend-mode: soft-light;
}

.hero::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -3;
  width: 1px;
  height: 100%;
  content: "";
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.12), transparent);
  box-shadow:
    -240px 0 rgba(255, 255, 255, 0.035),
    240px 0 rgba(255, 255, 255, 0.035),
    -480px 0 rgba(255, 255, 255, 0.025),
    480px 0 rgba(255, 255, 255, 0.025);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 110px;
  z-index: -1;
  content: "";
  background: linear-gradient(transparent, var(--canvas));
}

.hero-hills {
  position: absolute;
  right: -5%;
  bottom: 0;
  left: -5%;
  z-index: -2;
  pointer-events: none;
  transform-origin: bottom;
}

.hero-hills--far {
  height: 190px;
  opacity: 0.2;
  background: #6e4d89;
  clip-path: polygon(0 74%, 6% 60%, 13% 66%, 19% 38%, 26% 59%, 34% 46%, 41% 65%, 49% 37%, 58% 62%, 67% 42%, 75% 64%, 84% 35%, 91% 58%, 100% 44%, 100% 100%, 0 100%);
}

.hero-hills--near {
  height: 130px;
  opacity: 0.48;
  background: #1a3b34;
  clip-path: polygon(0 65%, 5% 58%, 11% 71%, 18% 49%, 25% 70%, 32% 52%, 40% 76%, 46% 61%, 54% 70%, 61% 42%, 67% 62%, 75% 48%, 81% 71%, 88% 57%, 94% 67%, 100% 52%, 100% 100%, 0 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding-top: 8px;
}

.eyebrow,
.section-kicker,
.mono-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  margin-bottom: 26px;
  color: #ded5cd;
  background: rgba(24, 20, 27, 0.72);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.eyebrow-mode {
  padding-left: 9px;
  color: var(--amber-pale);
  border-left: 1px solid var(--line-strong);
}

.status-light {
  display: inline-block;
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(120, 242, 194, 0.8);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 0.65; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(48px, 5.3vw, 78px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.062em;
  text-wrap: balance;
}

.headline-accent {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, var(--amber-pale), var(--amber) 42%, var(--scene));
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 30px var(--scene-soft));
  transition: background 400ms ease;
}

.hero-deck {
  max-width: 600px;
  margin-bottom: 30px;
  color: #c6bdb5;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 0;
  margin: 0 0 38px;
  list-style: none;
}

.hero-proof li {
  color: #8f8780;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.hero-proof span {
  margin-right: 4px;
  color: var(--amber);
}

.hero-project-note {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  margin: 0;
  color: #8f8780;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-project-note span {
  color: var(--mint);
}

.scene-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  max-width: 590px;
  padding: 0;
  margin: 0;
  border: 0;
}

.scene-switcher legend {
  grid-column: 1 / -1;
  margin-bottom: 10px;
  color: #746d66;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scene-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 9px 11px;
  overflow: hidden;
  color: #918980;
  background: rgba(31, 27, 25, 0.66);
  border: 1px solid var(--line);
  border-radius: 5px 5px 5px 2px;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.scene-button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--scene);
  opacity: 0;
  transition: opacity 180ms ease, width 180ms ease;
}

.scene-button:hover {
  color: var(--ivory);
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.scene-button.is-active {
  color: var(--ivory);
  background: var(--scene-soft);
  border-color: var(--scene);
}

.scene-button.is-active::after {
  width: 45%;
  opacity: 1;
}

.scene-index {
  color: var(--scene);
  font-family: var(--mono);
  font-size: 9px;
}

.hero-console {
  position: relative;
  z-index: 3;
  min-height: 590px;
  perspective: 1200px;
}

.console-orbit {
  position: absolute;
  pointer-events: none;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.console-orbit::before,
.console-orbit::after {
  position: absolute;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--scene);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--scene);
}

.console-orbit::before { top: 11%; left: 12%; }
.console-orbit::after { right: 8%; bottom: 15%; }

.console-orbit--one {
  inset: 12% -8% 8% 4%;
  transform: rotate(-11deg);
  animation: orbitSpin 26s linear infinite;
}

.console-orbit--two {
  inset: 4% 8% 19% -1%;
  transform: rotate(17deg);
  animation: orbitSpin 34s linear infinite reverse;
}

@keyframes orbitSpin { to { transform: rotate(349deg); } }

.console-status {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  color: #c0b7b0;
  background: rgba(12, 10, 14, 0.88);
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
}

.console-status--top {
  top: 11px;
  right: 37px;
  left: 48px;
}

.console-status-dots {
  display: flex;
  gap: 5px;
}

.console-status-dots i {
  width: 4px;
  height: 4px;
  background: var(--muted-dark);
  border-radius: 50%;
}

.console-status-dots i:first-child {
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
}

.prompt-module {
  position: absolute;
  top: 64px;
  right: 0;
  left: 7px;
  z-index: 6;
  display: grid;
  grid-template-columns: 66px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 15px 18px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.035), transparent 44%),
    rgba(28, 24, 31, 0.94);
  border: 1px solid rgba(255, 209, 128, 0.22);
  border-radius: 9px 9px 9px 3px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.prompt-module::after {
  position: absolute;
  right: 8px;
  bottom: -1px;
  width: 55px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--scene));
}

.prompt-persona {
  position: relative;
  width: 60px;
  height: 66px;
  animation: personaFloat 3.6s ease-in-out infinite;
}

@keyframes personaFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-4px) rotate(1deg); }
}

.persona-face {
  position: absolute;
  top: 10px;
  left: 7px;
  width: 46px;
  height: 48px;
  background: linear-gradient(145deg, var(--scene), #4d2a66);
  border: 3px solid #161219;
  border-radius: 42% 42% 34% 34%;
  box-shadow:
    inset 6px 6px 0 rgba(255, 255, 255, 0.09),
    0 0 24px var(--scene-soft);
  transition: background 400ms ease;
}

.persona-face::before {
  position: absolute;
  inset: 9px 5px 15px;
  content: "";
  background: rgba(10, 8, 13, 0.68);
  border-radius: 9px 9px 6px 6px;
}

.persona-eye {
  position: absolute;
  top: 22px;
  z-index: 2;
  width: 7px;
  height: 6px;
  background: var(--amber-pale);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--amber);
  animation: personaBlink 5s infinite;
}

.persona-eye--left { left: 16px; }
.persona-eye--right { right: 16px; }

@keyframes personaBlink {
  0%, 45%, 48%, 100% { transform: scaleY(1); }
  46%, 47% { transform: scaleY(0.1); }
}

.persona-mouth {
  position: absolute;
  bottom: 9px;
  left: 50%;
  z-index: 2;
  width: 10px;
  height: 4px;
  transform: translateX(-50%);
  border-bottom: 2px solid var(--amber-pale);
  border-radius: 50%;
}

.persona-antenna {
  position: absolute;
  top: 2px;
  left: 50%;
  z-index: 3;
  width: 2px;
  height: 14px;
  transform: translateX(-50%);
  background: var(--scene);
}

.persona-antenna::before {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 9px var(--amber);
}

.persona-ear {
  position: absolute;
  top: 28px;
  z-index: 4;
  width: 9px;
  height: 18px;
  background: var(--amber);
  border: 2px solid #161219;
}

.persona-ear--left { left: 0; border-radius: 6px 2px 2px 6px; }
.persona-ear--right { right: 0; border-radius: 2px 6px 6px 2px; }

.prompt-copy {
  min-width: 0;
}

.prompt-copy .mono-label {
  display: block;
  margin-bottom: 8px;
  color: var(--scene);
  transition: color 400ms ease;
}

.prompt-copy p {
  min-height: 42px;
  margin: 0;
  color: #eee6df;
  font-size: 12px;
  line-height: 1.5;
}

.prompt-accepted {
  align-self: start;
  padding: 5px 7px;
  color: var(--mint);
  background: rgba(120, 242, 194, 0.08);
  border: 1px solid rgba(120, 242, 194, 0.28);
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.workstation-window {
  position: absolute;
  top: 188px;
  right: 20px;
  left: 28px;
  z-index: 4;
  overflow: hidden;
  background: #171412;
  border: 1px solid rgba(255, 225, 188, 0.2);
  border-radius: 11px 11px 11px 4px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 7px rgba(255, 255, 255, 0.018),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: rotateY(-4deg) rotateX(1deg);
  transform-origin: center left;
}

.window-bar,
.console-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-height: 45px;
  padding: 9px 13px;
  background: #211d1a;
}

.window-bar {
  border-bottom: 1px solid var(--line);
}

.window-title {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
}

.window-title > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window-chip {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: var(--scene);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  box-shadow: 0 0 9px var(--scene-soft);
}

.window-telemetry {
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
}

.window-telemetry span {
  padding: 5px 6px;
  color: #9f968f;
  background: #171412;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 7px;
}

.window-telemetry b {
  color: var(--amber-pale);
  font-weight: 600;
}

.workstation-crop {
  position: relative;
  height: auto;
  aspect-ratio: 20 / 11;
  overflow: hidden;
  background: #110f0e;
}

.workstation-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.98) contrast(1.03) saturate(1.06);
}

.image-tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 55%, var(--scene-soft));
  mix-blend-mode: screen;
  transition: background 400ms ease;
}

.live-playhead,
.product-playhead {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24%;
  width: 1px;
  pointer-events: none;
  background: var(--scene);
  box-shadow: 0 0 14px var(--scene);
  animation: playheadSweep 8s linear infinite;
}

.live-playhead::before,
.product-playhead::before {
  position: absolute;
  top: 0;
  left: -4px;
  width: 9px;
  height: 7px;
  content: "";
  background: var(--scene);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@keyframes playheadSweep {
  0% { left: 22%; opacity: 0; }
  5% { opacity: 1; }
  94% { opacity: 1; }
  100% { left: 96%; opacity: 0; }
}

.track-signal {
  position: absolute;
  right: 4%;
  height: 4px;
  background: var(--scene);
  border-radius: 1px;
  opacity: 0.8;
  box-shadow: 0 0 8px var(--scene-soft);
  transform-origin: right;
  animation: trackSignal 2.8s var(--ease-out) infinite alternate;
}

.track-signal--one { top: 57%; width: 18%; }
.track-signal--two { top: 67%; width: 26%; animation-delay: -1.2s; }
.track-signal--three { top: 79%; width: 13%; animation-delay: -2s; }

@keyframes trackSignal { to { transform: scaleX(0.48); opacity: 0.38; } }

.console-footer {
  min-height: 40px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.04em;
}

.generation-state {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--mint);
}

.generation-state i {
  width: 5px;
  height: 5px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 7px var(--mint);
}

.edit-state {
  color: #8d857e;
}

.floating-module {
  position: absolute;
  z-index: 7;
  background: rgba(20, 17, 22, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.floating-module--exports {
  right: -22px;
  bottom: 23px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 5px;
  padding: 10px;
  border-radius: 6px 6px 6px 2px;
}

.floating-module--exports .mono-label {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: #837b74;
  font-size: 8px;
}

.floating-module--exports > span:not(.mono-label) {
  padding: 4px 5px;
  color: var(--amber-pale);
  background: rgba(255, 179, 71, 0.08);
  border: 1px solid rgba(255, 179, 71, 0.18);
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 7px;
}

.floating-module--meter {
  bottom: 33px;
  left: 2px;
  display: flex;
  align-items: end;
  gap: 3px;
  width: 70px;
  height: 52px;
  padding: 8px;
  border-radius: 5px;
}

.floating-module--meter span {
  flex: 1;
  height: 35%;
  background: var(--scene);
  border-radius: 1px;
  opacity: 0.74;
  animation: meter 0.8s ease-in-out infinite alternate;
}

.floating-module--meter span:nth-child(2n) { animation-delay: -0.3s; }
.floating-module--meter span:nth-child(3n) { animation-delay: -0.55s; }

@keyframes meter {
  0% { height: 18%; }
  100% { height: 90%; }
}

.hero-bottom {
  position: absolute;
  right: 0;
  bottom: 32px;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #6f6862;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.09em;
}

.hero-bottom i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), var(--scene), var(--line));
  opacity: 0.48;
}

.proof-rail {
  position: relative;
  z-index: 6;
  background: #171412;
  border-block: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.proof-rail__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-rail__inner > div {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  min-height: 112px;
  padding: 28px 26px;
}

.proof-rail__inner > div + div {
  border-left: 1px solid var(--line);
}

.proof-rail__inner > div::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  content: "";
  background: var(--amber);
  opacity: 0.35;
}

.proof-rail__inner span {
  grid-row: 1 / 3;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 9px;
}

.proof-rail__inner strong {
  font-size: 13px;
}

.proof-rail__inner small {
  color: #847c75;
  font-size: 11px;
}

.section-heading {
  margin-bottom: clamp(46px, 6vw, 74px);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.58fr);
  align-items: end;
  gap: 64px;
}

.section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--amber);
}

.section-kicker::before {
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-right: 8px;
  vertical-align: middle;
  content: "";
  background: currentColor;
}

.section-heading h2,
.product-copy h2,
.anti-slop__copy h2,
.faq-intro h2,
.final-cta h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-heading > p,
.section-heading--center > p:last-child,
.product-lead,
.anti-slop__copy > p:last-child,
.faq-intro > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.workflow {
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #100e0d;
  background-size: 48px 48px;
}

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

.workflow-card {
  position: relative;
  min-height: 470px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent 50%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 13px 13px 13px 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 260ms var(--ease-out), border-color 260ms ease;
}

.workflow-card:hover {
  transform: translateY(-7px);
  border-color: var(--line-strong);
}

.workflow-card::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.35;
}

.workflow-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-number {
  color: #6f6761;
  font-family: var(--mono);
  font-size: 10px;
}

.workflow-card__top .mono-label {
  color: var(--amber);
  font-size: 9px;
}

.workflow-card h3 {
  margin: 30px 0 13px;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.workflow-card p {
  margin: 0;
  color: #9d958e;
  font-size: 14px;
  line-height: 1.65;
}

.prompt-stack,
.mini-sequencer,
.knob-bank {
  position: relative;
  display: flex;
  height: 170px;
  margin: 25px -8px 0;
  overflow: hidden;
  background: #0f0d0c;
  border: 1px solid var(--line);
  border-radius: 7px 7px 7px 2px;
}

.prompt-stack {
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 20px;
}

.prompt-stack::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 100% 0%, rgba(255, 107, 107, 0.18), transparent 45%);
}

.prompt-stack span {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
  color: #6f6760;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--mono);
  font-size: 9px;
}

.prompt-stack b {
  color: var(--coral);
  font-weight: 600;
}

.mini-sequencer {
  display: block;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    #0f0d0c;
  background-size: 32px 100%, 100% 42px;
}

.mini-sequencer i {
  position: absolute;
  top: calc(20px + (var(--lane) - 1) * 46px);
  left: var(--x);
  width: var(--w);
  height: 16px;
  background: color-mix(in srgb, var(--amber) calc(80% - (var(--lane) * 12%)), var(--violet));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  opacity: 0.74;
  box-shadow: 0 0 12px rgba(255, 179, 71, 0.08);
}

.mini-playhead {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 8%;
  width: 1px;
  background: var(--coral);
  box-shadow: 0 0 10px var(--coral);
  animation: miniSweep 5s linear infinite;
}

@keyframes miniSweep { from { left: 4%; } to { left: 96%; } }

.knob-bank {
  align-items: center;
  justify-content: space-evenly;
  padding: 20px 14px;
  background:
    radial-gradient(circle at center, rgba(165, 123, 255, 0.1), transparent 65%),
    #0f0d0c;
}

.knob-bank > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.knob-bank i {
  position: relative;
  display: block;
  width: 62px;
  height: 62px;
  background:
    radial-gradient(circle at 40% 35%, #4d4844, #1d1a18 55%, #0d0b0a 57%),
    #1d1a18;
  border: 1px solid #5a524b;
  border-radius: 50%;
  box-shadow:
    0 7px 12px rgba(0, 0, 0, 0.55),
    inset 0 1px 1px rgba(255, 255, 255, 0.16);
  transform: rotate(var(--turn));
}

.knob-bank i::before {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 2px;
  height: 17px;
  content: "";
  background: var(--amber-pale);
  box-shadow: 0 0 6px var(--amber);
}

.knob-bank small {
  color: #827970;
  font-family: var(--mono);
  font-size: 7px;
}

.product-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 48%, rgba(255, 107, 107, 0.08), transparent 30%),
    #151210;
  border-block: 1px solid var(--line);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(0, 1.34fr);
  align-items: center;
  gap: clamp(54px, 6vw, 92px);
}

.product-copy h2 {
  margin-bottom: 24px;
}

.product-lead {
  margin-bottom: 36px;
}

.feature-list {
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.feature-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-list > li > span {
  padding-top: 2px;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 9px;
}

.feature-list div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.feature-list strong {
  font-size: 13px;
}

.feature-list small {
  color: #8d857e;
  font-size: 12px;
  line-height: 1.45;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--amber-pale);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.inline-cta span {
  transition: transform 180ms ease;
}

.inline-cta:hover span {
  transform: translateX(5px);
}

.product-visual {
  position: relative;
  min-width: 0;
  padding: 36px 0 24px;
}

.product-visual::before {
  position: absolute;
  inset: 0 -20%;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(255, 179, 71, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 179, 71, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  transform: perspective(500px) rotateX(54deg) translateY(34%);
  transform-origin: bottom;
  mask-image: linear-gradient(to top, black, transparent 82%);
}

.product-frame {
  position: relative;
  min-width: 0;
  padding: 9px;
  overflow: hidden;
  background: #0f0d0c;
  border: 1px solid var(--line-strong);
  border-radius: 13px 13px 13px 4px;
  box-shadow:
    0 45px 90px rgba(0, 0, 0, 0.46),
    0 0 0 8px rgba(255, 255, 255, 0.018),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-frame::before,
.product-frame::after {
  position: absolute;
  z-index: 3;
  content: "";
  pointer-events: none;
}

.product-frame::before {
  inset: 9px;
  border: 1px solid rgba(255, 179, 71, 0.16);
  border-radius: 5px;
}

.product-frame::after {
  right: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--coral));
}

.product-frame__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 10px;
  color: #867f78;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.product-frame__bar div {
  display: flex;
  gap: 5px;
}

.product-frame__bar i {
  width: 5px;
  height: 5px;
  background: #514a44;
  border-radius: 50%;
}

.product-frame__bar i:first-child {
  background: var(--mint);
  box-shadow: 0 0 7px var(--mint);
}

.product-frame__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 20 / 11;
  overflow: hidden;
  border-radius: 5px;
}

.product-frame__viewport img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: none;
}

.product-hotspot {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 7px 5px 5px;
  color: var(--ivory);
  background: rgba(16, 14, 13, 0.88);
  border: 1px solid rgba(255, 209, 128, 0.35);
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.product-hotspot span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #1c120c;
  background: var(--amber);
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 7px;
}

.product-hotspot b {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.hotspot--arrange { top: 20%; left: 44%; }
.hotspot--patch { right: 5%; top: 48%; }
.hotspot--export { bottom: 7%; left: 31%; }

.product-playhead {
  top: 48px;
  bottom: 9px;
  z-index: 2;
  animation-duration: 10s;
}

.product-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 10px 0;
  color: #716a64;
  font-family: var(--mono);
  font-size: 8px;
}

.product-caption .mono-label {
  color: var(--coral);
  font-size: 8px;
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 14px;
}

.product-tabs button {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 11px;
  color: #8f8780;
  background: #171412;
  border: 1px solid var(--line);
  border-radius: 5px 5px 5px 2px;
  font: 700 10px/1.2 var(--sans);
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-tabs button span {
  color: #716961;
  font: 600 8px/1 var(--mono);
}

.product-tabs button:hover,
.product-tabs button.is-active {
  color: var(--ivory);
  background: rgba(255, 179, 71, 0.07);
  border-color: rgba(255, 209, 128, 0.32);
}

.product-tabs button.is-active span {
  color: var(--amber);
}

.product-verification {
  margin: 14px 10px 0;
  color: #79716a;
  font-size: 10px;
}

.product-verification a {
  color: var(--amber-pale);
  text-decoration: none;
}

.worlds-section {
  background: #0c0b0d;
}

.worlds-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 50% 38%, rgba(89, 54, 147, 0.1), transparent 40%);
}

.world-player {
  --track-accent: #ff6b6b;
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(340px, 0.66fr);
  min-height: 540px;
  overflow: hidden;
  background: #141112;
  border: 1px solid var(--line-strong);
  border-radius: 13px 13px 13px 4px;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.4), 0 0 70px color-mix(in srgb, var(--track-accent) 8%, transparent);
  transition: box-shadow 300ms ease;
}

.world-stage {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #050408;
  isolation: isolate;
}

.world-stage::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 70%, rgba(5, 4, 8, 0.78));
}

.world-stage__layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 420ms ease, transform 700ms var(--ease-out);
}

.world-stage__layer.is-active {
  opacity: 1;
  transform: scale(1);
}

.world-stage__layer canvas {
  width: 100%;
  height: 100%;
}

.world-stage__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

.world-stage__status {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  color: #cfc4bb;
  background: rgba(11, 9, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font: 600 8px/1 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.world-stage__status i {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 9px var(--mint);
}

.world-stage__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 6;
  display: grid;
  width: 124px;
  height: 124px;
  place-items: center;
  padding: 20px;
  color: var(--ivory);
  background: rgba(15, 11, 16, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.025), 0 20px 55px rgba(0, 0, 0, 0.44);
  transform: translate(-50%, -50%);
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform 200ms var(--ease-out), border-color 200ms ease, background 200ms ease;
}

.world-stage__play:hover {
  background: color-mix(in srgb, var(--track-accent) 16%, rgba(15, 11, 16, 0.78));
  border-color: color-mix(in srgb, var(--track-accent) 68%, white 10%);
  transform: translate(-50%, -50%) scale(1.045);
}

.world-stage__play .world-play-icon {
  width: 0;
  height: 0;
  margin: 3px 0 0 6px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 21px solid var(--amber-pale);
}

.world-stage__play-label {
  margin-top: -13px;
  font: 600 8px/1.2 var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.world-stage__signal {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 5;
  display: flex;
  align-items: end;
  gap: 4px;
  height: 36px;
}

.world-stage__signal i {
  flex: 1;
  height: 18%;
  background: var(--track-accent);
  border-radius: 1px;
  opacity: 0.38;
  transform-origin: bottom;
}

.world-player.is-playing .world-stage__signal i {
  animation: worldMeter 720ms ease-in-out infinite alternate;
}

.world-player.is-playing .world-stage__signal i:nth-child(2n) { animation-delay: -210ms; }
.world-player.is-playing .world-stage__signal i:nth-child(3n) { animation-delay: -470ms; }
.world-player.is-playing .world-stage__signal i:nth-child(5n) { animation-delay: -610ms; }

@keyframes worldMeter { to { height: 92%; opacity: 0.85; } }

.world-player.is-playing .world-play-icon {
  width: 16px;
  height: 24px;
  margin: 0;
  border: 0;
  background: linear-gradient(90deg, var(--amber-pale) 0 38%, transparent 38% 62%, var(--amber-pale) 62%);
}

.world-player__panel {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 44px);
  border-left: 1px solid var(--line);
}

.world-player__meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #756d67;
  font: 600 8px/1.2 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.world-player__meta > span:first-child {
  color: var(--track-accent);
}

.world-player__meta b {
  color: #aea39a;
  font-weight: 600;
}

.world-player__panel h3 {
  margin: 50px 0 20px;
  font-family: var(--display);
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.world-player__prompt {
  color: #a89e96;
  font-size: 13px;
  line-height: 1.65;
}

.world-player__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 22px 0 auto;
}

.world-player__tags span {
  padding: 6px 7px;
  color: #8d857e;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 3px;
  font: 600 7px/1 var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.world-transport {
  display: grid;
  grid-template-columns: 52px 1fr 42px;
  align-items: center;
  gap: 14px;
  padding: 23px 0 19px;
}

.world-mute {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: #8d857e;
  background: #1b1717;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: 600 7px/1 var(--mono);
  cursor: pointer;
}

.world-mute.is-muted {
  color: var(--coral);
  border-color: rgba(255, 107, 107, 0.32);
}

.world-transport__toggle {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  padding: 0;
  background: var(--amber);
  border: 0;
  border-radius: 5px 5px 5px 2px;
  cursor: pointer;
}

.world-transport__toggle .world-play-icon {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #21150d;
}

.world-player.is-playing .world-transport__toggle .world-play-icon {
  width: 12px;
  height: 17px;
  margin: 0;
  background: linear-gradient(90deg, #21150d 0 36%, transparent 36% 64%, #21150d 64%);
}

.world-transport__timeline {
  min-width: 0;
}

.world-progress {
  width: 100%;
  height: 4px;
  margin: 0;
  accent-color: var(--track-accent);
  cursor: pointer;
}

.world-transport__timeline > div {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  color: #756d67;
  font: 600 8px/1 var(--mono);
}

.world-player__links {
  display: grid;
  gap: 10px;
}

.world-player__links .button {
  justify-content: center;
  min-height: 47px;
  text-align: center;
}

.world-player__links > a:not(.button) {
  color: #aaa097;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.world-player__status {
  min-height: 14px;
  margin: 14px 0 0;
  color: #6f6761;
  font: 500 8px/1.3 var(--mono);
  text-align: center;
  text-transform: uppercase;
}

.world-player audio { display: none; }

.world-queue {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 10px;
}

.world-queue__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 12px 14px;
  color: #8e857e;
  background: #141112;
  border: 1px solid var(--line);
  border-radius: 6px 6px 6px 2px;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.world-queue__number {
  color: #615a55;
  font: 600 8px/1 var(--mono);
}

.world-queue__item > span:nth-child(2) {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.world-queue__item strong {
  overflow: hidden;
  color: #bdb3aa;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.world-queue__item small {
  color: #6f6761;
  font: 500 7px/1 var(--mono);
  text-transform: uppercase;
}

.world-queue__item > i {
  width: 7px;
  height: 7px;
  background: #403b38;
  border-radius: 50%;
}

.world-queue__item:hover,
.world-queue__item.is-selected {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 209, 128, 0.28);
}

.world-queue__item.is-selected > i {
  background: var(--mint);
  box-shadow: 0 0 9px var(--mint);
}

.world-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
}

.world-proof p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #807871;
  font-size: 11px;
}

.world-proof a {
  flex: 0 0 auto;
  color: var(--amber-pale);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.anti-slop-section {
  background:
    linear-gradient(135deg, rgba(255, 179, 71, 0.04), transparent 45%),
    #181512;
  border-block: 1px solid var(--line);
}

.anti-slop {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(50px, 8vw, 118px);
}

.anti-slop__copy h2 {
  margin-bottom: 24px;
}

.control-matrix {
  padding: 13px;
  background: #100e0d;
  border: 1px solid var(--line-strong);
  border-radius: 10px 10px 10px 3px;
  box-shadow:
    0 35px 70px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.control-matrix > div {
  display: grid;
  grid-template-columns: 90px 1fr 68px;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
}

.control-matrix > div:last-child {
  border-bottom: 0;
}

.control-matrix span,
.control-matrix b {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.07em;
}

.control-matrix span { color: #8a827b; }
.control-matrix b { color: var(--mint); text-align: right; }

.control-matrix i {
  position: relative;
  height: 7px;
  overflow: hidden;
  background: #28231f;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1px;
}

.control-matrix i::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--fill);
  content: "";
  background:
    repeating-linear-gradient(90deg, var(--amber) 0 5px, transparent 5px 7px),
    var(--amber);
  box-shadow: 0 0 10px rgba(255, 179, 71, 0.22);
  animation: matrixFill 1.4s var(--ease-out) both;
}

@keyframes matrixFill { from { width: 0; } }

.pricing-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(165, 123, 255, 0.08), transparent 34%),
    #0f0d0e;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 15px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 27px;
  background: #191614;
  border: 1px solid var(--line);
  border-radius: 11px 11px 11px 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.price-card--featured {
  margin-top: -10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 107, 107, 0.12), transparent 34%),
    #211b19;
  border-color: rgba(255, 179, 71, 0.38);
  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.featured-flag {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 26px;
  color: #2b170f;
  background: linear-gradient(90deg, var(--amber), var(--coral));
  border-radius: 0 0 5px 5px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.featured-flag i {
  width: 5px;
  height: 5px;
  background: #fff4c4;
  border-radius: 50%;
  box-shadow: 0 0 6px #fff4c4;
}

.price-card--featured .price-card__top {
  margin-top: 20px;
}

.price-card__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.price-card__top span,
.price-card__top small {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.price-card__top span { color: var(--amber-pale); }
.price-card__top small { color: #726b65; }

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.price strong {
  font-family: var(--display);
  font-size: 58px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.price span {
  color: #807870;
  font-family: var(--mono);
  font-size: 9px;
}

.price-card > p {
  min-height: 66px;
  margin-bottom: 24px;
  color: #9a918a;
  font-size: 13px;
  line-height: 1.6;
}

.price-card .button {
  width: 100%;
  margin-bottom: 28px;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 18px;
  color: #a79e96;
  font-size: 12px;
  line-height: 1.4;
}

.price-card li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--mint);
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(120, 242, 194, 0.4);
}

.pricing-note {
  margin: 28px 0 0;
  color: #827a73;
  font-family: var(--mono);
  font-size: 9px;
  text-align: center;
}

.pricing-note span {
  margin-right: 7px;
  color: var(--amber);
}

.faq-section {
  background: #151210;
  border-top: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  align-items: start;
  gap: clamp(54px, 9vw, 132px);
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 3.6vw, 54px);
}

.faq-intro > p {
  margin-bottom: 26px;
}

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

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1px;
  content: "";
  background: var(--amber);
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 46px 25px 0;
  margin: 0;
  color: #9e958e;
  font-size: 14px;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  min-height: 680px;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 107, 107, 0.18), transparent 26%),
    linear-gradient(180deg, #0e0c10, #17101e 60%, #0d0c0c);
  border-top: 1px solid var(--line);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.final-cta::before {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black, transparent 70%);
}

.final-cta::after {
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 180px;
  background: #173c35;
  clip-path: polygon(0 68%, 8% 49%, 15% 60%, 24% 41%, 34% 67%, 44% 48%, 55% 63%, 63% 39%, 72% 59%, 82% 43%, 91% 61%, 100% 46%, 100% 100%, 0 100%);
  opacity: 0.72;
}

.final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-persona {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 25px;
  animation: personaFloat 3.8s ease-in-out infinite;
}

.final-persona__face {
  position: absolute;
  inset: 12px 7px 5px;
  background: linear-gradient(145deg, var(--coral), #7b4dc6);
  border: 4px solid #100d13;
  border-radius: 46% 46% 38% 38%;
  box-shadow:
    0 0 0 1px rgba(255, 209, 128, 0.3),
    0 0 40px rgba(255, 107, 107, 0.24),
    inset 10px 8px 0 rgba(255, 255, 255, 0.08);
}

.final-persona__face::before {
  position: absolute;
  inset: 18px 10px 22px;
  content: "";
  background: #18131f;
  border-radius: 10px;
}

.final-persona__face i {
  position: absolute;
  top: 33px;
  z-index: 2;
  width: 10px;
  height: 8px;
  background: var(--amber-pale);
  border-radius: 50%;
  box-shadow: 0 0 9px var(--amber);
  animation: personaBlink 5s infinite;
}

.final-persona__face i:first-child { left: 22px; }
.final-persona__face i:nth-child(2) { right: 22px; }

.final-persona__face b {
  position: absolute;
  bottom: 13px;
  left: 50%;
  z-index: 2;
  width: 17px;
  height: 7px;
  transform: translateX(-50%);
  border-bottom: 3px solid var(--amber-pale);
  border-radius: 50%;
}

.final-persona__antenna {
  position: absolute;
  top: 1px;
  left: 50%;
  z-index: 3;
  width: 3px;
  height: 17px;
  background: var(--coral);
}

.final-persona__antenna::before {
  position: absolute;
  top: -5px;
  left: -4px;
  width: 11px;
  height: 11px;
  content: "";
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--amber);
}

.final-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(46px, 6.5vw, 86px);
}

.final-cta h2 span {
  color: transparent;
  background: linear-gradient(90deg, var(--amber-pale), var(--amber), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
}

.final-cta__inner > p:not(.section-kicker) {
  max-width: 620px;
  margin-bottom: 30px;
  color: #b2a9a1;
  font-size: 17px;
  line-height: 1.7;
}

.final-cta small {
  margin-top: 20px;
  color: #766e68;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.site-footer {
  padding: 34px 0;
  background: #0b0a09;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
}

.footer-grid p {
  margin: 0;
  color: #6e6761;
  font-size: 11px;
}

.footer-grid nav {
  display: flex;
  gap: 17px;
}

.footer-grid nav a {
  color: #8c847d;
  font-size: 10px;
  text-decoration: none;
}

.footer-grid nav a:hover { color: var(--ivory); }

.footer-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #7d756e;
  font-family: var(--mono);
  font-size: 8px;
}

.footer-status i {
  width: 5px;
  height: 5px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 7px var(--mint);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
}

[data-reveal][data-reveal-delay="1"] { transition-delay: 90ms; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 180ms; }

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .primary-nav { gap: 16px; }
  .primary-nav a { font-size: 12px; }
  .header-actions .text-link { display: none; }

  .hero {
    min-height: auto;
    padding-bottom: 108px;
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 36px;
  }

  .hero h1 { font-size: clamp(44px, 5.8vw, 66px); }
  .hero-console { min-height: 550px; }
  .prompt-module { grid-template-columns: 58px 1fr; }
  .prompt-accepted { display: none; }
  .workstation-crop { height: auto; aspect-ratio: 8 / 5; }
  .floating-module--exports { right: 0; }

  .product-layout {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 46px;
  }
}

@media (max-width: 900px) {
  :root {
    --page: min(100% - 36px, 720px);
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 6px;
    color: var(--ivory);
    background: #1e1a18;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    cursor: pointer;
  }

  .nav-toggle > span:not(.sr-only) {
    display: block;
    width: 16px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] > span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

  .primary-nav {
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px;
    visibility: hidden;
    opacity: 0;
    background: rgba(16, 14, 13, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.46);
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    backdrop-filter: blur(18px);
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

  .primary-nav a:last-child { border-bottom: 0; }
  .header-actions { display: none; }

  .hero {
    padding-top: 130px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

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

  .hero h1 {
    max-width: 760px;
    font-size: clamp(50px, 10vw, 76px);
  }

  .hero-console {
    width: min(100%, 680px);
    min-height: 680px;
    margin-inline: auto;
  }

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

  .proof-rail__inner > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .proof-rail__inner > div:nth-child(4) { border-top: 1px solid var(--line); }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading--split > p { max-width: 640px; }

  .workflow-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .workflow-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
    min-height: auto;
  }

  .workflow-card__top { grid-column: 1 / -1; }
  .workflow-card > div:nth-child(2) { grid-row: 2 / 5; }
  .workflow-card h3 { align-self: end; }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-copy { max-width: 660px; }

  .world-player {
    grid-template-columns: 1fr;
  }

  .world-stage {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .world-player__panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .world-player__panel h3 {
    margin-top: 34px;
  }

  .world-player__tags {
    margin-bottom: 20px;
  }

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

  .world-card:last-child { grid-column: 1 / -1; }
  .world-card:last-child .world-art { height: 320px; }

  .anti-slop {
    grid-template-columns: 1fr;
  }

  .anti-slop__copy { max-width: 650px; }

  .price-card {
    min-height: auto;
  }

  .price-card--featured { margin-top: 0; }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
    max-width: 660px;
  }

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

  .footer-grid > p { grid-row: 2; }
  .footer-grid nav { grid-column: 1 / -1; grid-row: 3; }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100vw - 28px);
    --section-space: 88px;
  }

  .site-header {
    width: calc(100vw - 20px);
    min-height: 62px;
    margin-top: 9px;
    padding-left: 11px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-mark img { width: 28px; height: 28px; }
  .brand-name { font-size: 18px; }

  .hero {
    min-height: auto;
    padding: 112px 0 76px;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 8px;
  }

  .eyebrow-mode { display: none; }

  .hero h1 {
    font-size: clamp(44px, 14vw, 64px);
    line-height: 1;
  }

  .hero-deck {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 8px;
    margin-bottom: 25px;
  }

  .scene-switcher {
    grid-template-columns: 1fr;
  }

  .scene-button { min-height: 42px; }

  .hero-console {
    min-height: 470px;
  }

  .console-status--top {
    right: 8px;
    left: 8px;
  }

  .prompt-module {
    top: 58px;
    right: -6px;
    left: -6px;
    grid-template-columns: 48px 1fr;
    gap: 10px;
    min-height: 105px;
    padding: 12px;
  }

  .prompt-persona {
    width: 48px;
    transform: scale(0.82);
    transform-origin: left center;
  }

  .prompt-copy p {
    font-size: 10px;
  }

  .workstation-window {
    top: 156px;
    right: 0;
    left: 0;
    transform: none;
  }

  .window-title { max-width: 52%; }
  .window-telemetry span:nth-child(n + 2) { display: none; }
  .workstation-crop { height: auto; aspect-ratio: 8 / 5; }
  .workstation-crop img { object-position: center; }
  .edit-state { display: none; }

  .floating-module--meter,
  .floating-module--exports { display: none; }
  .console-orbit { display: none; }

  .hero-bottom {
    display: none;
  }

  .proof-rail__inner {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .proof-rail__inner::-webkit-scrollbar { display: none; }

  .proof-rail__inner > div {
    flex: 0 0 min(78vw, 300px);
    min-height: 94px;
    padding: 23px 18px;
    border-left: 1px solid var(--line);
    scroll-snap-align: start;
  }

  .proof-rail__inner > div + div {
    border-top: 0;
  }

  .proof-rail__inner > div:first-child { border-left: 0; }
  .proof-rail__inner > div:nth-child(3),
  .proof-rail__inner > div:nth-child(4) {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .section-heading h2,
  .product-copy h2,
  .anti-slop__copy h2,
  .faq-intro h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .workflow-card {
    display: block;
    padding: 20px;
  }

  .workflow-card h3 { margin-top: 25px; }
  .prompt-stack, .mini-sequencer, .knob-bank { height: 154px; }
  .knob-bank i { width: 52px; height: 52px; }

  .product-visual { margin-inline: -7px; }
  .product-hotspot { transform: scale(0.82); }
  .hotspot--arrange { left: 38%; }
  .hotspot--patch { right: 1%; }
  .product-caption { display: grid; gap: 6px; }

  .world-stage {
    aspect-ratio: 4 / 3;
  }

  .world-stage__play {
    width: 104px;
    height: 104px;
  }

  .world-player__panel {
    padding: 24px 20px;
  }

  .world-player__panel h3 {
    margin: 28px 0 16px;
    font-size: clamp(34px, 11vw, 48px);
  }

  .world-queue {
    display: flex;
    margin-right: -14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .world-queue::-webkit-scrollbar { display: none; }

  .world-queue__item {
    flex: 0 0 min(82vw, 330px);
    scroll-snap-align: start;
  }

  .world-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .world-player__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .product-tabs button {
    justify-content: center;
    padding-inline: 8px;
    font-size: 9px;
  }

  .product-tabs button span { display: none; }

  .control-matrix > div {
    grid-template-columns: 72px 1fr;
  }

  .control-matrix b { display: none; }

  .price-card { padding: 23px; }
  .price-card__top { flex-direction: column; gap: 6px; }

  .faq-list summary { font-size: 15px; }

  .final-cta {
    min-height: 700px;
    padding: 100px 0 140px;
  }

  .final-cta h2 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .final-cta__inner > p:not(.section-kicker) { font-size: 15px; }
  .final-cta .button { width: 100%; }

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

  .footer-grid > p,
  .footer-grid nav {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-grid nav {
    flex-wrap: wrap;
  }
}

/* Final cascade guardrails for the refinement pass. */
body::before { opacity: 0.014; }

.editability-block .editability-strip {
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.editability-block .editability-strip span {
  gap: 6px;
  min-height: 98px;
  align-content: center;
  padding: 16px 14px;
}

.workflow-ui header span {
  display: inline;
  padding: 0;
  color: inherit;
  border: 0;
  font: inherit;
}

.workflow-card:hover { background-color: transparent; }

@media (forced-colors: active) {
  .brand-name strong {
    color: LinkText;
    background: none;
    -webkit-text-fill-color: currentColor;
  }
}

@media (max-width: 620px) {
  .hero-console {
    display: grid;
    gap: 12px;
    min-height: 0;
  }

  .hero-console .prompt-module,
  .hero-console .workstation-window {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    transform: none;
  }

  .hero-console .workstation-crop { aspect-ratio: 16 / 9; }
  .hero-console .workstation-crop img { object-position: center top; }
  .mini-sequencer i { top: calc(42px + (var(--lane) - 1) * 30px); }
  .editability-block .editability-strip span { min-height: 92px; }
}

/* Mobile command deck: a deliberate navigation surface and stable level brief. */
@media (max-width: 900px) {
  html.nav-open body::after {
    position: fixed;
    inset: 0;
    z-index: 89;
    content: "";
    background: rgba(4, 3, 7, 0.72);
    backdrop-filter: blur(8px) saturate(85%);
  }

  .site-header { z-index: 110; }

  .nav-toggle {
    z-index: 112;
    color: #fff8f0;
    background:
      linear-gradient(135deg, rgba(255, 179, 71, 0.08), transparent 55%),
      #181519;
    border-color: rgba(255, 221, 189, 0.2);
    border-radius: 8px 8px 8px 3px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.018), 0 8px 24px rgba(0, 0, 0, 0.24);
  }

  .nav-toggle[aria-expanded="true"] {
    color: #1b100c;
    background: linear-gradient(135deg, var(--amber), var(--coral));
    border-color: transparent;
    box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.1), 0 12px 30px rgba(0, 0, 0, 0.32);
  }

  .nav-toggle > span:not(.sr-only) { width: 19px; height: 2px; border-radius: 2px; }

  .primary-nav {
    position: fixed;
    top: calc(94px + env(safe-area-inset-top));
    right: max(16px, env(safe-area-inset-right));
    left: max(16px, env(safe-area-inset-left));
    z-index: 111;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    max-height: calc(100dvh - 112px - env(safe-area-inset-bottom));
    padding: 12px 14px 14px;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    background:
      radial-gradient(circle at 88% 4%, rgba(165, 123, 255, 0.15), transparent 28%),
      radial-gradient(circle at 8% 100%, rgba(255, 140, 66, 0.09), transparent 32%),
      linear-gradient(145deg, rgba(24, 20, 25, 0.99), rgba(11, 10, 14, 0.995));
    border: 1px solid rgba(255, 221, 189, 0.16);
    border-radius: 14px 14px 14px 4px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62), inset 0 1px rgba(255, 255, 255, 0.035);
    transform: translateY(-12px) scale(0.985);
    transform-origin: top center;
    transition: opacity 180ms ease, transform 220ms var(--ease-out), visibility 180ms ease;
    backdrop-filter: blur(24px) saturate(130%);
  }

  .primary-nav::before {
    display: block;
    padding: 7px 10px 14px;
    color: #8f8680;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    content: "NAVIGATION // SELECT DESTINATION";
    font: 700 9px/1.4 var(--mono);
    letter-spacing: 0.11em;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .primary-nav a:not(.mobile-nav-login):not(.mobile-nav-cta) {
    position: relative;
    justify-content: flex-start;
    min-height: 56px;
    padding: 14px 12px 14px 43px;
    color: #d8cfc7;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.065);
    font-size: 15px;
    letter-spacing: -0.01em;
  }

  .primary-nav a:not(.mobile-nav-login):not(.mobile-nav-cta)::before {
    position: absolute;
    left: 13px;
    color: rgba(255, 179, 71, 0.72);
    content: "◇";
    font: 700 13px/1 var(--mono);
    transition: color 160ms ease, transform 160ms ease;
  }

  .primary-nav a:not(.mobile-nav-login):not(.mobile-nav-cta):hover,
  .primary-nav a:not(.mobile-nav-login):not(.mobile-nav-cta):focus-visible {
    color: #fff8f0;
    background: linear-gradient(90deg, rgba(255, 179, 71, 0.08), transparent 74%);
  }

  .primary-nav a:not(.mobile-nav-login):not(.mobile-nav-cta):hover::before,
  .primary-nav a:not(.mobile-nav-login):not(.mobile-nav-cta):focus-visible::before {
    color: var(--coral);
    transform: rotate(45deg);
  }

  .primary-nav .mobile-nav-login,
  .primary-nav .mobile-nav-cta {
    display: flex;
    justify-content: center;
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 7px 7px 7px 3px;
    font-size: 14px;
  }

  .primary-nav .mobile-nav-login {
    margin-top: 12px;
    color: #eee4dc;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 221, 189, 0.16);
  }

  .primary-nav .mobile-nav-cta {
    justify-content: space-between;
    margin-top: 8px;
    color: #21130d;
    background: linear-gradient(110deg, var(--amber), var(--coral));
    border: 0;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(255, 107, 107, 0.12);
  }
}

@media (max-width: 620px) {
  .primary-nav {
    top: calc(74px + env(safe-area-inset-top));
    right: max(10px, env(safe-area-inset-right));
    left: max(10px, env(safe-area-inset-left));
    max-height: calc(100dvh - 88px - env(safe-area-inset-bottom));
    padding: 10px 12px 12px;
  }

  .primary-nav a:not(.mobile-nav-login):not(.mobile-nav-cta) { min-height: 54px; }

  .scene-switcher { gap: 8px; }

  .scene-switcher legend {
    margin-bottom: 11px;
    color: #aaa099;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .scene-button {
    min-height: 52px;
    padding: 12px 10px;
    font-size: 13px;
    line-height: 1.25;
  }

  .hero-console { gap: 16px; }

  .hero-console .prompt-module {
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 0;
    padding: 18px 16px;
  }

  .hero-console .prompt-persona {
    width: 60px;
    height: 66px;
    margin: 0;
    justify-self: center;
    transform: none;
    transform-origin: center;
    animation: persona-float-mobile 4.8s ease-in-out infinite;
  }

  .prompt-copy { min-width: 0; }

  .prompt-copy .mono-label {
    display: block;
    margin-bottom: 7px;
    color: #bcb1a8;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }

  .prompt-copy p {
    min-height: 0;
    margin: 0;
    color: #fff7ef;
    font-size: 14px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .prompt-accepted { display: none; }
}

@keyframes persona-float-mobile {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -3px, 0); }
}

@media (max-width: 360px) {
  .hero-console .prompt-module { grid-template-columns: 60px minmax(0, 1fr); gap: 11px; padding: 16px 12px; }
  .prompt-copy p { font-size: 13.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-console .prompt-persona { animation: none; }
}

/* Mobile usability guardrails shared by phone and tablet layouts. */
html {
  max-width: 100%;
  overflow-x: clip;
  scroll-padding-top: 82px;
}

body {
  max-width: 100%;
  overflow-x: clip;
}

@media (max-width: 900px) {
  html.nav-open,
  html.nav-open body {
    overflow: hidden;
    overscroll-behavior: none;
  }

  .primary-nav {
    max-height: calc(100dvh - 82px - env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(14, 12, 12, 0.985);
  }
}
/* Sonic-world polish: richer depth without competing with the product story. */
.hero {
  background:
    radial-gradient(circle at 78% 34%, var(--scene-soft), transparent 27%),
    radial-gradient(circle at 22% 18%, rgba(165, 123, 255, 0.075), transparent 32%),
    linear-gradient(180deg, #0b0a0e 0%, #120c18 56%, #0d0e10 100%);
}

.signal-field {
  opacity: 0.96;
  filter: saturate(1.08) contrast(1.03);
}

.hero::before {
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(90deg, rgba(9, 8, 11, 0.68) 0%, rgba(9, 8, 11, 0.38) 33%, rgba(9, 8, 11, 0.06) 58%, transparent 78%),
    radial-gradient(circle at 78% 37%, transparent 0 30%, rgba(4, 3, 7, 0.2) 72%, rgba(4, 3, 7, 0.56) 100%);
  box-shadow: none;
  pointer-events: none;
}

.hero-console::after {
  position: absolute;
  right: 2%;
  bottom: -9%;
  left: 3%;
  z-index: -1;
  height: 34%;
  content: "";
  pointer-events: none;
  background: radial-gradient(ellipse at center, var(--scene-soft), transparent 67%);
  filter: blur(22px);
  opacity: 0.7;
}

.console-orbit {
  border-style: solid;
  border-color: color-mix(in srgb, var(--scene) 13%, transparent);
}

.world-stage__layer,
.world-stage__layer.is-active {
  filter: none;
}

.world-stage__layer.is-active {
  opacity: 1;
}

.world-stage__grid {
  opacity: 0.028;
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at center, black, transparent 82%);
}

.world-stage::before {
  position: absolute;
  inset: 0;
  z-index: 4;
  content: "";
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 110px rgba(0, 0, 0, 0.58),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.world-stage::after {
  background: linear-gradient(180deg, transparent 78%, rgba(5, 4, 8, 0.48));
}

.world-stage__play {
  top: auto;
  bottom: 70px;
  left: 24px;
  width: 92px;
  height: 92px;
  padding: 15px;
  background: rgba(9, 8, 12, 0.64);
  border-color: color-mix(in srgb, var(--track-accent) 48%, rgba(255, 255, 255, 0.28));
  box-shadow:
    0 0 0 7px color-mix(in srgb, var(--track-accent) 5%, transparent),
    0 16px 40px rgba(0, 0, 0, 0.42),
    0 0 34px color-mix(in srgb, var(--track-accent) 10%, transparent);
  transform: none;
}

.world-stage__play:hover {
  transform: translateY(-3px) scale(1.035);
}

.world-stage__play:active {
  transform: translateY(1px) scale(0.985);
}

.world-player.is-playing .world-stage__play {
  transform: scale(0.88);
}

.world-stage__play .world-play-icon {
  border-top-width: 11px;
  border-bottom-width: 11px;
  border-left-width: 17px;
}

.world-stage__play-label {
  margin-top: -9px;
  font-size: 7px;
}

.world-player.is-playing .world-stage__signal i {
  animation: none;
}

@media (max-width: 620px) {
  .hero::before {
    background:
      linear-gradient(180deg, rgba(9, 8, 11, 0.44) 0%, rgba(9, 8, 11, 0.12) 47%, rgba(9, 8, 11, 0.32) 100%),
      radial-gradient(circle at 70% 55%, transparent 0 28%, rgba(4, 3, 7, 0.32) 100%);
  }

  .world-stage__play {
    bottom: 58px;
    left: 16px;
    width: 78px;
    height: 78px;
    padding: 12px;
  }

  .world-stage__play .world-play-icon {
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 14px;
  }

  .world-stage__play-label {
    font-size: 6.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signal-field,
  .world-stage__layer {
    transition: none;
  }
}

/* Refinement pass: quieter atmosphere, unboxed identity, and explicit capability proof. */
body {
  background:
    radial-gradient(circle at 18% 6%, rgba(255, 107, 107, 0.055), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(165, 123, 255, 0.045), transparent 32%),
    linear-gradient(180deg, #100e0d 0%, #0b0909 62%, #100e0d 100%);
}

body::before {
  opacity: 0.014;
  background-size: 6px 6px, 11px 11px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand-mark::before,
.brand-mark::after,
.brand-led { display: none; }

.brand-mark img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
}

.brand-name strong {
  color: transparent;
  background-image: linear-gradient(135deg, #ffb347, #ff8c42 40%, #ff6b6b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.editability-block {
  display: grid;
  grid-template-columns: minmax(210px, 0.7fr) minmax(0, 2.3fr);
  align-items: stretch;
  margin-top: 38px;
  overflow: hidden;
  background: #100e0d;
  border: 1px solid var(--line);
  border-radius: 8px 8px 8px 2px;
}

.editability-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.editability-heading .section-kicker {
  margin: 0 0 8px;
  font: 600 10px/1.2 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editability-heading p:last-child {
  margin: 0;
  color: #9f958d;
  font-size: 12px;
  line-height: 1.5;
}

.editability-strip {
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.editability-strip span {
  gap: 6px;
  min-height: 98px;
  align-content: center;
  padding: 16px 14px;
}

.editability-strip small {
  min-height: 30px;
  color: #8f867f;
  font-size: 10px;
  line-height: 1.4;
}

.editability-strip i::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 6px;
  content: "";
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 7px currentColor;
  vertical-align: 1px;
}

.export-proof {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 12px 2px 0;
  color: #8f867f;
  font: 600 9px/1 var(--mono);
  letter-spacing: 0.08em;
}

.export-proof span { margin-right: auto; color: #756e68; }
.export-proof b {
  padding: 6px 7px;
  color: #c1b8b0;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.workflow-ui header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  height: 30px;
  padding: 0 10px;
  color: #aaa098;
  background: rgba(29, 25, 23, .94);
  border-bottom: 1px solid var(--line);
  font: 600 8px/1 var(--mono);
  letter-spacing: .06em;
}

.workflow-ui header em { margin-left: auto; color: #756e68; font-style: normal; }
.workflow-ui header i { width: 6px; height: 6px; background: var(--coral); border-radius: 50%; }

.prompt-stack { justify-content: flex-end; padding: 44px 15px 14px; }
.prompt-stack::before { background: radial-gradient(circle at 100% 0%, rgba(255,107,107,.12), transparent 50%); }
.prompt-stack > p {
  position: relative;
  margin: 0 0 12px;
  color: #c8beb6;
  font-size: 11px;
  line-height: 1.45;
}
.prompt-stack > div { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.prompt-stack > div span { padding: 7px; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.06); }

.mini-sequencer { padding-top: 30px; background-position: 0 30px; }
.mini-sequencer i { top: calc(48px + (var(--lane) - 1) * 38px); }

.pattern-export {
  position: relative;
  display: block;
  height: 170px;
  margin: 25px -8px 0;
  overflow: hidden;
  background: #0f0d0c;
  border: 1px solid var(--line);
  border-radius: 7px 7px 7px 2px;
}

.note-grid {
  position: absolute;
  inset: 30px 0 34px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 24px 100%, 100% 21px;
}

.note-grid i { position: absolute; width: 18%; height: 8px; background: var(--mint); border-radius: 2px; opacity: .72; }
.note-grid i:nth-child(1) { left: 5%; top: 72%; }
.note-grid i:nth-child(2) { left: 18%; top: 54%; }
.note-grid i:nth-child(3) { left: 32%; top: 42%; }
.note-grid i:nth-child(4) { left: 48%; top: 54%; }
.note-grid i:nth-child(5) { left: 61%; top: 28%; }
.note-grid i:nth-child(6) { left: 74%; top: 18%; }
.note-grid i:nth-child(7) { left: 80%; top: 43%; width: 13%; background: var(--amber); }

.pattern-export footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 6px;
  height: 34px;
  align-items: center;
  padding: 0 9px;
  background: #171412;
  border-top: 1px solid var(--line);
}
.pattern-export footer b { padding: 4px 6px; color: #a89f97; border: 1px solid var(--line); border-radius: 2px; font: 600 7px/1 var(--mono); }

@media (max-width: 900px) {
  .editability-block { grid-template-columns: 1fr; }
  .editability-heading { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .brand-mark, .brand-mark img { width: 28px; height: 28px; }
  .editability-strip span { min-height: 92px; }
  .export-proof { flex-wrap: wrap; justify-content: flex-start; }
  .export-proof span { flex-basis: 100%; }
  .pattern-export { height: 124px; }
}

.world-stage__signal i {
  height: 100%;
  animation: none !important;
  transform: scaleY(.12);
  transition: opacity 70ms linear;
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Art-direction refinement: studio-grade instrument with arcade soul. */
:root {
  --muted: #aaa198;
  --muted-dark: #847b73;
  --section-space: clamp(82px, 8.5vw, 126px);
}

section[id] { scroll-margin-top: 78px; }

body::before { opacity: 0.02; }

:where(a, button, input, summary):focus-visible {
  outline: 2px solid var(--amber-pale);
  outline-offset: 3px;
}

.mobile-nav-login,
.mobile-nav-cta { display: none; }

.site-header {
  top: 0;
  width: min(1380px, 100%);
  min-height: 70px;
  padding-inline: clamp(20px, 3vw, 42px);
  margin-top: 0;
  border-radius: 0;
}

.site-header.is-scrolled {
  min-height: 62px;
  background: rgba(12, 10, 10, 0.88);
  border-color: transparent transparent var(--line);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
}

.button {
  border-radius: 6px 6px 6px 2px;
  box-shadow: none;
}

.button::after { display: none; }

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

.button:active {
  transform: translateY(1px);
  box-shadow: none;
}

.button--primary,
.button--primary:hover {
  background: linear-gradient(110deg, #ffb347, #ff9a54 58%, #ff786d);
  border-color: rgba(255, 209, 128, 0.58);
  box-shadow: 0 14px 34px rgba(255, 107, 107, 0.14), inset 0 1px rgba(255, 255, 255, 0.34);
}

.hero {
  min-height: 790px;
  padding: 118px 0 72px;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(42px, 5vw, 72px);
}

.hero h1 { font-size: clamp(48px, 5vw, 74px); }
.hero-deck { max-width: 570px; }
.hero-proof { margin-bottom: 0; }

.hero-console {
  min-height: 515px;
  perspective: none;
}

.prompt-module {
  top: 0;
  left: 0;
  min-height: 96px;
  border-radius: 9px 9px 9px 3px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.05);
}

.prompt-persona { animation: none; }

.workstation-window {
  top: 110px;
  right: 0;
  left: 0;
  transform: none;
}

.workstation-crop { aspect-ratio: 1.95 / 1; }
.workstation-crop img { object-position: center top; }

.section-heading h2,
.product-copy h2,
.faq-intro h2 { font-size: clamp(38px, 4vw, 56px); }

.world-player {
  grid-template-columns: minmax(0, 1.2fr) minmax(370px, 0.8fr);
  min-height: 520px;
}

.world-stage { min-height: 520px; }

.world-stage__layer {
  opacity: 0;
  filter: saturate(0.8);
}

.world-stage__layer.is-active { opacity: 0.52; }

.world-stage__cover {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(56%, 410px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px 9px 9px 3px;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.52), 0 0 55px color-mix(in srgb, var(--track-accent) 14%, transparent);
  transform: translate(-50%, -50%);
  transition: opacity 220ms ease, transform 420ms var(--ease-out), box-shadow 320ms ease;
}

.world-player.is-changing .world-stage__cover {
  opacity: 0;
  transform: translate(-50%, -48%) scale(0.97);
}

.world-stage__grid { opacity: 0.1; }
.world-stage::after { background: linear-gradient(180deg, transparent 62%, rgba(5, 4, 8, 0.82)); }

.world-stage__play {
  width: 112px;
  height: 112px;
  background: rgba(10, 8, 11, 0.7);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.025), 0 18px 45px rgba(0, 0, 0, 0.42);
}

.world-player__panel { padding: clamp(30px, 3vw, 44px); }

.world-player__meta,
.world-player__status,
.product-caption,
.hero-project-note {
  color: #958c84;
  font-size: 10px;
}

.world-player__panel h3 {
  margin: 42px 0 12px;
  font-size: clamp(34px, 3.25vw, 46px);
}

.world-player__label {
  margin-bottom: 8px;
  color: var(--track-accent);
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.world-player__prompt {
  color: #b2a8a0;
  font-size: 14px;
}

.world-player__tags span,
.world-queue__number,
.world-queue__item small {
  color: #948b83;
  font-size: 9px;
}

.world-queue__item strong { font-size: 12px; }

.world-transport {
  grid-template-columns: 52px 1fr 48px;
  gap: 13px;
}

.world-progress {
  height: 44px;
  padding: 18px 0;
  touch-action: pan-x;
}

.world-mute {
  width: 48px;
  height: 48px;
  font-size: 9px;
}

.world-player__links > a:not(.button),
.world-proof a,
.inline-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.world-proof p,
.world-proof a,
.product-verification {
  color: #9c928a;
  font-size: 11px;
}

.product-layout {
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(40px, 4.5vw, 66px);
}

.product-tabs button {
  min-height: 48px;
  font: 700 11px/1.2 var(--body);
}

.product-frame__viewport img {
  transition: opacity 180ms ease, transform 360ms var(--ease-out);
}

.product-frame__viewport.is-swapping img {
  opacity: 0;
  transform: scale(0.992);
}

.product-frame,
.world-player,
.workflow-grid,
.price-card,
.control-matrix {
  border-radius: 10px 10px 10px 3px;
}

.editability-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 36px;
  overflow: hidden;
  background: #100e0d;
  border: 1px solid var(--line);
  border-radius: 8px 8px 8px 2px;
}

.editability-strip span {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 17px 18px;
  border-right: 1px solid var(--line);
}

.editability-strip span:last-child { border-right: 0; }

.editability-strip b,
.editability-strip i {
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.editability-strip b { color: #b7ada4; }
.editability-strip i { color: var(--mint); }

.workflow-grid {
  gap: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
}

.workflow-card {
  min-height: 420px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 55%);
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.workflow-card:last-child { border-right: 0; }
.workflow-card:hover { transform: none; background-color: rgba(255, 255, 255, 0.018); }
.workflow-card:nth-child(1)::before { background: linear-gradient(90deg, transparent, var(--coral), transparent); }
.workflow-card:nth-child(2)::before { background: linear-gradient(90deg, transparent, var(--amber), transparent); }
.workflow-card:nth-child(3)::before { background: linear-gradient(90deg, transparent, var(--mint), transparent); }

.workflow-card__top .mono-label,
.workflow-card:nth-child(2) .workflow-card__top .mono-label { font-size: 10px; }
.workflow-card:nth-child(3) .workflow-card__top .mono-label { color: var(--mint); }

.knob-bank small { color: #958c84; font-size: 9px; }

.price-card { min-height: 530px; }
.price-card__top span,
.price-card__top small,
.featured-flag { font-size: 10px; }

.now-playing {
  position: fixed;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 300;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(460px, calc(100vw - 36px));
  padding: 9px;
  visibility: hidden;
  opacity: 0;
  background: rgba(18, 15, 14, 0.94);
  border: 1px solid var(--line-strong);
  border-radius: 8px 8px 8px 2px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.46);
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 240ms var(--ease-out), visibility 180ms ease;
  backdrop-filter: blur(18px);
}

.now-playing.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.now-playing > button {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--amber);
  border: 0;
  border-radius: 5px 5px 5px 2px;
  cursor: pointer;
}

.now-playing > button span::before,
.now-playing > button span::after {
  position: absolute;
  content: "";
}

.now-playing > button span::before {
  top: 14px;
  left: 19px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #21150d;
}

.now-playing > button span::after { display: none; }

.now-playing.is-playing > button span::before,
.now-playing.is-playing > button span::after {
  top: 15px;
  display: block;
  width: 5px;
  height: 18px;
  background: #21150d;
  border: 0;
}

.now-playing.is-playing > button span::before { left: 17px; }
.now-playing.is-playing > button span::after { right: 17px; }

.now-playing > a {
  display: grid;
  gap: 4px;
  min-width: 0;
  text-decoration: none;
}

.now-playing small,
.now-playing time {
  color: #958c84;
  font: 600 9px/1 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.now-playing strong {
  overflow: hidden;
  color: var(--ivory);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.now-playing time { padding-right: 8px; }

@media (hover: hover) and (pointer: fine) {
  .world-stage__play:hover,
  .world-transport__toggle:hover,
  .world-mute:hover,
  .world-queue__item:hover,
  .product-tabs button:hover,
  .nav-toggle:hover { filter: brightness(1.08); }
}

.world-transport__toggle:active,
.world-mute:active,
.world-queue__item:active,
.product-tabs button:active,
.nav-toggle:active { transform: scale(0.98); }

.world-stage__play:active { transform: translate(-50%, -50%) scale(0.98); }

@media (max-width: 1120px) {
  .hero-console { min-height: 500px; }
  .workstation-crop { height: auto; aspect-ratio: 1.85 / 1; }
  .product-layout { grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr); }
}

@media (max-width: 900px) {
  .site-header { padding-inline: 18px; }
  .nav-toggle { width: 48px; height: 48px; }
  .primary-nav a { display: flex; align-items: center; min-height: 48px; }
  .primary-nav .mobile-nav-login,
  .primary-nav .mobile-nav-cta { display: flex; }
  .primary-nav .mobile-nav-cta {
    justify-content: space-between;
    margin-top: 6px;
    color: #21130d;
    background: linear-gradient(110deg, var(--amber), var(--coral));
    border: 0;
    border-radius: 5px 5px 5px 2px;
    font-weight: 800;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }
  .hero-console { min-height: 600px; }
  .product-layout { grid-template-columns: 1fr; }

  .world-player { grid-template-columns: 1fr; }
  .world-stage { min-height: auto; }

  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .workflow-card:last-child { border-bottom: 0; }
  .editability-strip { grid-template-columns: repeat(3, 1fr); }
  .editability-strip span:nth-child(3) { border-right: 0; }
  .editability-strip span:nth-child(n + 4) { border-top: 1px solid var(--line); }
}

@media (max-width: 620px) {
  :root { --section-space: 72px; }

  body::before { opacity: 0.012; }

  .site-header {
    width: 100%;
    min-height: 66px;
    padding-inline: 14px;
    margin: 0;
    background: rgba(12, 10, 12, 0.7);
    border-bottom: 1px solid rgba(255, 225, 188, 0.08);
    backdrop-filter: blur(14px);
  }

  .hero { padding: 94px 0 58px; }
  .hero-grid { gap: 28px; }
  .hero-actions { gap: 9px; }
  .hero-actions .button--ghost {
    width: auto;
    min-height: 48px;
    padding-inline: 18px;
    align-self: flex-start;
  }

  .hero-proof {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 0;
  }

  .hero-proof li { font-size: 8px; white-space: nowrap; }
  .hero-console { min-height: 400px; }
  .prompt-module {
    top: 0;
    min-height: 88px;
  }
  .workstation-window { top: 96px; }
  .workstation-crop { aspect-ratio: 1.65 / 1; }
  .console-footer { min-height: 36px; }

  .proof-rail__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: visible;
  }
  .proof-rail__inner > div {
    min-width: 0;
    min-height: 86px;
    padding: 18px 14px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }
  .proof-rail__inner > div:nth-child(odd) { border-left: 0; }
  .proof-rail__inner > div:nth-child(-n + 2) { border-top: 0; }

  .section-heading h2,
  .product-copy h2,
  .faq-intro h2 { font-size: clamp(36px, 11vw, 48px); }

  .world-stage { aspect-ratio: 16 / 10; }
  .world-stage__cover { width: 58%; }
  .world-stage__play { width: 92px; height: 92px; }
  .world-player__panel h3 { font-size: clamp(34px, 10vw, 40px); }
  .world-progress { height: 48px; padding-block: 20px; }
  .world-queue { scroll-padding-inline: 0 14px; }

  .product-frame__viewport { aspect-ratio: 4 / 3; }
  .product-tabs button { min-height: 48px; font-size: 11px; }

  .workflow-card { padding: 20px; }
  .prompt-stack,
  .mini-sequencer,
  .knob-bank { height: 124px; }

  .editability-strip { grid-template-columns: repeat(2, 1fr); }
  .editability-strip span,
  .editability-strip span:nth-child(3) { border-right: 1px solid var(--line); }
  .editability-strip span:nth-child(even) { border-right: 0; }
  .editability-strip span:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .editability-strip span:last-child { grid-column: 1 / -1; border-right: 0; }

  .pricing-grid { display: flex; flex-direction: column; }
  .price-card--featured { order: -1; }
  .price-card { min-height: auto; }

  .now-playing {
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    width: calc(100vw - 16px);
  }
}

/* Second art-direction pass: range in the hero, motion in the player, capability proof in the workstation. */
.hero .scene-switcher {
  margin-top: 28px;
}

.hero .workstation-crop img {
  transition: opacity 220ms ease, transform 360ms var(--ease-out);
}

.hero.is-scenario-changing .workstation-crop img {
  opacity: 0.1;
  transform: scale(0.985);
}

.scene-switcher legend {
  color: #938980;
}

.scene-button {
  min-height: 48px;
}

.world-stage__layer.is-active {
  opacity: 0.92;
}

.world-stage__grid {
  opacity: 0.08;
}

.world-stage::after {
  background: linear-gradient(180deg, transparent 76%, rgba(5, 4, 8, 0.46));
}

.world-player__artline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.world-player__artline .world-stage__cover {
  position: static;
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px 7px 7px 2px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.36), 0 0 30px color-mix(in srgb, var(--track-accent) 10%, transparent);
  transform: none;
  transition: opacity 220ms ease, transform 320ms var(--ease-out), box-shadow 320ms ease;
}

.world-player.is-changing .world-player__artline .world-stage__cover {
  opacity: 0.2;
  transform: scale(0.96);
}

.world-player__artline > span {
  color: #958c84;
  font: 600 9px/1.35 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.world-player__panel h3 {
  margin-top: 20px;
}

.world-stage__play {
  transition: opacity 260ms ease, transform 260ms var(--ease-out), border-color 200ms ease, background 200ms ease;
}

.world-player.is-playing .world-stage__play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.88);
}

.product-note {
  margin: 8px 10px 0;
  color: #8d857e;
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 620px) {
  .hero .scene-switcher {
    margin-top: 24px;
  }

  .world-player__artline {
    margin-top: 18px;
  }

  .world-player__artline .world-stage__cover {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }
}

/* Final cascade guardrails: keep these after every art-direction layer. */

/* Final sonic-world guardrails: the artwork owns the stage, the UI stays out of its focal point. */
.world-stage__layer,
.world-stage__layer.is-active {
  filter: none;
}

.world-stage__layer.is-active { opacity: 1; }

.world-stage__grid {
  opacity: 0.028;
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at center, black, transparent 82%);
}

.world-stage::after {
  background: linear-gradient(180deg, transparent 78%, rgba(5, 4, 8, 0.48));
}

.world-stage__play {
  top: auto;
  bottom: 70px;
  left: 24px;
  width: 92px;
  height: 92px;
  padding: 15px;
  background: rgba(9, 8, 12, 0.64);
  border-color: color-mix(in srgb, var(--track-accent) 48%, rgba(255, 255, 255, 0.28));
  box-shadow:
    0 0 0 7px color-mix(in srgb, var(--track-accent) 5%, transparent),
    0 16px 40px rgba(0, 0, 0, 0.42),
    0 0 34px color-mix(in srgb, var(--track-accent) 10%, transparent);
  transform: none;
}

.world-stage__play:hover { transform: translateY(-3px) scale(1.035); }
.world-stage__play:active { transform: translateY(1px) scale(0.985); }

.world-player.is-playing .world-stage__play {
  transform: scale(0.88);
}

.world-stage__play .world-play-icon {
  border-top-width: 11px;
  border-bottom-width: 11px;
  border-left-width: 17px;
}

.world-stage__play-label {
  margin-top: -9px;
  font-size: 7px;
}

.world-player.is-playing .world-stage__signal i { animation: none; }

.world-stage__signal {
  right: 24px;
  bottom: 24px;
  left: auto;
  justify-content: flex-end;
  gap: 6px;
  width: 154px;
  height: 42px;
}

.world-stage__signal i {
  flex: 0 0 6px;
  height: 100%;
  background: repeating-linear-gradient(
    to top,
    color-mix(in srgb, var(--track-accent) 86%, white 8%) 0 2px,
    transparent 2px 5px
  );
  border-radius: 2px 2px 0 0;
  filter: drop-shadow(0 0 5px color-mix(in srgb, var(--track-accent) 30%, transparent));
}

.now-playing.is-visible.is-over-player {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

@media (min-width: 901px) {
  .world-player {
    height: clamp(680px, 52vw, 700px);
    min-height: 0;
  }

  .world-stage {
    height: 100%;
    min-height: 0;
  }

  .world-player__panel {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .world-stage__signal {
    right: 16px;
    bottom: 16px;
    gap: 4px;
    width: 108px;
    height: 32px;
  }

  .world-stage__signal i { flex-basis: 5px; }

  .world-stage__play {
    bottom: 58px;
    left: 16px;
    width: 78px;
    height: 78px;
    padding: 12px;
  }

  .world-stage__play .world-play-icon {
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 14px;
  }

  .world-stage__play-label { font-size: 6.5px; }
}

/* Cinematic hero atmosphere: scene light wraps the product without reducing legibility. */
.hero {
  background:
    radial-gradient(circle at 78% 31%, color-mix(in srgb, var(--scene) 12%, transparent), transparent 29%),
    radial-gradient(circle at 60% 7%, rgba(165, 123, 255, 0.075), transparent 35%),
    linear-gradient(180deg, #09090d 0%, #100b17 55%, #0b0d0f 100%);
}

.signal-field {
  opacity: 1;
  filter: saturate(1.14) contrast(1.045);
}

.hero::before {
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(90deg, rgba(7, 7, 10, 0.78) 0%, rgba(7, 7, 10, 0.5) 32%, rgba(7, 7, 10, 0.12) 57%, transparent 79%),
    radial-gradient(ellipse at 78% 38%, transparent 0 26%, rgba(4, 3, 7, 0.16) 66%, rgba(4, 3, 7, 0.58) 100%);
  box-shadow: none;
}

.hero-console::before {
  position: absolute;
  inset: 5% -8% 2% 14%;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at 55% 48%, color-mix(in srgb, var(--scene) 16%, transparent), transparent 58%),
    conic-gradient(from 212deg at 52% 46%, transparent 0 17%, color-mix(in srgb, var(--scene) 5%, transparent) 23%, transparent 31% 100%);
  filter: blur(22px);
  opacity: 0.8;
  transform: scale(1.04) rotate(-2deg);
  transition: opacity 380ms ease, background 500ms ease;
}

.hero-console::after {
  right: -3%;
  bottom: -11%;
  left: -1%;
  height: 39%;
  background:
    radial-gradient(ellipse at center, color-mix(in srgb, var(--scene) 19%, transparent), transparent 66%),
    linear-gradient(90deg, transparent, color-mix(in srgb, var(--scene) 7%, transparent), transparent);
  filter: blur(24px);
  opacity: 0.86;
}

.hero .prompt-module {
  border-color: color-mix(in srgb, var(--scene) 22%, rgba(255, 209, 128, 0.18));
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.46),
    0 0 42px color-mix(in srgb, var(--scene) 7%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero .workstation-window {
  border-color: color-mix(in srgb, var(--scene) 22%, rgba(255, 255, 255, 0.12));
  box-shadow:
    0 46px 105px rgba(0, 0, 0, 0.56),
    0 0 76px color-mix(in srgb, var(--scene) 12%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transition: border-color 420ms ease, box-shadow 520ms ease, transform 420ms var(--ease-out);
}

.hero .workstation-window::before {
  position: absolute;
  top: 0;
  right: 7%;
  left: 7%;
  z-index: 8;
  height: 1px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--scene) 62%, white 12%), transparent);
  opacity: 0.56;
}

.hero .workstation-crop img {
  filter: saturate(1.04) contrast(1.025);
}

.hero.is-scenario-changing .hero-console::before { opacity: 0.42; }
.hero.is-scenario-changing .workstation-window { transform: translateY(2px) scale(0.994); }

@media (max-width: 620px) {
  .signal-field { opacity: 0.82; }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 7, 10, 0.56) 0%, rgba(7, 7, 10, 0.18) 48%, rgba(7, 7, 10, 0.42) 100%),
      radial-gradient(circle at 72% 56%, transparent 0 24%, rgba(4, 3, 7, 0.42) 100%);
  }

  .hero-console::before {
    inset: 2% -4% 0;
    opacity: 0.54;
    filter: blur(18px);
  }

  .hero-console::after {
    bottom: -4%;
    height: 28%;
    opacity: 0.56;
  }
}

/* Final mobile cascade checkpoint. */
@media (max-width: 620px) {
  section[id] { scroll-margin-top: 72px; }
  .site-header {
    padding-right: max(14px, env(safe-area-inset-right));
    padding-left: max(14px, env(safe-area-inset-left));
  }
  .primary-nav {
    right: max(0px, env(safe-area-inset-right));
    left: max(0px, env(safe-area-inset-left));
    max-height: calc(100dvh - 82px - env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px 10px 10px;
    background: rgba(14, 12, 12, 0.985);
  }
  .primary-nav a { min-height: 52px; padding-inline: 12px; font-size: 14px; }
  .hero { padding-top: calc(94px + env(safe-area-inset-top)); }
  .hero-actions .button,
  .hero-actions .button--ghost { width: 100%; min-height: 52px; }
  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
  }
  .hero-proof li { min-width: 0; font-size: 9px; line-height: 1.35; white-space: normal; }
  .hero-proof li:last-child { grid-column: 1 / -1; }
  .scene-button { min-height: 50px; padding-block: 12px; }
  .world-stage { aspect-ratio: 1.18 / 1; }
  .world-player__panel { padding: 24px 18px; }
  .world-player__prompt { font-size: 15px; line-height: 1.65; }
  .world-transport { grid-template-columns: 48px minmax(0, 1fr) 48px; gap: 9px; }
  .world-queue { padding-right: 14px; overscroll-behavior-inline: contain; }
  .world-queue__item { min-height: 72px; padding: 14px; }
  .world-proof { gap: 10px; padding-top: 18px; }
  .product-tabs button { padding-inline: 6px; font-size: 10px; }
  .product-note,
  .product-verification { font-size: 12px; line-height: 1.55; }
  .workflow-card { min-height: 0; padding: 22px 20px; }
  .faq-layout { gap: 42px; }
  .faq-intro h2 { margin-bottom: 18px; }
  .faq-intro > p { margin-bottom: 18px; }
  .faq-list summary { min-height: 64px; padding: 18px 0; font-size: 16px; line-height: 1.35; }
  .faq-list details p { padding-right: 32px; font-size: 15px; }
  .final-cta { min-height: auto; padding: 92px 0 calc(108px + env(safe-area-inset-bottom)); }
  .now-playing {
    right: max(8px, env(safe-area-inset-right));
    left: max(8px, env(safe-area-inset-left));
    width: auto;
  }
}

@media (max-width: 360px) {
  .brand-name { font-size: 17px; }
  .section-heading h2,
  .product-copy h2,
  .faq-intro h2 { font-size: clamp(34px, 11vw, 40px); }
  .world-player__panel h3 { font-size: clamp(32px, 10vw, 38px); }
  .world-player__artline { gap: 10px; }
  .world-player__artline .world-stage__cover { flex-basis: 64px; width: 64px; height: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-console::before,
  .hero .workstation-window {
    transition: none;
  }
}

body::before { opacity: 0.014; }

.editability-block .editability-strip {
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.editability-block .editability-strip span {
  gap: 6px;
  min-height: 98px;
  align-content: center;
  padding: 16px 14px;
}

.workflow-ui header span {
  display: inline;
  padding: 0;
  color: inherit;
  border: 0;
  font: inherit;
}

.workflow-card:hover { background-color: transparent; }

@media (forced-colors: active) {
  .brand-name strong {
    color: LinkText;
    background: none;
    -webkit-text-fill-color: currentColor;
  }
}

@media (max-width: 620px) {
  .hero-console {
    display: grid;
    gap: 12px;
    min-height: 0;
  }

  .hero-console .prompt-module,
  .hero-console .workstation-window {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    transform: none;
  }

  .hero-console .workstation-crop { aspect-ratio: 16 / 9; }
  .hero-console .workstation-crop img { object-position: center top; }
  .mini-sequencer i { top: calc(42px + (var(--lane) - 1) * 30px); }
  .editability-block .editability-strip span { min-height: 92px; }
}
