@font-face {
  font-family: "Roboto";
  src: url("fonts/roboto-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/roboto-500.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/roboto-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("fonts/instrument-serif-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  color-scheme: light;

  /* Canonical brand palette. */
  --dx-white: #ffffff;
  --dx-snow: #f4f5f6;
  --dx-midnight: #000000;
  --dx-ink: #0e0f0f;
  --dx-ink-2: #1a1b1b;
  --dx-ink-3: #2a2b2b;
  --dx-gray: #9a9d9d;
  --dx-charge: #c8ff00;
  --dx-resolve: #00e5a0;
  --dx-coherence: #4da6ff;
  --dx-ignition: #ff6835;
  --dx-corona: #ffef5b;
  --dx-verve: #b869ff;
  --dx-liftoff: #ff5b7c;

  /* Semantic roles mirror public/tokens.json. */
  --dx-active: var(--dx-charge);
  --dx-success: var(--dx-resolve);
  --dx-info: var(--dx-coherence);
  --dx-warning: var(--dx-ignition);
  --dx-error: var(--dx-liftoff);
  --dx-focus: var(--dx-charge);

  /* Type roles: vision, clarity, precision. */
  --dx-font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --dx-font-sans:
    "Roboto", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  /* Deprecated alias: the precision role is now Roboto Bold, all caps. */
  --dx-font-mono: var(--dx-font-sans);

  /* 4px base grid with the brand guide's approved stops. */
  --dx-space-1: 4px;
  --dx-space-2: 8px;
  --dx-space-3: 12px;
  --dx-space-4: 24px;
  --dx-space-5: 32px;
  --dx-space-6: 48px;
  --dx-space-7: 120px;

  /* Shape and interaction contracts. */
  --dx-radius-panel: 0;
  --dx-radius-control: 3px;
  --dx-radius-button: 999px;
  --dx-radius-tag: 2px;
  --dx-control-height-compact: 28px;
  --dx-control-height-default: 36px;
  --dx-control-padding-inline: 10px;
  --dx-focus-width: 2px;
  --dx-motion-fast: 150ms;
  --dx-motion-standard: 200ms;
  --dx-motion-maximum: 300ms;
  --dx-motion-theme-wipe: 750ms;
  --dx-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dx-ease-theme-wipe: cubic-bezier(0.65, 0, 0.35, 1);
  --dx-max-width: 1200px;
  --dx-gutter: 48px;
  --dx-grid-gap: 24px;
  --dx-root-scrollbar-gutter: 0px;
}

html {
  overflow-x: clip;
  scrollbar-gutter: stable;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}

::view-transition-old(root) {
  z-index: 0;
}

::view-transition-new(root) {
  z-index: 1;
}

html.dx-theme-wipe::view-transition-new(root) {
  animation: dx-theme-wipe-reveal var(--dx-motion-theme-wipe)
    var(--dx-ease-theme-wipe) both;
}

@keyframes dx-theme-wipe-reveal {
  from {
    clip-path: circle(
      0px at var(--dx-theme-wipe-x, 50%) var(--dx-theme-wipe-y, 50%)
    );
  }

  to {
    clip-path: circle(
      var(--dx-theme-wipe-r, 150%) at var(--dx-theme-wipe-x, 50%)
        var(--dx-theme-wipe-y, 50%)
    );
  }
}

html.dx-theme-wipe .dx-app {
  transition: none;
}

.dx-app,
.dx-app[data-dx-theme="light"],
html[data-dx-theme="light"] .dx-app {
  color-scheme: light;
  --dx-bg: var(--dx-snow);
  --dx-surface: var(--dx-white);
  --dx-surface-raised: var(--dx-white);
  --dx-surface-inset: #e9ebed;
  --dx-text: var(--dx-ink);
  --dx-text-soft: #555b60;
  --dx-text-faint: #6b7176;
  --dx-border: rgba(0, 0, 0, 0.14);
  --dx-border-soft: rgba(0, 0, 0, 0.08);
  --dx-active-bg: var(--dx-ink);
  --dx-active-text: var(--dx-white);
  --dx-hover: rgba(0, 0, 0, 0.04);
  --dx-success-ink: #047857;
  --dx-warning-ink: #a83b0b;
  --dx-error-ink: #c81e3c;
  --dx-info-ink: #1d4ed8;
}

.dx-app[data-dx-theme="dark"],
html[data-dx-theme="dark"] .dx-app {
  color-scheme: dark;
  --dx-bg: var(--dx-midnight);
  --dx-surface: var(--dx-ink);
  --dx-surface-raised: var(--dx-ink-2);
  --dx-surface-inset: var(--dx-ink-3);
  --dx-text: var(--dx-white);
  --dx-text-soft: rgba(255, 255, 255, 0.68);
  --dx-text-faint: rgba(255, 255, 255, 0.56);
  --dx-border: rgba(255, 255, 255, 0.14);
  --dx-border-soft: rgba(255, 255, 255, 0.08);
  --dx-active-bg: var(--dx-charge);
  --dx-active-text: var(--dx-midnight);
  --dx-hover: rgba(255, 255, 255, 0.06);
  --dx-success-ink: var(--dx-resolve);
  --dx-warning-ink: var(--dx-ignition);
  --dx-error-ink: var(--dx-liftoff);
  --dx-info-ink: var(--dx-coherence);
}

.dx-app {
  min-height: 100vh;
  margin: 0;
  background: var(--dx-bg);
  color: var(--dx-text);
  font-family: var(--dx-font-sans);
  font-size: 14px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.dx-app :where(button, input, select, textarea) {
  font: inherit;
}

.dx-app :focus-visible {
  outline: var(--dx-focus-width) solid var(--dx-focus);
  outline-offset: 2px;
}

.dx-app ::selection {
  background: var(--dx-charge);
  color: var(--dx-midnight);
}

.dx-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 216px minmax(0, 1fr);
  grid-template-rows: 64px 1fr;
}

.dx-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--dx-space-4);
  padding: 0 104px 0 var(--dx-space-4);
  border-bottom: 1px solid var(--dx-border);
  background: var(--dx-surface);
}

.dx-floating-controls {
  position: fixed;
  top: 17px;
  right: 16px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: var(--dx-space-2);
}

.dx-config-wrap {
  position: relative;
  display: inline-flex;
}

.dx-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--dx-border);
  border-radius: 50%;
  background: var(--dx-surface);
  color: var(--dx-text);
  cursor: pointer;
  transition:
    background var(--dx-motion-fast) ease,
    border-color var(--dx-motion-fast) ease,
    transform var(--dx-motion-fast) ease;
}

.dx-icon-button:hover,
.dx-icon-button[aria-expanded="true"] {
  border-color: var(--dx-text-faint);
  background: var(--dx-surface-raised);
}

.dx-icon-button:active {
  transform: scale(0.9);
}

.dx-icon-button :where(svg, i, .dx-settings-glyph, .dx-theme-glyph) {
  display: block;
  width: 17px;
  height: 17px;
  font-size: 16px;
}

.dx-settings-glyph,
.dx-theme-glyph,
.dx-directional-arrow,
.dx-dropdown-chevron {
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.dx-settings-glyph,
.dx-theme-glyph {
  width: 17px;
  height: 17px;
}

.dx-settings-glyph {
  -webkit-mask-image: url("icons/dx-settings-gear.svg");
  mask-image: url("icons/dx-settings-gear.svg");
}

.dx-theme-glyph.dx-icon-sun {
  -webkit-mask-image: url("icons/dx-theme-sun.svg");
  mask-image: url("icons/dx-theme-sun.svg");
}

.dx-theme-glyph.dx-icon-moon {
  -webkit-mask-image: url("icons/dx-theme-moon.svg");
  mask-image: url("icons/dx-theme-moon.svg");
}

.dx-theme-button .dx-icon-moon {
  display: none;
}

.dx-theme-button :where(.dx-icon-sun, .dx-icon-moon),
.dx-theme-motion-demo :where(svg, i, .dx-theme-glyph) {
  transition: rotate var(--dx-motion-maximum) var(--dx-ease-out);
}

.dx-icon-button--rotate-glyph :where(svg, i, .dx-settings-glyph, .dx-theme-glyph) {
  transform-origin: center;
  transition: rotate var(--dx-motion-maximum) var(--dx-ease-out);
}

.dx-icon-button--rotate-glyph:is(:hover, :focus-visible)
  :where(svg, i, .dx-settings-glyph, .dx-theme-glyph),
.dx-theme-button:is(:hover, :focus-visible) .dx-icon-sun,
.dx-theme-motion-demo:is(:hover, :focus-visible) :where(svg, i, .dx-theme-glyph) {
  rotate: 45deg;
}

.dx-theme-button:is(:hover, :focus-visible) .dx-icon-moon {
  rotate: -12deg;
}

[data-dx-theme="dark"] .dx-theme-button .dx-icon-sun {
  display: none;
}

[data-dx-theme="dark"] .dx-theme-button .dx-icon-moon {
  display: block;
}

.dx-app[data-dx-theme="dark"] .dx-floating-controls :focus-visible {
  outline-color: var(--dx-white);
}

.dx-app[data-dx-theme="dark"] .dx-config-popover {
  --dx-active-bg: var(--dx-white);
  --dx-active-text: var(--dx-midnight);
}

.dx-config-popover {
  position: absolute;
  top: calc(100% + var(--dx-space-2));
  right: 0;
  z-index: 80;
  display: grid;
  min-width: 264px;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  padding: var(--dx-space-3);
  border: 1px solid var(--dx-border);
  background: var(--dx-surface);
}

.dx-config-popover[hidden] {
  display: none;
}

.dx-config-section {
  padding: var(--dx-space-2) 0 var(--dx-space-1);
  color: var(--dx-text-faint);
  font-family: var(--dx-font-sans);
  font-weight: 700;
  font-size: 10px;
    letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dx-config-section:not(:first-child) {
  margin-top: var(--dx-space-2);
  border-top: 1px solid var(--dx-border-soft);
}

.dx-config-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--dx-space-3);
  min-height: 36px;
  color: var(--dx-text);
  font-size: 13px;
}

.dx-config-row > span {
  display: inline-flex;
  align-items: center;
  gap: var(--dx-space-2);
}

.dx-config-row > span :where(svg, i) {
  width: 14px;
  text-align: center;
  translate: 0 1px;
}

.dx-switch {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 18px;
  padding: 0;
  border: 1px solid var(--dx-border);
  border-radius: 999px;
  background: var(--dx-surface-inset);
  cursor: pointer;
  transition:
    background var(--dx-motion-fast) ease,
    border-color var(--dx-motion-fast) ease;
}

.dx-switch::after {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dx-text-faint);
  content: "";
  transition:
    background var(--dx-motion-fast) ease,
    transform var(--dx-motion-fast) ease;
}

.dx-switch[aria-checked="true"] {
  border-color: var(--dx-text);
  background: var(--dx-text);
}

.dx-switch[aria-checked="true"]::after {
  background: var(--dx-surface);
  transform: translateX(16px);
}

.dx-config-segmented {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--dx-border);
  border-radius: var(--dx-radius-control);
}

.dx-config-segmented button {
  min-height: 28px;
  padding: 0 var(--dx-space-2);
  border: 0;
  background: transparent;
  color: var(--dx-text-soft);
  font-family: var(--dx-font-sans);
  font-weight: 700;
  font-size: 9px;
    letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.dx-config-segmented button + button {
  border-left: 1px solid var(--dx-border);
}

.dx-config-segmented button[aria-pressed="true"] {
  background: var(--dx-text);
  color: var(--dx-surface);
}

.dx-wordmark {
  display: inline-flex;
  align-items: center;
  color: var(--dx-text);
}

.dx-wordmark img {
  display: block;
  width: 126px;
  height: auto;
  filter: none;
}

[data-dx-theme="dark"] .dx-wordmark img {
  filter: invert(1);
}

.dx-topbar-meta,
.dx-eyebrow,
.dx-label,
.dx-nav-link,
.dx-table th,
.dx-chip,
.dx-control-label,
.dx-code-label {
  font-family: var(--dx-font-sans);
  font-weight: 700;
  font-size: 10px;
    letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dx-topbar-meta {
  color: var(--dx-text-faint);
}

.dx-sidebar {
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
  padding: var(--dx-space-4) var(--dx-space-3);
  border-right: 1px solid var(--dx-border);
  background: var(--dx-surface);
}

.dx-nav {
  display: grid;
  gap: var(--dx-space-1);
}

.dx-nav-link {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 var(--dx-space-3);
  border-left: 2px solid transparent;
  color: var(--dx-text-soft);
  text-decoration: none;
  transition:
    background var(--dx-motion-standard) ease,
    color var(--dx-motion-standard) ease;
}

.dx-nav-link :where(svg, i) {
  flex: 0 0 auto;
  width: 14px;
  margin-right: var(--dx-space-2);
  text-align: center;
}

.dx-nav-link:hover {
  background: var(--dx-hover);
  color: var(--dx-text);
}

.dx-nav-link[aria-current="page"] {
  border-left-color: var(--dx-text);
  background: var(--dx-hover);
  color: var(--dx-text);
}

.dx-main {
  min-width: 0;
  padding: var(--dx-space-6) var(--dx-gutter) var(--dx-space-7);
}

.dx-container {
  width: min(100%, var(--dx-max-width));
  margin-inline: auto;
}

.dx-app[data-dx-width="fluid"] .dx-container {
  width: 100%;
}

.dx-app[data-dx-sidebar="hidden"] .dx-shell {
  grid-template-columns: minmax(0, 1fr);
}

.dx-app[data-dx-sidebar="hidden"] .dx-sidebar {
  display: none;
}

.dx-page-head {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: var(--dx-grid-gap);
  padding-bottom: var(--dx-space-5);
  border-bottom: 1px solid var(--dx-border);
}

.dx-eyebrow {
  margin: 0 0 var(--dx-space-3);
  color: var(--dx-text-faint);
}

.dx-display,
.dx-title,
.dx-section-title {
  margin: 0;
  font-family: var(--dx-font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.dx-display {
  max-width: 780px;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.94;
}

.dx-title {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
}

.dx-section-title {
  font-size: 30px;
  line-height: 1.05;
}

.dx-lede,
.dx-section-copy {
  margin: 0;
  color: var(--dx-text-soft);
}

.dx-lede {
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.6;
}

.dx-section {
  padding-top: var(--dx-space-6);
}

.dx-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--dx-space-4);
  margin-bottom: var(--dx-space-4);
}

.dx-section-copy {
  max-width: 54ch;
}

.dx-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--dx-grid-gap);
}

.dx-layout-stack {
  --dx-layout-gap: var(--dx-space-4);
  display: flex;
  flex-direction: column;
  gap: var(--dx-layout-gap);
}

.dx-app .dx-layout-stack > * {
  margin-block: 0;
}

.dx-col-4 {
  grid-column: span 4;
}
.dx-col-6 {
  grid-column: span 6;
}
.dx-col-8 {
  grid-column: span 8;
}
.dx-col-12 {
  grid-column: 1 / -1;
}

.dx-panel {
  min-width: 0;
  border: 1px solid var(--dx-border);
  border-radius: var(--dx-radius-panel);
  background: var(--dx-surface-raised);
}

.dx-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--dx-space-3);
  min-height: 48px;
  padding: var(--dx-space-3) var(--dx-space-4);
  border-bottom: 1px solid var(--dx-border);
}

.dx-panel-title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.dx-panel-body {
  padding: var(--dx-space-4);
}

.dx-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--dx-space-2);
  min-height: 52px;
  padding: var(--dx-space-3);
  border-bottom: 1px solid var(--dx-border);
  background: var(--dx-surface);
}

.dx-control,
.dx-button,
.dx-input,
.dx-select,
.dx-date-trigger {
  min-height: var(--dx-control-height-default);
  border: 1px solid var(--dx-border);
  border-radius: var(--dx-radius-control);
  background: transparent;
  color: var(--dx-text);
}

.dx-toolbar
  :where(.dx-control, .dx-button, .dx-input, .dx-select, .dx-date-trigger),
.dx-control--compact {
  height: var(--dx-control-height-compact);
  min-height: var(--dx-control-height-compact);
}

.dx-control {
  display: inline-flex;
  align-items: center;
  gap: var(--dx-space-2);
  padding-inline: var(--dx-control-padding-inline);
}

.dx-control-label {
  color: var(--dx-text-faint);
}

.dx-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dx-select-wrap::after {
  position: absolute;
  right: 2px;
  width: 18px;
  height: 18px;
  background: currentColor;
  color: var(--dx-text-faint);
  content: "";
  opacity: 0.7;
  pointer-events: none;
  -webkit-mask: url("icons/dx-chevron-down.svg") center / contain no-repeat;
  mask: url("icons/dx-chevron-down.svg") center / contain no-repeat;
}

.dx-select {
  appearance: none;
  padding: 0 26px 0 10px;
  font-family: var(--dx-font-sans);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.dx-control .dx-select {
  width: auto;
  height: calc(var(--dx-control-height-compact) - 2px);
  min-height: 0;
  margin-right: -9px;
  padding-left: 0;
  border: 0;
}

.dx-segmented {
  display: inline-flex;
  height: var(--dx-control-height-compact);
  overflow: hidden;
  border: 1px solid var(--dx-border);
  border-radius: var(--dx-radius-control);
}

.dx-segmented button {
  height: 100%;
  padding: 0 9px;
  border: 0;
  border-left: 1px solid var(--dx-border);
  background: transparent;
  color: var(--dx-text-soft);
  font-family: var(--dx-font-sans);
  font-weight: 700;
  font-size: 9px;
    letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.dx-segmented button:first-child {
  border-left: 0;
}

.dx-segmented button:hover {
  color: var(--dx-text);
}

.dx-segmented button[aria-pressed="true"] {
  background: var(--dx-text);
  color: var(--dx-surface);
}

.dx-date-trigger,
.dx-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--dx-space-2);
  padding-inline: var(--dx-control-padding-inline);
  font-family: var(--dx-font-sans);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10px;
    letter-spacing: 0.06em;
  cursor: pointer;
  transition:
    background var(--dx-motion-standard) ease,
    color var(--dx-motion-standard) ease,
    border-color var(--dx-motion-standard) ease,
    transform var(--dx-motion-fast) ease;
}

.dx-button {
  position: relative;
  border-color: var(--dx-text);
  border-radius: var(--dx-radius-button);
}

.dx-date-trigger :where(svg, i),
.dx-button :where(svg, i) {
  flex: 0 0 auto;
  width: 12px;
  height: 1em;
  translate: 0 0;
}

.dx-button:hover {
  border-color: var(--dx-text);
  outline: 1px solid var(--dx-text);
  outline-offset: -2px;
}

.dx-date-trigger:hover,
.dx-input:hover,
.dx-select:hover {
  border-color: var(--dx-text-faint);
}

.dx-button:active {
  transform: scale(0.97);
}

.dx-button--primary {
  border-color: transparent;
  background: var(--dx-active-bg);
  color: var(--dx-active-text);
}

.dx-button--primary:hover,
.dx-button--quiet:hover {
  outline: 0;
}

.dx-button--quiet {
  border-color: transparent;
}

.dx-app .dx-colorfill-button {
  position: relative;
  overflow: hidden;
  border-color: transparent;
  border-radius: var(--dx-radius-button);
  background: var(--dx-text);
  color: var(--dx-bg);
  text-decoration: none;
  transition:
    background-color 600ms cubic-bezier(0.4, 0, 0.2, 1),
    transform var(--dx-motion-fast) ease;
}

.dx-app .dx-colorfill-button:is(:hover, :focus-visible) {
  border-color: transparent;
  background: var(--dx-charge);
  color: var(--dx-bg);
  outline: 0;
}

.dx-colorfill-button__base,
.dx-colorfill-button__overlay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--dx-space-2);
  white-space: nowrap;
}

.dx-directional-arrow {
  width: 12px;
  height: 8px;
  margin-left: var(--dx-space-1);
  -webkit-mask-image: url("icons/dx-arrow-right.svg");
  mask-image: url("icons/dx-arrow-right.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  transition: translate var(--dx-motion-maximum) var(--dx-ease-out);
}

:where(.dx-button, .dx-colorfill-button):hover .dx-directional-arrow {
  translate: 4px 0;
}

.dx-directional-arrow--down {
  width: 8.4px;
  height: 8px;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  rotate: 90deg;
}

:where(.dx-button, .dx-colorfill-button):hover .dx-directional-arrow--down {
  translate: 0 4px;
}

.dx-dropdown-chevron {
  width: 18px;
  height: 18px;
  margin-right: -3px;
  margin-left: -2px;
  opacity: 0.7;
  -webkit-mask-image: url("icons/dx-chevron-down.svg");
  mask-image: url("icons/dx-chevron-down.svg");
}

.dx-colorfill-button__base {
  position: relative;
  z-index: 1;
}

.dx-colorfill-button__overlay {
  position: absolute;
  inset: -1px;
  z-index: 2;
  background: var(--dx-charge);
  color: var(--dx-midnight);
  clip-path: inset(100% 0 0);
  pointer-events: none;
  transition: clip-path 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.dx-colorfill-button:hover .dx-colorfill-button__overlay,
.dx-colorfill-button:focus-visible .dx-colorfill-button__overlay {
  clip-path: inset(0);
}

/*
 * Primary CTA invariant: pointer states never add a neutral stroke.
 * Keyboard focus remains visible through the explicit focus-visible rule.
 */
body.dx-app :is(.dx-button--primary, .dx-colorfill-button),
body.dx-app
  :is(.dx-button--primary, .dx-colorfill-button):is(:hover, :active) {
  border: 0;
  outline: 0;
}

body.dx-app :is(.dx-button--primary, .dx-colorfill-button):focus-visible {
  border: 0;
  outline: var(--dx-focus-width) solid var(--dx-focus);
  outline-offset: 2px;
}

.dx-animated-underline {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: var(--dx-text-soft);
  text-decoration: none;
}

.dx-animated-underline::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--dx-text);
  content: "";
  transform: scaleY(0);
  transform-origin: center bottom;
  transition: transform var(--dx-motion-maximum) var(--dx-ease-out);
}

.dx-animated-underline:hover,
.dx-animated-underline[aria-current="page"] {
  color: var(--dx-text);
}

.dx-animated-underline[aria-current="page"]::after {
  transform: scaleY(0.5);
}

.dx-animated-underline:is(:hover, :focus-visible)::after {
  transform: scaleY(1);
}

.dx-icon-text {
  display: inline-flex;
  align-items: center;
  gap: var(--dx-space-2);
}

.dx-icon-text :where(svg, i) {
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  translate: 0 0;
}

.dx-first-line-icon-row {
  --dx-first-line-height: 24px;
  --dx-first-line-icon-size: 16px;
}

.dx-first-line-icon-row > :where(svg, i) {
  align-self: start;
  width: var(--dx-first-line-icon-size);
  height: var(--dx-first-line-icon-size);
  margin-top: calc(
    (var(--dx-first-line-height) - var(--dx-first-line-icon-size)) / 2
  );
  translate: 0 0;
}

.dx-nav-link :where(svg, i) {
  flex: 0 0 auto;
  width: 1.27em;
  height: 1.27em;
  translate: 0 0;
}

.dx-icon-alignment-specimen {
  display: flex;
  flex-wrap: wrap;
  gap: var(--dx-space-2);
}

.dx-icon-alignment-specimen .dx-icon-text {
  min-height: 36px;
  padding: 0 var(--dx-space-3);
  border: 1px solid var(--dx-border);
  color: var(--dx-text-soft);
  font-family: var(--dx-font-sans);
  font-weight: 700;
  font-size: 10px;
    letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.dx-icon-alignment-specimen .dx-icon-text[aria-current="page"] {
  border-left: 2px solid var(--dx-text);
  background: var(--dx-hover);
  color: var(--dx-text);
}

.dx-first-line-alignment-demo {
  margin-top: var(--dx-space-4);
  padding-top: var(--dx-space-4);
  border-top: 1px solid var(--dx-border);
}

.dx-first-line-alignment-row {
  display: grid;
  grid-template-columns: var(--dx-first-line-icon-size) minmax(0, 1fr);
  align-items: start;
  gap: var(--dx-space-3);
  margin-top: var(--dx-space-2);
}

.dx-first-line-alignment-row strong {
  display: block;
  line-height: var(--dx-first-line-height);
}

.dx-first-line-alignment-row p {
  margin: 0;
  color: var(--dx-text-soft);
}

.dx-input {
  width: 100%;
  padding-inline: 12px;
}

.dx-input::placeholder {
  color: var(--dx-text-faint);
}

.dx-field {
  display: grid;
  gap: 6px;
}

.dx-label {
  color: var(--dx-text-faint);
}

.dx-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 22px;
  padding: 3px 7px;
  border: 1px solid var(--dx-border);
  border-radius: var(--dx-radius-tag);
  color: var(--dx-text-soft);
  white-space: nowrap;
}

.dx-chip::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.dx-chip--success {
  border-color: var(--dx-success);
  color: var(--dx-text);
}
.dx-chip--warning {
  border-color: var(--dx-warning);
  color: var(--dx-text);
}
.dx-chip--error {
  border-color: var(--dx-error);
  color: var(--dx-text);
}
.dx-chip--info {
  border-color: var(--dx-info);
  color: var(--dx-text);
}

.dx-chip--success::before {
  background: var(--dx-success);
}
.dx-chip--warning::before {
  background: var(--dx-warning);
}
.dx-chip--error::before {
  background: var(--dx-error);
}
.dx-chip--info::before {
  background: var(--dx-info);
}

.dx-stat {
  display: grid;
  gap: var(--dx-space-2);
  min-height: 140px;
  padding: var(--dx-space-4);
  border: 1px solid var(--dx-border);
  background: var(--dx-surface-raised);
}

.dx-stat-value {
  align-self: end;
  font-family: var(--dx-font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.dx-stat-delta {
  font-family: var(--dx-font-sans);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--dx-text);
}

.dx-table-wrap {
  overflow-x: auto;
}

.dx-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.dx-table :where(th, td) {
  padding: 12px 16px;
  border-bottom: 1px solid var(--dx-border-soft);
  text-align: left;
  white-space: nowrap;
}

.dx-table td.dx-table-action-cell {
  padding-block: var(--dx-space-3);
}

.dx-table th {
  color: var(--dx-text-faint);
  font-weight: 500;
}

.dx-table tbody tr:hover {
  background: var(--dx-hover);
}

.dx-table td:not(:first-child),
.dx-table th:not(:first-child) {
  text-align: right;
}

.dx-swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--dx-space-2);
}

.dx-swatch {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--dx-space-3);
  border: 1px solid rgba(0, 0, 0, 0.14);
  color: var(--dx-midnight);
}

.dx-swatch code {
  font-family: var(--dx-font-sans);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10px;
}

.dx-code {
  overflow-x: auto;
  margin: 0;
  padding: var(--dx-space-4);
  border: 1px solid var(--dx-border);
  background: var(--dx-midnight);
  color: var(--dx-snow);
  font-family: var(--dx-font-sans);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.7;
}

.dx-rule-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--dx-border);
}

.dx-rule {
  min-height: 128px;
  padding: var(--dx-space-4);
  background: var(--dx-surface-raised);
}

.dx-rule strong {
  display: block;
  margin-bottom: var(--dx-space-2);
  font-size: 15px;
}

.dx-rule p {
  margin: 0;
  color: var(--dx-text-soft);
}

.dx-prompt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--dx-space-4);
  margin-top: var(--dx-space-4);
}

.dx-prompt-card {
  display: grid;
  align-content: start;
  gap: var(--dx-space-3);
  min-width: 0;
  padding: var(--dx-space-4);
  border: 1px solid var(--dx-border);
  background: var(--dx-surface-raised);
}

.dx-prompt-card :where(h3, p) {
  margin: 0;
}

.dx-prompt-card p,
.dx-prompt-checklist {
  color: var(--dx-text-soft);
}

.dx-prompt-code {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.dx-prompt-checklist {
  display: grid;
  gap: var(--dx-space-2);
  margin: 0;
  padding-left: 18px;
}

/* Operational shell anatomy */

.dx-shell-specimen {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  grid-template-rows: 72px minmax(360px, auto);
  min-height: 432px;
  border: 1px solid var(--dx-border);
  background: var(--dx-border);
  gap: 1px;
}

.dx-shell-zone {
  display: grid;
  grid-template-columns: 28px 18px minmax(0, 1fr);
  align-content: start;
  gap: var(--dx-space-2);
  min-width: 0;
  padding: var(--dx-space-3);
  background: var(--dx-surface-raised);
}

.dx-shell-zone > span {
  color: var(--dx-text-faint);
  font-family: var(--dx-font-sans);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.dx-shell-zone > :where(svg, i) {
  width: 15px;
  color: var(--dx-text-soft);
}

.dx-shell-zone strong {
  font-size: 13px;
  font-weight: 500;
}

.dx-shell-zone small {
  grid-column: 3;
  color: var(--dx-text-faint);
  line-height: 1.45;
}

.dx-shell-zone--topbar {
  grid-column: 1 / -1;
  align-content: center;
}

.dx-shell-zone--sidebar {
  grid-column: 1;
  grid-row: 2;
}

.dx-shell-specimen-main {
  display: grid;
  grid-template-rows: 64px minmax(0, 1fr);
  gap: 1px;
  min-width: 0;
  background: var(--dx-border);
}

.dx-shell-zone--toolbar {
  align-content: center;
}

.dx-shell-specimen-work {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 1px;
  min-width: 0;
  background: var(--dx-border);
}

.dx-shell-zone--canvas {
  align-content: center;
  min-height: 280px;
}

.dx-shell-zone--context {
  align-content: start;
}

.dx-anatomy-key {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: var(--dx-space-3);
  padding: 1px;
  background: var(--dx-border);
}

.dx-anatomy-key article {
  padding: var(--dx-space-3);
  background: var(--dx-surface-raised);
}

.dx-anatomy-key strong {
  font-size: 13px;
}

.dx-anatomy-key p {
  margin: var(--dx-space-1) 0 0;
  color: var(--dx-text-soft);
  font-size: 12px;
}

/* Dense tables */

.dx-panel-head > div:first-child {
  min-width: 0;
}

.dx-table-caption {
  display: block;
  margin-top: 2px;
  color: var(--dx-text-faint);
  font-family: var(--dx-font-sans);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dx-table-actions {
  display: flex;
  gap: var(--dx-space-2);
}

.dx-dense-table-wrap {
  max-width: 100%;
  border-bottom: 1px solid var(--dx-border);
  overscroll-behavior-inline: contain;
}

.dx-dense-table {
  min-width: 980px;
}

.dx-dense-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--dx-surface-raised);
}

.dx-dense-table :where(th, td):first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  background: var(--dx-surface-raised);
}

.dx-dense-table thead th:first-child {
  z-index: 3;
}

.dx-dense-table tbody th {
  font-weight: 500;
  text-align: left;
}

.dx-dense-table tbody tr[aria-selected="true"] > * {
  background: var(--dx-hover);
}

.dx-dense-table :where(th, td):is(:nth-child(2), :nth-child(3), :nth-child(7)) {
  text-align: left;
}

.dx-table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--dx-space-3);
  padding: var(--dx-space-2) var(--dx-space-3);
  color: var(--dx-text-faint);
  font-family: var(--dx-font-sans);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dx-table-footer span {
  display: inline-flex;
  align-items: center;
  gap: var(--dx-space-2);
}

/* Responsive priority */

.dx-priority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--dx-border);
}

.dx-priority-card {
  display: grid;
  align-content: start;
  gap: var(--dx-space-2);
  min-height: 220px;
  padding: var(--dx-space-4);
  background: var(--dx-surface-raised);
}

.dx-priority-card > span {
  color: var(--dx-text-faint);
  font-family: var(--dx-font-sans);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dx-priority-card > :where(svg, i) {
  width: 20px;
  height: 20px;
  margin-top: var(--dx-space-4);
}

.dx-priority-card h3,
.dx-state-card h3 {
  margin: 0;
  font-size: 15px;
}

.dx-priority-card p,
.dx-state-card p,
.dx-motion-card p {
  margin: 0;
  color: var(--dx-text-soft);
  line-height: 1.55;
}

.dx-responsive-rules,
.dx-motion-scale {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: var(--dx-space-3);
  border: 1px solid var(--dx-border);
}

.dx-responsive-rules > div,
.dx-motion-scale > div {
  display: grid;
  gap: var(--dx-space-1);
  padding: var(--dx-space-3);
  border-right: 1px solid var(--dx-border);
}

.dx-responsive-rules > div:last-child,
.dx-motion-scale > div:last-child {
  border-right: 0;
}

.dx-responsive-rules strong,
.dx-motion-scale strong {
  font-family: var(--dx-font-sans);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10px;
}

.dx-responsive-rules span,
.dx-motion-scale span {
  color: var(--dx-text-soft);
  font-size: 12px;
}

/* Interaction and motion */

.dx-motion-grid,
.dx-state-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--dx-border);
}

.dx-motion-card,
.dx-state-card {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: var(--dx-space-3);
  min-height: 190px;
  padding: var(--dx-space-4);
  background: var(--dx-surface-raised);
}

.dx-motion-card .dx-button,
.dx-motion-card .dx-icon-button {
  margin-top: var(--dx-space-2);
}

.dx-underline-demo {
  display: flex;
  gap: var(--dx-space-4);
  margin-top: var(--dx-space-2);
  font-family: var(--dx-font-sans);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dx-subnav-alignment-specimen {
  --dx-example-subnav-icon-size: 14px;
  align-items: stretch;
  width: 100%;
  min-height: 44px;
  border-bottom: 1px solid var(--dx-border);
}

.dx-subnav-alignment-specimen .dx-animated-underline {
  align-self: stretch;
  gap: var(--dx-space-2);
  min-height: 44px;
  padding-inline: var(--dx-space-3);
}

.dx-subnav-alignment-specimen .dx-animated-underline::after {
  bottom: 0;
}

.dx-subnav-alignment-specimen .dx-animated-underline :where(svg, i) {
  flex: 0 0 var(--dx-example-subnav-icon-size);
  width: var(--dx-example-subnav-icon-size);
  height: var(--dx-example-subnav-icon-size);
  translate: 0 0;
}

.dx-menu-motion-demo {
  position: relative;
}

.dx-menu-motion-demo :where(.dx-menu-icon-open, .dx-menu-icon-close) {
  position: absolute;
  transition:
    opacity var(--dx-motion-standard) ease,
    rotate 250ms var(--dx-ease-out);
}

.dx-menu-motion-demo .dx-menu-icon-close {
  opacity: 0;
  rotate: -90deg;
}

.dx-menu-motion-demo[aria-expanded="true"] .dx-menu-icon-open {
  opacity: 0;
  rotate: 90deg;
}

.dx-menu-motion-demo[aria-expanded="true"] .dx-menu-icon-close {
  opacity: 1;
  rotate: 0deg;
}

.dx-disclosure {
  width: 100%;
  margin-top: var(--dx-space-2);
  border-top: 1px solid var(--dx-border);
  border-bottom: 1px solid var(--dx-border);
}

.dx-disclosure summary {
  display: flex;
  align-items: center;
  gap: var(--dx-space-2);
  min-height: var(--dx-control-height-default);
  cursor: pointer;
  font-size: 13px;
  list-style: none;
}

.dx-disclosure summary::-webkit-details-marker {
  display: none;
}

.dx-disclosure summary :where(svg, i) {
  width: 12px;
  transition: rotate var(--dx-motion-standard) var(--dx-ease-out);
}

.dx-disclosure[open] summary :where(svg, i) {
  rotate: 90deg;
}

.dx-disclosure > p {
  padding: 0 0 var(--dx-space-3) 20px;
  font-family: var(--dx-font-sans);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10px;
}

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

/* Loading, empty, partial failure, and recovery */

.dx-state-card {
  min-height: 240px;
}

.dx-state-card--warning {
  border-top: 3px solid var(--dx-warning);
}

.dx-state-card--success {
  border-top: 3px solid var(--dx-success);
}

.dx-state-card-head {
  display: flex;
  align-items: center;
  gap: var(--dx-space-2);
  color: var(--dx-text-faint);
  font-family: var(--dx-font-sans);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dx-state-card-head :where(svg, i) {
  width: 14px;
}

.dx-state-card .dx-button {
  margin-top: auto;
}

.dx-skeleton-lines {
  display: grid;
  gap: var(--dx-space-2);
  width: 100%;
  margin-top: auto;
}

.dx-skeleton-lines span {
  display: block;
  height: 10px;
  background: var(--dx-surface-inset);
}

.dx-skeleton-lines span:nth-child(2) {
  width: 82%;
}

.dx-skeleton-lines span:nth-child(3) {
  width: 64%;
}

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

  .dx-shell {
    grid-template-columns: 1fr;
  }

  .dx-sidebar {
    display: none;
  }

  .dx-page-head {
    grid-template-columns: 1fr;
  }

  .dx-col-4,
  .dx-col-6,
  .dx-col-8 {
    grid-column: 1 / -1;
  }

  .dx-shell-specimen {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .dx-shell-specimen-work {
    grid-template-columns: minmax(0, 1fr) 170px;
  }

  .dx-anatomy-key,
  .dx-priority-grid {
    grid-template-columns: 1fr;
  }

  .dx-priority-card {
    min-height: auto;
  }

  .dx-prompt-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  :root {
    --dx-gutter: 16px;
    --dx-grid-gap: 12px;
  }

  .dx-topbar {
    padding: 0 96px 0 16px;
  }

  .dx-config-popover {
    width: min(264px, calc(100vw - 32px));
  }

  .dx-topbar-meta {
    display: none;
  }

  .dx-main {
    padding-top: var(--dx-space-5);
  }

  .dx-section-head {
    display: grid;
    align-items: start;
  }

  .dx-swatch-grid,
  .dx-rule-list {
    grid-template-columns: 1fr;
  }

  .dx-toolbar {
    align-items: stretch;
  }

  .dx-shell-specimen {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .dx-shell-zone--topbar,
  .dx-shell-zone--sidebar {
    grid-column: 1;
    grid-row: auto;
  }

  .dx-shell-specimen-main,
  .dx-shell-specimen-work {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .dx-shell-zone--canvas {
    min-height: 180px;
  }

  .dx-motion-grid,
  .dx-state-grid,
  .dx-responsive-rules,
  .dx-motion-scale {
    grid-template-columns: 1fr;
  }

  .dx-responsive-rules > div,
  .dx-motion-scale > div {
    border-right: 0;
    border-bottom: 1px solid var(--dx-border);
  }

  .dx-responsive-rules > div:last-child,
  .dx-motion-scale > div:last-child {
    border-bottom: 0;
  }

  .dx-panel-head,
  .dx-table-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .dx-table-actions {
    width: 100%;
  }

  .dx-table-actions .dx-button {
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.dx-theme-wipe::view-transition-new(root) {
    animation: none;
  }

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