:root {
  --bg: #0b0d10;
  --surface: #12151a;
  --surface-2: #171b21;
  --surface-3: #1d222a;
  --line: #2b313b;
  --line-soft: #21262e;
  --text: #f4f5f7;
  --muted: #a6aeb9;
  --muted-2: #7e8794;
  --gold: #f2b84b;
  --gold-light: #ffd782;
  --gold-soft: rgba(242, 184, 75, .12);
  --blue: #7cc4ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, .3);
  --radius: 16px;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -180px, rgba(242, 184, 75, .14), transparent 420px),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .015) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: 1rem;
  padding: .7rem 1rem;
  border-radius: 8px;
  background: var(--gold);
  color: #18130a;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 68px;
  padding: 0 max(22px, calc((100vw - 1200px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(11, 13, 16, .84);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -.02em;
}

.brand img {
  border-radius: 9px;
  box-shadow: 0 0 24px rgba(242, 184, 75, .14);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
}

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

.header-nav .header-download {
  padding: .5rem .85rem;
  color: #171109;
  background: var(--gold);
  border-radius: 8px;
}

.help-hero {
  max-width: 880px;
  margin: 0 auto;
  padding: 76px 24px 54px;
  text-align: center;
}

.article-icon,
.card-icon {
  display: grid;
  place-items: center;
  color: var(--gold);
  background: linear-gradient(145deg, rgba(242, 184, 75, .18), rgba(242, 184, 75, .06));
  border: 1px solid rgba(242, 184, 75, .28);
}

.eyebrow {
  display: none !important;
  margin: 0 0 .6rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 2em;
  margin-bottom: 2em;
}

h1,
h2 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -.045em;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.help-hero h1 {
  margin-bottom: 14px;
}

.help-hero .eyebrow {
  margin-bottom: 20px;
}

.hero-intro {
  max-width: 720px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 1.06rem;
}

.help-search {
  max-width: 650px;
  height: 58px;
  margin: 0 auto;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.help-search:focus-within,
.question-search:focus-within {
  border-color: rgba(242, 184, 75, .7);
  box-shadow: 0 0 0 3px rgba(242, 184, 75, .1);
}

.help-search svg,
.question-search svg {
  width: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--muted-2);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.help-search input,
.question-search input {
  min-width: 0;
  width: 100%;
  color: var(--text);
  background: transparent;
  border: 0;
  outline: 0;
}

.help-search input::placeholder,
.question-search input::placeholder {
  color: var(--muted-2);
}

.help-search kbd {
  padding: .1rem .45rem;
  color: var(--muted-2);
  background: var(--surface-3);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: .72rem;
}

.search-status,
.question-count {
  color: var(--muted-2);
  font-size: .8rem;
}

.search-status {
  margin: 10px 0 0;
}

.popular-help,
.topic-section {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.popular-help {
  padding: 28px;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  gap: 28px;
  background: linear-gradient(120deg, rgba(242, 184, 75, .09), rgba(124, 196, 255, .035));
  border: 1px solid rgba(242, 184, 75, .2);
  border-radius: var(--radius);
}

.popular-help h2 {
  margin-bottom: 0;
}

.popular-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.popular-links a {
  padding: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--text);
  background: rgba(8, 10, 13, .45);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  text-decoration: none;
  font-size: .83rem;
  font-weight: 600;
}

.popular-links a:hover {
  border-color: rgba(242, 184, 75, .5);
  transform: translateY(-1px);
}

.popular-links span {
  color: var(--gold);
}

.topic-section {
  padding: 70px 0 90px;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.help-card {
  min-height: 190px;
  padding: 21px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 15px;
  color: var(--text);
  background: rgba(18, 21, 26, .8);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.help-card:hover {
  transform: translateY(-3px);
  background: var(--surface-2);
  border-color: rgba(242, 184, 75, .42);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.card-icon .icon {
  width: 21px;
  height: 21px;
}

.card-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-copy strong {
  margin: 4px 0 8px;
  font-size: .97rem;
}

.card-copy>span {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

.card-copy small {
  margin-top: auto;
  padding-top: 16px;
  color: var(--muted-2);
  font-size: .7rem;
}

.card-arrow {
  width: 17px;
  margin-top: 12px;
  fill: none;
  stroke: var(--muted-2);
  stroke-width: 1.8;
}

.help-card:hover .card-arrow {
  stroke: var(--gold);
}

.empty-search {
  margin: 28px 0;
  padding: 22px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 12px;
}

.docs-layout {
  width: min(1240px, 100%);
  min-height: calc(100vh - 68px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 820px);
  gap: 64px;
  padding: 42px 24px 90px;
}

.docs-sidebar {
  position: sticky;
  top: 95px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.all-help-link {
  margin-bottom: 14px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
}

.all-help-link svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.topic-nav {
  display: grid;
  gap: 3px;
}

.topic-nav a {
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 9px;
  text-decoration: none;
  font-size: .78rem;
  line-height: 1.3;
}

.topic-nav a:hover {
  color: var(--text);
  background: var(--surface);
}

.topic-nav a[aria-current="page"] {
  color: var(--gold-light);
  background: var(--gold-soft);
  border-color: rgba(242, 184, 75, .2);
}

.nav-icon .icon {
  width: 16px;
  height: 16px;
}

.docs-article {
  min-width: 0;
}

.breadcrumbs {
  margin-bottom: 42px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted-2);
  font-size: .73rem;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.article-header {
  margin-bottom: 38px;
}

.article-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
}

.article-icon .icon {
  width: 25px;
  height: 25px;
}

.article-header h1 {
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.article-header>p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.article-meta {
  margin-top: 20px;
  display: flex;
  gap: 18px;
  color: var(--muted-2);
  font-size: .72rem;
}

.article-meta span+span::before {
  content: "•";
  margin-right: 18px;
  color: var(--line);
}

.question-tools {
  margin-bottom: 9px;
  padding: 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
}

.question-search {
  height: 40px;
  min-width: 240px;
  flex: 1;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 8px;
}

.question-search svg {
  width: 17px;
}

.expand-actions {
  display: flex;
  gap: 5px;
}

.expand-actions button {
  padding: .48rem .65rem;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 600;
}

.expand-actions button:hover {
  color: var(--text);
  background: var(--surface-3);
  border-color: var(--line);
}

.question-count {
  margin: 0 0 12px;
  text-align: right;
}

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

.qa-item {
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 95px;
}

.qa-item[hidden] {
  display: none;
}

.qa-item summary {
  position: relative;
  padding: 21px 42px 21px 2px;
  display: block;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.45;
}

.qa-item summary::-webkit-details-marker {
  display: none;
}

.qa-item summary:hover {
  color: var(--gold-light);
}

.qa-item summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

.qa-chevron {
  position: absolute;
  right: 7px;
  top: 22px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--muted-2);
  stroke-width: 1.8;
  transition: transform .18s ease;
}

.qa-item[open] .qa-chevron {
  transform: rotate(180deg);
  stroke: var(--gold);
}

.qa-answer {
  max-width: 735px;
  padding: 0 42px 22px 2px;
  color: var(--muted);
  font-size: .9rem;
}

.qa-answer p {
  margin: 0 0 14px;
}

.qa-answer p:last-child {
  margin-bottom: 0;
}

.qa-answer ul,
.qa-answer ol {
  margin: 0 0 16px;
  padding-left: 1.35rem;
}

.qa-answer li {
  margin: 7px 0;
  padding-left: .2rem;
}

.help-example {
  margin: 17px 0;
  padding: 16px 18px;
  color: var(--muted);
  background: rgba(124, 196, 255, .045);
  border: 1px solid rgba(124, 196, 255, .14);
  border-left: 3px solid rgba(242, 184, 75, .65);
  border-radius: 9px;
}

.help-example>strong:first-child {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.help-example pre {
  margin: 10px 0 14px;
  padding: 13px 15px;
  overflow-x: auto;
  color: #dfe7f0;
  background: rgba(4, 6, 8, .58);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  line-height: 1.7;
}

.help-example pre code {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font-size: .82rem;
}

.qa-answer strong {
  color: #d9dde3;
  font-weight: 600;
}

.qa-answer code {
  padding: .15rem .36rem;
  color: var(--gold-light);
  background: rgba(242, 184, 75, .08);
  border: 1px solid rgba(242, 184, 75, .14);
  border-radius: 4px;
  font-size: .84em;
}

.qa-item:target {
  margin-inline: -12px;
  padding-inline: 12px;
  background: linear-gradient(90deg, rgba(242, 184, 75, .08), transparent);
  border-radius: 8px;
}

.topic-pager {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pager-link {
  min-height: 86px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  text-decoration: none;
}

.pager-link:hover {
  border-color: rgba(242, 184, 75, .38);
}

.pager-link small {
  margin-bottom: 4px;
  color: var(--muted-2);
  font-size: .68rem;
}

.pager-link strong {
  color: var(--muted);
  font-size: .82rem;
}

.pager-link:hover strong {
  color: var(--gold-light);
}

.pager-next {
  grid-column: 2;
  text-align: right;
}

.help-footer {
  padding: 30px max(24px, calc((100vw - 1160px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--muted-2);
  background: #090b0d;
  border-top: 1px solid var(--line-soft);
  font-size: .73rem;
}

.help-footer p {
  margin: 0;
}

.help-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.help-footer a {
  color: var(--muted);
  text-decoration: none;
}

.help-footer a:hover {
  color: var(--gold);
}


.help-diagram {
  margin: 0 0 34px;
  padding: 20px 22px 16px;
  /* background: linear-gradient(145deg, rgba(23,27,33,.95), rgba(12,15,19,.95)); */
  /* border: 1px solid var(--line); border-radius: 15px; overflow: hidden; */
}

.help-diagram-heading {
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.help-diagram-heading span {
  color: var(--gold);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.help-diagram-heading strong {
  font-size: .88rem;
}

.help-diagram figcaption {
  margin-top: 5px;
  color: var(--muted-2);
  font-size: .7rem;
  line-height: 1.5;
}

.workflow-svg {
  width: 100%;
  height: auto;
  display: block;
}

.workflow-svg .diagram-node {
  fill: #12171d;
  stroke: #303844;
  stroke-width: 1.4;
}

.workflow-svg .diagram-node.accent,
.workflow-svg .diagram-action.accent {
  fill: rgba(242, 184, 75, .09);
  stroke: rgba(242, 184, 75, .55);
}

.workflow-svg .diagram-flow {
  fill: none;
  stroke: rgba(242, 184, 75, .72);
  stroke-width: 2;
}

.workflow-svg .diagram-flow.secondary {
  stroke: rgba(124, 196, 255, .62);
}

.workflow-svg .diagram-axis {
  fill: none;
  stroke: #46505e;
  stroke-width: 3;
  stroke-linecap: round;
}

.workflow-svg .diagram-range {
  fill: rgba(242, 184, 75, .08);
  stroke: rgba(242, 184, 75, .48);
  stroke-width: 1.4;
}

.workflow-svg .diagram-handle {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
}

.workflow-svg .diagram-events circle {
  fill: var(--gold);
  stroke: #0d1014;
  stroke-width: 3;
}

.workflow-svg .diagram-icon {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(.8);
}

.workflow-svg text {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.workflow-svg .diagram-title {
  fill: #e9ecf0;
  font-size: 13px;
  font-weight: 650;
  text-anchor: middle;
}

.workflow-svg .diagram-title.left,
.workflow-svg .diagram-copy.left,
.workflow-svg .diagram-value.left,
.workflow-svg .diagram-kicker.left {
  text-anchor: start;
}

.workflow-svg .diagram-copy {
  fill: #8f99a6;
  font-size: 11px;
  text-anchor: middle;
}

.workflow-svg .diagram-label {
  fill: #aab2bd;
  font-size: 11px;
  font-weight: 600;
  text-anchor: middle;
}

.workflow-svg .diagram-kicker {
  fill: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-anchor: middle;
}

.workflow-svg .diagram-value {
  fill: #f4f5f7;
  font-size: 21px;
  font-weight: 700;
  text-anchor: middle;
}

.workflow-svg .diagram-chip {
  fill: rgba(124, 196, 255, .08);
  stroke: rgba(124, 196, 255, .4);
}

.workflow-svg .diagram-chip-text {
  fill: #b9dcf8;
  font-size: 11px;
  font-weight: 600;
  text-anchor: middle;
}

.workflow-svg .diagram-action {
  fill: #171d24;
  stroke: #3a4451;
}

.workflow-svg .diagram-bar.gold,
.workflow-svg .diagram-dot.gold,
.workflow-svg .diagram-track.gold {
  fill: #f2b84b;
}

.workflow-svg .diagram-bar.blue,
.workflow-svg .diagram-dot.blue,
.workflow-svg .diagram-track.blue {
  fill: #65b8f5;
}

.workflow-svg .diagram-bar.purple,
.workflow-svg .diagram-dot.purple,
.workflow-svg .diagram-track.purple {
  fill: #ad83e8;
}

.compact-diagram {
  padding-bottom: 14px;
}

.compact-diagram .workflow-svg {
  max-height: 250px;
}

.workflow-svg .diagram-candidate-dots circle {
  fill: #566170;
}

.workflow-svg .diagram-chip.active {
  fill: rgba(242, 184, 75, .12);
  stroke: rgba(242, 184, 75, .6);
}

.workflow-svg .diagram-weight-track {
  fill: #252c35;
}

.workflow-svg .diagram-weight-fill.gold,
.workflow-svg .diagram-sequence.gold {
  fill: #f2b84b;
}

.workflow-svg .diagram-weight-fill.blue,
.workflow-svg .diagram-sequence.blue {
  fill: #65b8f5;
}

.workflow-svg .diagram-weight-fill.purple,
.workflow-svg .diagram-sequence.purple {
  fill: #ad83e8;
}

.workflow-svg .diagram-sequence-text {
  fill: #101318;
  font-size: 10px;
  font-weight: 800;
  text-anchor: middle;
}

.workflow-svg .diagram-energy-line {
  fill: none;
  stroke: rgba(242, 184, 75, .7);
  stroke-width: 2;
  stroke-dasharray: 4 4;
}

.workflow-svg .diagram-mix-junction {
  fill: #12171d;
  stroke: rgba(124, 196, 255, .65);
  stroke-width: 1.5;
}

.workflow-svg .diagram-status-dot {
  fill: var(--gold);
}

.workflow-svg .diagram-metric-axis {
  stroke: #414b58;
  stroke-width: 2;
}

.workflow-svg .diagram-histogram rect {
  fill: rgba(124, 196, 255, .2);
}

.workflow-svg .diagram-histogram-area {
  fill: rgba(124, 196, 255, .16);
  stroke: rgba(124, 196, 255, .3);
  stroke-width: 1;
}

.workflow-svg .diagram-selected-band {
  fill: rgba(242, 184, 75, .1);
  stroke: rgba(242, 184, 75, .55);
}

.workflow-svg .diagram-range-handle {
  stroke: var(--gold);
  stroke-width: 2.4;
  stroke-linecap: round;
}

.workflow-svg .diagram-range-knob {
  fill: #101318;
  stroke: var(--gold);
  stroke-width: 2.4;
}

.workflow-svg .diagram-window {
  fill: #0d1116;
  stroke: #303844;
  stroke-width: 1.5;
}

.workflow-svg .diagram-toolbar {
  fill: #151a21;
  stroke: #303844;
  stroke-width: 1;
}

.workflow-svg .diagram-pane {
  fill: #11161c;
  stroke: #2b343f;
  stroke-width: 1.2;
}

.workflow-svg .diagram-ui-row {
  fill: #151b22;
  stroke: #2b343f;
  stroke-width: 1;
}

.workflow-svg .diagram-ui-row.subtle {
  fill: #10151a;
}

.workflow-svg .diagram-ui-row.selected {
  fill: rgba(242, 184, 75, .08);
  stroke: rgba(242, 184, 75, .46);
}

.workflow-svg .diagram-ui-divider {
  stroke: #303844;
  stroke-width: 1.2;
}

.workflow-svg .diagram-ui-title {
  fill: #edf0f4;
  font-size: 12px;
  font-weight: 700;
}

.workflow-svg .diagram-ui-label {
  fill: #b9c1cb;
  font-size: 10px;
  font-weight: 650;
}

.workflow-svg .diagram-ui-copy {
  fill: #84909e;
  font-size: 9.5px;
}

.workflow-svg .diagram-ui-muted {
  fill: #66717f;
  font-size: 9px;
}

.workflow-svg .diagram-ui-button {
  fill: #1b222b;
  stroke: #3a4552;
  stroke-width: 1;
}

.workflow-svg .diagram-ui-button.good {
  fill: rgba(74, 190, 124, .11);
  stroke: rgba(74, 190, 124, .58);
}

.workflow-svg .diagram-ui-button.warn {
  fill: rgba(242, 184, 75, .1);
  stroke: rgba(242, 184, 75, .56);
}

.workflow-svg .diagram-ui-button.danger {
  fill: rgba(238, 103, 103, .1);
  stroke: rgba(238, 103, 103, .55);
}

.workflow-svg .diagram-ui-button-text {
  fill: #d9dee5;
  font-size: 9px;
  font-weight: 700;
  text-anchor: middle;
}

.workflow-svg .diagram-ui-button-text.good {
  fill: #91ddb0;
}

.workflow-svg .diagram-ui-button-text.warn {
  fill: #ffd782;
}

.workflow-svg .diagram-ui-button-text.danger {
  fill: #f1a0a0;
}

.workflow-svg .diagram-status-present {
  fill: #78d69d;
  font-size: 12px;
  font-weight: 800;
}

.workflow-svg .diagram-status-copy {
  fill: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.workflow-svg .diagram-status-orphan {
  fill: #ed8585;
  font-size: 12px;
  font-weight: 800;
}

.workflow-svg .diagram-album-cover {
  stroke: rgba(255, 255, 255, .13);
  stroke-width: 1;
}

.workflow-svg .diagram-check {
  fill: #10151a;
  stroke: #657180;
  stroke-width: 1;
}

.workflow-svg .diagram-check.active {
  fill: rgba(242, 184, 75, .18);
  stroke: var(--gold);
}

.workflow-svg .diagram-check-mark {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.help-table-wrap {
  max-width: 100%;
  margin: 18px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.help-table {
  width: 100%;
  min-width: 590px;
  border-collapse: collapse;
  background: rgba(7, 9, 12, .28);
  font-size: .78rem;
}

.help-table caption {
  padding: 11px 13px;
  color: var(--gold-light);
  background: rgba(242, 184, 75, .06);
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: .75rem;
  font-weight: 700;
}

.help-table th,
.help-table td {
  padding: 10px 13px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}

.help-table th {
  color: #d8dde4;
  background: rgba(255, 255, 255, .025);
  font-size: .68rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.help-table td {
  color: var(--muted);
}

.help-table tr:last-child td {
  border-bottom: 0;
}

.help-table code {
  white-space: nowrap;
}

@media (max-width: 950px) {
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .popular-help {
    grid-template-columns: 1fr;
  }

  .docs-layout {
    grid-template-columns: 215px minmax(0, 1fr);
    gap: 30px;
  }
}

@media (max-width: 720px) {
  .help-diagram {
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .help-diagram-heading,
  .help-diagram figcaption {
    position: sticky;
    left: 0;
    width: calc(100vw - 82px);
    max-width: calc(100vw - 82px);
  }

  .help-diagram-heading strong {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .workflow-svg {
    width: 720px;
    max-width: none;
  }

  .site-header {
    min-height: 62px;
    padding-inline: 16px;
  }

  .header-nav {
    gap: 13px;
  }

  .header-nav a {
    font-size: .78rem;
  }

  .header-nav .header-download {
    display: none;
  }

  .help-hero {
    padding: 58px 20px 42px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .popular-help,
  .topic-section {
    width: min(100% - 32px, 1160px);
  }

  .popular-help {
    padding: 21px;
  }

  .popular-links {
    grid-template-columns: 1fr;
  }

  .topic-section {
    padding: 50px 0 70px;
  }

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

  .help-card {
    min-height: 0;
  }

  .docs-layout {
    display: block;
    padding: 26px 18px 70px;
  }

  .docs-sidebar {
    position: static;
    max-height: none;
    margin-bottom: 28px;
  }

  .topic-nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }

  .topic-nav a {
    min-width: max-content;
  }

  .breadcrumbs {
    margin-bottom: 30px;
  }

  .article-header h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.3rem);
    overflow-wrap: anywhere;
  }

  .question-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .question-search {
    min-width: 0;
  }

  .expand-actions {
    justify-content: flex-end;
  }

  .qa-item summary {
    padding-block: 18px;
    font-size: .9rem;
  }

  .qa-chevron {
    top: 19px;
  }

  .topic-pager {
    grid-template-columns: 1fr;
  }

  .pager-next {
    grid-column: 1;
  }

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

@media (max-width: 430px) {
  .brand span {
    display: none;
  }

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

  .help-search kbd {
    display: none;
  }

  .article-meta {
    gap: 9px;
    flex-direction: column;
  }

  .article-meta span+span::before {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

@media print {

  .site-header,
  .docs-sidebar,
  .question-tools,
  .topic-pager,
  .help-footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .docs-layout {
    display: block;
    padding: 0;
  }

  .qa-answer,
  .article-header>p:not(.eyebrow) {
    color: #333;
  }
}

/* Getting Started: static annotated interface roadmap */
.ui-roadmap {
  margin: 48px 0 42px;
}

.roadmap-intro {
  margin-bottom: 22px;
}

.roadmap-intro h2,
.roadmap-section-heading h3 {
  margin: 5px 0 9px;
  color: var(--text);
  letter-spacing: -.025em;
  line-height: 1.15;
}

.roadmap-intro h2 {
  font-size: clamp(1.55rem, 4vw, 2rem);
  margin-top: 1em;
  margin-bottom: 1em;
}

.roadmap-intro>p:last-child,
.roadmap-section-heading>p:last-child {
  max-width: 735px;
  margin: 0;
  color: var(--muted);
  font-size: .91rem;
}

.roadmap-section-heading {
  margin: 45px 0 17px;
}

.roadmap-section-heading h3 {
  font-size: clamp(1.3rem, 3.5vw, 1.65rem);
}

.roadmap-figure {
  margin-bottom: 18px;
  padding: 18px;
}

.roadmap-figure figcaption a {
  color: var(--blue);
  text-underline-offset: 3px;
}

.roadmap-key {
  margin: 17px 0 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.roadmap-key a {
  min-width: 0;
  padding: 13px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 1px 9px;
  color: inherit;
  background: rgba(18, 21, 26, .7);
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  text-decoration: none;
  transition: border-color .18s, background .18s;
}

.roadmap-key a:hover {
  background: var(--surface-2);
  border-color: rgba(242, 184, 75, .38);
}

.roadmap-key a>span {
  grid-row: 1 / span 2;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #161109;
  background: var(--gold);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
}

.roadmap-key strong {
  color: var(--text);
  font-size: .78rem;
  line-height: 1.35;
}

.roadmap-key small {
  color: var(--muted-2);
  font-size: .69rem;
  line-height: 1.45;
}

.workflow-svg .ui-map-window {
  fill: #0b0e12;
  stroke: #3a424d;
  stroke-width: 1.4;
}

.workflow-svg .ui-map-titlebar {
  fill: #171b21;
  stroke: #333b46;
  stroke-width: 1;
}

.workflow-svg .ui-map-toolbar {
  fill: #13171c;
  stroke: #2e3640;
  stroke-width: 1;
}

.workflow-svg .ui-map-player {
  fill: #10151a;
  stroke: #303844;
  stroke-width: 1;
}

.workflow-svg .ui-map-panel {
  fill: #0f1318;
  stroke: #303844;
  stroke-width: 1;
}

.workflow-svg .ui-map-pane {
  fill: #0d1116;
  stroke: #2e3741;
  stroke-width: 1;
}

.workflow-svg .ui-map-panel-head {
  fill: #171c22;
  stroke: #303844;
  stroke-width: 1;
}

.workflow-svg .ui-map-statusbar {
  fill: #171b21;
  stroke: #303844;
  stroke-width: .8;
}

.workflow-svg .ui-map-row {
  fill: #141a20;
  stroke: #28313b;
  stroke-width: .9;
}

.workflow-svg .ui-map-row.active {
  fill: rgba(242, 184, 75, .08);
  stroke: rgba(242, 184, 75, .45);
}

.workflow-svg .ui-map-search {
  fill: #0c1014;
  stroke: #3a4450;
  stroke-width: 1;
}

.workflow-svg .ui-map-track {
  fill: #343d48;
}

.workflow-svg .ui-map-track.active {
  fill: var(--gold);
}

.workflow-svg .ui-map-volume {
  fill: #323a44;
}

.workflow-svg .ui-map-volume-fill {
  fill: #75bff5;
}

.workflow-svg .ui-map-play {
  fill: rgba(242, 184, 75, .14);
  stroke: rgba(242, 184, 75, .72);
  stroke-width: 1.2;
}

.workflow-svg .ui-map-play-icon {
  fill: var(--gold);
  stroke: none;
}

.workflow-svg .ui-map-title {
  fill: #f1f3f6;
  font-size: 12px;
  font-weight: 700;
  text-anchor: middle;
}

.workflow-svg .ui-map-title.left,
.workflow-svg .ui-map-label.left,
.workflow-svg .ui-map-copy.left,
.workflow-svg .ui-map-tiny.left,
.workflow-svg .ui-map-kicker.left,
.workflow-svg .ui-map-callout-title.left,
.workflow-svg .ui-map-callout-copy.left {
  text-anchor: start;
}

.workflow-svg .ui-map-label {
  fill: #d8dde4;
  font-size: 10px;
  font-weight: 650;
  text-anchor: middle;
}

.workflow-svg .ui-map-copy {
  fill: #8c97a5;
  font-size: 9px;
  text-anchor: middle;
}

.workflow-svg .ui-map-tiny {
  fill: #72808f;
  font-size: 8px;
  text-anchor: middle;
}

.workflow-svg .ui-map-kicker {
  fill: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-anchor: middle;
}

.workflow-svg .ui-map-toolbar-label {
  fill: #7c8794;
  font-size: 6.5px;
  font-weight: 700;
  text-anchor: middle;
}

.workflow-svg .ui-map-star {
  fill: #ffd06d;
  font-size: 10px;
  font-weight: 700;
}

.workflow-svg .ui-map-tree-arrow {
  fill: #7f8a97;
  font-size: 12px;
}

.workflow-svg .ui-map-divider {
  fill: none;
  stroke: #2c343e;
  stroke-width: 1;
}

.workflow-svg .ui-map-wave {
  fill: none;
  stroke: #78bff2;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-svg .ui-map-art-mark {
  fill: none;
  stroke: rgba(255, 255, 255, .66);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-svg .ui-map-art-a {
  fill: #563ca2;
  stroke: rgba(255, 255, 255, .12);
}

.workflow-svg .ui-map-art-b {
  fill: #9f4a3d;
  stroke: rgba(255, 255, 255, .12);
}

.workflow-svg .ui-map-art-c {
  fill: #276c72;
  stroke: rgba(255, 255, 255, .12);
}

.workflow-svg .ui-map-chip {
  fill: rgba(124, 196, 255, .065);
  stroke: rgba(124, 196, 255, .32);
  stroke-width: .9;
}

.workflow-svg .ui-map-chip.active {
  fill: rgba(242, 184, 75, .11);
  stroke: rgba(242, 184, 75, .58);
}

.workflow-svg .ui-map-chip-text {
  fill: #b9d9f4;
  font-size: 8.3px;
  font-weight: 650;
  text-anchor: middle;
}

.workflow-svg .ui-map-control {
  fill: #1a2129;
  stroke: #3a4552;
  stroke-width: .9;
}

.workflow-svg .ui-map-control.active {
  fill: rgba(242, 184, 75, .12);
  stroke: rgba(242, 184, 75, .58);
}

.workflow-svg .ui-map-button-text {
  fill: #e0e5eb;
  font-size: 8px;
  font-weight: 700;
  text-anchor: middle;
}

.workflow-svg .ui-map-control-icon {
  fill: none;
  stroke: #b8c1cc;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-svg .ui-map-status.good {
  fill: #65ce90;
}

.workflow-svg .ui-map-muted-dot {
  fill: #596471;
}

.workflow-svg .ui-map-search-icon {
  fill: none;
  stroke: #83909f;
  stroke-width: 1.2;
}

.workflow-svg .ui-map-weight {
  opacity: .92;
}

.workflow-svg .ui-map-weight.gold {
  fill: #f2b84b;
}

.workflow-svg .ui-map-weight.blue {
  fill: #65b8f5;
}

.workflow-svg .ui-map-weight.purple {
  fill: #ad83e8;
}

.workflow-svg .ui-map-knob {
  fill: #161c22;
  stroke: #4b5664;
  stroke-width: 1.3;
}

.workflow-svg .ui-map-knob.small {
  fill: #11161c;
  stroke: #4b5664;
}

.workflow-svg .ui-map-knob-mark {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
}

.workflow-svg .ui-map-knob-value {
  fill: #dce2e9;
  font-size: 6.7px;
  font-weight: 700;
  text-anchor: middle;
}

.workflow-svg .ui-map-eq-bars line {
  stroke: #46515e;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.workflow-svg .ui-map-eq-bars circle {
  fill: #11161c;
  stroke: var(--gold);
  stroke-width: 1.7;
}

.workflow-svg .ui-map-rating-buttons rect {
  fill: #181f27;
  stroke: #394452;
  stroke-width: .9;
}

.workflow-svg .ui-map-rating-buttons rect.active {
  fill: rgba(242, 184, 75, .14);
  stroke: rgba(242, 184, 75, .68);
}

.workflow-svg .ui-map-rating-buttons text {
  fill: #cbd2da;
  font-size: 9px;
  font-weight: 700;
  text-anchor: middle;
}

.workflow-svg .ui-map-controls rect,
.workflow-svg .ui-map-mini-buttons rect {
  fill: #171d24;
  stroke: #35404c;
  stroke-width: .8;
}

.workflow-svg .ui-map-controls rect.active,
.workflow-svg .ui-map-mini-buttons rect.active {
  fill: rgba(242, 184, 75, .12);
  stroke: rgba(242, 184, 75, .58);
}

.workflow-svg .ui-map-controls path,
.workflow-svg .ui-map-controls line,
.workflow-svg .ui-map-mini-buttons path {
  fill: none;
  stroke: #aeb8c4;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-svg .ui-map-annotation rect {
  fill: #12171d;
  stroke: #394450;
  stroke-width: 1;
}

.workflow-svg .ui-map-annotation circle {
  fill: var(--gold);
  stroke: #18130a;
  stroke-width: 1.3;
}

.workflow-svg .ui-map-number {
  fill: #18130a;
  font-size: 9px;
  font-weight: 900;
  text-anchor: middle;
}

.workflow-svg .ui-map-callout-title {
  fill: #f0f3f6;
  font-size: 9.4px;
  font-weight: 750;
}

.workflow-svg .ui-map-callout-copy {
  fill: #9da7b3;
  font-size: 7.5px;
}

.workflow-svg .ui-map-line {
  fill: none;
  stroke: rgba(242, 184, 75, .7);
  stroke-width: 1.25;
  stroke-linecap: round;
}

@media (max-width: 720px) {
  .roadmap-key {
    grid-template-columns: 1fr;
  }

  .roadmap-key a {
    padding: 12px;
  }

  .roadmap-figure {
    padding: 14px;
  }

  .roadmap-overview .roadmap-overview-svg {
    width: 760px;
  }

  .roadmap-focus .roadmap-focus-svg {
    width: 720px;
  }
}

@media print {
  .roadmap-key {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap-figure {
    break-inside: avoid;
  }

  .roadmap-overview .roadmap-overview-svg,
  .roadmap-focus .roadmap-focus-svg {
    width: 100%;
  }
}


/* Screenshot-aligned TrackRate toolbar and player details */
.workflow-svg .ui-map-lucide {
  fill: none;
  stroke: #7894a8;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-svg .ui-map-lucide.active {
  stroke: #18c7a8;
}

.workflow-svg .ui-map-lucide.small {
  stroke: #8ba6b8;
  stroke-width: 1.7;
}

.workflow-svg .ui-map-icon-active {
  fill: rgba(18, 199, 168, .08);
  stroke: rgba(18, 199, 168, .18);
  stroke-width: 1;
}

.workflow-svg .ui-map-toolbar-divider {
  fill: none;
  stroke: #40505e;
  stroke-width: 1;
  stroke-dasharray: 2 3;
}

.workflow-svg .ui-map-now-playing-icon {
  fill: rgba(29, 187, 202, .08);
  stroke: #57a4bb;
  stroke-width: 1.4;
}

.workflow-svg .ui-map-now-playing-wave {
  fill: none;
  stroke: #57a4bb;
  stroke-width: 1.1;
  stroke-linecap: round;
}

.workflow-svg .ui-map-rating-pill {
  fill: #35e35f;
  stroke: rgba(255, 255, 255, .12);
  stroke-width: .6;
}

.workflow-svg .ui-map-rating-text {
  fill: #07150a;
  font-size: 8px;
  font-weight: 850;
  text-anchor: middle;
}

.workflow-svg .ui-map-visualizer-bars rect {
  fill: #28c7a7;
  opacity: .9;
}

/* Help hub: guide-wide search and interface roadmap */
.help-hub .help-hero {
  max-width: 980px;
  padding-bottom: 34px;
}

.help-hub .ui-roadmap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 100px;
}

.help-hub .ui-roadmap .roadmap-intro {
  max-width: 850px;
}

.workflow-svg .ui-map-source-dot {
  fill: #5c6876;
  opacity: .38;
}

.workflow-svg .ui-map-source-dot.active {
  fill: #52c8ff;
  opacity: 1;
  filter: drop-shadow(0 0 5px rgba(82, 200, 255, .95));
}

.workflow-svg .ui-map-weight.green {
  fill: #21db65;
}

.help-search-results {
  max-width: 760px;
  margin: 18px auto 0;
  padding: 10px;
  background: rgba(12, 15, 19, .98);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .48);
  text-align: left;
}

.search-result-list {
  display: grid;
  gap: 4px;
}

.search-result {
  padding: 13px 14px;
  display: grid;
  gap: 4px;
  color: inherit;
  border: 1px solid transparent;
  border-radius: 9px;
  text-decoration: none;
}

.search-result:hover,
.search-result:focus-visible {
  background: var(--surface-2);
  border-color: rgba(242, 184, 75, .35);
  outline: none;
}

.search-result strong {
  color: var(--text);
  font-size: .9rem;
  line-height: 1.35;
}

.search-result small {
  color: var(--gold);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.search-result span {
  color: var(--muted);
  display: -webkit-box;
  overflow: hidden;
  font-size: .76rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.help-search-results .empty-search {
  margin: 0;
}

.source-note {
  margin: 0 0 28px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  background: rgba(82, 200, 255, .055);
  border: 1px solid rgba(82, 200, 255, .23);
  border-radius: 12px;
}

.source-note-dot {
  width: 9px;
  height: 9px;
  background: #52c8ff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(82, 200, 255, .95);
}

.source-note strong {
  display: block;
  margin-bottom: 2px;
  font-size: .84rem;
}

.source-note p {
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.55;
}

.source-note>a {
  display: grid;
  justify-items: end;
  gap: 4px;
  color: var(--blue);
  font-size: .68rem;
  text-decoration: none;
  white-space: nowrap;
}

.source-note-status {
  min-width: 65px;
  padding: 3px 8px;
  color: #9edfff;
  background: #171b21;
  border: 1px solid #3b4551;
  border-radius: 5px;
  font-size: .68rem;
  font-weight: 800;
  text-align: center;
}

.source-note-status.wide {
  min-width: 150px;
}

@media (max-width: 640px) {
  .help-hub .ui-roadmap {
    width: min(100% - 28px, 1180px);
  }

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

  .source-note>a {
    grid-column: 2;
    justify-items: start;
  }
}


/* Exact Library focused-map details */
.roadmap-library-svg .ui-map-mini-buttons circle {
  fill: none;
  stroke: #aeb8c4;
  stroke-width: 1.15;
}

.roadmap-library-svg .ui-map-toolbar-divider-dots circle {
  fill: #667484;
}

.roadmap-library-svg .ui-map-header-badges circle {
  fill: var(--gold);
  stroke: #18130a;
  stroke-width: 1;
}

.roadmap-library-svg .ui-map-header-badges text {
  fill: #18130a;
  font-size: 6.6px;
  font-weight: 900;
  text-anchor: middle;
}

.roadmap-library-svg .ui-map-search-popup {
  fill: #151b22;
  stroke: #394552;
  stroke-width: 1;
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, .45));
}

.roadmap-library-svg .ui-map-search-help {
  fill: #8d99a7;
  font-size: 10px;
  text-anchor: middle;
}

.roadmap-library-svg .ui-map-track-count {
  fill: #7f8b99;
  font: 8px "Courier New", monospace;
}

.roadmap-library-svg .ui-map-track-metric {
  fill: #8491a0;
  font: 8px "Courier New", monospace;
  text-anchor: middle;
}

.roadmap-library-svg .ui-map-playlist-star {
  fill: #8f99a5;
  font-size: 12px;
  text-anchor: middle;
}

.roadmap-library-svg .ui-map-track-rating {
  fill: #59636f;
}

.roadmap-library-svg .ui-map-track-rating.rating-7 {
  fill: #d8e92e;
}

.roadmap-library-svg .ui-map-track-rating.rating-9 {
  fill: #35e35f;
}

.roadmap-library-svg .ui-map-track-rating-num {
  fill: #d7dde4;
  font-size: 8px;
  font-weight: 700;
  text-anchor: middle;
}

.roadmap-library-svg .ui-map-library-callouts .ui-map-callout-copy {
  font-size: 7.25px;
}


/* Exact Playlist, Mixer, EQ, and Hashtag focused-map details */
.roadmap-exact-svg .ui-map-header-badges circle {
  fill: var(--gold);
  stroke: #18130a;
  stroke-width: 1;
}

.roadmap-exact-svg .ui-map-header-badges text {
  fill: #18130a;
  font-size: 6.4px;
  font-weight: 900;
  text-anchor: middle;
}

.roadmap-exact-svg .ui-map-exact-button rect,
.roadmap-exact-svg .ui-map-inline-button rect,
.roadmap-exact-svg .ui-map-inline-button circle {
  fill: #171d24;
  stroke: #35404c;
  stroke-width: .8;
}

.roadmap-exact-svg .ui-map-exact-button.is-active rect {
  fill: rgba(242, 184, 75, .12);
  stroke: rgba(242, 184, 75, .58);
}

.roadmap-exact-svg .ui-map-exact-button path,
.roadmap-exact-svg .ui-map-inline-button path {
  fill: none;
  stroke: #aeb8c4;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.roadmap-exact-svg .ui-map-inline-button path {
  stroke-width: 1.25;
}

.roadmap-exact-svg .ui-map-inline-button circle+path {
  fill: #aeb8c4;
  stroke: none;
}

.roadmap-exact-svg .ui-map-toolbar-divider-dots circle {
  fill: #667484;
}

.roadmap-exact-svg .ui-map-source-note {
  fill: #79bddd;
  font-size: 7.2px;
}

.roadmap-exact-svg .ui-map-search-popup {
  fill: #151b22;
  stroke: #394552;
  stroke-width: 1;
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, .45));
}

.roadmap-exact-svg .ui-map-subhead {
  fill: #171e26;
  stroke: #313c48;
  stroke-width: .8;
}

.roadmap-exact-svg .ui-map-rating-bar {
  fill: #59636f;
}

.roadmap-exact-svg .ui-map-rating-bar.rating-7 {
  fill: #d8e92e;
}

.roadmap-exact-svg .ui-map-rating-bar.rating-8 {
  fill: #78e448;
}

.roadmap-exact-svg .ui-map-rating-bar.rating-9 {
  fill: #35e35f;
}

.roadmap-exact-svg .ui-map-track-count,
.roadmap-exact-svg .ui-map-track-metric {
  fill: #8491a0;
  font: 8px "Courier New", monospace;
}

.roadmap-exact-svg .ui-map-track-metric,
.roadmap-exact-svg .ui-map-track-rating-num {
  text-anchor: middle;
}

.roadmap-exact-svg .ui-map-track-rating-num {
  fill: #d7dde4;
  font-size: 8px;
  font-weight: 700;
}

.roadmap-exact-svg .ui-map-art-strip rect:nth-child(1) {
  fill: #563ca2;
}

.roadmap-exact-svg .ui-map-art-strip rect:nth-child(2) {
  fill: #9f4a3d;
}

.roadmap-exact-svg .ui-map-art-strip rect:nth-child(3) {
  fill: #276c72;
}

.roadmap-exact-svg .ui-map-close-x {
  fill: #8e99a6;
  font-size: 12px;
  font-weight: 800;
  text-anchor: middle;
}

.roadmap-exact-svg .ui-map-drain.good {
  fill: #36df65;
}

.roadmap-exact-svg .ui-map-drain.warn {
  fill: #e7d733;
}

.roadmap-exact-svg .ui-map-grip {
  fill: #6f7b88;
  font-size: 13px;
}

.roadmap-exact-svg .ui-map-viz-swatch {
  stroke: #506070;
  stroke-width: 1;
}

.roadmap-eq-svg .ui-map-eq-curve {
  fill: none;
  stroke: rgba(82, 200, 255, .65);
  stroke-width: 1.5;
}

.roadmap-eq-svg .ui-map-fx-knobs circle {
  fill: #161c22;
  stroke: #4b5664;
  stroke-width: 1.2;
}

.roadmap-eq-svg .ui-map-fx-knobs text {
  fill: #758291;
  font-size: 5.8px;
  text-anchor: middle;
}

.roadmap-eq-svg .ui-map-preset {
  fill: rgba(124, 196, 255, .065);
  stroke: rgba(124, 196, 255, .32);
  stroke-width: .7;
}

.roadmap-eq-svg .ui-map-preset.active {
  fill: rgba(242, 184, 75, .13);
  stroke: rgba(242, 184, 75, .62);
}

.roadmap-eq-svg .ui-map-preset-text {
  fill: #a9bfce;
  font-size: 5.2px;
  text-anchor: middle;
}

.roadmap-tags-svg .ui-map-rating-choice,
.roadmap-tags-svg .ui-map-tag-cell {
  fill: #181f27;
  stroke: #394452;
  stroke-width: .9;
}

.roadmap-tags-svg .ui-map-rating-choice.active,
.roadmap-tags-svg .ui-map-tag-cell.active {
  fill: rgba(242, 184, 75, .14);
  stroke: rgba(242, 184, 75, .68);
}

.roadmap-exact-svg .ui-map-callout-copy {
  font-size: 7.1px;
}


/* Workspace explanations and Help section directory */
.help-browse-prompt {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
  text-align: center;
}

.help-browse-prompt a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.help-browse-prompt a:hover,
.help-browse-prompt a:focus-visible {
  text-decoration: underline;
}

.workspace-focus-copy {
  margin: 0 0 18px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 270px);
  gap: 26px;
  background: linear-gradient(135deg, rgba(20, 25, 31, .96), rgba(13, 17, 22, .96));
  border: 1px solid var(--line);
  border-radius: 14px;
}

.workspace-focus-prose h4 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1rem;
}

.workspace-focus-prose p {
  margin: 0 0 11px;
  color: var(--muted);
  font-size: .81rem;
  line-height: 1.68;
}

.workspace-focus-prose p:last-child {
  margin-bottom: 0;
}

.workspace-focus-prose code {
  padding: .08em .32em;
  color: #c8e8ff;
  background: rgba(82, 200, 255, .08);
  border: 1px solid rgba(82, 200, 255, .18);
  border-radius: 4px;
}

.focus-guide-links {
  align-self: start;
  display: grid;
  gap: 7px;
}

.focus-guide-links>span {
  margin-bottom: 2px;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.focus-guide-links a {
  padding: 9px 11px;
  color: #dce4ec;
  background: rgba(255, 255, 255, .025);
  border: 1px solid #303944;
  border-radius: 8px;
  font-size: .76rem;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.focus-guide-links a:hover,
.focus-guide-links a:focus-visible {
  color: #fff;
  background: rgba(242, 184, 75, .07);
  border-color: rgba(242, 184, 75, .45);
  outline: none;
}

.help-section-directory {
  margin-top: 58px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 30px;
}

.section-directory-intro {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-directory-intro h3 {
  margin: 6px 0 10px;
  color: var(--text);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.section-directory-intro>p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.65;
}

.section-directory-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.section-directory-group {
  padding: 19px;
  background: #11161c;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.section-directory-group h4 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .04em;
}

.section-directory-group ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
  list-style: none;
}

.section-directory-group a {
  padding: 9px 10px;
  display: grid;
  gap: 2px;
  color: inherit;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
}

.section-directory-group a:hover,
.section-directory-group a:focus-visible {
  background: var(--surface-2);
  border-color: rgba(82, 200, 255, .28);
  outline: none;
}

.section-directory-group strong {
  color: #e6ebf0;
  font-size: .78rem;
  line-height: 1.35;
}

.section-directory-group span {
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .workspace-focus-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .focus-guide-links>span {
    grid-column: 1 / -1;
  }

  .section-directory-groups {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .workspace-focus-copy {
    padding: 18px;
  }

  .focus-guide-links {
    grid-template-columns: 1fr;
  }
}


/* Help hub spacing, flat callouts, and reduced focused maps */
/* Numbered SVG explanations use flat fields without a rounded outline. */
.workflow-svg .ui-map-annotation rect {
  rx: 0;
  stroke: none;
}

/* Separate each conceptual workspace from the preceding map and give prose room. */
.roadmap-section-heading {
  margin: 92px 0 40px;
}

.workspace-focus-copy {
  margin-bottom: 54px;
  padding: 28px 30px;
  gap: 34px;
}

.workspace-focus-prose h4 {
  margin-bottom: 14px;
}

.workspace-focus-prose p {
  margin-bottom: 15px;
  line-height: 1.74;
}

.roadmap-focus {
  margin-bottom: 84px;
}

.roadmap-focus+.workspace-focus-copy {
  margin-top: 96px;
}

.help-section-directory {
  margin-top: 96px;
  padding-top: 54px;
}

/* Keep the full-app overview at 100%; focused control maps are 15% smaller. */
.roadmap-focus .roadmap-focus-svg {
  width: 85%;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 720px) {
  .roadmap-focus .roadmap-focus-svg {
    width: 612px;
    max-width: none;
  }

  .roadmap-section-heading {
    margin-top: 64px;
    margin-bottom: 24px;
  }

  .workspace-focus-copy {
    margin-bottom: 30px;
    padding: 22px;
  }

  .roadmap-focus {
    margin-bottom: 56px;
  }

  .roadmap-focus+.workspace-focus-copy {
    margin-top: 62px;
  }
}

/* Keep overview links visually flat: clickable text, not hoverable cards. */
.roadmap-key a,
.roadmap-key a:hover,
.roadmap-key a:focus-visible {
  background: transparent;
  border: 0;
  border-radius: 0;
  transition: none;
}

.roadmap-key a:hover strong,
.roadmap-key a:focus-visible strong {
  color: var(--gold);
}

/* At 85% map width these values render at the same visual size as overview callouts. */
.roadmap-focus-svg .ui-map-callout-title {
  font-size: 11.06px;
}

.roadmap-focus-svg .ui-map-callout-copy,
.roadmap-exact-svg .ui-map-callout-copy {
  font-size: 8.82px;
}

.roadmap-focus-svg .ui-map-number {
  font-size: 10.59px;
}

/* Give the section label, explanation, and map distinct vertical beats. */
.roadmap-section-heading h3 {
  margin-top: 12px;
  margin-bottom: 14px;
}

.roadmap-section-heading>p:last-child {
  line-height: 1.65;
}
