/*
 * Faciotech documentation styles (.fd-*).
 *
 * Extracted verbatim from templates/faciotech/docs-monitoring.tpl so the Server
 * Monitor set and the Platform set can share one stylesheet instead of drifting
 * apart as two inline copies.
 *
 * docs-monitoring.tpl still carries its own inline copy and is unchanged; it can
 * switch to this file as a separate change once it is under version control.
 * Until then, edits here affect /docs/platform only.
 */

/* ── Docs: Faciotech API Documentation ── */
/* Prefix: fd- (faciotech-docs) */

.fd-wrap {
  --fd-blue: #0146C7;
  --fd-navy: #041133;
  --fd-navy-light: #062266;
  --fd-yellow: #FFD602;
  --fd-bg: #f8f9fb;
  --fd-sidebar-bg: #fff;
  --fd-sidebar-w: 250px;
  --fd-toc-w: 200px;
  --fd-content-max: 780px;
  --fd-code-bg: #0d1117;
  --fd-code-fg: #e6edf3;
  --fd-inline-code-bg: #eff2f5;
  --fd-inline-code-fg: #1f2328;
  --fd-border: #e1e4e8;
  --fd-text: #24292f;
  --fd-text-secondary: #57606a;
  --fd-link: #0146C7;
  --fd-radius: 8px;
  --fd-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --fd-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  --fd-callout-info-bg: #ddf4ff;
  --fd-callout-info-border: #54aeff;
  --fd-callout-info-fg: #0550ae;
  --fd-callout-warn-bg: #fff8c5;
  --fd-callout-warn-border: #d4a72c;
  --fd-callout-warn-fg: #6f5709;
  --fd-callout-tip-bg: #dafbe1;
  --fd-callout-tip-border: #4ac26b;
  --fd-callout-tip-fg: #116329;
  font-family: var(--fd-font);
  color: var(--fd-text);
  background: var(--fd-bg);
  min-height: 100vh;
}

/* ── Hero banner ── */
.fd-hero {
  background: linear-gradient(170deg, var(--fd-navy), var(--fd-navy-light), var(--fd-blue));
  padding: 3.5rem 2rem 3rem;
  margin-top: -80px;
  padding-top: calc(80px + 3rem);
  position: relative;
  z-index: 1;
}
.fd-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.fd-hero-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fd-hero-icon svg { width: 28px; height: 28px; color: var(--fd-yellow); }
.fd-hero h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .35rem;
  letter-spacing: -.02em;
}
.fd-hero p {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  margin: 0;
  max-width: 600px;
  line-height: 1.55;
}
.fd-hero-badge {
  display: inline-block;
  background: rgba(255,214,2,.15);
  color: var(--fd-yellow);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 20px;
  margin-left: .75rem;
  vertical-align: middle;
}

/* ── Layout (3-column: sidebar + content + TOC) ── */
.fd-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  min-height: calc(100vh - 200px);
}

/* ── Sidebar ── */
.fd-sidebar {
  width: var(--fd-sidebar-w);
  flex-shrink: 0;
  padding: 1.5rem 0 2rem 0;
  position: sticky;
  top: 80px;
  height: fit-content;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.fd-sidebar-title {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--fd-text-secondary);
  padding: 0 1.25rem .75rem;
  margin: 0;
}

/* ── Sidebar search ── */
.fd-search {
  padding: 0 1rem .75rem;
}
.fd-search-input {
  width: 100%;
  padding: .45rem .75rem .45rem 2rem;
  font-size: .8125rem;
  font-family: var(--fd-font);
  border: 1px solid var(--fd-border);
  border-radius: 6px;
  background: var(--fd-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%2357606a'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607Z'/%3E%3C/svg%3E") no-repeat .55rem center;
  background-size: 14px 14px;
  color: var(--fd-text);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  box-sizing: border-box;
}
.fd-search-input:focus {
  border-color: var(--fd-blue);
  box-shadow: 0 0 0 3px rgba(1,70,199,.1);
}
.fd-search-input::placeholder { color: var(--fd-text-secondary); opacity: .7; }
.fd-sidebar li.fd-hidden { display: none; }

.fd-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fd-sidebar li { margin: 0; }
.fd-sidebar a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem 1.25rem;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--fd-text-secondary);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all .15s ease;
  line-height: 1.4;
}
.fd-sidebar a:hover {
  color: var(--fd-text);
  background: rgba(1,70,199,.04);
}
.fd-sidebar a.active {
  color: var(--fd-blue);
  border-left-color: var(--fd-blue);
  background: rgba(1,70,199,.06);
  font-weight: 600;
}
.fd-sidebar .fd-nav-icon {
  width: 16px;
  height: 16px;
  opacity: .5;
  flex-shrink: 0;
}
.fd-sidebar a.active .fd-nav-icon { opacity: 1; color: var(--fd-blue); }

/* ── Content area ── */
.fd-content {
  flex: 1;
  min-width: 0;
  max-width: var(--fd-content-max);
  padding: 2.5rem 2.5rem 4rem;
  border-left: 1px solid var(--fd-border);
}

/* ── "On this page" TOC (right sidebar) ── */
.fd-toc {
  width: var(--fd-toc-w);
  flex-shrink: 0;
  padding: 2rem 1rem 2rem 1.25rem;
  position: sticky;
  top: 80px;
  height: fit-content;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  border-left: 1px solid var(--fd-border);
}
.fd-toc-title {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--fd-text-secondary);
  margin: 0 0 .75rem;
}
.fd-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fd-toc li { margin: 0; }
.fd-toc a {
  display: block;
  padding: .3rem 0 .3rem .75rem;
  font-size: .75rem;
  font-weight: 400;
  color: var(--fd-text-secondary);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all .15s ease;
  line-height: 1.45;
}
.fd-toc a:hover {
  color: var(--fd-text);
}
.fd-toc a.active {
  color: var(--fd-blue);
  border-left-color: var(--fd-blue);
  font-weight: 500;
}
.fd-toc a.fd-toc-h3 {
  padding-left: 1.5rem;
  font-size: .7rem;
}

/* ── Article typography ── */
.fd-content .docs-article h1 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--fd-navy);
  margin: 0 0 .75rem;
  letter-spacing: -.015em;
  line-height: 1.25;
}
.fd-content .docs-article h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fd-text);
  margin: 2.25rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--fd-border);
  letter-spacing: -.01em;
  position: relative;
  scroll-margin-top: 100px;
}
.fd-content .docs-article h2:first-of-type { margin-top: 1.75rem; }
.fd-content .docs-article h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 .5rem;
  color: var(--fd-text);
  position: relative;
  scroll-margin-top: 100px;
}

/* ── Anchor links on headings ── */
.fd-content .docs-article .fd-anchor {
  display: inline-block;
  margin-left: .35rem;
  color: var(--fd-text-secondary);
  opacity: 0;
  font-size: .85em;
  text-decoration: none;
  transition: opacity .15s ease;
  vertical-align: middle;
}
.fd-content .docs-article h2:hover .fd-anchor,
.fd-content .docs-article h3:hover .fd-anchor,
.fd-content .docs-article .fd-anchor:focus {
  opacity: .6;
}
.fd-content .docs-article .fd-anchor:hover {
  opacity: 1;
  color: var(--fd-blue);
}

.fd-content .docs-article p {
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--fd-text);
  margin: 0 0 1rem;
}
.fd-content .docs-article ul,
.fd-content .docs-article ol {
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
}
.fd-content .docs-article li {
  font-size: .9375rem;
  line-height: 1.7;
  margin-bottom: .35rem;
  color: var(--fd-text);
}
.fd-content .docs-article a {
  color: var(--fd-link);
  text-decoration: none;
  font-weight: 500;
}
.fd-content .docs-article a:hover { text-decoration: underline; }
.fd-content .docs-article strong { font-weight: 600; color: var(--fd-text); }

/* ── Inline code ── */
.fd-content .docs-article code {
  font-family: var(--fd-mono);
  font-size: .8125rem;
  background: var(--fd-inline-code-bg);
  color: var(--fd-inline-code-fg);
  padding: .15em .4em;
  border-radius: 5px;
  font-weight: 500;
  word-break: break-word;
}

/* ── Code blocks ── */
.fd-content .docs-article pre {
  background: var(--fd-code-bg);
  border-radius: var(--fd-radius);
  padding: 1.15rem 1.35rem;
  margin: 0 0 1.25rem;
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.fd-content .docs-article pre code {
  background: none;
  color: var(--fd-code-fg);
  padding: 0;
  border-radius: 0;
  font-size: .8125rem;
  line-height: 1.6;
  font-weight: 400;
  display: block;
  white-space: pre;
  word-break: normal;
}

/* ── Language label on code blocks ── */
.fd-content .docs-article pre[data-lang]::before {
  content: attr(data-lang);
  position: absolute;
  top: .5rem;
  right: 3.25rem;
  font-family: var(--fd-font);
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.35);
  pointer-events: none;
}

/* ── Copy button on code blocks ── */
.fd-copy-btn {
  position: absolute;
  top: .5rem;
  right: .65rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 5px;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  opacity: 0;
  transition: opacity .15s ease, background .15s ease, color .15s ease;
  padding: 0;
  line-height: 1;
}
.fd-content .docs-article pre:hover .fd-copy-btn { opacity: 1; }
.fd-copy-btn:hover {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
}
.fd-copy-btn.fd-copied {
  color: #3fb950;
  opacity: 1;
}
.fd-copy-btn svg { width: 14px; height: 14px; }

/* JSON syntax hints inside code blocks */
.fd-content .docs-article pre code .k { color: #ff7b72; }
.fd-content .docs-article pre code .s { color: #a5d6ff; }
.fd-content .docs-article pre code .n { color: #79c0ff; }

/* ── Callout / admonition blocks ── */
.fd-callout {
  display: flex;
  gap: .75rem;
  padding: .85rem 1rem;
  border-radius: var(--fd-radius);
  margin: 0 0 1.25rem;
  font-size: .875rem;
  line-height: 1.65;
  border-left: 4px solid;
}
.fd-callout-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: .1rem;
}
.fd-callout-body { flex: 1; min-width: 0; }
.fd-callout-body p { margin: 0; font-size: .875rem; }
.fd-callout-body p + p { margin-top: .5rem; }
.fd-callout-body code { font-size: .78rem; }
.fd-callout-title {
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .25rem;
}

.fd-callout-info {
  background: var(--fd-callout-info-bg);
  border-color: var(--fd-callout-info-border);
  color: var(--fd-callout-info-fg);
}
.fd-callout-info .fd-callout-icon { color: var(--fd-callout-info-border); }

.fd-callout-warning {
  background: var(--fd-callout-warn-bg);
  border-color: var(--fd-callout-warn-border);
  color: var(--fd-callout-warn-fg);
}
.fd-callout-warning .fd-callout-icon { color: var(--fd-callout-warn-border); }

.fd-callout-tip {
  background: var(--fd-callout-tip-bg);
  border-color: var(--fd-callout-tip-border);
  color: var(--fd-callout-tip-fg);
}
.fd-callout-tip .fd-callout-icon { color: var(--fd-callout-tip-border); }

/* ── Badge ── */
.fd-content .docs-article .badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 4px;
  vertical-align: middle;
}
.fd-content .docs-article .badge.bg-primary {
  background: var(--fd-blue);
  color: #fff;
}

/* ── Method badges for endpoints ── */
.fd-method {
  display: inline-block;
  font-family: var(--fd-mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: .2rem .55rem;
  border-radius: 4px;
  margin-right: .4rem;
  vertical-align: middle;
}
.fd-method-get { background: #ddf4ff; color: #0550ae; }
.fd-method-post { background: #dafbe1; color: #116329; }

/* ── Mobile sidebar ── */
.fd-mobile-toggle {
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1rem;
  background: var(--fd-sidebar-bg);
  border: 1px solid var(--fd-border);
  border-radius: var(--fd-radius);
  font-size: .875rem;
  font-weight: 600;
  color: var(--fd-text);
  cursor: pointer;
  margin: 1rem 1rem 0;
  width: calc(100% - 2rem);
}
.fd-mobile-toggle svg {
  width: 18px;
  height: 18px;
  color: var(--fd-text-secondary);
  transition: transform .2s ease;
}
.fd-mobile-toggle.open svg { transform: rotate(180deg); }

/* ── Footer link bar ── */
.fd-footer-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--fd-border);
  gap: 1rem;
}
.fd-footer-link {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  text-decoration: none;
  padding: .75rem 1rem;
  border-radius: var(--fd-radius);
  transition: background .15s ease;
  max-width: 45%;
}
.fd-footer-link:hover { background: rgba(1,70,199,.04); text-decoration: none; }
.fd-footer-link-label {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--fd-text-secondary);
}
.fd-footer-link-title {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--fd-blue);
}
.fd-footer-link--next { text-align: right; margin-left: auto; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .fd-toc { display: none; }
  .fd-layout { max-width: 1060px; }
}
@media (max-width: 900px) {
  .fd-hero { margin-top: 0; padding: 2.5rem 1.25rem 2rem; }
  .fd-hero h1 { font-size: 1.4rem; }
  .fd-layout { flex-direction: column; }
  .fd-sidebar {
    width: 100%;
    position: static;
    max-height: none;
    padding: 0;
    border-bottom: 1px solid var(--fd-border);
    overflow: visible;
  }
  .fd-sidebar-title { display: none; }
  .fd-search { padding: .75rem 1rem .5rem; }
  .fd-sidebar ul {
    display: none;
    padding: .5rem 0;
    background: var(--fd-sidebar-bg);
    border-radius: 0 0 var(--fd-radius) var(--fd-radius);
  }
  .fd-sidebar ul.open { display: block; }
  .fd-sidebar a { border-left: none; padding: .55rem 1.25rem; }
  .fd-sidebar a.active { border-left: none; background: rgba(1,70,199,.08); }
  .fd-mobile-toggle { display: flex; }
  .fd-content {
    padding: 1.5rem 1.25rem 3rem;
    border-left: none;
  }
}
@media (max-width: 480px) {
  .fd-hero-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .fd-hero h1 { font-size: 1.25rem; }
  .fd-content .docs-article h1 { font-size: 1.35rem; }
  .fd-content .docs-article pre { padding: .85rem 1rem; font-size: .75rem; }
}

/* ── Dark mode ── */
html.ft-dark-mode .fd-wrap {
  --fd-bg: #0d1117;
  --fd-sidebar-bg: #161b22;
  --fd-border: #30363d;
  --fd-text: #e6edf3;
  --fd-text-secondary: #8b949e;
  --fd-inline-code-bg: #1c2129;
  --fd-inline-code-fg: #e6edf3;
  --fd-link: #58a6ff;
  --fd-code-bg: #161b22;
  --fd-callout-info-bg: #121d2f;
  --fd-callout-info-border: #1f6feb;
  --fd-callout-info-fg: #a5d6ff;
  --fd-callout-warn-bg: #272115;
  --fd-callout-warn-border: #9e6a03;
  --fd-callout-warn-fg: #f0c445;
  --fd-callout-tip-bg: #12261e;
  --fd-callout-tip-border: #238636;
  --fd-callout-tip-fg: #7ee787;
}
html.ft-dark-mode .fd-content .docs-article h1 { color: #fff; }
html.ft-dark-mode .fd-content .docs-article h2 { color: #e6edf3; }
html.ft-dark-mode .fd-mobile-toggle {
  background: var(--fd-sidebar-bg);
  border-color: var(--fd-border);
  color: var(--fd-text);
}
html.ft-dark-mode .fd-method-get { background: #122d42; color: #58a6ff; }
html.ft-dark-mode .fd-method-post { background: #12261e; color: #3fb950; }
html.ft-dark-mode .fd-search-input {
  background-color: #0d1117;
  border-color: var(--fd-border);
  color: var(--fd-text);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%238b949e'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607Z'/%3E%3C/svg%3E");
}
html.ft-dark-mode .fd-search-input:focus {
  border-color: var(--fd-link);
  box-shadow: 0 0 0 3px rgba(88,166,255,.15);
}
html.ft-dark-mode .fd-copy-btn {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
}

/* ---------------------------------------------------------------------------
 * Additions for the Platform docs set.
 *
 * Everything above is the .fd-* system extracted verbatim from
 * docs-monitoring.tpl. The three blocks below cover components the Platform
 * source uses that the Server Monitor set has no equivalent for -- the ported
 * VideoEmbed, StepByStep and ModuleBadge. Named .fd-* so they sit inside the
 * same system rather than beside it.
 * ------------------------------------------------------------------------- */

.fd-video {
    margin: 24px 0;
}
.fd-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    background: #041133;
}
.fd-video figcaption {
    margin-top: 8px;
    font-size: 13px;
    color: #5b6577;
}

.fd-steps {
    margin: 24px 0;
    display: grid;
    gap: 20px;
}
.fd-step {
    border: 1px solid #e3e7ec;
    border-radius: 10px;
    padding: 18px 20px;
    background: #fff;
}
.fd-step > h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    font-size: 17px;
}
.fd-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border-radius: 999px;
    background: #0146C7;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
/* Screenshots are exported at 1440px wide but the content column is ~780px. Only
   .fd-step img was constrained, so any screenshot outside a step block rendered at its
   full natural width and pushed the PAGE 371px wider than the viewport -- horizontal
   scroll on every doc page that has one. Constrain every content image, and keep the
   .fd-step selector so its extra margin still applies there. */
.fd-content img,
.fd-step img {
    max-width: 100%;
    height: auto;
    border: 1px solid #e3e7ec;
    border-radius: 8px;
}
.fd-step img {
    margin: 4px 0 12px;
}

.fd-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(1, 70, 199, 0.1);
    color: #0146C7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    vertical-align: middle;
    white-space: nowrap;
}
.fd-badge--business { background: rgba(255, 214, 2, 0.22); color: #7A5B00; }
.fd-badge--starter  { background: rgba(1, 70, 199, 0.10); color: #0146C7; }

/* Section grouping in the sidebar -- the Platform set has 45 pages across 8
   sections, where the Server Monitor set has 8 flat pages. */
.fd-nav-group { margin-bottom: 18px; }
/* The group heading is a <summary>: collapsible with no JS, keyboard operable and
   announced as expanded/collapsed for free. Keeps the exact type treatment the old
   <p> had, so only the interaction changed, not the look. */
.fd-nav-group-title {
    margin: 0 0 6px;
    padding: 0 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8a93a3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    list-style: none;
    user-select: none;
}
/* Both are needed: Safari uses the WebKit pseudo-element, everything else honours
   list-style on the summary itself. Without these the browser's own triangle sits
   next to our chevron. */
.fd-nav-group-title::-webkit-details-marker { display: none; }
.fd-nav-group-title::marker { content: ''; }
.fd-nav-group-title::after {
    content: '';
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transform-origin: center;
    transition: transform .15s ease;
    opacity: .8;
}
.fd-nav-group[open] > .fd-nav-group-title::after { transform: rotate(-135deg); }
.fd-nav-group-title:hover { color: #cbd5e1; }
.fd-nav-group-title:focus-visible {
    outline: 2px solid var(--fd-accent, #0146C7);
    outline-offset: 2px;
    border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
    .fd-nav-group-title::after { transition: none; }
}
