@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/ibm-plex-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans Condensed";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/ibm-plex-sans-condensed-500-latin.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/ibm-plex-sans-condensed-600-latin.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/ibm-plex-sans-condensed-700-latin.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --bg: #080b0e;
  --bg-raised: #0e1318;
  --surface: #141a20;
  --surface-strong: #1a222a;
  --border: #3a4651;
  --border-soft: #222b33;
  --text: #edf2f5;
  --text-muted: #9aa8b3;
  --gold: #e9bb63;
  --gold-hover: #f3cf87;
  --cyan: #68cce3;
  --violet: #9b84d2;
  --error: #e06c75;
  --header-height: 64px;
  --content: 1440px;
  --gutter: 24px;
  --display: "IBM Plex Sans Condensed", "Arial Narrow", sans-serif;
  --body: "IBM Plex Sans", "Segoe UI", sans-serif;
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body,
button,
input,
select {
  font-family: var(--body);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

:where(a, button, input, select, summary, video):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.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: 8px;
  left: 8px;
  z-index: 1000;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: var(--bg);
  color: var(--text);
  font-weight: 700;
  transform: translateY(-140%);
}

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

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--border-soft);
  background: rgba(8, 11, 14, 0.96);
  backdrop-filter: blur(12px);
}

.site-nav {
  width: min(100%, var(--content));
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand__name {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #b9c3ca;
  font-size: 13px;
  text-decoration: none;
}

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

.nav-links a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--bg-raised);
  cursor: pointer;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  background: currentColor;
  content: "";
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  position: absolute;
  left: 0;
}

.nav-toggle__icon::before {
  top: -6px;
}

.nav-toggle__icon::after {
  top: 6px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.btn--primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #14100a;
}

.btn--primary:hover {
  border-color: var(--gold-hover);
  background: var(--gold-hover);
}

.btn--outline {
  background: transparent;
  color: var(--text);
}

.btn--outline:hover {
  border-color: #647381;
  background: var(--surface);
}

.content-band {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 72px var(--gutter);
}

.content-band--dense {
  padding-top: 56px;
  padding-bottom: 56px;
}

.content-band + .content-band,
.content-band + .full-band,
.full-band + .content-band {
  border-top: 1px solid var(--border-soft);
}

.full-band {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-raised);
}

.full-band__inner {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 72px var(--gutter);
}

.kicker,
.interface-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
.display-title {
  font-family: var(--display);
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

.hero-title {
  max-width: 760px;
  margin: 0;
  font-size: 72px;
  font-weight: 600;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: #c7d0d6;
  font-size: 19px;
  line-height: 1.55;
}

.support-copy {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--text-muted);
}

.access-note {
  max-width: 680px;
  margin: 16px 0 0;
  padding-left: 12px;
  border-left: 2px solid var(--gold);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.home-hero {
  position: relative;
  isolation: isolate;
  width: min(100%, var(--content));
  min-height: clamp(520px, calc(100svh - var(--header-height) - 56px), 760px);
  margin: 0 auto;
  padding: 72px var(--gutter);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-raised);
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 7, 9, 0.8) 0%,
    rgba(4, 7, 9, 0.35) 50%,
    rgba(4, 7, 9, 0) 100%
  );
  content: "";
}

.home-hero__backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero__copy {
  width: min(100%, 740px);
  min-width: 0;
  padding: 24px 0;
}

.home-hero .hero-title,
.home-hero .hero-copy,
.home-hero .kicker {
  text-shadow: 0 2px 14px #000;
}

.home-hero .btn--outline {
  border-color: #77838d;
  background: rgba(8, 11, 14, 0.78);
}

.home-hero .btn--outline:hover {
  background: rgba(20, 26, 32, 0.96);
}

.section-heading {
  max-width: 840px;
  margin: 0;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading + .category-grid,
.section-heading + .faq-list,
.section-heading + .workflow-steps {
  margin-top: 24px;
}

.product-band {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  align-items: center;
  gap: 64px;
}

.product-band--reverse {
  grid-template-columns: minmax(520px, 1.2fr) minmax(0, 0.8fr);
}

.product-band--reverse .product-band__copy {
  order: 2;
}

.product-band__copy,
.product-band__media {
  min-width: 0;
}

.product-band h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
}

.product-band__copy > p:not(.kicker) {
  max-width: 610px;
  margin: 20px 0 0;
  color: var(--text-muted);
}

.home-asset-preview {
  min-width: 0;
}

.home-asset-preview__toolbar {
  min-height: 44px;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-end;
}

.home-motion-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  background: var(--bg-raised);
  color: var(--text);
  cursor: pointer;
}

.js .home-motion-toggle {
  display: inline-flex;
}

.home-motion-toggle:hover:not(:disabled) {
  border-color: #647381;
  background: var(--surface);
}

.home-motion-toggle:disabled {
  color: var(--text-muted);
  cursor: default;
}

.home-motion-toggle::after {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 4;
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--surface-strong);
  color: var(--text);
  content: attr(data-tooltip);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 120ms ease, transform 120ms ease;
  white-space: nowrap;
}

.home-motion-toggle:hover::after,
.home-motion-toggle:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.home-motion-toggle__icon {
  width: 18px;
  text-align: center;
  font-size: 16px;
  line-height: 1;
}

.home-asset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--border-soft);
}

.home-asset-tile {
  position: relative;
  aspect-ratio: 1;
  min-width: 0;
  overflow: hidden;
  background: #111317;
}

.home-asset-tile:hover {
  background: #171a1e;
}

.home-asset-tile:focus-visible {
  z-index: 1;
  outline-offset: -4px;
}

.home-asset-tile video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-product-media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.home-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-product-media--editor {
  background: #111317;
}

.home-product-media--editor img {
  object-fit: contain;
}

.page-intro {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 54px var(--gutter) 38px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.55fr);
  align-items: end;
  gap: 48px;
}

.page-intro h1 {
  margin: 0;
  font-size: 58px;
  line-height: 0.95;
  text-transform: uppercase;
}

.page-intro__aside {
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.page-intro__aside p {
  margin: 0;
}

.page-intro--compact {
  grid-template-columns: minmax(0, 900px);
  padding-bottom: 30px;
}

.editor-workbench {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 0 var(--gutter) 80px;
}

.editor-workbench__frame {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 680px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-raised);
}

.feature-rail {
  border-right: 1px solid var(--border);
  background: #0b1014;
}

.feature-rail__head {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.feature-tab {
  width: 100%;
  min-height: 84px;
  padding: 16px 18px;
  display: grid;
  gap: 4px;
  border: 0;
  border-bottom: 1px solid var(--border-soft);
  background: transparent;
  color: var(--text-muted);
  text-align: left;
  cursor: pointer;
}

.feature-tab:hover {
  background: var(--surface);
  color: var(--text);
}

.feature-tab[aria-selected="true"] {
  background: var(--surface-strong);
  color: var(--text);
  box-shadow: inset 3px 0 0 var(--cyan);
}

.feature-tab strong {
  font-family: var(--display);
  font-size: 15px;
}

.feature-tab span {
  font-size: 12px;
}

.editor-stage {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.editor-stage__toolbar {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 12px;
}

.editor-stage__toolbar strong {
  color: var(--text);
  font-family: var(--display);
  font-size: 14px;
}

.editor-stage__viewport {
  position: relative;
  min-height: 0;
  padding: 18px;
  display: grid;
  place-items: center;
  background: #05080a;
}

.editor-stage__viewport.is-loading::after {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 3px solid rgba(237, 242, 245, 0.24);
  border-top-color: var(--gold);
  border-radius: 50%;
  content: "";
  animation: editor-loading-spin 0.8s linear infinite;
}

.editor-stage__viewport video {
  width: min(100%, 996px);
  max-height: 560px;
  aspect-ratio: 16 / 9;
  background: #111317;
  object-fit: contain;
}

.editor-stage__fallback {
  width: min(100%, 520px);
  min-height: 220px;
  padding: 28px;
  display: grid;
  place-content: center;
  gap: 6px;
  border: 1px solid var(--border);
  background: #111317;
  text-align: center;
}

.editor-stage__fallback strong {
  font-family: var(--display);
  font-size: 20px;
}

.editor-stage__fallback span {
  color: var(--text-muted);
  font-size: 14px;
}

@keyframes editor-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.editor-stage__info {
  min-height: 104px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--border-soft);
}

.editor-stage__info h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.editor-stage__info p {
  max-width: 780px;
  margin: 7px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.capability-strip > div {
  min-width: 0;
  padding: 20px;
}

.capability-strip > div + div {
  border-left: 1px solid var(--border);
}

.capability-strip dt {
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.capability-strip dd {
  margin: 5px 0 0;
  font-weight: 700;
}

.workflow-steps {
  border-top: 1px solid var(--border);
}

.workflow-step {
  display: grid;
  grid-template-columns: 52px minmax(190px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.workflow-step__number {
  color: var(--cyan);
  font-size: 12px;
}

.workflow-step h3,
.workflow-step p {
  margin: 0;
}

.workflow-step h3 {
  font-size: 18px;
}

.workflow-step p {
  color: var(--text-muted);
}

.asset-page-intro {
  grid-template-columns: minmax(0, 900px);
  padding-bottom: 30px;
}

.asset-tool-section {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 0 var(--gutter) 84px;
}

.tool-heading {
  min-height: 62px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--border);
  border-bottom: 0;
  background: var(--bg-raised);
}

.tool-heading strong {
  font-family: var(--display);
  font-size: 15px;
}

.text-link {
  color: var(--gold);
  font-weight: 700;
}

.asset-tool-section__caption {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 13px;
}

.asset-browser {
  height: clamp(680px, 74vh, 760px);
  min-height: 680px;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0 0 4px 4px;
  background: var(--bg-raised);
}

.asset-browser__sidebar {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  overflow: hidden;
  border-right: 1px solid var(--border);
  background: #0b1014;
}

.asset-browser__search,
.asset-browser__select,
.asset-browser__btn,
.asset-browser__actions button {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--surface);
  color: var(--text);
}

.asset-browser__search {
  width: calc(100% - 24px);
  margin: 12px;
  padding: 0 12px;
}

.asset-browser__search::placeholder {
  color: #778691;
}

.asset-browser__filters {
  padding: 0 12px 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border-bottom: 1px solid var(--border-soft);
}

.asset-browser__toggles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--border);
}

.asset-browser__toggle {
  min-height: 44px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 11px;
  cursor: pointer;
}

.asset-browser__toggle + .asset-browser__toggle {
  border-left: 1px solid var(--border);
}

.asset-browser__toggle input {
  accent-color: var(--violet);
}

.asset-browser__filter-field {
  min-width: 0;
  display: grid;
  gap: 5px;
  color: var(--text-muted);
  font-size: 11px;
}

.asset-browser__select {
  width: 100%;
  padding: 0 8px;
}

.asset-browser__list {
  overflow: auto;
  padding: 6px 0 18px;
  scrollbar-color: var(--border) #0b1014;
}

.asset-browser__virtual-list {
  position: relative;
  width: 100%;
}

.asset-browser__virtual-list .asset-browser__item {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 44px;
  min-height: 44px;
}

.asset-browser__item {
  width: 100%;
  min-height: 44px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  border: 0;
  border-bottom: 1px solid #182129;
  background: transparent;
  color: var(--text-muted);
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}

.asset-browser__item:hover {
  background: var(--surface);
  color: var(--text);
}

.asset-browser__list[role="listbox"]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.asset-browser__item.is-range {
  color: #d8c8f6;
}

.asset-browser__item.is-selected {
  background: rgba(155, 132, 210, 0.18);
  color: var(--text);
  box-shadow: inset 3px 0 0 var(--violet);
}

.asset-browser__main {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
}

.asset-browser__preview {
  position: relative;
  min-height: 0;
  padding: 14px;
  display: grid;
  background: #111317;
}

.asset-browser__grid {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.asset-browser__grid.is-single {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.asset-browser__tile {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  background: #111317;
  cursor: pointer;
}

.asset-browser__tile:hover,
.asset-browser__tile.is-selected {
  border-color: var(--violet);
}

.asset-browser__tile.is-audio {
  display: grid;
  place-items: center;
  cursor: default;
}

.asset-browser__tile video,
.asset-browser__tile img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.asset-browser__tile audio {
  width: calc(100% - 20px);
  margin: auto;
}

.asset-browser__tile-badge {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 7px;
  padding: 3px 6px;
  background: var(--gold);
  color: #14100a;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.asset-browser__audio {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-content: center stretch;
  justify-items: center;
  gap: 10px;
}

.asset-browser__audio-label {
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.asset-browser__audio audio {
  width: 100%;
  max-width: 480px;
  min-width: 0;
}

.asset-browser__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.asset-browser__nav-btn {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: rgba(14, 19, 24, 0.94);
  transform: translateY(-50%);
  cursor: pointer;
}

.asset-browser__nav-btn--prev {
  left: 24px;
}

.asset-browser__nav-btn--next {
  right: 24px;
}

.asset-browser__nav-btn svg,
.collection-browser__control svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.asset-browser__footer {
  min-height: 66px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.asset-browser__path {
  min-width: 0;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.asset-browser__actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.asset-browser__actions .asset-browser__btn {
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

.asset-tree details {
  border-bottom: 1px solid #182129;
}

.asset-tree summary {
  min-height: 44px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  color: var(--text-muted);
  cursor: pointer;
}

.asset-tree summary::-webkit-details-marker {
  display: none;
}

.asset-tree summary::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(-45deg);
  transition: transform 140ms ease;
}

.asset-tree details[open] > summary::before {
  transform: rotate(45deg);
}

.asset-tree__summary-row {
  min-width: 0;
}

.asset-tree__children {
  padding-left: 10px;
}

.asset-detail {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 24px var(--gutter) 80px;
}

.asset-detail__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
}

.asset-detail__breadcrumbs a:hover {
  color: var(--text);
}

.asset-detail__content {
  margin-top: 22px;
}

.asset-detail__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
}

.asset-detail__header h1 {
  max-width: 980px;
  margin: 0;
  font-size: 46px;
  line-height: 1;
  text-transform: uppercase;
}

.asset-detail__header p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--text-muted);
}

.asset-detail__viewer {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(300px, 1fr);
  align-items: start;
  justify-content: center;
  gap: 24px;
}

.asset-detail__media-column {
  min-width: 0;
}

.asset-detail__stage {
  width: 100%;
  aspect-ratio: 1;
  padding: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #111317;
}

.asset-detail__stage video,
.asset-detail__stage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.asset-detail__selected {
  margin: 12px 0 0;
  display: grid;
  gap: 3px;
}

.asset-detail__selected span {
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.asset-detail__selected strong {
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: 18px;
}

.asset-detail__preview-note {
  width: 100%;
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 13px;
}

.asset-detail__preview-note strong {
  color: var(--text);
  font-weight: 600;
}

.asset-detail__audio {
  width: min(680px, 100%);
  display: grid;
  justify-items: center;
  gap: 22px;
}

.asset-detail__audio strong {
  font-family: var(--display);
  font-size: 24px;
  text-align: center;
}

.asset-detail__audio audio {
  width: 100%;
}

.asset-detail__variants {
  min-width: 0;
  height: 720px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border: 1px solid var(--border);
  background: var(--bg-raised);
}

.asset-detail__variants-header {
  min-height: 58px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
}

.asset-detail__variants-header h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.asset-detail__variants-header span {
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.asset-detail__variant-list {
  min-height: 0;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.asset-detail__variant {
  width: 100%;
  min-height: 92px;
  padding: 10px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid var(--border-soft);
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.asset-detail__variant:hover {
  background: var(--surface);
}

.asset-detail__variant:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.asset-detail__variant.is-selected {
  background: rgba(155, 132, 210, 0.14);
  box-shadow: inset 3px 0 0 var(--violet);
}

.asset-detail__variant-preview {
  width: 72px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: #111317;
}

.asset-detail__variant-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.asset-detail__variant-placeholder {
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.asset-detail__variant-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.asset-detail__variant-copy strong,
.asset-detail__variant-copy small {
  overflow-wrap: anywhere;
}

.asset-detail__variant-copy strong {
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.2;
}

.asset-detail__variant-copy small {
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.35;
}

.asset-detail__information {
  padding: 24px 0 0;
}

.asset-detail__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.asset-detail__facts > div {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.asset-detail__facts dt,
.asset-detail__keys > span {
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.asset-detail__facts dd {
  margin: 6px 0 0;
  font-weight: 700;
}

.asset-detail__keys {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.asset-detail__keys code {
  max-width: 100%;
  padding: 6px 8px;
  overflow-wrap: anywhere;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  color: #d8c8f6;
  font-size: 12px;
}

.asset-detail__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.asset-detail__related {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

.asset-detail__related h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
}

.asset-detail__related-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.asset-detail__related-link {
  min-width: 0;
  min-height: 112px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 8px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.asset-detail__related-link span {
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
}

.asset-detail__related-link strong {
  overflow-wrap: anywhere;
  font-family: var(--display);
}

.asset-detail__related-link:hover {
  background: var(--surface);
}

.asset-category__content {
  margin-top: 22px;
}

.asset-category__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
}

.asset-category__header h1 {
  max-width: 980px;
  margin: 0;
  font-size: 46px;
  line-height: 1;
  text-transform: uppercase;
}

.asset-category__header p:last-child {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--text-muted);
}

.asset-category__summary {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.asset-category__summary span {
  min-width: 190px;
  padding: 16px 18px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
}

.asset-category__summary strong {
  margin-right: 5px;
  color: var(--text);
  font-family: var(--display);
  font-size: 18px;
}

.asset-category__letters {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.asset-category__letters a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--display);
  font-weight: 700;
}

.asset-category__letters a:hover {
  border-color: var(--gold);
  background: var(--surface);
  color: var(--text);
}

.asset-category__directory {
  margin-top: 40px;
  display: grid;
  gap: 40px;
}

.asset-category__letters + .asset-category__directory {
  margin-top: 24px;
}

.asset-category__group {
  scroll-margin-top: 92px;
}

.asset-category__group h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

.asset-category__family-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.asset-category__family {
  min-width: 0;
  min-height: 76px;
  padding: 16px;
  display: grid;
  align-content: center;
  gap: 5px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.asset-category__family:hover {
  background: var(--surface);
}

.asset-category__family span {
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-weight: 700;
}

.asset-category__family small {
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.asset-category__related {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

.asset-category__related h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
}

.asset-category__related > div {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.asset-category__related a {
  min-width: 0;
  min-height: 82px;
  padding: 16px;
  display: grid;
  align-content: center;
  gap: 5px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.asset-category__related a:hover {
  background: var(--surface);
}

.asset-category__related strong {
  font-family: var(--display);
}

.asset-category__related span {
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.fact-grid,
.category-grid {
  display: grid;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

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

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

.category-grid--seven {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.category-grid--seven > div,
.category-grid--seven > a {
  grid-column: span 3;
}

.category-grid--seven > div:nth-child(n + 5),
.category-grid--seven > a:nth-child(n + 5) {
  grid-column: span 4;
}

.fact-grid > div,
.category-grid > div,
.category-grid > a {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.category-grid > div,
.category-grid > a {
  min-height: 112px;
}

.category-grid > a {
  text-decoration: none;
}

.category-grid > a:hover {
  background: var(--surface);
}

.category-grid > a:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.fact-grid dt {
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.fact-grid dd {
  margin: 7px 0 0;
  font-weight: 700;
}

.category-grid strong {
  display: block;
  font-family: var(--display);
}

.category-grid span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 13px;
}

.collection-intro {
  min-height: 420px;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  align-items: center;
}

.collection-intro__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.collection-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-browser-section {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 0 var(--gutter) 80px;
}

.collection-browser {
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-raised);
}

.collection-browser__tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--border);
}

.collection-browser__tab {
  min-width: 0;
  min-height: 58px;
  padding: 12px 18px;
  border: 0;
  border-radius: 0;
  background: var(--bg-raised);
  color: var(--text-muted);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.collection-browser__tab + .collection-browser__tab {
  border-left: 1px solid var(--border);
}

.collection-browser__tab:hover {
  background: var(--surface);
  color: var(--text);
}

.collection-browser__tab[aria-selected="true"] {
  background: var(--surface);
  color: var(--text);
  box-shadow: inset 0 -3px 0 var(--gold);
}

.collection-browser__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  container-type: inline-size;
}

.collection-browser__main {
  min-width: 0;
  border-right: 1px solid var(--border);
}

.collection-browser__stage {
  position: relative;
  width: calc(100% - 36px);
  aspect-ratio: 16 / 9;
  margin: 18px 18px 0;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: #030506;
}

.collection-browser__stage iframe,
.collection-browser__poster,
.collection-browser__poster img {
  width: 100%;
  height: 100%;
}

.collection-browser__stage iframe {
  border: 0;
}

.collection-browser__poster {
  position: relative;
  padding: 0;
  border: 0;
  background: #030506;
  cursor: pointer;
}

.collection-browser__poster img {
  object-fit: cover;
}

.collection-browser__play {
  position: absolute;
  left: 16px;
  bottom: 16px;
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #14100a;
  font-weight: 700;
}

.collection-browser__loading,
.collection-browser__empty {
  margin: 0;
  padding: 32px;
  align-self: center;
  color: var(--text-muted);
}

.collection-browser__footer {
  min-height: 112px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.collection-browser__release {
  min-width: 0;
}

.collection-browser__release p {
  max-width: 720px;
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.collection-browser__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.collection-browser__controls {
  display: flex;
  gap: 8px;
}

.collection-browser__control {
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--bg-raised);
  cursor: pointer;
}

.collection-browser__control:hover:not(:disabled) {
  border-color: #647381;
  background: var(--surface-strong);
}

.collection-browser__control:disabled {
  opacity: 0.35;
  cursor: default;
}

.collection-browser__rail {
  min-width: 0;
  max-height: min(750px, calc(56.25cqi - 59px));
  overflow: auto;
  background: #0b1014;
  scrollbar-color: var(--border) transparent;
  scrollbar-width: thin;
}

.collection-browser__thumb-list {
  display: grid;
}

.collection-browser__thumb {
  min-width: 0;
  min-height: 0;
  padding: 10px;
  display: block;
  border: 0;
  border-bottom: 1px solid var(--border-soft);
  border-radius: 0;
  background: transparent;
  color: var(--text-muted);
  text-align: left;
  cursor: pointer;
}

.collection-browser__thumb:hover {
  background: var(--surface);
  color: var(--text);
}

.collection-browser__thumb[aria-current="true"] {
  background: rgba(233, 187, 99, 0.1);
  color: var(--text);
  box-shadow: inset 3px 0 0 var(--gold);
}

.collection-browser__thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--border-soft);
  background: #030506;
}

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

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

.faq-list summary {
  min-height: 64px;
  padding: 17px 42px 17px 0;
  font-weight: 700;
  cursor: pointer;
}

.faq-list details > div {
  max-width: 840px;
  padding: 0 0 20px;
  color: var(--text-muted);
}

.faq-list details > div a {
  color: var(--gold);
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  background: #06080a;
}

.footer-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 56px var(--gutter) 28px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.footer-brand {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 390px;
  margin: 12px 0 0;
  color: var(--text-muted);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-links strong {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  min-height: 40px;
  display: flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 13px;
}

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

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 12px;
}

.not-found {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  place-content: center;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-size: 96px;
  line-height: 1;
}

@media (max-width: 1100px) {
  .hero-title {
    font-size: 58px;
  }

  .product-band,
  .product-band--reverse,
  .collection-intro {
    grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
    gap: 42px;
  }

  .page-intro h1 {
    font-size: 50px;
  }

  .editor-workbench__frame {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .asset-browser {
    grid-template-columns: 290px minmax(0, 1fr);
  }

}

@media (max-width: 900px) {
  :root {
    --gutter: 20px;
  }

  .site-nav {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "links links"
      "cta cta";
    column-gap: 16px;
    row-gap: 0;
  }

  .brand {
    grid-area: brand;
  }

  .nav-toggle {
    grid-area: toggle;
    display: block;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links {
    grid-area: links;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 8px;
  }

  .nav-links a {
    border-top: 1px solid var(--border-soft);
  }

  .nav-links a[aria-current="page"]::after {
    display: none;
  }

  .nav-cta {
    grid-area: cta;
    margin-bottom: 12px;
  }

  .site-nav.is-open .nav-links,
  .site-nav.is-open .nav-cta,
  .no-js .nav-links,
  .no-js .nav-cta {
    display: flex;
  }

  .no-js .nav-toggle {
    display: none;
  }

  .product-band,
  .product-band--reverse,
  .collection-intro {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-band--reverse .product-band__copy {
    order: 0;
  }

  .page-intro {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 48px;
  }

  .editor-workbench__frame {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .feature-rail {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .feature-rail__head {
    display: none;
  }

  .feature-rail__tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-tab {
    min-height: 70px;
    border-right: 1px solid var(--border-soft);
    border-bottom: 0;
  }

  .feature-tab[aria-selected="true"] {
    box-shadow: inset 0 -3px 0 var(--cyan);
  }

  .feature-tab span {
    display: none;
  }

  .capability-strip,
  .fact-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid--seven > div,
  .category-grid--seven > div:nth-child(n + 5),
  .category-grid--seven > a,
  .category-grid--seven > a:nth-child(n + 5) {
    grid-column: auto;
  }

  .asset-browser {
    height: auto;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .asset-detail__header,
  .asset-category__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .asset-detail__header .btn,
  .asset-category__header .btn {
    justify-self: start;
  }

  .asset-category__family-grid,
  .asset-category__related > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .asset-detail__viewer {
    grid-template-columns: minmax(0, 720px);
  }

  .asset-detail__variants {
    height: min(520px, 70vh);
  }

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

  .asset-browser__sidebar {
    grid-template-rows: auto auto 260px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .asset-browser__preview {
    min-height: 520px;
  }

  .collection-browser__panel {
    grid-template-columns: 1fr;
  }

  .collection-browser__main {
    border-right: 0;
  }

  .collection-browser__stage {
    width: 100%;
    margin: 0;
    border: 0;
  }

  .collection-browser__rail {
    max-height: none;
    overflow: hidden;
    border-top: 1px solid var(--border);
  }

  .collection-browser__thumb-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .collection-browser__thumb {
    flex: 0 0 240px;
    border-right: 1px solid var(--border-soft);
    border-bottom: 0;
    scroll-snap-align: start;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 60px;
    --gutter: 16px;
  }

  .brand__name {
    font-size: 14px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .content-band,
  .full-band__inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .content-band--dense {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-title,
  .page-intro h1 {
    font-size: 42px;
    line-height: 0.98;
  }

  .hero-copy {
    font-size: 17px;
  }

  .home-hero {
    min-height: clamp(500px, calc(100svh - var(--header-height) - 48px), 680px);
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .home-hero__copy {
    padding: 0;
  }

  .home-hero__copy .action-row,
  .page-intro .action-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section-heading {
    font-size: 34px;
  }

  .asset-detail {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .asset-detail__content {
    margin-top: 26px;
  }

  .asset-detail__header h1,
  .asset-category__header h1 {
    font-size: 38px;
  }

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

  .asset-category__summary span {
    min-width: 0;
  }

  .asset-category__family-grid,
  .asset-category__related > div {
    grid-template-columns: 1fr;
  }

  .asset-detail__stage {
    padding: 12px;
  }

  .asset-detail__viewer {
    margin-top: 26px;
    gap: 18px;
  }

  .asset-detail__variants {
    height: min(440px, 65vh);
  }

  .asset-detail__variant {
    min-height: 82px;
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .asset-detail__variant-preview {
    width: 60px;
  }

  .asset-detail__stage video,
  .asset-detail__stage img {
    height: 100%;
    min-height: 0;
  }

  .asset-detail__facts,
  .asset-detail__related-grid {
    grid-template-columns: 1fr;
  }

  .asset-detail__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .asset-detail__related,
  .asset-category__related {
    margin-top: 56px;
    padding-top: 40px;
  }

  .asset-detail__related h2,
  .asset-category__related h2 {
    font-size: 34px;
  }

  .category-grid > div,
  .category-grid > a {
    min-height: 0;
  }

  .product-band h2 {
    font-size: 34px;
  }

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

  .page-intro {
    padding-top: 38px;
  }

  .collection-browser-section {
    padding-bottom: 58px;
  }

  .collection-browser__tab {
    min-height: 70px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .collection-browser__footer {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .collection-browser__actions {
    justify-content: space-between;
  }

  .collection-browser__thumb {
    flex-basis: 220px;
  }

  .page-intro__aside {
    padding: 14px 0;
  }

  .editor-workbench {
    padding-bottom: 58px;
  }

  .feature-rail__tabs {
    overflow: hidden;
  }

  .feature-tab {
    min-width: 0;
    padding: 10px 8px;
  }

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

  .editor-stage__toolbar {
    min-height: 50px;
  }

  .editor-stage__toolbar span {
    display: none;
  }

  .editor-stage__viewport {
    padding: 8px;
  }

  .editor-stage__info {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .capability-strip,
  .fact-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .capability-strip > div + div {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .workflow-step {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
  }

  .workflow-step p {
    grid-column: 2;
  }

  .tool-heading {
    align-items: start;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .asset-browser__filters {
    grid-template-columns: 1fr;
  }

  .asset-browser__toggles {
    grid-column: 1;
  }

  .asset-browser__sidebar {
    grid-template-rows: auto auto 220px;
  }

  .asset-browser__preview {
    min-height: 520px;
    padding: 8px;
  }

  .asset-browser__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .asset-browser__grid.is-audio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, minmax(108px, auto));
  }

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

  .asset-browser__path {
    white-space: normal;
  }

  .asset-browser__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

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

  .footer-links a {
    min-height: 44px;
  }

  .footer-bottom {
    grid-column: 1;
    flex-direction: column;
  }
}

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

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

  .editor-stage__viewport.is-loading::after {
    animation: none;
  }
}
