@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope-var.woff2') format('woff2');
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-var.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/jetbrains-mono-var.woff2') format('woff2');
  font-weight: 100 800;
  font-display: swap;
}

@font-face {
  font-family: 'Auralis Product Icons';
  src: url('../fonts/auralis-product-icons.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

:root {
  --page: #050506;
  --surface: #0c0d0e;
  --surface-raised: #111315;
  --ink: #f4f1eb;
  --muted: #aaa69e;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #72ead3;
  --accent-ink: #03120f;
  --cta: #72ead3;
  --cta-ink: #03120f;
  --cyan: #64d8d1;
  --violet: #b49aff;
  --coral: #ff7772;
  --green: #95cb54;
  --selected-accent: #00d7e4;
  --selected-canvas: #060e14;
  --selected-ink: #ddeff5;
  --display: 'Manrope', system-ui, sans-serif;
  --brand: 'Manrope', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-skin='light'] {
  --page: #f1ece5;
  --surface: #faf7f2;
  --surface-raised: #ffffff;
  --ink: #302a25;
  --muted: #675f58;
  --line: rgba(48, 42, 37, 0.16);
  --accent: #b83b14;
  --accent-ink: #ffffff;
  --cta: #006f63;
  --cta-ink: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 72px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  font-kerning: normal;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  transition: background-color 180ms ease, color 180ms ease;
}

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

button,
input,
summary {
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #64d8d1;
  outline-offset: 3px;
}

.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: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 4px;
  background: #ffffff;
  color: #111111;
  font-weight: 700;
  text-decoration: none;
}

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow,
.feature-label,
.footer-label {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.ai {
  display: inline-block;
  flex: 0 0 auto;
  font-family: 'Auralis Product Icons';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  speak: never;
}

.ai-arrow-right::before { content: '\ea04'; }
.ai-play::before { content: '\ea3f'; }
.ai-palette::before,
.ai-color-mode::before { content: '\ea3b'; }
.ai-layout::before { content: '\ea33'; }
.ai-shield::before { content: '\ea4f'; }
.ai-clock::before { content: '\ea6a'; }
.ai-terminal::before { content: '\ea65'; }
.ai-copy::before { content: '\ea1e'; }
.ai-check::before { content: '\ea0f'; }
.ai-menu::before { content: '\ea37'; }
.ai-close::before { content: '\ea6d'; }
.ai-account::before { content: '\ea3d'; }
.ai-code::before { content: '\ea1b'; }
.ai-verified::before { content: '\ea0e'; }
.ai-diff::before { content: '\ea23'; }

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.04;
}

h2 {
  font-size: 52px;
  font-weight: 520;
}

h3 {
  font-size: 30px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
  transition: background-color 180ms ease, background-position 320ms var(--ease-out), border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms var(--ease-out);
}

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

.button-primary {
  border-color: rgba(255, 255, 255, 0.42);
  background: linear-gradient(112deg, #7be8cd 0%, #70ddd1 28%, #84c7e8 50%, #b69ed8 70%, #e2b36f 100%);
  background-position: 20% 50%;
  background-size: 110% 100%;
  color: #06130f;
  box-shadow: 0 8px 28px rgba(48, 213, 190, 0.14), 0 5px 22px rgba(151, 126, 205, 0.08);
}

.button-primary:hover {
  background-position: 80% 50%;
  box-shadow: 0 12px 38px rgba(48, 213, 190, 0.2), 0 7px 26px rgba(151, 126, 205, 0.14);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.46);
  color: #ffffff;
}

.button-secondary:hover {
  border-color: #ffffff;
}

.button-small {
  min-height: 36px;
  padding: 7px 15px;
  font-size: 12px;
}

.icon-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms var(--ease-out);
}

.icon-button:hover {
  border-color: var(--muted);
  background: color-mix(in srgb, var(--ink) 7%, transparent);
  transform: translateY(-1px);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  height: 62px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--page) 82%, transparent);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.nav.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.16);
  background: color-mix(in srgb, var(--page) 94%, transparent);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.24);
}

.nav-inner {
  width: min(1180px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--brand);
  font-size: 15px;
  font-weight: 620;
  text-decoration: none;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  transition: transform 220ms var(--ease-out);
}

.brand:hover .brand-mark {
  transform: translateY(-1px) rotate(-3deg) scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav-links a,
.text-link {
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-button {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 62px 0 auto;
  z-index: 55;
  display: none;
  padding: 16px 24px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--page);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 62px);
  padding-top: 88px;
  background: #030708;
  color: #ffffff;
  isolation: isolate;
}

.resonance-field {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #030708;
  pointer-events: none;
}

.resonance-field canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.92;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 0;
  text-align: center;
}

.hero .eyebrow {
  color: #9ea29b;
}

.hero-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.beta-pill {
  padding: 3px 8px;
  border: 1px solid rgba(114, 234, 211, 0.4);
  border-radius: 999px;
  color: #aef4e7;
  font-size: 9px;
}

.hero h1 {
  max-width: 1100px;
  margin: 24px auto 0;
  font-size: 62px;
  font-weight: 430;
  line-height: 1.08;
}

.hero h1 span {
  color: #87f1dd;
}

.hero-summary {
  max-width: 760px;
  margin: 24px auto 0;
  color: #aeb9b7;
  font-size: 17px;
  line-height: 1.65;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-top: 28px;
  color: #98a3a0;
  font-size: 11px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust .ai {
  color: var(--selected-accent);
  font-size: 14px;
}

.hero-trust b {
  color: #ffffff;
  font-weight: 680;
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 32px));
  margin: 56px auto -340px;
  padding: 0;
  transform: translate3d(0, var(--hero-drift, 0px), 0);
  will-change: transform;
}

.hero-stage-meta {
  width: min(1240px, 92vw);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  margin: 0 auto 12px;
  color: #a4b0ad;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.hero-stage-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-stage-meta i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #72ead3;
  box-shadow: 0 0 0 0 rgba(114, 234, 211, 0.42);
  animation: field-pulse 2.4s ease-out infinite;
}

.hero-stage-meta strong {
  color: #ffffff;
  font-weight: 700;
}

.hero-stage-meta small {
  color: #73807d;
  font: inherit;
}

@keyframes field-pulse {
  0% { box-shadow: 0 0 0 0 rgba(114, 234, 211, 0.42); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(114, 234, 211, 0); }
}

.hero-window {
  position: relative;
  z-index: 2;
  width: min(1240px, 92vw);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px 6px 0 0;
  background: #030405;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.68), 0 0 0 1px rgba(100, 216, 209, 0.04);
}

.hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 1;
  transition: opacity 180ms ease;
}

.hero-image.is-changing {
  opacity: 0.16;
}

.hero-theme-dock {
  position: relative;
  z-index: 2;
  width: min(1240px, 92vw);
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 0;
  border-radius: 0 0 6px 6px;
  background: #090a0c;
  scrollbar-width: none;
}

.hero-theme-dock::-webkit-scrollbar,
.theme-rail::-webkit-scrollbar {
  display: none;
}

.theme-dock-track {
  width: max-content;
  min-width: 100%;
  display: flex;
  justify-content: center;
}

.dock-theme {
  position: relative;
  min-width: 108px;
  height: 58px;
  padding: 0 12px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #bcbfb9;
  font-size: 11px;
  font-weight: 700;
}

.dock-theme::after {
  content: '';
  position: absolute;
  inset: auto 15px 0;
  height: 3px;
  background: transparent;
}

.dock-theme[aria-pressed='true'] {
  color: #ffffff;
}

.dock-theme[aria-pressed='true']::after {
  background: var(--theme-accent);
}

.dock-theme i,
.rail-theme i {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--theme-accent);
}

.chapter {
  padding: 120px 0;
}

.platforms {
  padding: 450px 0 120px;
  border-bottom: 1px solid var(--line);
  background: var(--page);
  color: var(--ink);
}

.platform-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px 80px;
  align-items: end;
}

.platform-heading .eyebrow {
  grid-column: 1 / -1;
}

.platform-heading h2 {
  max-width: 680px;
}

.platform-heading > p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.platform-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background-color 180ms ease, transform 220ms var(--ease-out);
}

.platform-card:hover {
  background: color-mix(in srgb, var(--ink) 5%, transparent);
  transform: translateY(-3px);
}

.platform-card > span,
.platform-card > em {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.platform-card strong {
  margin-top: 34px;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.2;
}

.platform-card small {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.platform-card > em {
  margin-top: auto;
  padding-top: 26px;
  color: var(--accent);
}

.chapter-heading {
  max-width: 820px;
  margin-bottom: 58px;
}

.chapter-heading h2 {
  margin-top: 14px;
}

.chapter-heading > p:last-child,
.chapter-heading-wide > p {
  max-width: 680px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
}

.chapter-heading-wide {
  max-width: none;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
  align-items: end;
}

.shift {
  padding-top: 120px;
  background: #f3efe8;
  color: #211d19;
}

.shift .eyebrow,
.shift .chapter-heading > p:last-child {
  color: #6c6259;
}

.shift-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 42px;
  align-items: center;
}

.shift-steps {
  border-top: 1px solid rgba(33, 29, 25, 0.18);
}

.shift-step {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 20px 8px 20px 0;
  border: 0;
  border-bottom: 1px solid rgba(33, 29, 25, 0.18);
  background: transparent;
  color: #746a61;
  text-align: left;
}

.shift-step strong,
.shift-step small {
  display: block;
}

.shift-step strong {
  color: #3e3731;
  font-size: 16px;
}

.shift-step small {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.45;
}

.shift-step.is-active {
  color: #211d19;
}

.shift-step.is-active strong {
  color: #211d19;
}

.shift-step.is-active .step-number {
  color: #006f6a;
}

.step-number {
  font-family: var(--mono);
  font-size: 12px;
}

.product-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: #020303;
}

.product-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: opacity 180ms ease;
}

.product-frame img.is-changing {
  opacity: 0.18;
}

.product-frame figcaption {
  padding: 10px 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aeb2ab;
  font-family: var(--mono);
  font-size: 11px;
}

.shift-frame {
  border-color: rgba(33, 29, 25, 0.2);
  box-shadow: 0 26px 70px rgba(54, 43, 33, 0.18);
}

.shift-frame figcaption {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.theme-theatre {
  --theatre-bg: #060e14;
  --theatre-fg: #ddeff5;
  --theatre-muted: #7f979f;
  --theatre-accent: #00d7e4;
  --theatre-panel: #060e14;
  background: var(--theatre-bg);
  color: var(--theatre-fg);
  transition: background-color 220ms ease, color 220ms ease;
}

.theme-theatre .eyebrow,
.theme-theatre .chapter-heading-wide > p {
  color: var(--theatre-muted);
}

.theme-rail {
  display: flex;
  overflow-x: auto;
  border-top: 1px solid color-mix(in srgb, var(--theatre-fg) 20%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--theatre-fg) 20%, transparent);
  scrollbar-width: none;
}

.rail-theme {
  min-width: 132px;
  height: 60px;
  flex: 1;
  border: 0;
  border-right: 1px solid color-mix(in srgb, var(--theatre-fg) 16%, transparent);
  background: transparent;
  color: var(--theatre-muted);
  font-size: 12px;
  font-weight: 700;
}

.rail-theme[aria-pressed='true'] {
  background: color-mix(in srgb, var(--theatre-accent) 16%, transparent);
  color: var(--theatre-fg);
}

.theatre-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr);
  gap: 18px;
  margin-top: 34px;
  padding: 46px;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: var(--theatre-panel);
  isolation: isolate;
}

.theatre-ambient {
  position: absolute;
  z-index: 0;
  inset: -18%;
  width: 136%;
  height: 136%;
  object-fit: cover;
  opacity: 0.42;
  filter: blur(72px) brightness(0.7) saturate(1.5);
  transition: opacity 220ms ease;
}

.theatre-ambient.is-changing {
  opacity: 0.1;
}

.theatre-frame {
  position: relative;
  z-index: 1;
  border-color: color-mix(in srgb, var(--theatre-fg) 26%, transparent);
  border-radius: 6px;
  box-shadow: 0 24px 70px color-mix(in srgb, var(--theatre-bg) 66%, transparent);
}

.theme-facts {
  position: relative;
  z-index: 1;
  padding: 34px;
  border: 1px solid color-mix(in srgb, var(--theatre-fg) 20%, transparent);
  border-radius: 6px;
  background: color-mix(in srgb, var(--theatre-panel) 92%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.theme-index {
  color: var(--theatre-muted);
  font-family: var(--mono);
  font-size: 12px;
}

.theme-facts h3 {
  margin-top: 12px;
  font-size: 42px;
}

.theme-facts > p:not(.theme-index) {
  margin-top: 16px;
  color: var(--theatre-muted);
}

.theme-facts dl {
  margin-top: 34px;
}

.theme-facts dl > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid color-mix(in srgb, var(--theatre-fg) 16%, transparent);
}

.theme-facts dt {
  color: var(--theatre-muted);
  font-size: 12px;
}

.theme-facts dd {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12px;
}

.color-swatch {
  width: 14px;
  height: 14px;
  border: 1px solid color-mix(in srgb, var(--theatre-fg) 26%, transparent);
  border-radius: 3px;
}

.system {
  padding-bottom: 0;
  background: #f3efe8;
  color: #211d19;
}

.system > .shell > .chapter-heading .eyebrow,
.system > .shell > .chapter-heading > p:last-child {
  color: #6c6259;
}

.feature-scene {
  min-height: 510px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  padding: 92px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #f0efeb;
  clip-path: inset(0 -100vmax);
}

.feature-scene:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.tune-scene {
  background: #081410;
  box-shadow: 0 0 0 100vmax #081410;
}

.guard-scene {
  background: #1a1113;
  box-shadow: 0 0 0 100vmax #1a1113;
}

.review-scene {
  background: #11101a;
  box-shadow: 0 0 0 100vmax #11101a;
}

.icon-scene {
  background: #11101a;
  box-shadow: 0 0 0 100vmax #11101a;
}

.feature-copy {
  max-width: 450px;
  padding: 28px 52px 28px 0;
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
  font-size: 19px;
}

.tune-scene .feature-icon { color: #64d8d1; }
.guard-scene .feature-icon { color: #ff8f8b; }
.review-scene .feature-icon { color: #b49aff; }
.icon-scene .feature-icon { color: #b49aff; }

.feature-copy h3 {
  margin-top: 12px;
}

.feature-copy > p:not(.feature-label):not(.feature-proof) {
  margin-top: 18px;
  color: #acaea9;
}

.feature-proof {
  margin-top: 22px;
  color: #888c86;
  font-family: var(--mono);
  font-size: 11px;
}

.feature-label.cyan {
  color: #64d8d1;
}

.feature-label.coral {
  color: #ff7772;
}

.feature-label.violet {
  color: #b49aff;
}

.tune-console,
.guard-visual,
.review-visual,
.icon-studio-visual {
  min-width: 0;
}

.tune-console {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: #080a0a;
}

.console-bar,
.review-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #8e928c;
  font-family: var(--mono);
  font-size: 11px;
}

.slider-row,
.color-row {
  display: grid;
  grid-template-columns: 92px 1fr 58px;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  color: #bfc2bc;
  font-family: var(--mono);
  font-size: 12px;
}

.slider-row input {
  width: 100%;
  accent-color: var(--tune-accent, #5cc8a0);
}

.slider-row output,
.color-row output {
  text-align: right;
}

.color-row input[type='color'] {
  width: 48px;
  height: 30px;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: transparent;
}

.advanced-controls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 22px;
}

.advanced-controls span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 4px;
  color: #7f8781;
  font-family: var(--mono);
  font-size: 9px;
}

.advanced-controls b {
  color: #d8ded7;
  font-size: 10px;
}

.tune-preview {
  margin-top: 26px;
  padding: 20px;
  border-left: 3px solid var(--tune-accent, #5cc8a0);
  background: #06100c;
  color: #d8ded7;
  font-family: var(--mono);
  font-size: 13px;
}

.tune-preview b {
  color: var(--tune-accent, #5cc8a0);
}

.tune-preview i {
  color: #ffb77e;
}

.tune-preview em {
  color: #b49aff;
}

.guard-scene {
  grid-template-columns: 1.28fr 0.72fr;
}

.guard-scene .feature-copy {
  padding: 28px 0 28px 52px;
}

.guard-visual {
  display: grid;
  gap: 16px;
}

.guard-window {
  overflow: hidden;
  border: 1px solid rgba(233, 171, 43, 0.42);
  border-radius: 6px;
  background: #080a0d;
  font-family: var(--mono);
  font-size: 13px;
}

.prod-window {
  border-color: rgba(255, 98, 95, 0.55);
}

.guard-context {
  padding: 18px;
  color: #bfc2bc;
}

.guard-context strong {
  color: #f3d477;
}

.prod-window .guard-context strong {
  color: #ff8f8b;
}

.guard-status {
  padding: 9px 18px;
  color: #ffffff;
  font-weight: 700;
}

.guard-status.staging {
  background: #765b12;
}

.guard-status.prod {
  background: #a32623;
}

.review-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: #08090d;
}

.review-head {
  padding: 14px 18px;
}

.review-line {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr 10px;
  gap: 12px;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #7b807a;
  font-family: var(--mono);
  font-size: 12px;
}

.review-line code {
  overflow: hidden;
  color: #c8cbc5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-line b {
  color: #ff9c79;
}

.review-line i {
  color: #95cb54;
}

.review-line mark {
  width: 4px;
  height: 28px;
  justify-self: end;
  border-radius: 2px;
  background: transparent;
}

.review-line mark.typed,
.review-legend i.typed {
  background: #ff9550;
}

.review-line mark.bulk,
.review-legend i.bulk {
  background: #a688ff;
}

.review-line mark.hot {
  width: 8px;
}

.review-legend {
  display: flex;
  gap: 24px;
  padding: 14px 18px;
  color: #8e928c;
  font-family: var(--mono);
  font-size: 11px;
}

.review-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.review-legend i {
  width: 18px;
  height: 5px;
  border-radius: 2px;
}

.icon-studio-visual {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: #08090d;
}

.icon-search {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  color: #aeb2ad;
  font-family: var(--mono);
  font-size: 11px;
}

.icon-search > span:first-child {
  color: #b49aff;
  font-size: 20px;
  line-height: 1;
}

.icon-search kbd {
  padding: 2px 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  color: #777d78;
  font: inherit;
}

.icon-preset-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
}

.icon-preset-tabs span {
  padding: 9px 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: #7f8580;
  font-family: var(--mono);
  font-size: 9px;
  text-align: center;
}

.icon-preset-tabs span:last-child {
  border-right: 0;
}

.icon-preset-tabs .is-active {
  background: rgba(180, 154, 255, 0.14);
  color: #d9ceff;
}

.icon-inventory {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.icon-inventory i {
  display: grid;
  aspect-ratio: 1.5;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.025);
  color: #b49aff;
  font-family: var(--mono);
  font-size: 13px;
  font-style: normal;
}

.icon-inventory i:nth-child(2n) { color: #64d8d1; }
.icon-inventory i:nth-child(3n) { color: #ff9c79; }

.icon-association {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  margin-top: 10px;
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #858b86;
  font-family: var(--mono);
  font-size: 10px;
}

.icon-association strong {
  color: #c6cac4;
}

.icon-association em {
  color: #95cb54;
  font-style: normal;
}

.included-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
  border-top: 1px solid rgba(33, 29, 25, 0.18);
  border-bottom: 1px solid rgba(33, 29, 25, 0.18);
  color: #211d19;
}

.included-strip > div {
  min-height: 208px;
  padding: 34px 28px;
  border-right: 1px solid rgba(33, 29, 25, 0.18);
  border-bottom: 1px solid rgba(33, 29, 25, 0.18);
  transition: background-color 180ms ease, transform 180ms var(--ease-out);
}

.included-strip > div:nth-child(3n) {
  border-right: 0;
}

.included-strip > div:nth-child(n + 4) {
  border-bottom: 0;
}

.included-strip > div:hover {
  background: rgba(255, 255, 255, 0.34);
}

.included-strip span,
.included-strip strong {
  display: block;
}

.included-strip span {
  color: #6c6259;
  font-family: var(--mono);
  font-size: 10px;
}

.included-strip strong {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.45;
}

.capability-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(33, 29, 25, 0.16);
  border-radius: 50%;
  color: #006f6a;
  font-size: 17px;
}

.workbench {
  background: #dfe7e5;
  color: #16201d;
}

.workbench .eyebrow,
.workbench .chapter-heading-wide > p {
  color: #51645e;
}

.workbench-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.workbench-media figure,
.language-reel figure {
  overflow: hidden;
  border: 1px solid rgba(22, 32, 29, 0.18);
  border-radius: 6px;
  background: #07100d;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 220ms var(--ease-out);
}

.workbench-media figure:hover,
.language-reel figure:hover {
  border-color: rgba(22, 32, 29, 0.36);
  box-shadow: 0 22px 50px rgba(22, 32, 29, 0.13);
  transform: translateY(-3px);
}

.workbench-media img,
.language-reel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.workbench-media figcaption,
.language-reel figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #cad4d0;
  font-size: 12px;
}

.workbench-media figcaption span {
  color: #86958f;
  text-align: right;
}

.language-reel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.language-reel figcaption {
  display: block;
  font-family: var(--mono);
}

.terminal-line {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 52px;
  padding: 22px 0;
  border-top: 1px solid rgba(22, 32, 29, 0.2);
  border-bottom: 1px solid rgba(22, 32, 29, 0.2);
}

.terminal-line > span {
  color: #51645e;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.terminal-line > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.terminal-line a {
  font-size: 14px;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.compatibility-line {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(22, 32, 29, 0.2);
}

.compatibility-line > span {
  color: #51645e;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.compatibility-line p {
  color: #354a44;
  font-size: 14px;
}

.proof {
  background: #f3eee7;
  color: #352d27;
}

.proof .eyebrow {
  color: #6f6258;
}

.proof .shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.proof-intro > p:not(.eyebrow) {
  margin-top: 20px;
  color: #675c53;
}

.proof-intro h2 {
  margin-top: 14px;
}

.proof-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
  border-top: 1px solid rgba(53, 45, 39, 0.18);
  border-left: 1px solid rgba(53, 45, 39, 0.18);
}

.proof-metrics > div {
  min-height: 112px;
  padding: 18px;
  border-right: 1px solid rgba(53, 45, 39, 0.18);
  border-bottom: 1px solid rgba(53, 45, 39, 0.18);
}

.proof-metrics strong,
.proof-metrics span {
  display: block;
}

.proof-metrics strong {
  font-family: var(--display);
  font-size: 34px;
}

.proof-metrics span {
  color: #675c53;
  font-size: 12px;
}

.contrast-panel {
  align-self: start;
  padding: 20px;
  border: 1px solid rgba(53, 45, 39, 0.18);
  border-radius: 6px;
  background: #faf7f2;
}

.contrast-head,
.contrast-row {
  display: grid;
  grid-template-columns: 1fr 110px 82px 54px;
  gap: 12px;
  align-items: center;
}

.contrast-head {
  padding: 4px 0 12px;
  border-bottom: 1px solid rgba(53, 45, 39, 0.16);
  color: #675c53;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.contrast-row {
  min-height: 48px;
  border-bottom: 1px solid rgba(53, 45, 39, 0.09);
  font-size: 13px;
}

.contrast-row:last-child {
  border-bottom: 0;
}

.contrast-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.contrast-name i {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(53, 45, 39, 0.24);
  border-radius: 50%;
}

.contrast-sample {
  padding: 4px 8px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 10px;
  text-align: center;
}

.contrast-ratio {
  font-family: var(--mono);
  font-size: 11px;
  text-align: right;
}

.contrast-grade {
  color: #1d6f32;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.trust-line {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-top: 34px;
  border-top: 1px solid rgba(53, 45, 39, 0.2);
}

.trust-line p strong,
.trust-line p span {
  display: block;
}

.trust-line p span {
  margin-top: 5px;
  color: #675c53;
}

.trust-line > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: flex-end;
  color: #534941;
  font-family: var(--mono);
  font-size: 11px;
}

.trust-line > div span::before {
  content: '✓';
  margin-right: 7px;
  color: #1d6f32;
}

.beta {
  padding: 110px 0;
  background: #07120d;
  color: #e9f0e7;
}

.beta-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 90px;
  align-items: center;
}

.beta .eyebrow {
  color: #95cb54;
}

.beta h2 {
  margin-top: 14px;
}

.beta-grid > div:first-child > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 20px;
  color: #b7c2b4;
  font-size: 18px;
}

.beta-includes {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: #c6d0c3;
  font-size: 14px;
}

.beta-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.beta-includes .ai {
  color: #95cb54;
  font-size: 15px;
}

.beta-action {
  padding-left: 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.beta-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
}

.beta-price strong {
  font-family: var(--display);
  font-size: 52px;
}

.beta-price span {
  color: #aeb9ab;
}

.beta-action .button {
  width: 100%;
}

.beta-transition {
  display: grid;
  gap: 5px;
  margin: 0 0 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid #8bdccf;
  background: rgba(255, 255, 255, 0.035);
}

.beta-transition span {
  color: #95cb54;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
}

.beta-transition strong {
  color: #f0f5ee;
  font-size: 17px;
}

.beta-transition p {
  color: #aeb9ab;
  font-size: 12px;
  line-height: 1.55;
}

.faq {
  padding: 110px 0;
  background: var(--page);
  color: var(--ink);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 80px;
}

.faq h2 {
  margin-top: 14px;
  font-size: 46px;
}

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

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 20px 44px 20px 0;
  list-style: none;
  font-weight: 700;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  position: absolute;
  right: 8px;
  color: var(--muted);
  font-size: 20px;
  transition: transform 150ms ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  max-width: 700px;
  padding: 0 44px 22px 0;
  color: var(--muted);
}

.closing {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #000000;
  color: #ffffff;
}

.closing > img,
.closing-shade {
  position: absolute;
  inset: 0 0 0 auto;
  width: 52%;
  height: 100%;
}

.closing > img {
  object-fit: cover;
  object-position: 46% center;
  opacity: 1;
  filter: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.closing-shade {
  inset: 0 auto 0 0;
  z-index: 1;
  width: 56%;
  background: linear-gradient(90deg, #000000 0%, #000000 86%, rgba(0, 0, 0, 0.82) 94%, rgba(0, 0, 0, 0) 100%);
}

.closing-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 46%) 1fr;
}

.closing-copy {
  max-width: 520px;
}

.closing .eyebrow {
  color: #c5c9c2;
}

.closing h2 {
  max-width: 520px;
  margin: 16px 0 30px;
  font-size: 64px;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

footer {
  padding: 56px 0 34px;
  border-top: 1px solid var(--line);
  background: var(--page);
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 54px;
}

.footer-brand p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-label {
  margin-bottom: 8px;
}

.footer-column a {
  font-size: 13px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--accent);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

/* Motion is progressive enhancement. Content stays visible without JavaScript. */
.motion-ready .hero-content > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.motion-ready.is-loaded .hero-content > * {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready.is-loaded .hero-content > *:nth-child(2) { transition-delay: 60ms; }
.motion-ready.is-loaded .hero-content > *:nth-child(3) { transition-delay: 110ms; }
.motion-ready.is-loaded .hero-content > *:nth-child(4) { transition-delay: 160ms; }
.motion-ready.is-loaded .hero-content > *:nth-child(5) { transition-delay: 210ms; }
.motion-ready.is-loaded .hero-content > *:nth-child(6) { transition-delay: 250ms; }
.motion-ready.is-loaded .hero-content > *:nth-child(7) { transition-delay: 290ms; }

.motion-ready .hero-stage-meta,
.motion-ready .hero-window,
.motion-ready .hero-theme-dock {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition: opacity 850ms var(--ease-out), transform 850ms var(--ease-out);
}

.motion-ready.is-loaded .hero-stage-meta,
.motion-ready.is-loaded .hero-window,
.motion-ready.is-loaded .hero-theme-dock {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.motion-ready.is-loaded .hero-stage-meta { transition-delay: 240ms; }
.motion-ready.is-loaded .hero-window { transition-delay: 300ms; }
.motion-ready.is-loaded .hero-theme-dock { transition-delay: 370ms; }

.motion-ready [data-reveal] {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(26px);
  transition: opacity 720ms var(--ease-out), filter 720ms var(--ease-out), transform 720ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal='left'] {
  transform: translateX(-24px);
}

.motion-ready [data-reveal='right'] {
  transform: translateX(24px);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1000px) {
  h2 {
    font-size: 46px;
  }

  .nav-links,
  .nav-actions .text-link {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .menu-button {
    display: inline-grid;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-stage {
    margin-bottom: -260px;
  }

  .platforms {
    padding: 350px 0 90px;
  }

  .platform-heading,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .platform-heading {
    gap: 20px;
  }

  .platform-card {
    min-height: 220px;
  }

  .shift {
    padding-top: 90px;
  }

  .chapter-heading-wide,
  .shift-grid,
  .theatre-stage,
  .feature-scene,
  .guard-scene,
  .proof .shell,
  .beta-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .chapter-heading-wide {
    gap: 0;
  }

  .theatre-frame {
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--theatre-fg) 18%, transparent);
  }

  .theatre-stage {
    padding: 30px;
  }

  .feature-copy,
  .guard-scene .feature-copy {
    max-width: 720px;
    padding: 46px 0 30px;
  }

  .feature-scene {
    padding: 70px 0;
  }

  .guard-visual {
    order: 2;
    padding-bottom: 46px;
  }

  .tune-console,
  .review-visual,
  .icon-studio-visual {
    margin-bottom: 46px;
  }

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

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

  .included-strip > div:nth-child(-n + 4) {
    border-bottom: 1px solid rgba(33, 29, 25, 0.18);
  }

  .included-strip > div:nth-child(n + 5) {
    border-bottom: 0;
  }

  .workbench-media {
    grid-template-columns: 1fr;
  }

  .proof .shell {
    gap: 44px;
  }

  .trust-line {
    grid-template-columns: 1fr;
  }

  .trust-line > div {
    justify-content: flex-start;
  }

  .beta-grid,
  .faq-grid {
    gap: 44px;
  }

  .beta-action {
    padding: 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .shell,
  .nav-inner {
    width: min(100% - 32px, 1180px);
  }

  .motion-ready [data-reveal='left'],
  .motion-ready [data-reveal='right'] {
    transform: translateY(20px);
  }

  .nav {
    height: 58px;
  }

  .mobile-menu {
    top: 58px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions > .icon-button:not(.menu-button) {
    display: none;
  }

  .button-small {
    min-height: 36px;
    padding: 7px 13px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 27px;
  }

  .hero {
    min-height: calc(100svh - 58px);
    padding-top: 48px;
  }

  .hero-image {
    object-position: center;
    opacity: 1;
  }

  .hero-content {
    padding: 0;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-summary {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

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

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    margin-top: 18px;
    text-align: left;
  }

  .hero-stage {
    width: calc(100% - 32px);
    margin: 36px auto -130px;
    padding: 0;
  }

  .platforms {
    padding: 205px 0 78px;
  }

  .platform-grid {
    margin-top: 36px;
  }

  .platform-card {
    min-height: 0;
    padding: 24px;
  }

  .platform-card strong {
    margin-top: 24px;
    font-size: 22px;
  }

  .hero-stage-meta {
    width: 100%;
    grid-template-columns: 1fr auto;
  }

  .hero-stage-meta small {
    display: none;
  }

  .hero-window,
  .hero-theme-dock {
    width: 100%;
  }

  .theme-dock-track {
    justify-content: flex-start;
  }

  .dock-theme {
    min-width: 108px;
  }

  .chapter {
    padding: 78px 0;
  }

  .shift {
    padding-top: 78px;
  }

  .chapter-heading {
    margin-bottom: 40px;
  }

  .chapter-heading > p:last-child,
  .chapter-heading-wide > p {
    font-size: 16px;
  }

  .shift-grid {
    gap: 30px;
  }

  .shift-step {
    grid-template-columns: 34px 1fr;
  }

  .theme-rail {
    margin-right: -16px;
  }

  .rail-theme {
    min-width: 118px;
  }

  .theatre-stage {
    margin-top: 22px;
    padding: 16px;
  }

  .theme-facts {
    padding: 24px;
  }

  .theme-facts h3 {
    font-size: 36px;
  }

  .feature-scene {
    min-height: 0;
    padding: 54px 0;
  }

  .feature-copy,
  .guard-scene .feature-copy {
    padding-top: 38px;
  }

  .slider-row,
  .color-row {
    grid-template-columns: 76px 1fr 48px;
    gap: 8px;
  }

  .tune-console {
    padding: 18px;
  }

  .advanced-controls,
  .icon-inventory {
    grid-template-columns: 1fr 1fr;
  }

  .icon-preset-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .icon-preset-tabs span:nth-child(2) {
    border-right: 0;
  }

  .icon-preset-tabs span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .icon-association strong {
    display: none;
  }

  .review-line {
    grid-template-columns: 28px 1fr 8px;
    padding: 0 12px;
    font-size: 10px;
  }

  .review-legend {
    flex-direction: column;
    gap: 8px;
  }

  .included-strip,
  .language-reel {
    grid-template-columns: 1fr;
  }

  .included-strip > div:nth-child(n) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(33, 29, 25, 0.18);
  }

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

  .workbench-media figcaption {
    display: block;
  }

  .workbench-media figcaption span {
    display: block;
    margin-top: 4px;
    text-align: left;
  }

  .terminal-line,
  .compatibility-line {
    grid-template-columns: 1fr;
  }

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

  .contrast-head,
  .contrast-row {
    grid-template-columns: 1fr 72px 46px;
  }

  .contrast-head span:nth-child(2),
  .contrast-sample {
    display: none;
  }

  .contrast-panel {
    padding: 14px;
  }

  .trust-line {
    gap: 28px;
  }

  .beta,
  .faq {
    padding: 78px 0;
  }

  .faq h2 {
    font-size: 38px;
  }

  .closing {
    min-height: 620px;
  }

  .closing > img {
    inset: 0;
    width: 100%;
    object-position: 52% center;
    opacity: 0.46;
    filter: brightness(0.56) contrast(1.14);
    border-left: 0;
  }

  .closing-shade {
    inset: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.38);
  }

  .closing-content {
    display: block;
  }

  .closing h2 {
    font-size: 46px;
  }

  .closing-actions {
    display: grid;
  }

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

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

  .copyright {
    text-align: left;
  }
}

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

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

  .hero-stage {
    transform: none !important;
  }
}
