:root {
  --ink: #f5f3eb;
  --ink-dark: #141411;
  --muted: rgba(245, 243, 235, 0.62);
  --muted-dark: #747267;
  --paper: #f4f1e8;
  --paper-soft: #faf8f0;
  --paper-line: rgba(20, 20, 17, 0.14);
  --dark: #070807;
  --dark-2: #10110f;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.075);
  --panel-line: rgba(255, 255, 255, 0.12);
  --accent: #e7b83d;
  --accent-2: #f2cd6b;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  --ease-out: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-sharp: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.48;
  letter-spacing: 0;
  scroll-padding-top: 74px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--dark);
}

body,
button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: #fff;
  background: #000;
  border-radius: 6px;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  color: var(--ink);
  background: rgba(7, 8, 7, 0.92);
  border-bottom: 1px solid rgba(245, 243, 235, 0.10);
  backdrop-filter: blur(14px);
}

.header-shell,
.footer-shell {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.footer-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: #17130a;
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  box-shadow: none;
  font-size: 0.82rem;
  font-weight: 860;
}

.brand-text {
  display: grid;
  font-size: 0.95rem;
  font-weight: 780;
  line-height: 1.04;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.primary-nav,
.footer-utility,
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.primary-nav a,
.footer-utility a {
  color: rgba(245, 243, 235, 0.64);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover,
.footer-utility a:hover {
  color: var(--ink);
}

.button,
.account-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 740;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.button:hover,
.account-button:hover {
  transform: none;
}

.button-primary {
  color: #14120b;
  background: var(--accent);
  border-color: rgba(231, 184, 61, 0.72);
  box-shadow: none;
}

.button-secondary,
.account-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  border-color: var(--panel-line);
}

.button-on-dark {
  color: var(--ink);
}

.button-quiet {
  color: var(--ink-dark);
  background: transparent;
  border-color: var(--paper-line);
}

.home-hero,
.product-detail-hero,
.page-hero {
  position: relative;
  isolation: isolate;
  color: var(--ink);
  background: var(--dark);
}

.home-hero::after,
.product-detail-hero::after,
.page-hero::after {
  display: none;
}

.home-hero {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-hero-shell {
  padding: 58px 0 42px;
}

.hero-lede {
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 760;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-hero h1,
.page-hero h1,
.product-detail-hero h1 {
  margin: 0;
  max-width: 950px;
  font-size: clamp(3rem, 6vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.product-stage {
  margin-top: 26px;
}

.stage-frame {
  position: relative;
  display: grid;
  grid-template-columns: 208px minmax(0, 1fr);
  min-height: 0;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  box-shadow: none;
}

.stage-frame::before {
  display: none;
}

.stage-frame::after {
  display: none;
}

.stage-nav {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 4px;
  margin: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.025);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stage-tabs {
  display: grid;
  gap: 2px;
}

.stage-tab {
  display: flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  padding: 0 14px;
  color: rgba(247, 247, 242, 0.58);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 7px;
  text-align: left;
  cursor: pointer;
}

.stage-tab[aria-selected="true"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 3px 0 0 var(--accent);
}

.stage-tab-name {
  overflow: hidden;
  font-size: 0.96rem;
  font-weight: 740;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.model-menu {
  position: relative;
  min-width: 0;
}

.model-menu summary,
.product-switcher-link {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: rgba(245, 243, 235, 0.72);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 740;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms var(--ease-sharp), border-color 160ms var(--ease-sharp), background-color 160ms var(--ease-sharp);
}

.model-menu summary {
  list-style: none;
}

.model-menu summary::-webkit-details-marker {
  display: none;
}

.stage-more-menu summary {
  min-height: 42px;
  justify-content: flex-start;
  padding: 0 14px;
  color: var(--accent);
  font-size: 0.92rem;
}

.model-menu[open] summary,
.model-menu summary:hover,
.product-switcher-link:hover {
  transform: none;
  border-color: rgba(231, 184, 61, 0.24);
  background: rgba(231, 184, 61, 0.08);
}

.model-menu-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 12;
  display: grid;
  width: max-content;
  min-width: 188px;
  max-width: min(300px, calc(100vw - 48px));
  max-height: min(420px, 70svh);
  gap: 5px;
  overflow: auto;
  padding: 8px;
  background: rgba(7, 8, 7, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.stage-more-menu .model-menu-panel {
  grid-template-columns: repeat(2, minmax(96px, 1fr));
  min-width: 230px;
}

.model-menu-panel a {
  display: flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  color: rgba(247, 247, 242, 0.78);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.model-menu-panel a:hover {
  color: var(--ink);
  border-color: rgba(244, 189, 55, 0.32);
  background: rgba(244, 189, 55, 0.12);
}

.model-menu-panel a:target {
  color: var(--ink);
  border-color: rgba(244, 189, 55, 0.42);
  background: rgba(244, 189, 55, 0.16);
}

.stage-panels {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(5, 6, 7, 0.56);
}

.stage-panel {
  position: relative;
  height: 100%;
  animation: stage-in 220ms ease-out;
}

.stage-panel[hidden] {
  display: none;
}

.stage-command {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin: 10px 0 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.stage-command[hidden] {
  display: none;
}

.stage-actions,
.product-hero-actions,
.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stage-actions {
  margin: 0;
}

.format-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.format-rail li {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  color: rgba(247, 247, 242, 0.68);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes stage-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes surface-scan {
  0%,
  58% {
    opacity: 0;
    transform: translateX(-65%);
  }
  68% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateX(65%);
  }
}

.stage-shot,
.product-hero-shot,
.catalog-card-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #030404;
}

.stage-shot {
  height: clamp(320px, 27vw, 390px);
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 6px;
}

.stage-shot::before,
.product-hero-shot::before {
  display: none;
}

.stage-shot img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
  opacity: 0.94;
  filter: saturate(1.02) contrast(1.02);
}

.graph-surface {
  --graph-glow: rgba(244, 189, 55, 0.18);
  --sc-eq-node: var(--accent);
  display: grid;
  grid-template-rows: 25px minmax(0, 1fr) auto;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: rgba(7, 8, 7, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  box-shadow: none;
  cursor: crosshair;
  touch-action: none;
  backdrop-filter: blur(12px);
}

.graph-surface:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.stage-scope {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  width: min(310px, 38%);
  height: 156px;
}

.sc-eq-header {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 8px 0;
}

.sc-eq-title,
.sc-eq-state-pill {
  display: inline-flex;
  min-width: 0;
  min-height: 19px;
  align-items: center;
  padding: 0 8px;
  color: rgba(247, 247, 242, 0.72);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(244, 189, 55, 0.20);
  border-radius: 5px;
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.sc-eq-title {
  flex: 1 1 auto;
  color: var(--ink);
}

.sc-eq-state-pill {
  flex: 0 0 auto;
  color: #15130b;
  background: var(--accent);
  border-color: rgba(255, 230, 159, 0.72);
  cursor: pointer;
}

.sc-eq-state-pill[aria-pressed="false"] {
  color: rgba(247, 247, 242, 0.58);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}

.sc-eq-state-pill:focus-visible {
  outline: 2px solid rgba(247, 247, 242, 0.92);
  outline-offset: 2px;
}

.graph-surface-svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.graph-grid {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.graph-fill {
  fill: rgba(244, 189, 55, 0.13);
}

.graph-shadow {
  fill: none;
  stroke: rgba(244, 189, 55, 0.2);
  stroke-width: 11;
  stroke-linecap: round;
  filter: blur(7px);
  vector-effect: non-scaling-stroke;
}

.graph-curve {
  fill: none;
  stroke: var(--accent-2);
  stroke-width: 2.4;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.sc-eq-zero {
  stroke: rgba(244, 189, 55, 0.28);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.sc-eq-focus {
  fill: rgba(244, 189, 55, 0.12);
}

.sc-eq-node {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 140ms var(--ease-sharp);
}

.sc-eq-node-hit {
  fill: rgba(244, 189, 55, 0.12);
  stroke: rgba(244, 189, 55, 0.26);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.sc-eq-node-dot {
  fill: var(--sc-eq-node);
  stroke: rgba(255, 255, 255, 0.76);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.sc-eq-node-label,
.sc-eq-axis {
  fill: rgba(247, 247, 242, 0.62);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0;
  text-anchor: middle;
}

.sc-eq-node[aria-selected="true"] {
  transform: scale(1.12);
}

.sc-eq-node[aria-selected="true"] .sc-eq-node-hit {
  fill: rgba(244, 189, 55, 0.22);
  stroke: rgba(244, 189, 55, 0.42);
}

.sc-eq-node[aria-selected="true"] .sc-eq-node-label {
  fill: var(--ink);
}

.sc-eq-axis-low {
  text-anchor: start;
}

.sc-eq-axis-high {
  text-anchor: end;
}

.graph-crosshair {
  stroke: rgba(247, 247, 242, 0.22);
  stroke-dasharray: 4 5;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.graph-handle {
  fill: var(--accent);
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.graph-readout {
  display: grid;
  grid-template-columns: 0.58fr 1fr 0.92fr 0.78fr;
  gap: 4px;
  padding: 0 8px 8px;
}

.graph-readout span {
  display: grid;
  min-width: 0;
  gap: 1px;
  padding: 5px 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.graph-readout strong {
  overflow: hidden;
  color: rgba(247, 247, 242, 0.48);
  font-size: 0.58rem;
  font-weight: 950;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.graph-readout b {
  overflow: hidden;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section {
  padding: 76px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink-dark);
  font-size: 2.85rem;
  line-height: 1;
  letter-spacing: 0;
}

.catalog-band {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 58px);
  overflow: hidden;
  color: var(--ink);
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-band.section {
  padding: 0;
}

.catalog-band::after {
  display: none;
}

.catalog-band .site-shell {
  padding: 42px 0 36px;
}

.catalog-band .section-heading h2 {
  color: var(--ink);
  font-size: 4.55rem;
  line-height: 0.92;
}

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

.catalog-card {
  min-width: 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.catalog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 189, 55, 0.24);
  background-color: rgba(255, 255, 255, 0.06);
}

.catalog-card-image {
  display: block;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  box-shadow: none;
  transition: border-color 180ms ease;
}

.catalog-card-image::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.16), transparent 44%);
  opacity: 0;
  transform: translateX(-45%);
  transition: opacity 180ms var(--ease-sharp), transform 420ms var(--ease-out);
  content: "";
}

.catalog-card:hover .catalog-card-image {
  border-color: rgba(255, 255, 255, 0.2);
}

.catalog-card:hover .catalog-card-image::after {
  opacity: 1;
  transform: translateX(45%);
}

.catalog-card-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
  opacity: 0.92;
  filter: saturate(1.08) contrast(1.04);
}

.catalog-card-body {
  padding: 14px 0 2px;
}

.catalog-card-title {
  display: grid;
  gap: 4px;
}

.catalog-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.catalog-card h3 a {
  text-decoration: none;
}

.catalog-card .eyebrow {
  margin: 0;
}

.product-catalog-shell {
  display: grid;
  min-height: calc(100svh - 58px);
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.product-catalog-heading {
  margin: 0;
}

.product-catalog-heading .eyebrow {
  margin-bottom: 10px;
}

.product-catalog-browser {
  display: grid;
  grid-template-columns: minmax(176px, 226px) minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  overflow: visible;
}

.product-catalog-tabs {
  display: grid;
  align-self: start;
  align-content: start;
  gap: 4px;
  padding: 0;
  background: transparent;
  border-top: 1px solid rgba(245, 243, 235, 0.20);
  box-shadow: none;
  backdrop-filter: none;
}

.product-catalog-tab {
  display: grid;
  min-width: 0;
  gap: 4px;
  min-height: 42px;
  padding: 10px 0;
  color: rgba(245, 243, 235, 0.58);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245, 243, 235, 0.12);
  border-radius: 0;
  text-align: left;
  cursor: pointer;
}

.product-catalog-tab .eyebrow {
  margin: 0;
}

.product-catalog-tab strong {
  overflow: hidden;
  color: rgba(245, 243, 235, 0.78);
  font-size: 0.93rem;
  font-weight: 720;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-catalog-tab span:last-child {
  color: rgba(247, 247, 242, 0.58);
  font-size: 0.78rem;
  font-weight: 790;
  line-height: 1.24;
}

.product-catalog-tab[aria-selected="true"] {
  color: var(--ink);
  background: transparent;
  border-color: rgba(231, 184, 61, 0.58);
  box-shadow: none;
}

.product-catalog-tab[aria-selected="true"] strong {
  color: var(--ink);
}

.product-catalog-panels {
  min-width: 0;
}

.product-catalog-panel {
  display: grid;
  gap: 12px;
  animation: stage-in 220ms ease-out;
}

.product-catalog-panel[hidden] {
  display: none;
}

.catalog-interface-map {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: visible;
  background: transparent;
}

.catalog-interface-map::after {
  display: none;
}

.catalog-shot-link {
  display: block;
  position: relative;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.catalog-shot-open {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 8;
  display: block;
  width: 38px;
  height: 38px;
  color: inherit;
  text-decoration: none;
}

.catalog-shot-open::before,
.catalog-shot-open::after {
  position: absolute;
  content: "";
}

.catalog-shot-open::before {
  inset: 0;
  width: 36px;
  height: 36px;
  background: rgba(7, 8, 7, 0.72);
  border: 1px solid rgba(245, 243, 235, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  transition: transform 160ms var(--ease-sharp), border-color 160ms var(--ease-sharp), background-color 160ms var(--ease-sharp);
}

.catalog-shot-open::after {
  right: 14px;
  top: 13px;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 160ms var(--ease-sharp);
}

.catalog-shot-open:hover::before,
.catalog-shot-open:focus-visible::before {
  background: rgba(244, 189, 55, 0.12);
  border-color: rgba(244, 189, 55, 0.36);
  transform: translateY(-1px);
}

.catalog-shot-open:hover::after,
.catalog-shot-open:focus-visible::after {
  transform: translate(2px, 0) rotate(45deg);
}

.catalog-shot-open:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.catalog-interface-map img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center top;
  opacity: 0.94;
  filter: saturate(1.02) contrast(1.02);
}

.catalog-scope {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  width: min(290px, 42%);
  height: 152px;
}

.product-catalog-details {
  display: flex;
  position: relative;
  z-index: 7;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 0;
  background: transparent;
}

.product-catalog-actions {
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: 8px;
  padding: 4px;
}

.learn-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 58px);
  overflow: hidden;
  color: var(--ink);
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.learn-hero::after {
  display: none;
}

.learn-shell {
  display: grid;
  min-height: calc(100svh - 58px);
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  padding: 42px 0;
}

.learn-copy h1 {
  margin: 0;
  max-width: 780px;
  font-size: 4.55rem;
  line-height: 0.92;
  letter-spacing: 0;
}

.learn-grid {
  display: grid;
  gap: 10px;
}

.learn-grid-three {
  grid-template-columns: 1fr;
}

.learn-card {
  display: grid;
  min-height: 152px;
  align-content: end;
  gap: 8px;
  padding: 18px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.learn-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 189, 55, 0.24);
  background-color: rgba(255, 255, 255, 0.07);
}

.learn-card strong {
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
}

.learn-card span:last-child {
  max-width: 32ch;
  color: rgba(247, 247, 242, 0.68);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.28;
}

.learn-actions {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.learn-hub {
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr);
  width: 100%;
  overflow: hidden;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  box-shadow: none;
}

.learn-product-tabs {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.learn-product-tab {
  min-height: 56px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 12px;
  color: rgba(247, 247, 242, 0.62);
  text-align: left;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  cursor: pointer;
}

.learn-product-tab .eyebrow {
  margin: 0;
  color: rgba(244, 189, 55, 0.78);
  font-size: 0.62rem;
}

.learn-product-tab strong {
  color: rgba(247, 247, 242, 0.84);
  font-size: 0.95rem;
  line-height: 1;
}

.learn-product-tab[aria-selected="true"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.105);
  border-color: rgba(244, 189, 55, 0.42);
  box-shadow: inset 3px 0 0 var(--accent);
}

.learn-product-panel {
  display: grid;
}

.learn-product-panel[hidden] {
  display: none;
}

.learn-interface {
  position: relative;
  min-height: min(52svh, 500px);
  margin: 0;
  overflow: hidden;
  background: #050607;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.learn-interface::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 16%, rgba(244, 189, 55, 0.16), transparent 30%),
    linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.68));
  content: "";
}

.learn-interface img {
  width: 100%;
  height: 100%;
  min-height: min(52svh, 500px);
  object-fit: cover;
  object-position: center top;
  opacity: 0.82;
  filter: saturate(1.08) contrast(1.04);
}

.learn-scope {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  width: min(42%, 300px);
  height: 146px;
}

.learn-product-reference {
  display: grid;
  gap: 10px;
  padding: 10px;
}

.learn-route-grid,
.learn-reference-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.learn-route-card {
  display: grid;
  gap: 6px;
  min-height: 82px;
  align-content: end;
  padding: 12px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
}

.learn-route-card .eyebrow {
  margin: 0;
}

.learn-route-card strong {
  font-size: 1.25rem;
  line-height: 1;
}

.learn-route-card span:last-child {
  color: rgba(247, 247, 242, 0.62);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.25;
}

.manual-shell {
  display: grid;
  min-height: calc(100svh - 58px);
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  padding: 28px 0 72px;
}

.manual-lede {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(247, 247, 242, 0.68);
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.35;
}

.manual-browser {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  overflow: visible;
  color: #171714;
  background: #fffefa;
  border: 1px solid rgba(10, 10, 8, 0.18);
  border-radius: 0;
  box-shadow: none;
}

.manual-toolbar {
  padding: 14px 28px 10px;
  background: #fffefa;
  border-bottom: 1px solid rgba(10, 10, 8, 0.12);
}

.manual-search {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 36px;
  overflow: hidden;
  background: #fffefa;
  border: 1px solid rgba(10, 10, 8, 0.16);
  border-radius: 0;
}

.manual-search-mark {
  display: grid;
  height: 100%;
  place-items: center;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 950;
}

.manual-search input {
  -webkit-appearance: none;
  appearance: none;
  min-width: 0;
  height: 100%;
  color: #171714;
  background: transparent;
  border: 0;
  outline: 0;
  font-weight: 850;
}

.manual-search input::-webkit-search-cancel-button,
.manual-search input::-webkit-search-decoration {
  display: none;
}

.manual-search input::placeholder {
  color: rgba(23, 23, 20, 0.44);
}

.manual-search output {
  padding: 0 12px;
  color: rgba(23, 23, 20, 0.5);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.manual-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 28px 12px;
  background: #fffefa;
  border-bottom: 1px solid rgba(10, 10, 8, 0.12);
}

.manual-tab {
  display: grid;
  min-width: 0;
  gap: 0;
  min-height: 36px;
  align-content: center;
  padding: 0 16px;
  color: rgba(23, 23, 20, 0.56);
  background: #fffefa;
  border: 1px solid rgba(10, 10, 8, 0.13);
  border-right: 0;
  border-radius: 0;
  text-align: left;
  cursor: pointer;
}

.manual-tab:first-child {
  border-radius: 0;
}

.manual-tab:last-child {
  border-right: 1px solid rgba(10, 10, 8, 0.13);
  border-radius: 0;
}

.manual-tab .eyebrow {
  margin: 0;
}

.manual-tab strong {
  overflow: hidden;
  color: rgba(23, 23, 20, 0.78);
  font-size: 0.9rem;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.manual-tab span:last-child {
  overflow: hidden;
  color: rgba(23, 23, 20, 0.54);
  font-size: 0.72rem;
  font-weight: 950;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.manual-tab[aria-selected="true"] {
  color: #171714;
  background: #f3f1e9;
  border-color: rgba(10, 10, 8, 0.22);
  box-shadow: inset 0 -2px 0 #171714;
}

.manual-panels {
  min-width: 0;
}

.manual-panel {
  display: grid;
}

.manual-panel[hidden] {
  display: none;
}

.manual-document-header {
  display: grid;
  gap: 9px;
  padding: 34px 56px 22px;
  background: #fffefa;
  border-bottom: 1px solid rgba(10, 10, 8, 0.12);
}

.manual-document-class,
.manual-document-source {
  margin: 0;
  color: rgba(23, 23, 20, 0.58);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.42;
}

.manual-document-header h2 {
  margin: 0;
  color: #10100e;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: 0;
}

.manual-document-header > p:not(.manual-document-class):not(.manual-document-source) {
  max-width: 62ch;
  margin: 0;
  color: rgba(23, 23, 20, 0.82);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.56;
}

.manual-document-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 12px 0 0;
  border-top: 1px solid rgba(10, 10, 8, 0.16);
  border-left: 1px solid rgba(10, 10, 8, 0.16);
}

.manual-document-meta div {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: transparent;
  border-right: 1px solid rgba(10, 10, 8, 0.16);
  border-bottom: 1px solid rgba(10, 10, 8, 0.16);
}

.manual-document-meta dt {
  color: rgba(23, 23, 20, 0.5);
  font-size: 0.66rem;
  font-weight: 950;
  text-transform: uppercase;
}

.manual-document-meta dd {
  margin: 0;
  color: rgba(23, 23, 20, 0.86);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.28;
}

.manual-document-toc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
  padding: 0 56px;
  background: #fffefa;
  border-bottom: 1px solid rgba(10, 10, 8, 0.12);
}

.manual-document-toc a {
  display: grid;
  gap: 4px;
  min-height: 74px;
  align-content: center;
  padding: 10px 12px;
  color: rgba(23, 23, 20, 0.72);
  border-right: 1px solid rgba(10, 10, 8, 0.1);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 760;
  line-height: 1.15;
}

.manual-document-toc a:first-child {
  border-left: 1px solid rgba(10, 10, 8, 0.1);
}

.manual-document-toc a span {
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.manual-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: 0 56px 64px;
  background: #fffefa;
}

.manual-disclosure {
  min-width: 0;
  scroll-margin-top: 92px;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(10, 10, 8, 0.14);
  border-radius: 0;
}

.manual-chapter-heading {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 38px 0 14px;
}

.manual-chapter-heading span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.manual-chapter-heading h2 {
  margin: 0;
  color: #10100e;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 760;
  line-height: 1.05;
}

.manual-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  max-width: 980px;
  padding: 0 0 34px 70px;
}

.manual-prose {
  display: grid;
  gap: 10px;
  align-content: start;
}

.manual-prose p {
  margin: 0;
  max-width: 74ch;
  color: rgba(23, 23, 20, 0.84);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.01rem;
  font-weight: 400;
  line-height: 1.68;
}

.manual-signal-path {
  margin: 0;
  max-width: 74ch;
  padding: 10px 0;
  color: rgba(23, 23, 20, 0.82);
  border-top: 1px solid rgba(10, 10, 8, 0.12);
  border-bottom: 1px solid rgba(10, 10, 8, 0.12);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.88rem;
  line-height: 1.48;
}

.manual-signal-path strong {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.manual-drawing {
  margin: 0 0 24px 70px;
  padding: 16px;
  background: #f2efe7;
  border: 1px solid rgba(10, 10, 8, 0.14);
  border-radius: 3px;
}

.manual-drawing figcaption {
  margin: 0 0 12px;
  color: rgba(23, 23, 20, 0.56);
  font-size: 0.72rem;
  font-weight: 920;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.manual-flow-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.manual-flow-node-wrap {
  display: contents;
}

.manual-flow-node {
  display: grid;
  min-height: 62px;
  min-width: 96px;
  place-items: center;
  padding: 10px;
  color: #171714;
  background: #fffdfa;
  border: 1px solid rgba(10, 10, 8, 0.18);
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.manual-flow-arrow {
  align-self: center;
  width: 30px;
  height: 1px;
  background: rgba(10, 10, 8, 0.34);
}

.manual-flow-arrow::after {
  display: block;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 auto;
  border-top: 1px solid rgba(10, 10, 8, 0.42);
  border-right: 1px solid rgba(10, 10, 8, 0.42);
  transform: rotate(45deg);
  content: "";
}

.manual-graph-drawing svg {
  display: block;
  width: 100%;
  height: auto;
  background:
    linear-gradient(rgba(10, 10, 8, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 8, 0.055) 1px, transparent 1px),
    #fffdfa;
  background-size: 40px 40px, 40px 40px, auto;
  border: 1px solid rgba(10, 10, 8, 0.1);
}

.manual-axis,
.manual-crossover {
  stroke: rgba(10, 10, 8, 0.5);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.manual-crossover {
  stroke-dasharray: 7 6;
}

.manual-axis-label,
.manual-drawing-label {
  fill: rgba(23, 23, 20, 0.62);
  font-size: 14px;
  font-weight: 800;
}

.manual-band-fill {
  fill: rgba(244, 189, 55, 0.14);
  stroke: rgba(244, 189, 55, 0.62);
  stroke-width: 1.5;
}

.manual-curve {
  fill: none;
  stroke: #171714;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.manual-threshold,
.manual-range {
  stroke: #c79320;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.manual-detector {
  fill: none;
  stroke: rgba(23, 23, 20, 0.48);
  stroke-width: 2;
  stroke-dasharray: 8 6;
  vector-effect: non-scaling-stroke;
}

.manual-node {
  fill: #f4bd37;
  stroke: #171714;
  stroke-width: 2;
}

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

.manual-transfer-grid div {
  display: grid;
  gap: 6px;
  min-height: 116px;
  align-content: center;
  padding: 14px;
  background: #fffdfa;
  border: 1px solid rgba(10, 10, 8, 0.14);
  border-radius: 3px;
}

.manual-transfer-grid span {
  color: rgba(23, 23, 20, 0.52);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.manual-transfer-grid strong {
  color: #171714;
  font-size: 0.94rem;
  line-height: 1.24;
}

.manual-product-guide {
  display: grid;
  gap: 18px;
  max-width: 980px;
  padding: 0 0 44px 70px;
}

.manual-product-card-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border-top: 1px solid rgba(10, 10, 8, 0.16);
}

.manual-product-card {
  display: grid;
  gap: 12px;
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(10, 10, 8, 0.16);
  border-radius: 0;
}

.manual-product-card h3 {
  margin: 0;
  color: #10100e;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 760;
  line-height: 1.08;
}

.manual-product-card p {
  margin: 0;
  color: rgba(23, 23, 20, 0.82);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.58;
}

.manual-product-entry-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(10, 10, 8, 0.1);
}

.manual-product-entry-list div {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(10, 10, 8, 0.1);
}

.manual-product-entry-list dt {
  color: rgba(23, 23, 20, 0.55);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.manual-product-entry-list dd {
  margin: 0;
  color: rgba(23, 23, 20, 0.84);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.58;
}

.manual-product-presets strong {
  color: #171714;
  font-weight: 900;
}

.manual-control-list,
.manual-spec-list {
  display: grid;
  gap: 0;
  margin: 0;
  max-width: 74ch;
  border-top: 1px solid rgba(10, 10, 8, 0.14);
}

.manual-control,
.manual-spec {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(10, 10, 8, 0.14);
}

.manual-control dt,
.manual-spec dt {
  color: rgba(23, 23, 20, 0.52);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.manual-control dd,
.manual-spec dd {
  margin: 0;
  color: rgba(23, 23, 20, 0.82);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.58;
}

.manual-note-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 0 0 22px;
  list-style: decimal;
  max-width: 74ch;
}

.manual-note-list li {
  padding: 0;
  color: rgba(23, 23, 20, 0.82);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.58;
}

.manual-stack .product-workflow-list {
  display: grid;
  gap: 8px;
  max-width: 74ch;
  margin: 0;
  padding: 0 0 0 22px;
  list-style: decimal;
}

.manual-stack .product-workflow-list li {
  display: list-item;
  padding: 0;
  color: rgba(23, 23, 20, 0.84);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.6;
}

.manual-stack .product-workflow-list span {
  display: none;
}

.manual-stack .product-workflow-list strong {
  font: inherit;
}

.tutorials-shell {
  display: grid;
  min-height: calc(100svh - 58px);
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  padding: 34px 0;
}

.tutorial-lab {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  width: 100%;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(245, 243, 235, 0.10);
  border-radius: 6px;
  box-shadow: none;
}

.tutorial-tabs {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.025);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.tutorial-tab {
  display: grid;
  gap: 0;
  min-height: 48px;
  align-content: center;
  min-width: 0;
  padding: 12px;
  color: rgba(245, 243, 235, 0.58);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  text-align: left;
  cursor: pointer;
}

.tutorial-tab .eyebrow {
  margin: 0;
}

.tutorial-tab strong {
  color: rgba(245, 243, 235, 0.82);
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.08;
}

.tutorial-tab span:last-child {
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tutorial-tab[aria-selected="true"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 2px 0 0 var(--accent);
}

.tutorial-panels {
  min-width: 0;
}

.tutorial-panel {
  display: grid;
  gap: 0;
  animation: stage-in 220ms ease-out;
}

.tutorial-panel[hidden] {
  display: none;
}

.tutorial-visual {
  position: relative;
  min-height: min(50svh, 470px);
  overflow: hidden;
  margin: 0;
  background: #030404;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tutorial-visual::after {
  display: none;
}

.tutorial-visual img {
  width: 100%;
  height: 100%;
  min-height: min(50svh, 470px);
  object-fit: cover;
  object-position: center top;
  opacity: 0.94;
  filter: saturate(1.02) contrast(1.02);
}

.tutorial-marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #14120b;
  background: var(--accent);
  border: 1px solid rgba(244, 189, 55, 0.76);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(231, 184, 61, 0.08);
  transform: translate(-50%, -50%);
  transition: left 180ms var(--ease-out), top 180ms var(--ease-out);
}

.tutorial-marker span {
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 950;
}

.tutorial-copy-panel {
  display: grid;
  padding: 12px;
}

.tutorial-copy-panel h2 {
  margin: 0;
  max-width: 680px;
  font-size: 2.2rem;
  line-height: 0.98;
}

.tutorial-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tutorial-step {
  min-width: 0;
}

.tutorial-step-button {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  min-height: 42px;
  place-items: center;
  padding: 0;
  color: inherit;
  background: rgba(5, 6, 7, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  text-align: center;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.tutorial-step-button:hover {
  transform: translateY(-1px);
  border-color: rgba(244, 189, 55, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.tutorial-step-button[aria-pressed="true"] {
  border-color: rgba(244, 189, 55, 0.42);
  background: rgba(244, 189, 55, 0.1);
  box-shadow: 0 0 0 5px rgba(244, 189, 55, 0.08);
}

.tutorial-step-button > .step-index {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 950;
}

.tutorial-step-hint {
  width: min(540px, 100%);
  margin: 10px auto 0;
  padding: 10px 12px;
  color: rgba(245, 243, 235, 0.68);
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 520;
  line-height: 1.3;
  text-align: center;
}

.tutorial-step-hint[hidden] {
  display: none;
}

.preset-page {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 58px);
  overflow: hidden;
  color: var(--ink);
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.preset-page::after {
  display: none;
}

.preset-shell {
  display: grid;
  min-height: calc(100svh - 58px);
  align-items: center;
  padding: 34px 0;
}

.preset-viewer {
  display: grid;
  gap: 10px;
}

.preset-viewer-stage,
.preset-parameter-panel {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  box-shadow: none;
}

.preset-viewer-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(320px, 0.64fr);
}

.preset-stage-shot {
  position: relative;
  min-height: min(54svh, 520px);
  margin: 0;
  overflow: hidden;
  background: #030404;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.preset-stage-shot::after {
  display: none;
}

.preset-stage-shot img,
.preset-stage-neutral,
.preset-beefet-editor {
  width: 100%;
  height: auto;
  min-height: min(54svh, 520px);
  --preset-beecomps-accent: 255, 191, 71;
  --preset-beefet-threshold-y: 274px;
  --preset-beefet-makeup-y: 274px;
  display: grid;
  position: relative;
  grid-template-rows: auto auto;
  color: rgba(247, 247, 242, 0.9);
  background:
    radial-gradient(circle at 76% 18%, rgba(var(--preset-beecomps-accent), 0.10), transparent 24%),
    linear-gradient(180deg, rgba(14, 17, 21, 0.98), rgba(7, 9, 11, 0.98));
}

.preset-stage-shot img {
  object-fit: cover;
  object-position: center top;
  opacity: 0.94;
  filter: saturate(1.02) contrast(1.02);
}

.preset-beefet-editor[hidden] {
  display: none;
}

.preset-beefet-graph-shell {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 10%, rgba(var(--preset-beecomps-accent), 0.06), transparent 22%),
    radial-gradient(circle at 50% 36%, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.20) 72%),
    linear-gradient(90deg, rgba(52, 102, 114, 0.10), rgba(16, 20, 24, 0.0) 50%, rgba(122, 90, 34, 0.085)),
    linear-gradient(180deg, rgb(18, 23, 29), rgb(11, 15, 20) 42%, rgb(4, 6, 9));
  border-bottom: 1px solid rgba(var(--preset-beecomps-accent), 0.24);
}

.preset-beefet-axis,
.preset-beefet-graph-svg {
  position: absolute;
}

.preset-beefet-axis {
  inset: 0 auto 0 6px;
  z-index: 2;
  width: 56px;
  pointer-events: none;
}

.preset-beefet-axis span {
  position: absolute;
  top: var(--preset-axis-y);
  left: 0;
  width: 56px;
  transform: translateY(-50%);
  color: rgba(219, 228, 240, 0.42);
  font-size: 0.72rem;
  font-weight: 720;
  line-height: 1;
  text-align: left;
}

.preset-beefet-graph-svg {
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.preset-beefet-curve-fill {
  display: none;
}

.preset-beefet-curve-shadow {
  display: none;
}

.preset-beefet-curve {
  display: none;
}

.preset-beefet-grid-line {
  fill: none;
  stroke: rgba(232, 237, 243, 0.08);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.preset-beefet-grid-line-zero {
  stroke: rgba(232, 237, 243, 0.16);
}

.preset-beefet-grid-line-edge {
  stroke: rgba(232, 237, 243, 0.10);
}

.preset-multiband-band {
  fill: rgba(var(--preset-band-accent, var(--preset-beecomps-accent)), 0.075);
  stroke: rgba(var(--preset-band-accent, var(--preset-beecomps-accent)), 0.18);
  stroke-width: 1;
  cursor: pointer;
  vector-effect: non-scaling-stroke;
}

.preset-multiband-band.is-focused {
  fill: rgba(var(--preset-band-accent, var(--preset-beecomps-accent)), 0.16);
  stroke: rgba(var(--preset-band-accent, var(--preset-beecomps-accent)), 0.46);
}

.preset-multiband-band:focus-visible,
.preset-dynamic-eq-node:focus-visible {
  outline: none;
  stroke: rgba(247, 247, 242, 0.92);
  stroke-width: 2;
}

.preset-multiband-crossover {
  stroke: rgba(232, 237, 243, 0.18);
  stroke-width: 1;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.preset-multiband-band-label {
  fill: rgba(232, 237, 243, 0.55);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0;
  pointer-events: none;
}

.preset-multiband-transfer {
  fill: none;
  stroke: rgba(var(--preset-band-accent, var(--preset-beecomps-accent)), 0.44);
  stroke-width: 1.05;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.preset-multiband-transfer.is-focused {
  stroke: rgba(var(--preset-band-accent, var(--preset-beecomps-accent)), 0.88);
  stroke-width: 1.45;
}

.preset-dynamic-eq-aggregate {
  fill: none;
  stroke: rgba(232, 237, 243, 0.28);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.preset-dynamic-eq-fill {
  fill: rgba(var(--preset-band-accent, var(--preset-beecomps-accent)), 0.12);
}

.preset-dynamic-eq-curve {
  fill: none;
  stroke: rgba(var(--preset-band-accent, var(--preset-beecomps-accent)), 0.88);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.preset-dynamic-eq-node {
  fill: rgba(18, 23, 29, 0.98);
  stroke: rgba(var(--preset-band-accent, var(--preset-beecomps-accent)), 0.92);
  stroke-width: 1.5;
  cursor: pointer;
  opacity: 0.82;
  vector-effect: non-scaling-stroke;
}

.preset-dynamic-eq-node.is-focused {
  fill: rgba(var(--preset-band-accent, var(--preset-beecomps-accent)), 0.95);
  stroke: rgba(247, 247, 242, 0.96);
  opacity: 1;
}

.preset-beefet-range-fill {
  fill: rgba(var(--preset-beecomps-accent), 0.14);
}

.preset-beefet-range-line {
  stroke: rgba(var(--preset-beecomps-accent), 0.74);
  stroke-width: 1.15;
  stroke-linecap: round;
}

.preset-beefet-close-threshold-line {
  stroke: rgba(var(--preset-beecomps-accent), 0.68);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-dasharray: 7 5;
}

.preset-beefet-gain-line {
  fill: none;
  stroke: rgba(var(--preset-beecomps-accent), 0.80);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 8 4;
}

.preset-beefet-gain-dash-line {
  fill: none;
  stroke: rgba(var(--preset-beecomps-accent), 0.80);
  display: none;
}

.preset-beefet-gain-connector {
  fill: none;
  stroke: rgba(var(--preset-beecomps-accent), 0.80);
  stroke-width: 1.1;
  stroke-linecap: round;
}

.preset-beefet-threshold-line {
  stroke: rgba(var(--preset-beecomps-accent), 0.68);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: none;
}

.preset-beefet-threshold-bubble {
  fill: url(#preset-beefet-threshold-bubble-gradient);
  stroke: rgba(var(--preset-beecomps-accent), 0.72);
  stroke-width: 1;
  opacity: 0.94;
}

.preset-beefet-threshold-chip,
.preset-beefet-ratio-chip,
.preset-beefet-gain-chip {
  fill: url(#preset-beefet-threshold-chip-gradient);
  stroke: rgba(var(--preset-beecomps-accent), 0.64);
  stroke-width: 1.05;
}

.preset-beefet-gain-chip-shell {
  fill: url(#preset-beefet-gain-chip-gradient);
  stroke: rgba(var(--preset-beecomps-accent), 0.58);
  stroke-width: 1;
}

.preset-beefet-gain-chip {
  fill: url(#preset-beefet-gain-chip-gradient);
}

.preset-beefet-threshold-chip-text,
.preset-beefet-ratio-chip-text,
.preset-beefet-gain-chip-text {
  fill: rgba(247, 247, 242, 1);
  font-size: 8.4px;
  font-weight: 680;
  text-shadow: none;
  letter-spacing: 0;
}

.preset-beefet-gain-chip-label {
  fill: rgba(247, 247, 242, 0.88);
  font-size: 6.4px;
  font-weight: 680;
  text-shadow: none;
  letter-spacing: 0;
}

.preset-beefet-threshold-chip-text,
.preset-beefet-ratio-chip-text,
.preset-beefet-gain-chip-text {
  dominant-baseline: middle;
}

.preset-beefet-bottom {
  display: grid;
  gap: 12px;
  padding: 12px 14px 14px;
  background: linear-gradient(180deg, rgba(9, 11, 14, 0.98), rgba(7, 8, 11, 0.98));
}

.preset-beefet-path-strip,
.preset-beefet-envelope-panel {
  min-width: 0;
  min-height: 0;
}

.preset-beefet-path-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 10px;
}

.preset-beefet-strip-item {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.preset-beefet-strip-label {
  color: rgba(247, 247, 242, 0.46);
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.preset-beefet-strip-value,
.preset-beefet-value-button {
  color: rgba(247, 247, 242, 0.92);
  font-size: 0.92rem;
  font-weight: 820;
  line-height: 1.2;
}

.preset-beefet-value-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  background: rgba(var(--preset-beecomps-accent), 0.08);
  border: 1px solid rgba(var(--preset-beecomps-accent), 0.18);
  border-radius: 999px;
}

.preset-beefet-envelope-panel {
  min-height: 182px;
  height: 182px;
  padding: 10px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(var(--preset-beecomps-accent), 0.08), transparent 26%),
    linear-gradient(180deg, rgba(4, 7, 10, 0.96), rgba(2, 4, 6, 0.98));
  background-size: 100% 40px, 48px 100%, auto, auto;
  border: 1px solid rgba(var(--preset-beecomps-accent), 0.22);
  border-radius: 14px;
  overflow: hidden;
}

.preset-beefet-envelope-panel[hidden] {
  display: none;
}

.preset-beefet-envelope-panel svg {
  width: 100%;
  height: 100%;
}

.preset-beefet-envelope-fill {
  fill: rgba(var(--preset-beecomps-accent), 0.12);
}

.preset-beefet-envelope-curve {
  fill: none;
  stroke: rgba(var(--preset-beecomps-accent), 0.92);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.preset-beefet-envelope-marker {
  stroke: rgba(var(--preset-beecomps-accent), 0.38);
  stroke-width: 2;
}

.preset-stage-neutral {
  display: grid;
  position: relative;
  place-items: center;
  padding: 24px;
  background: rgba(7, 8, 7, 0.88);
}

.preset-stage-neutral[hidden] {
  display: none;
}

.preset-stage-neutral-grid {
  position: absolute;
  inset: 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.preset-stage-neutral-grid span {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: transparent;
}

.preset-stage-neutral p {
  position: relative;
  z-index: 1;
  width: min(280px, 100%);
  margin: 0;
  padding: 14px 16px;
  color: rgba(245, 243, 235, 0.76);
  text-align: center;
  background: rgba(7, 8, 7, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 560;
  line-height: 1.3;
  backdrop-filter: blur(18px) saturate(160%);
}

.preset-viewer-summary {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  background: rgba(7, 8, 7, 0.72);
}

.preset-viewer-summary h1 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1;
}

.preset-viewer-lede {
  max-width: 34ch;
  margin: 0;
  color: rgba(245, 243, 235, 0.66);
  font-size: 0.98rem;
  font-weight: 520;
  line-height: 1.4;
}

.preset-input-panel {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.preset-input {
  width: 100%;
  min-height: 94px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  outline: 0;
  resize: vertical;
  font-family: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-size: 0.84rem;
  line-height: 1.4;
}

.preset-input::placeholder {
  color: rgba(247, 247, 242, 0.42);
}

.preset-viewer-error {
  margin: 0;
  padding: 10px 12px;
  color: rgba(255, 228, 188, 0.94);
  background: rgba(124, 33, 14, 0.4);
  border: 1px solid rgba(255, 153, 112, 0.26);
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.32;
}

.preset-viewer-error[hidden] {
  display: none;
}

.preset-viewer-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.preset-viewer-meta[hidden] {
  display: none;
}

.preset-viewer-meta div {
  min-width: 0;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.preset-viewer-meta dt {
  color: rgba(247, 247, 242, 0.48);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.preset-viewer-meta dd {
  overflow: hidden;
  margin: 5px 0 0;
  color: rgba(247, 247, 242, 0.86);
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.28;
  text-overflow: ellipsis;
}

.preset-viewer-canonical,
.preset-viewer-product {
  display: grid;
  gap: 8px;
}

.preset-viewer-canonical[hidden],
.preset-viewer-product[hidden] {
  display: none;
}

.preset-viewer-canonical label {
  color: rgba(247, 247, 242, 0.48);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.preset-viewer-canonical-row {
  display: flex;
  gap: 8px;
}

.preset-viewer-canonical-row input {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  color: rgba(247, 247, 242, 0.84);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-family: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-size: 0.8rem;
}

.preset-viewer-product .button {
  width: fit-content;
}

.preset-parameter-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.preset-parameter-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.preset-parameter-scope,
.preset-parameter-note {
  margin: 0;
}

.preset-parameter-scope {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
}

.preset-parameter-note {
  color: rgba(247, 247, 242, 0.56);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preset-parameter-table-wrap {
  overflow-x: auto;
}

.preset-parameter-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.preset-parameter-table th,
.preset-parameter-table td {
  padding: 11px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.preset-parameter-table th {
  color: rgba(247, 247, 242, 0.48);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.preset-parameter-table td {
  color: rgba(247, 247, 242, 0.84);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.32;
}

.preset-parameter-table td:first-child {
  font-family: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-size: 0.82rem;
}

.preset-parameter-table tbody tr:last-child td {
  border-bottom: 0;
}

.preset-parameter-table td[colspan] {
  color: rgba(247, 247, 242, 0.62);
}

.page-hero-copy {
  padding: 80px 0 68px;
}

.page-hero h1 {
  font-size: 4.55rem;
}

.product-detail-hero {
  overflow: hidden;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.32fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 38px 0 44px;
}

.product-detail-copy {
  position: relative;
  z-index: 3;
}

.product-detail-hero h1 {
  font-size: clamp(3rem, 5vw, 4.2rem);
}

.product-switcher {
  position: relative;
  z-index: 8;
  display: grid;
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  background: transparent;
  border-top: 1px solid rgba(245, 243, 235, 0.16);
  border-bottom: 1px solid rgba(245, 243, 235, 0.10);
  border-radius: 0;
  backdrop-filter: none;
}

.product-switcher-link,
.product-more-menu summary {
  min-height: 36px;
  padding: 0 8px;
  font-size: 0.72rem;
  font-weight: 740;
}

.product-switcher-link.is-active {
  color: var(--ink);
  background: transparent;
  border-color: transparent;
  box-shadow: inset 0 -1px 0 var(--accent);
}

.product-more-menu summary {
  color: var(--accent);
}

.product-more-menu .model-menu-panel {
  top: 0;
  right: auto;
  left: calc(100% + 8px);
  grid-template-columns: repeat(2, minmax(96px, 1fr));
  min-width: 230px;
}

.product-hero-actions {
  position: relative;
  z-index: 4;
  align-items: center;
  margin-top: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  width: fit-content;
  backdrop-filter: none;
}

.product-hero-shot {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-hero-shot img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  opacity: 0.94;
  filter: saturate(1.02) contrast(1.02);
}

.product-hero-shot .product-callout-list {
  z-index: 4;
}

.product-hero-shot .product-callout button {
  width: 30px;
  height: 30px;
  padding: 0;
  font-size: 0.62rem;
  box-shadow: 0 12px 28px rgba(244, 189, 55, 0.16), 0 0 0 6px rgba(244, 189, 55, 0.08);
}

.product-hero-shot .product-callout button[aria-pressed="true"] {
  box-shadow: 0 16px 36px rgba(244, 189, 55, 0.28), 0 0 0 9px rgba(244, 189, 55, 0.16);
  transform: scale(1.08);
}

.product-hero-shot .product-callout p {
  display: none;
}

.product-proof-panel {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 7px;
  grid-column: 2;
  width: min(520px, 100%);
  margin-top: -64px;
  margin-left: auto;
  padding: 10px 12px;
  color: rgba(245, 243, 235, 0.72);
  background: rgba(7, 8, 7, 0.80);
  border: 1px solid rgba(245, 243, 235, 0.12);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  animation: stage-in 180ms var(--ease-sharp);
}

.product-proof-panel[hidden] {
  display: none;
}

.product-proof-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(245, 243, 235, 0.46);
  font-size: 0.64rem;
  font-weight: 740;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-proof-category {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  color: rgba(242, 205, 107, 0.92);
  background: transparent;
  border: 1px solid rgba(242, 205, 107, 0.22);
  border-radius: 4px;
  font-size: 0.66rem;
  font-weight: 740;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-proof-title {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 780;
  line-height: 1.12;
}

.product-proof-panel > [data-product-proof-body] {
  font-size: 0.84rem;
  font-weight: 560;
  line-height: 1.35;
}

.product-proof-detail,
.product-proof-overlap {
  margin: 0;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.product-proof-detail {
  display: grid;
  gap: 3px;
  color: rgba(245, 243, 235, 0.62);
  font-size: 0.76rem;
  font-weight: 520;
  line-height: 1.34;
}

.product-proof-detail > span:first-child,
.product-proof-overlap-label {
  color: rgba(245, 243, 235, 0.42);
  font-size: 0.64rem;
  font-weight: 740;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-proof-overlap {
  display: grid;
  gap: 5px;
}

.product-proof-overlap[hidden] {
  display: none;
}

.product-proof-overlap-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-proof-overlap-chip {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 0 8px;
  color: rgba(245, 243, 235, 0.74);
  background: transparent;
  border: 1px solid rgba(245, 243, 235, 0.12);
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 620;
  line-height: 1;
}

.product-proof-controls {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}

.product-proof-nav {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: rgba(245, 243, 235, 0.78);
  background: transparent;
  border: 1px solid rgba(245, 243, 235, 0.12);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 680;
  cursor: pointer;
}

.product-proof-nav:hover,
.product-proof-nav:focus-visible {
  color: var(--ink);
  border-color: rgba(244, 189, 55, 0.42);
}

.product-catalog-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  position: relative;
  min-width: 0;
}

.product-catalog-feature-grid .catalog-interface-map {
  min-height: 560px;
  border-bottom: 0;
}

.product-catalog-feature-grid .catalog-interface-map img {
  display: block;
  min-height: 560px;
  border-radius: 8px;
  box-shadow: none;
}

.catalog-interface-map .product-callout-list {
  z-index: 6;
}

.catalog-interface-map .product-callout button {
  width: 28px;
  height: 28px;
  padding: 0;
  font-size: 0.62rem;
  box-shadow: 0 0 0 5px rgba(231, 184, 61, 0.08);
}

.catalog-interface-map .product-callout button[aria-pressed="true"] {
  box-shadow: 0 0 0 8px rgba(231, 184, 61, 0.14);
  transform: scale(1.04);
}

.catalog-interface-map .product-callout p {
  display: none;
}

.product-catalog-feature-grid .product-proof-panel {
  position: relative;
  z-index: 9;
  grid-column: 1;
  justify-self: end;
  right: auto;
  bottom: auto;
  width: min(520px, 100%);
  align-content: start;
  margin: 10px 0 0 auto;
  border-width: 1px;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.product-deep {
  position: relative;
  isolation: isolate;
  color: var(--ink);
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-deep::after {
  display: none;
}

.product-deep-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  padding: 68px 0 78px;
}

.product-deep-heading h2 {
  margin: 0;
  font-size: 3.3rem;
  line-height: 0.95;
}

.product-deep-heading p:last-child {
  max-width: 430px;
  margin: 16px 0 0;
  color: rgba(247, 247, 242, 0.68);
  font-weight: 760;
  line-height: 1.34;
}

.product-deep-lab {
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  box-shadow: none;
}

.product-deep-lab > .product-flow-lab {
  padding: 12px;
}

.product-detail-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  background: rgba(5, 6, 7, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-detail-tab {
  min-height: 42px;
  color: rgba(247, 247, 242, 0.62);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 950;
  cursor: pointer;
}

.product-detail-tab[aria-selected="true"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.product-deep-panel {
  padding: 12px;
  animation: stage-in 220ms ease-out;
}

.product-deep-panel[hidden] {
  display: none;
}

.product-interface-map {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: #030404;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.product-interface-map::after {
  display: none;
}

.product-interface-map img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center top;
  opacity: 0.94;
  filter: saturate(1.02) contrast(1.02);
}

.product-callout-list {
  position: absolute;
  inset: 0;
  z-index: 3;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.product-callout {
  position: absolute;
  left: clamp(18px, var(--x), calc(100% - 18px));
  top: clamp(18px, var(--y), calc(100% - 18px));
  transform: translate(-50%, -50%);
}

.product-callout button {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: #14120b;
  background: var(--accent);
  border: 1px solid rgba(231, 184, 61, 0.78);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 760;
  white-space: nowrap;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 0 0 6px rgba(231, 184, 61, 0.08);
  transition: box-shadow 160ms var(--ease-sharp), transform 160ms var(--ease-sharp), border-color 160ms var(--ease-sharp);
}

.product-callout button[aria-pressed="true"] {
  color: #0a0905;
  border-color: rgba(255, 230, 159, 0.86);
  box-shadow: 0 0 0 9px rgba(231, 184, 61, 0.14);
}

.product-callout button:focus-visible {
  outline: 2px solid rgba(247, 247, 242, 0.92);
  outline-offset: 3px;
}

.product-callout p {
  display: grid;
  gap: 5px;
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  width: min(260px, 52vw);
  margin: 0;
  padding: 10px;
  color: rgba(247, 247, 242, 0.82);
  background: rgba(7, 8, 7, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity 160ms var(--ease-sharp), transform 160ms var(--ease-sharp);
  font-size: 0.82rem;
  font-weight: 560;
  line-height: 1.28;
  backdrop-filter: blur(18px) saturate(160%);
}

.product-callout p strong {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.08;
}

.product-callout p span {
  color: rgba(247, 247, 242, 0.68);
}

.product-callout:hover p,
.product-callout:focus-within p {
  opacity: 1;
  transform: translate(-50%, 0);
}

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

.product-flow-lab {
  display: grid;
  gap: 10px;
}

.workflow-scope {
  height: 250px;
  margin-bottom: 10px;
}

.product-flow-lab .workflow-scope {
  margin-bottom: 0;
}

.product-flow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.product-flow-step {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  min-height: 42px;
  place-items: center;
  padding: 0;
  color: rgba(247, 247, 242, 0.64);
  background: rgba(5, 6, 7, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms var(--ease-sharp), border-color 160ms var(--ease-sharp), background-color 160ms var(--ease-sharp);
}

.product-flow-step:hover {
  transform: translateY(-1px);
  border-color: rgba(244, 189, 55, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.product-flow-step[aria-pressed="true"] {
  color: var(--ink);
  border-color: rgba(244, 189, 55, 0.42);
  background: rgba(244, 189, 55, 0.1);
  box-shadow: 0 0 0 5px rgba(244, 189, 55, 0.08);
}

.flow-index {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 950;
}

.flow-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 12;
  display: grid;
  width: min(280px, 70vw);
  gap: 5px;
  padding: 10px;
  color: rgba(245, 243, 235, 0.76);
  background: rgba(7, 8, 7, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translate(-50%, 5px);
  transition: opacity 160ms var(--ease-sharp), transform 160ms var(--ease-sharp);
  backdrop-filter: blur(12px);
}

.flow-tooltip strong {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.08;
}

.flow-tooltip span {
  font-size: 0.8rem;
  font-weight: 540;
  line-height: 1.28;
}

.product-flow-step:hover .flow-tooltip,
.product-flow-step:focus-visible .flow-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

.product-flow-note {
  min-height: 44px;
  margin: 0 0 10px;
  padding: 10px 12px;
  color: rgba(245, 243, 235, 0.68);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 540;
  line-height: 1.3;
}

.product-reference-block {
  padding: 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 6px;
}

.product-reference-block .eyebrow {
  margin-bottom: 12px;
}

.product-workflow-list,
.product-use-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-workflow-list li,
.product-use-list li {
  padding: 10px;
  color: rgba(247, 247, 242, 0.82);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  font-weight: 820;
}

.product-workflow-list span {
  display: block;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 950;
  margin-bottom: 5px;
}

.product-reference-actions {
  display: flex;
  grid-column: 1 / -1;
  justify-content: flex-end;
  gap: 8px;
  padding: 4px;
}

.account-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  padding: 42px 0 36px;
}

.account-hero .page-hero-copy h1 {
  font-size: 3.55rem;
}

.account-dashboard {
  display: grid;
  gap: 10px;
}

.account-panel,
.download-center {
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  box-shadow: none;
}

.account-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 16px;
}

.account-panel-heading {
  min-width: 0;
}

.account-panel-heading .eyebrow {
  margin-bottom: 6px;
}

.account-status {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 780;
}

.account-email {
  min-height: 1.4em;
  margin: 4px 0 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.download-meta dt {
  color: rgba(247, 247, 242, 0.48);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.download-meta dd {
  margin: 4px 0 0;
  color: rgba(247, 247, 242, 0.84);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.22;
}

.account-panel [data-auth-action="logout"] {
  display: none;
}

.is-signed-in .account-panel [data-auth-action="login"],
.is-signed-in .account-panel [data-auth-action="signup"] {
  display: none;
}

.is-signed-in .account-panel [data-auth-action="logout"] {
  display: inline-flex;
}

.download-selector {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 0;
}

.download-tabs {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 10px;
  background: rgba(7, 8, 7, 0.48);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.download-tab {
  display: grid;
  min-width: 0;
  gap: 0;
  min-height: 46px;
  align-content: center;
  padding: 12px;
  color: rgba(247, 247, 242, 0.58);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  text-align: left;
  cursor: pointer;
}

.download-tab .eyebrow {
  margin: 0;
}

.download-tab strong {
  overflow: hidden;
  color: rgba(247, 247, 242, 0.84);
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-tab[aria-selected="true"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 2px 0 0 var(--accent);
}

.download-panels {
  min-width: 0;
}

.download-panel {
  display: grid;
  animation: stage-in 220ms ease-out;
}

.download-panel[hidden] {
  display: none;
}

.download-panel-stage {
  position: relative;
  min-height: 278px;
  margin: 0;
  overflow: hidden;
  background: #030404;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.download-panel-stage::after {
  display: none;
}

.download-panel-stage img {
  width: 100%;
  height: 100%;
  min-height: 278px;
  object-fit: cover;
  object-position: center top;
  opacity: 0.94;
  filter: saturate(1.02) contrast(1.02);
}

.download-scope {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  width: min(280px, 42%);
  height: 150px;
}

.download-panel-body {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.download-panel-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}

.download-panel-title .eyebrow {
  margin: 0 0 5px;
}

.download-panel-title h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
}

.download-panel-title span {
  color: rgba(247, 247, 242, 0.58);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.download-grid {
  display: grid;
  gap: 10px;
  padding: 10px;
}

.download-card {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  overflow: hidden;
  background: rgba(7, 8, 7, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 4px;
}

.download-card-image {
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #030404;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.download-card-image img {
  width: 100%;
  height: 100%;
  min-height: 148px;
  object-fit: cover;
  object-position: center top;
  opacity: 0.9;
  filter: saturate(1.08) contrast(1.04);
}

.download-card-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.download-card-body .eyebrow {
  margin: 0;
}

.download-card-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}

.download-card-title h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1;
}

.download-card-title span {
  color: rgba(247, 247, 242, 0.58);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.download-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.download-meta div {
  padding: 9px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.download-card-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.site-footer {
  color: var(--muted);
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-shell {
  min-height: 104px;
  padding: 24px 0;
}

.footer-brand p {
  margin: 0;
  font-weight: 900;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.prose-page {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0;
}

.manual-index-section,
.technical-manual {
  min-height: calc(100svh - 58px);
  color: #141411;
  background: var(--paper-soft);
}

.manual-index-shell {
  display: grid;
  gap: 24px;
  width: min(1040px, calc(100% - 40px));
  padding: 58px 0 88px;
}

.manual-index-header {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.manual-index-header h1 {
  margin: 0;
  color: #11110f;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.manual-index-header p:last-child {
  max-width: 66ch;
  margin: 0;
  color: rgba(20, 20, 17, 0.78);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.62;
}

.manual-index-table {
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  background: var(--paper-soft);
  border-top: 2px solid #141411;
  border-bottom: 2px solid #141411;
}

.manual-index-table th,
.manual-index-table td {
  padding: 14px 12px;
  color: #141411;
  border-bottom: 1px solid rgba(20, 20, 17, 0.28);
  font-size: 0.92rem;
  line-height: 1.42;
  text-align: left;
  vertical-align: top;
}

.manual-index-table th {
  color: rgba(20, 20, 17, 0.66);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.manual-index-table a {
  color: #11110f;
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.manual-index-table code {
  color: rgba(20, 20, 17, 0.72);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.82rem;
  white-space: normal;
}

.technical-manual-header {
  border-bottom: 2px solid #141411;
}

.technical-manual-header-shell {
  display: grid;
  gap: 12px;
  width: min(960px, calc(100% - 40px));
  padding: 54px 0 28px;
}

.technical-manual-header h1 {
  max-width: 14ch;
  margin: 0;
  color: #11110f;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(2.85rem, 7vw, 5.6rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.technical-manual-header-shell > p {
  max-width: 68ch;
  margin: 0;
  color: rgba(20, 20, 17, 0.8);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  line-height: 1.58;
}

.technical-manual-shell {
  display: grid;
  grid-template-columns: minmax(180px, 238px) minmax(0, 790px);
  justify-content: center;
  gap: 44px;
  width: min(1180px, calc(100% - 40px));
  padding: 34px 0 96px;
}

.technical-manual-toc {
  position: sticky;
  top: 78px;
  align-self: start;
  padding-top: 8px;
  border-top: 1px solid #141411;
}

.technical-manual-toc ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: decimal-leading-zero inside;
}

.technical-manual-toc li {
  margin: 0;
  color: rgba(20, 20, 17, 0.48);
  border-bottom: 1px solid rgba(20, 20, 17, 0.16);
  font-size: 0.72rem;
  font-weight: 860;
  line-height: 1.24;
}

.technical-manual-toc a {
  display: inline-block;
  padding: 10px 0;
  color: rgba(20, 20, 17, 0.72);
  text-decoration: none;
}

.technical-manual-toc a:hover,
.technical-manual-toc a:focus-visible {
  color: #11110f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.technical-manual-body {
  min-width: 0;
  counter-reset: manual-section;
  color: #141411;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.68;
}

.technical-book {
  background: var(--paper-soft);
}

.technical-manual-body > *:first-child {
  margin-top: 0;
}

.technical-manual-body h2 {
  counter-increment: manual-section;
  margin: 50px 0 14px;
  padding-top: 16px;
  color: #11110f;
  border-top: 2px solid #141411;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.18rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.technical-manual-body h2::before {
  content: counter(manual-section, decimal-leading-zero) ". ";
  color: rgba(20, 20, 17, 0.52);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.62em;
  font-weight: 700;
}

.technical-manual-body h3 {
  margin: 30px 0 8px;
  color: #11110f;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.24;
  text-transform: uppercase;
}

.technical-manual-body h4 {
  margin: 24px 0 7px;
  color: #11110f;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.28;
}

.technical-manual-body p {
  max-width: 74ch;
  margin: 0 0 15px;
  color: rgba(20, 20, 17, 0.88);
}

.technical-manual-body ul,
.technical-manual-body ol {
  max-width: 74ch;
  margin: 0 0 18px;
  padding-left: 1.35rem;
}

.technical-manual-body li {
  margin: 5px 0;
  padding-left: 0.15rem;
  color: rgba(20, 20, 17, 0.88);
}

.technical-manual-body code {
  color: #11110f;
  background: rgba(20, 20, 17, 0.06);
  border: 1px solid rgba(20, 20, 17, 0.12);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.86em;
}

.technical-manual-body a {
  color: #11110f;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.technical-manual-body dl {
  display: grid;
  gap: 0;
  max-width: 74ch;
  margin: 18px 0 24px;
  border-top: 1px solid rgba(20, 20, 17, 0.22);
}

.technical-manual-body dt,
.technical-manual-body dd {
  min-width: 0;
  padding: 9px 0;
  border-bottom: 1px solid rgba(20, 20, 17, 0.18);
}

.technical-manual-body dt {
  color: #11110f;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.technical-manual-body dd {
  margin: 0;
  color: rgba(20, 20, 17, 0.82);
  font-size: 0.95rem;
  line-height: 1.52;
}

.technical-manual-body dl {
  grid-template-columns: minmax(116px, 0.32fr) minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 0;
}

.technical-schematic {
  margin: 26px 0 30px;
  padding: 14px;
  overflow-x: auto;
  background: var(--paper-soft);
  border: 1px solid #141411;
}

.technical-schematic figcaption {
  margin: 0 0 12px;
  color: rgba(20, 20, 17, 0.64);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.34;
  text-transform: uppercase;
}

.schematic-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(128px, 1fr);
  gap: 18px;
  min-width: max-content;
  align-items: center;
}

.schematic-row span,
.schematic-grid div {
  position: relative;
  display: grid;
  min-height: 58px;
  align-items: center;
  padding: 10px;
  color: #141411;
  background: #fffefa;
  border: 1px solid rgba(20, 20, 17, 0.72);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 860;
  line-height: 1.28;
  text-align: center;
}

.schematic-row span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -16px;
  width: 14px;
  height: 1px;
  background: #141411;
  content: "";
}

.schematic-row span:not(:last-child)::before {
  position: absolute;
  top: calc(50% - 4px);
  right: -16px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #141411;
  border-right: 1px solid #141411;
  transform: rotate(45deg);
  content: "";
}

.schematic-grid {
  display: grid;
  gap: 12px;
  min-width: min(680px, 100%);
}

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

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

.schematic-grid strong {
  display: block;
  margin: 0 0 4px;
  color: #11110f;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.schematic-grid span {
  color: rgba(20, 20, 17, 0.72);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.42;
}

.manual-reference-table,
.technical-manual-body table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 18px 0 34px;
  overflow-x: auto;
  border-collapse: collapse;
  border-top: 2px solid #141411;
  border-bottom: 2px solid #141411;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.manual-research-table {
  border-top-style: double;
  border-bottom-style: double;
}

.manual-reference-table caption,
.technical-manual-body table caption {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-width: 680px;
  caption-side: top;
  padding: 0 0 8px;
  color: rgba(20, 20, 17, 0.66);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.34;
  text-align: left;
  text-transform: uppercase;
}

.manual-reference-table thead,
.technical-manual-body table thead,
.manual-reference-table tbody,
.technical-manual-body table tbody {
  display: table;
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.product-reference-table thead,
.product-reference-table tbody {
  min-width: 900px;
}

.manual-reference-table th,
.manual-reference-table td,
.technical-manual-body table th,
.technical-manual-body table td {
  padding: 10px 11px;
  border-bottom: 1px solid rgba(20, 20, 17, 0.22);
  color: rgba(20, 20, 17, 0.86);
  font-size: 0.78rem;
  line-height: 1.42;
  text-align: left;
  vertical-align: top;
}

.manual-reference-table th,
.technical-manual-body table th {
  color: rgba(20, 20, 17, 0.64);
  font-size: 0.68rem;
  font-weight: 920;
  text-transform: uppercase;
}

@media print {
  .technical-book {
    background: #fff;
  }

  .site-header,
  .site-footer,
  .technical-manual-toc {
    display: none;
  }

  .technical-manual-header {
    border-bottom: 1.5pt solid #000;
  }

  .technical-manual-header-shell,
  .technical-manual-shell {
    width: auto;
    padding: 0;
  }

  .technical-manual-shell {
    display: block;
  }

  .technical-manual-body {
    font-size: 11pt;
    line-height: 1.45;
  }

  .technical-manual-body h2 {
    break-before: page;
    border-top: 1.5pt solid #000;
  }

  .technical-schematic,
  .manual-reference-table,
  .technical-manual-body dl {
    break-inside: avoid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stage-panel,
  .catalog-card-image {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  .home-hero h1,
  .page-hero h1,
  .product-detail-hero h1 {
    font-size: 3.75rem;
  }

  .product-detail-grid,
  .product-deep-shell,
  .product-catalog-shell,
  .account-hero-grid,
  .learn-shell,
  .manual-shell,
  .tutorials-shell {
    grid-template-columns: 1fr;
  }

  .learn-shell {
    align-content: start;
    min-height: calc(100svh - 58px);
  }

  .learn-copy h1 {
    font-size: 3.75rem;
  }

  .manual-shell {
    align-content: start;
  }

  .tutorials-shell {
    align-content: start;
  }

  .preset-shell {
    align-content: start;
  }

  .product-hero-shot {
    order: -1;
  }

  .product-proof-panel {
    grid-column: 1;
    order: -1;
    width: 100%;
    margin: -12px 0 0;
  }

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

  .product-catalog-feature-grid .product-proof-panel {
    position: relative;
    right: auto;
    bottom: auto;
    order: 0;
    width: 100%;
    margin: 0;
    border-width: 1px 0 0;
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100% - 28px, 1200px);
  }

  .header-shell {
    min-height: 62px;
    gap: 10px;
  }

  .brand {
    flex: 0 1 auto;
  }

  .brand-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-text small {
    display: none;
  }

  .primary-nav {
    gap: 10px;
  }

  .primary-nav a {
    font-size: 0.82rem;
  }

  .header-actions {
    gap: 8px;
  }

  .account-button {
    min-height: 38px;
    padding: 0 12px;
  }

  .home-hero-shell {
    padding: 34px 0 0;
  }

  .home-hero h1,
  .page-hero h1,
  .product-detail-hero h1,
  .learn-copy h1 {
    font-size: 3rem;
    line-height: 0.95;
  }

  .learn-shell {
    gap: 22px;
    padding: 34px 0 40px;
  }

  .learn-actions {
    flex-wrap: wrap;
  }

  .learn-hub {
    grid-template-columns: 1fr;
  }

  .learn-product-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .learn-product-tab {
    min-height: 68px;
    padding: 10px;
  }

  .learn-product-tab strong {
    font-size: 0.82rem;
  }

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

  .learn-interface {
    min-height: 0;
    overflow: visible;
  }

  .learn-interface img {
    aspect-ratio: 2.1 / 1;
    height: auto;
    min-height: 0;
  }

  .learn-scope {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    height: 145px;
    margin: 10px;
  }

  .learn-route-grid,
  .learn-reference-row {
    grid-template-columns: 1fr;
  }

  .manual-shell {
    gap: 22px;
    padding: 34px 0 40px;
  }

  .tutorials-shell {
    gap: 22px;
    padding: 34px 0 40px;
  }

  .preset-shell {
    padding: 34px 0 40px;
  }

  .preset-viewer-stage {
    grid-template-columns: 1fr;
  }

  .preset-stage-shot {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .preset-stage-shot img,
  .preset-stage-neutral,
  .preset-beefet-editor {
    min-height: 0;
    height: auto;
    aspect-ratio: 2.1 / 1;
  }

  .preset-beefet-editor {
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .preset-beefet-path-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

.preset-beefet-threshold-chip-text,
.preset-beefet-ratio-chip-text,
.preset-beefet-gain-chip-text {
  font-size: 8.4px;
}

.preset-beefet-gain-chip-label {
  font-size: 6.4px;
}

  .preset-beefet-envelope-panel {
    min-height: 200px;
    height: 200px;
    border-top: 1px solid rgba(244, 189, 55, 0.24);
  }

  .preset-viewer-summary h1 {
    font-size: 2.15rem;
  }

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

  .preset-viewer-canonical-row {
    align-items: stretch;
    flex-direction: column;
  }

  .preset-viewer-product .button {
    width: 100%;
  }

  .preset-parameter-head {
    align-items: start;
    flex-direction: column;
  }

  .product-deep-shell {
    gap: 22px;
    padding: 42px 0 54px;
  }

  .product-deep-heading h2 {
    font-size: 2.55rem;
  }

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

  .workflow-scope {
    height: 220px;
  }

  .product-flow-steps {
    gap: 6px;
  }

  .product-flow-step {
    width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .product-interface-map,
  .product-interface-map img {
    min-height: 260px;
  }

  .product-callout-list {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
  }

  .product-callout {
    position: static;
    transform: none;
  }

  .product-callout button {
    width: 36px;
    height: 36px;
    justify-content: center;
  }

  .product-callout p {
    display: none;
    position: static;
    width: min(320px, calc(100vw - 48px));
    margin-top: 6px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .product-callout:focus-within p {
    display: grid;
  }

  .product-hero-shot .product-callout:focus-within p {
    display: none;
  }

  .catalog-interface-map .product-callout:focus-within p {
    display: none;
  }

  .catalog-interface-map .product-callout-list {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    background: linear-gradient(180deg, transparent, rgba(5, 6, 7, 0.86) 46%);
  }

  .catalog-interface-map .product-callout {
    position: static;
    transform: none;
  }

  .product-reference-actions {
    justify-content: stretch;
  }

  .product-reference-actions .button {
    flex: 1 1 150px;
  }

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

  .product-catalog-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .product-catalog-tab {
    min-height: 72px;
    padding: 10px;
  }

  .product-catalog-tab strong {
    font-size: 0.84rem;
  }

  .product-catalog-tab span:last-child {
    display: none;
  }

  .catalog-interface-map,
  .catalog-interface-map img {
    min-height: 0;
  }

  .catalog-interface-map {
    overflow: hidden;
  }

  .catalog-interface-map img {
    aspect-ratio: 2.1 / 1;
    height: auto;
  }

  .product-catalog-feature-grid .catalog-interface-map,
  .product-catalog-feature-grid .catalog-interface-map img {
    min-height: 340px;
  }

  .product-catalog-feature-grid .catalog-interface-map img {
    height: 100%;
    aspect-ratio: auto;
  }

  .catalog-scope {
    display: none;
  }

  .product-catalog-details {
    align-items: stretch;
    flex-direction: column;
  }

  .product-catalog-actions {
    justify-content: stretch;
  }

  .product-catalog-actions .button {
    flex: 1 1 150px;
  }

  .product-more-menu .model-menu-panel {
    top: auto;
    bottom: calc(100% + 6px);
    right: 0;
    left: auto;
  }

  .manual-copy {
    padding-top: 0;
  }

  .tutorials-copy {
    padding-top: 0;
  }

  .tutorial-lab {
    grid-template-columns: 1fr;
  }

  .tutorial-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .tutorial-tab {
    padding: 10px;
  }

  .tutorial-tab strong {
    overflow: hidden;
    font-size: 0.78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .tutorial-tab span:last-child {
    display: none;
  }

  .tutorial-visual,
  .tutorial-visual img {
    min-height: 220px;
  }

  .tutorial-marker {
    width: 40px;
    height: 40px;
  }

  .tutorial-copy-panel h2 {
    font-size: 1.75rem;
  }

  .tutorial-step-button {
    width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .manual-browser {
    grid-template-columns: 1fr;
  }

  .manual-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 10, 8, 0.12);
  }

  .manual-tab {
    min-height: 42px;
    padding: 10px;
    border-right: 1px solid rgba(10, 10, 8, 0.13);
  }

  .manual-tab strong {
    font-size: 0.82rem;
  }

  .manual-tab span:last-child {
    display: none;
  }

  .manual-product-grid {
    grid-template-columns: 1fr;
    padding: 0 18px 44px;
  }

  .manual-document-header {
    padding: 22px 18px 18px;
  }

  .manual-document-meta {
    grid-template-columns: 1fr;
  }

  .manual-index-shell,
  .technical-manual-header-shell,
  .technical-manual-shell {
    width: min(1180px, calc(100% - 28px));
  }

  .manual-index-shell {
    padding: 44px 0 68px;
  }

  .manual-index-table {
    display: block;
  }

  .manual-index-table thead,
  .manual-index-table tbody {
    display: table;
    width: 100%;
    min-width: 620px;
  }

  .technical-manual-header-shell {
    padding: 42px 0 24px;
  }

  .technical-manual-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 28px 0 72px;
  }

  .technical-manual-toc {
    position: static;
  }

  .technical-manual-toc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technical-manual-body dl {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .schematic-grid.two,
  .schematic-grid.three {
    grid-template-columns: 1fr;
  }

  .manual-stack {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .manual-product-guide {
    padding-left: 0;
  }

  .manual-product-card-list,
  .manual-product-entry-list div {
    grid-template-columns: 1fr;
  }

  .stage-frame {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .stage-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stage-tabs {
    display: contents;
  }

  .stage-tab {
    min-width: 0;
    min-height: 44px;
    padding: 0 6px;
  }

  .stage-tab-name {
    font-size: 0.78rem;
  }

  .stage-more-menu summary {
    min-height: 44px;
    justify-content: center;
    padding: 0 6px;
    font-size: 0.78rem;
  }

  .stage-more-menu .model-menu-panel {
    right: 0;
    left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stage-panels {
    padding: 12px;
  }

  .stage-actions {
    position: relative;
    right: auto;
    bottom: auto;
    margin-bottom: 0;
  }

  .stage-command {
    display: grid;
    width: 100%;
    max-width: none;
    justify-content: stretch;
    margin: 10px 0 0;
  }

  .stage-command .stage-actions {
    width: 100%;
  }

  .format-rail {
    display: none;
  }

  .stage-shot,
  .stage-shot img {
    height: auto;
    min-height: 0;
  }

  .stage-shot img {
    aspect-ratio: 2.1 / 1;
    height: auto;
  }

  .stage-scope {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    height: 145px;
    margin: 10px;
  }

  .section {
    padding: 54px 0;
  }

  .section-heading h2 {
    font-size: 2.08rem;
  }

  .catalog-band .site-shell {
    padding: 34px 0 40px;
  }

  .catalog-band .section-heading h2 {
    font-size: 3rem;
    line-height: 0.95;
  }

  .catalog-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .catalog-card {
    min-width: min(84%, 330px);
    scroll-snap-align: start;
  }

  .stage-actions .button,
  .product-hero-actions .button,
  .account-actions .button {
    flex: 1 1 150px;
  }

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

  .product-switcher {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-switcher-link,
  .product-more-menu summary {
    padding: 0 6px;
    font-size: 0.72rem;
  }

  .product-more-menu .model-menu-panel {
    right: 0;
    left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero-copy,
  .account-hero-grid {
    padding: 54px 0;
  }

  .product-detail-grid {
    padding: 28px 0 40px;
  }

  .account-panel {
    grid-template-columns: 1fr;
  }

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

  .download-card-title,
  .download-card-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .download-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .download-tab {
    min-height: 62px;
    padding: 10px;
  }

  .download-tab strong {
    font-size: 0.82rem;
  }

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

  .download-panel-stage {
    min-height: 0;
    overflow: visible;
  }

  .download-panel-stage img {
    aspect-ratio: 2.1 / 1;
    height: auto;
    min-height: 0;
  }

  .download-scope {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    height: 132px;
    margin: 10px;
  }

  .download-panel-title {
    align-items: stretch;
    flex-direction: column;
  }

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

  .download-card-image {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .download-card-image img {
    aspect-ratio: 2.1 / 1;
    min-height: 0;
  }

  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-utility {
    flex-wrap: wrap;
  }
}

@media (max-width: 460px) {
  .site-shell {
    width: min(100% - 24px, 1200px);
  }

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

  .header-shell {
    gap: 8px;
  }

  .brand {
    gap: 8px;
    max-width: 148px;
  }

  .brand-text {
    font-size: 0.8rem;
  }

  .primary-nav {
    gap: 8px;
  }

  .primary-nav a {
    font-size: 0.78rem;
  }

  .account-button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .home-hero h1,
  .page-hero h1,
  .product-detail-hero h1,
  .learn-copy h1 {
    font-size: 2.55rem;
  }

  .learn-card {
    min-height: 136px;
  }

  .learn-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .learn-product-tab {
    min-height: 54px;
    padding: 9px 6px;
  }

  .learn-product-tab .eyebrow {
    font-size: 0.61rem;
  }

  .learn-product-tab strong {
    font-size: 0.76rem;
  }

  .manual-tab {
    padding: 9px 6px;
  }

  .manual-tab .eyebrow {
    font-size: 0.61rem;
  }

  .manual-tab strong {
    font-size: 0.76rem;
  }

  .manual-toolbar {
    padding: 8px;
  }

  .manual-search {
    grid-template-columns: 24px minmax(0, 1fr) auto;
  }

  .manual-search input {
    font-size: 0.82rem;
  }

  .manual-search output {
    padding: 0 8px;
    font-size: 0.62rem;
  }

  .manual-index-header h1,
  .technical-manual-header h1 {
    font-size: 2.72rem;
  }

  .technical-manual-toc ol {
    grid-template-columns: 1fr;
  }

  .technical-manual-body {
    font-size: 0.98rem;
  }

  .technical-schematic {
    padding: 10px;
  }

  .download-tab {
    padding: 9px 6px;
  }

  .download-tab .eyebrow {
    font-size: 0.61rem;
  }

  .download-tab strong {
    font-size: 0.76rem;
  }

  .product-catalog-tab {
    min-height: 54px;
    padding: 9px 6px;
  }

  .product-catalog-tab .eyebrow {
    font-size: 0.61rem;
  }

  .product-catalog-tab strong {
    font-size: 0.76rem;
  }

  .product-catalog-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tutorial-tab {
    min-height: 52px;
    align-content: center;
  }

  .preset-viewer-summary {
    padding: 14px;
  }

  .preset-viewer-summary h1 {
    font-size: 1.84rem;
  }

  .preset-stage-shot img,
  .preset-stage-neutral,
  .preset-beefet-editor {
    aspect-ratio: auto;
  }

  .preset-beefet-editor {
    grid-template-rows: minmax(248px, 44vh) auto;
  }

  .preset-beefet-graph-shell {
    min-height: 248px;
  }

  .preset-beefet-path-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

.preset-beefet-threshold-chip-text,
.preset-beefet-ratio-chip-text,
.preset-beefet-gain-chip-text {
  font-size: 8.6px;
}

.preset-beefet-gain-chip-label {
  font-size: 6.2px;
}

  .preset-beefet-strip-item {
    padding: 10px 11px;
  }

  .preset-beefet-strip-value,
  .preset-beefet-value-button {
    font-size: 0.84rem;
  }

  .preset-beefet-envelope-panel {
    min-height: 172px;
    height: 172px;
  }

  .preset-input {
    min-height: 104px;
    font-size: 0.8rem;
  }

  .preset-viewer-meta {
    grid-template-columns: 1fr;
  }

  .preset-viewer-canonical-row input {
    font-size: 0.74rem;
  }

  .preset-parameter-panel {
    padding: 12px;
  }

  .preset-parameter-table {
    min-width: 500px;
  }

  .tutorial-tab strong {
    overflow: hidden;
    font-size: 0.72rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .catalog-band .section-heading h2 {
    font-size: 2.55rem;
  }

  .stage-actions,
  .product-hero-actions,
  .account-actions {
    display: grid;
    grid-template-columns: 1fr;
  }


  .stage-shot img,
  .product-hero-shot img {
    aspect-ratio: 2.18 / 1;
  }

  .stage-nav {
    gap: 6px;
    padding: 8px;
  }

  .stage-tab,
  .stage-more-menu summary {
    padding: 0 4px;
  }

  .stage-tab-name,
  .stage-more-menu summary {
    font-size: 0.68rem;
  }

  .stage-scope {
    height: 154px;
  }

  .catalog-card-image img {
    aspect-ratio: 4 / 3;
  }
}
