/* ============================================================
   MESBREID — V17 Components — BATCHES 1–4 (COMPLETE, 33/33)
   Source: Figma "MESBREID Portfolio — Design System"
   (NxpNb1XtdW6wasAfUXqZ3l, page 3:2 Components)
   Requires: mesbreid.tokens.css loaded first.
   Batch 1 Structural · Batch 2 Exhibits · Batch 3 Marginalia +
   Markers · Batch 4 Charts. M.E. edits 2026-08-03 rolled in:
   diamond marquee + carousel dots, lowered Illuminated cap,
   Unresolved Draft toggle, typographic hedera, NB usage rule,
   North Star 160px + hover-fill core.
   ============================================================ */

/* --- Canon palette members missing from tokens.css ---
   Verified 2026-08-03 against MESBREID Brand Guidelines + Brand Book:
   Champ Gold + Pale Amethyst are existing palette, NOT additions.
   NO new hex values enter the system — everything else is derived. */
:root {
  --champ: #DFBE73;    /* Champ Gold — executive accents, sparingly (canon) */
  --amethyst: #E0DCE6; /* Pale Amethyst — soft titles / body (canon) */
  --hairline: color-mix(in srgb, var(--amethyst) 15%, transparent);
  --hairline-strong: color-mix(in srgb, var(--amethyst) 20%, transparent);
  --plum-mix: color-mix(in srgb, var(--uv) 12%, var(--void-raised));
}

/* ============================================================
   COMPASS / HYBRID  (3:3) — 120×120, 8 committed vector assets
   ============================================================ */
.compass { position: relative; width: 120px; height: 120px; flex: 0 0 auto; }
.compass img { position: absolute; display: block; }
.compass .cp-ring-outer { left: 6px;  top: 6px;  width: 108px; height: 108px; }
.compass .cp-ring-inner { left: 13px; top: 13px; width: 94px;  height: 94px; }
.compass .cp-dial       { left: 14px; top: 14px; width: 92px;  height: 92px; }
.compass .cp-rose-a,
.compass .cp-rose-b     { left: 14px; top: 38.8px; width: 92px; height: 67.2px; }
.compass .cp-needle-a   { left: 54px; top: 14px; width: 6px; height: 46px; }
.compass .cp-needle-b   { left: 60px; top: 14px; width: 6px; height: 46px; }
.compass .cp-pivot      { left: 57px; top: 57px; width: 6px; height: 6px; }

/* ============================================================
   THROUGHLINE / RAIL  (3:8) — spine + diamond stations (CSS)
   ============================================================ */
.rail { position: relative; height: 60px; }
.rail::before {
  content: ""; position: absolute; left: 0; right: 0; top: 29px;
  height: 2px; background: rgba(164, 152, 181, 0.3);
}
.rail-node {
  position: absolute; top: 30px;
  width: 21.2px; height: 21.2px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--void-deep);
  border: 1.5px solid var(--sun);
}
.rail-node--mid { width: 15.6px; height: 15.6px; }
.rail-node--min { width: 10.6px; height: 10.6px; }
.rail-node.is-active { background: var(--sun); }

/* ============================================================
   STAT / SOL-PINNED  (5:2) — gradient halo + Sol assets + Cinzel
   ============================================================ */
.stat-sol {
  position: relative; display: grid; justify-items: center;
  padding: var(--sp-3) 0; text-align: center;
}
.stat-sol::before {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 290px; height: 290px; max-width: 100%;
  background: radial-gradient(closest-side,
    rgba(229, 184, 11, 0.16), rgba(229, 184, 11, 0.05) 55%, transparent 78%);
  pointer-events: none;
}
.stat-sol .sol { position: relative; width: 28px; height: 28px; margin-bottom: 18px; }
.stat-sol .sol img { position: absolute; display: block; }
.stat-sol .sol .sol-ring { inset: 0; width: 28px; height: 28px; }
.stat-sol .sol .sol-core { left: 10px; top: 10px; width: 8px; height: 8px; }
.stat-sol .stat-value {
  position: relative; font-family: var(--f-display); font-weight: 700;
  font-size: 58px; color: var(--sun); line-height: 1.1; margin: 0;
}
.stat-sol .stat-caption {
  position: relative; font-family: var(--f-body); font-weight: 300;
  font-size: 16px; color: var(--ash); max-width: 240px; margin: 6px 0 0;
}

/* ============================================================
   PANEL / BEFORE-AFTER  (7:2) — the sanctioned ash-vs-gold split
   ============================================================ */
.ba { display: grid; grid-template-columns: 1fr 60px 1fr; align-items: end; }
.ba-side { display: flex; flex-direction: column; }
.ba-label {
  font-family: var(--f-mono); font-size: var(--fs-micro);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: var(--sp-1);
}
.ba-before .ba-label { color: var(--dusk); }
.ba-after  .ba-label { color: var(--sun); }
.ba-pane {
  min-height: 170px; border: 1px solid var(--hairline);
  background: linear-gradient(90deg, var(--plum-mix), var(--void-raised));
  padding: var(--sp-2);
}
.ba-arrow {
  align-self: center; justify-self: center; padding-top: var(--sp-3);
  color: var(--sun); font-family: var(--f-body); font-weight: 300;
  font-size: 28px; line-height: 1;
}
@media (max-width: 640px) {
  .ba { grid-template-columns: 1fr; row-gap: var(--sp-2); }
  .ba-arrow { transform: rotate(90deg); padding: 0; }
}

/* ============================================================
   CTA / DELIVERABLE  (7:8) — hover: hairline → gold (unlocked)
   ============================================================ */
.cta-deliverable {
  display: block; max-width: 440px; box-sizing: border-box;
  background: var(--void-deep); border: 1px solid var(--hairline-strong);
  padding: 25px 27px; text-decoration: none;
  transition: border-color 160ms ease;
}
.cta-deliverable:hover, .cta-deliverable:focus-visible { border-color: var(--sun); }
.cta-deliverable .cta-eyebrow {
  font-family: var(--f-mono); font-size: var(--fs-micro);
  letter-spacing: 2px; text-transform: uppercase; color: var(--champ); margin: 0;
}
.cta-deliverable .cta-title {
  font-family: var(--f-display); font-weight: 400; font-size: 22px;
  letter-spacing: 1px; color: var(--amethyst); margin: 8px 0 16px; line-height: 1.35;
}
.cta-deliverable .cta-link {
  font-family: var(--f-mono); font-size: 13px; color: var(--sun); margin: 0;
}
.cta-deliverable .cta-link::after { content: "  →"; }

/* ============================================================
   METRIC / MARQUEE  (11:9) — diamond-row rules (M.E. direction)
   ============================================================ */
.metric-marquee {
  box-sizing: border-box; max-width: 280px;
  background: var(--void-deep); border: 1px solid var(--sun);
  padding: 13px 19px; text-align: center;
}
.metric-marquee::before, .metric-marquee::after {
  content: ""; display: block; height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='8'%3E%3Cpath d='M7.5 1 L10.5 4 L7.5 7 L4.5 4 Z' fill='%23E5B80B'/%3E%3C/svg%3E") repeat-x center / 15px 8px;
}
.metric-marquee .mm-value {
  font-family: var(--f-display); font-weight: 700; font-size: 52px;
  color: var(--sun); line-height: 1.15; margin: 22px 0 14px;
}
.metric-marquee .mm-caption {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 2px;
  color: var(--ash); margin: 0 0 22px;
}

/* ============================================================
   CHART / CHAMFERED FRAME  (11:2) — clip-path chamfer + bars
   ============================================================ */
.chart-frame { max-width: 320px; }
.chart-frame .cf-title {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ash); margin: 0 0 12px;
}
.cf-canvas {
  position: relative; height: 216px; background: var(--sun);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px),
                     calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.cf-inner {
  position: absolute; inset: 1px; background: var(--void-deep);
  clip-path: polygon(13.5px 0, 100% 0, 100% calc(100% - 13.5px),
                     calc(100% - 13.5px) 100%, 0 100%, 0 13.5px);
  display: flex; align-items: flex-end; justify-content: center;
  gap: 18px; padding: 0 26px;
}
.cf-bar {
  width: 44px; height: var(--h, 60px); flex: 0 0 auto;
  background: rgba(229, 184, 11, 0.42);
  clip-path: polygon(0 12px, 50% 0, 100% 12px, 100% 100%, 0 100%);
}
.cf-bar.is-gilded { background: var(--sun); }

/* ============================================================
   BATCH 2: EXHIBITS — shared .ex-pane primitive
   ============================================================ */
.ex-pane {
  position: relative; overflow: hidden;
  background: linear-gradient(90deg, var(--plum-mix), var(--void-raised));
  border: 1px solid var(--hairline);
}
.ex-pane > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ex-caption {
  font-family: var(--f-mono); font-size: var(--fs-micro);
  letter-spacing: 1px; color: var(--ash); margin: 12px 0 0;
}
.ex-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ex-strip .ex-pane { aspect-ratio: 164 / 130; }
@media (max-width: 720px) { .ex-strip { grid-template-columns: repeat(2, 1fr); } }
.ex-tiered-a {
  display: grid; grid-template-columns: 43fr 13fr 13fr;
  grid-template-rows: 1fr 1fr; gap: 20px;
}
.ex-tiered-a .ex-pane { min-height: 195px; }
.ex-tiered-a .ex-hero-slot { grid-row: 1 / 3; min-height: 410px; }
@media (max-width: 720px) {
  .ex-tiered-a { grid-template-columns: 1fr 1fr; }
  .ex-tiered-a .ex-hero-slot { grid-column: 1 / 3; grid-row: auto; min-height: 240px; }
}
.ex-tiered-b { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.ex-tiered-b .ex-feature { grid-column: span 3; aspect-ratio: 350 / 200; }
.ex-tiered-b .ex-support { grid-column: span 2; aspect-ratio: 226 / 150; }
@media (max-width: 720px) {
  .ex-tiered-b .ex-feature { grid-column: span 6; }
  .ex-tiered-b .ex-support { grid-column: span 3; }
}
.ex-hero .ex-pane { aspect-ratio: 640 / 344; }
.ex-video .ex-pane { aspect-ratio: 640 / 330; display: grid; place-items: center; }
.ex-play {
  position: relative; width: 60px; height: 60px;
  background: none; border: none; padding: 0; cursor: pointer;
  transition: opacity 160ms ease;
}
.ex-play:hover { opacity: 0.85; }
.ex-play img { position: absolute; display: block; }
.ex-play .play-ring { inset: 0; width: 60px; height: 60px; }
.ex-play .play-glyph { left: 23px; top: 19px; width: 20px; height: 22px; }
.ex-carousel .ex-main { aspect-ratio: 720 / 196; }
.ex-carousel { position: relative; }
.ex-count {
  position: absolute; top: 12px; right: 14px; z-index: 1;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 1px;
  color: var(--ash); margin: 0;
}
.ex-thumbs { display: flex; gap: 8px; margin-top: 18px; }
.ex-thumb {
  width: 56px; height: 56px; padding: 0; cursor: pointer;
  background: linear-gradient(90deg, var(--plum-mix), var(--void-raised));
  border: 1px solid var(--hairline);
}
.ex-thumb.is-active { border-color: var(--sun); }
.ex-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Dots are diamonds (M.E. 2026-08-03) — CSS geometry, no assets. */
.ex-dots { display: flex; gap: 10px; justify-content: center; margin-top: 18px; }
.ex-dot {
  width: 6px; height: 6px; padding: 0; flex: 0 0 auto;
  transform: rotate(45deg); background: transparent;
  border: 1px solid var(--sun); transition: background 160ms ease;
}
.ex-dot.is-active { background: var(--sun); }

/* ============================================================
   BATCH 3: MARGINALIA + MARKERS — the manuscript layer
   Legacy UV #9E47FF normalized to var(--uv) throughout.
   ============================================================ */
.marg-illuminated { display: flex; gap: 26px; align-items: flex-start; max-width: 600px; }
.marg-illuminated .mi-cap {
  font-family: var(--f-display); font-weight: 700; font-size: 104px;
  line-height: 0.85; color: var(--sun); flex: 0 0 auto;
  margin: 16px 0 0;                    /* M.E. 2026-08-03: cap sat too high */
}
.marg-illuminated .mi-text {
  font-family: var(--f-editorial); font-style: italic; font-size: 24px;
  line-height: 1.5; color: var(--amethyst); margin: 10px 0 0;
}
.marg-gloss { display: grid; grid-template-columns: 1fr 270px; gap: 48px; }
.marg-gloss .mg-body { min-height: 260px; }
.marg-gloss .mg-col {
  position: relative; border-left: 2px solid rgba(229, 184, 11, 0.4);
  padding: 34px 0 0 22px; display: flex; flex-direction: column;
}
.marg-gloss .mg-hedera { position: absolute; left: 18px; top: -4px; }
.marg-gloss .mg-hedera::before {
  content: "\2767";
  font-family: var(--f-editorial), "Segoe UI Symbol", "Apple Symbols", serif;
  font-size: 24px; line-height: 1; color: var(--sun);
}
.marg-gloss .mg-text {
  font-family: var(--f-editorial); font-style: italic; font-size: 20px;
  line-height: 1.45; color: var(--ash); margin: 0;
}
.marg-gloss .mg-note {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 1px;
  color: var(--uv); margin: auto 0 0; padding-top: var(--sp-3);
}   /* open with <span class="nb">NB</span> — see NB usage rule */
@media (max-width: 720px) { .marg-gloss { grid-template-columns: 1fr; } }
.concordance { max-width: 640px; }
.cc-row {
  position: relative; display: flex; align-items: baseline; gap: 8px;
  padding: 12px 0 12px 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--amethyst) 8%, transparent);
}
.cc-row .cc-num { font-family: var(--f-mono); font-size: 13px; color: var(--dusk); flex: 0 0 34px; margin: 0; }
.cc-row .cc-title { font-family: var(--f-body); font-weight: 300; font-size: 14px; color: var(--amethyst); margin: 0; }
.cc-row .cc-tag {
  margin-left: auto; flex: 0 0 auto; padding: 3px 6px;
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 1px;
  border: 1px solid color-mix(in srgb, var(--dusk) 70%, transparent); color: var(--dusk);
}
.cc-row .cc-tag--uv  { border-color: color-mix(in srgb, var(--uv) 70%, transparent);  color: var(--uv); }
.cc-row .cc-tag--sun { border-color: color-mix(in srgb, var(--sun) 70%, transparent); color: var(--sun); }
.cc-row.is-exhibit .cc-num { color: var(--sun); }
.cc-row.is-exhibit::before {
  content: ""; position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 2px; background: rgba(229, 184, 11, 0.7);
}
.cc-row.is-implicit .cc-title { font-family: var(--f-editorial); font-style: italic; font-size: 17px; color: var(--dusk); }
.cc-row.is-implicit .cc-num { color: var(--dusk); }
.marg-manuscript {
  max-width: 440px; box-sizing: border-box;
  background: var(--void-deep); border: 1px solid var(--hairline-strong);
  padding: 23px 25px;
}
.marg-manuscript .mm-eyebrow {
  font-family: var(--f-mono); font-size: var(--fs-micro); letter-spacing: 2px;
  text-transform: uppercase; color: var(--champ); margin: 0;
}
.marg-manuscript .mm-file {
  font-family: var(--f-body); font-weight: 300; font-size: 18px;
  color: var(--amethyst); margin: 8px 0 12px; overflow-wrap: anywhere;
}
.marg-manuscript .mm-provenance {
  font-family: var(--f-mono); font-size: var(--fs-micro); color: var(--dusk); margin: 0;
}
.marg-underdrawing { display: grid; grid-template-columns: 300px 1fr; gap: 60px; max-width: 640px; }
.mu-label { font-family: var(--f-mono); font-size: var(--fs-micro); letter-spacing: 2px; text-transform: uppercase; margin: 0 0 14px; }
.mu-raw .mu-label { color: var(--ash); }
.mu-finished .mu-label { color: var(--sun); }
.mu-raw .mu-box { border: 1px dashed rgba(164, 152, 181, 0.5); min-height: 160px; padding: 24px 16px; }
.mu-raw .mu-quote {
  font-family: var(--f-editorial); font-style: italic; font-size: 18px;
  line-height: 1.4; color: var(--ash); margin: 0;
}
.mu-finished .mu-stat { display: flex; align-items: center; gap: 10px; }
.mu-finished .mu-sol { position: relative; width: 26px; height: 26px; flex: 0 0 auto; }
.mu-finished .mu-sol img { position: absolute; display: block; }
.mu-finished .mu-sol .sol-ring { inset: 0; width: 26px; height: 26px; }
.mu-finished .mu-sol .sol-core { left: 9px; top: 9px; width: 8px; height: 8px; }
.mu-finished .mu-value { font-family: var(--f-display); font-weight: 700; font-size: 52px; color: var(--sun); line-height: 1; margin: 0; }
.mu-finished .mu-caption { font-family: var(--f-body); font-weight: 300; font-size: 15px; color: var(--ash); margin: 16px 0 0; }
@media (max-width: 720px) { .marg-underdrawing { grid-template-columns: 1fr; gap: var(--sp-3); } }
.marg-unresolved {
  display: block; width: 100%; max-width: 600px; text-align: left;
  background: none; cursor: pointer;
  border: 1px dashed color-mix(in srgb, var(--uv) 50%, transparent);
  padding: 30px 24px 22px; text-decoration: none;
  transition: border-color 160ms ease;
}
.marg-unresolved:hover, .marg-unresolved:focus-visible {
  border-color: color-mix(in srgb, var(--uv) 85%, transparent);
}
.marg-unresolved .mun-line {
  font-family: var(--f-editorial); font-style: italic; font-size: 22px;
  color: var(--amethyst); margin: 0 0 10px;
}
.marg-unresolved .mun-hint { font-family: var(--f-mono); font-size: var(--fs-micro); color: var(--dusk); margin: 0; }
/* Toggle behavior (M.E. 2026-08-03: "clicking does nothing") */
.marg-unresolved .mun-body {
  display: none; font-family: var(--f-body); font-weight: 300;
  font-size: var(--fs-body); color: var(--ash); margin: 14px 0 10px;
}
.marg-unresolved.is-open .mun-body { display: block; }
.marg-unresolved.is-open { border-style: solid; }

/* --- MARKERS ---
   NOTA BENE — USAGE RULE (M.E. flag 2026-08-03, "inconsistent"):
   · .marker-nb (gold ligature stamp) = standalone section stamps ONLY.
   · Inline references ALWAYS use .nb (mono, UV): <span class="nb">NB</span> · …
   Never mix the two registers in one context. */
.nb { font-family: var(--f-mono); color: var(--uv); letter-spacing: 1px; }
.marker { position: relative; width: 72px; height: 72px; flex: 0 0 auto; }
.marker img { position: absolute; display: block; }
.marker-lozenge::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 31px; height: 31px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid var(--sun);
}
/* HEDERA — typographic (M.E.: draft vector wasn't a proper hedera).
   U+2767 ROTATED FLORAL HEART BULLET, gold. Queue Figma redraw. */
.marker-hedera::before {
  content: "\2767"; position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--f-editorial), "Segoe UI Symbol", "Apple Symbols", serif;
  font-size: 44px; line-height: 1; color: var(--sun);
}
.hedera-inline::before {
  content: "\2767";
  font-family: var(--f-editorial), "Segoe UI Symbol", "Apple Symbols", serif;
  color: var(--sun); line-height: 1;
}
.marker-nb .nb-glyph { left: 15px; top: 17px; width: 42px; height: 38px; }
.marker-sol .sol-ring { left: 21px; top: 21px; width: 30px; height: 30px; }
.marker-sol .sol-core { left: 32px; top: 32px; width: 8px; height: 8px; }
/* NORTH STAR — 160px default (M.E.: sharpest possible). Percentage
   anatomy scales sharp at any size. Middle diamond = CSS geometry,
   FILLS GOLD ON HOVER (span.ns-core replaces the old asset). */
.marker-northstar { width: 160px; height: 160px; }
.marker-northstar .ns-arc    { left: 15%;    top: 15%;    width: 70%;   height: 35%; }
.marker-northstar .ns-rays-a { left: 21.7%;  top: 25.1%;  width: 56.7%; height: 49.9%; }
.marker-northstar .ns-rays-b { left: 16.2%;  top: 29.75%; width: 67.7%; height: 58.6%; }
.marker-northstar .ns-beam-a { left: 48.75%; top: 11.7%;  width: 2.5%;  height: 38.3%; }
.marker-northstar .ns-beam-b { left: 47.5%;  top: 6.7%;   width: 5%;    height: 43.3%; }
.marker-northstar .ns-ring   { left: 43.3%;  top: 43.3%;  width: 13.4%; height: 13.4%; }
.marker-northstar .ns-core {
  position: absolute; left: 50%; top: 50%; width: 6.5%; height: 6.5%;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid var(--sun); background: transparent;
  transition: background 180ms ease;
}
.marker-northstar:hover .ns-core,
.marker-northstar:focus-visible .ns-core { background: var(--sun); }

/* ============================================================
   BATCH 4: CHARTS — closes the 33. CHART-STYLE-GUIDE-V3
   exemplars: shell + caption are production classes; bodies are
   DS reference renders (real charts built data-driven at page-
   build). Bullet/Waterfall/Funnel CSS-native; purple = color-mix
   on --uv (legacy #9E47FF normalized; committed vectors recolored
   by the download notebook).
   ============================================================ */
.chart {
  position: relative; width: 280px; height: 200px; flex: 0 0 auto;
  background: var(--void-deep); border: 1px solid var(--hairline);
}
.chart img { position: absolute; display: block; }
.chart .ch-caption {
  position: absolute; left: 12px; bottom: 8px; margin: 0;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 1px;
  color: var(--ash); text-transform: uppercase;
}
.chart .ch-grid {
  position: absolute; left: 0; width: 260px; height: 1px;
  background: rgba(164, 152, 181, 0.08);
}
.chart-line .ch-path { left: 5px; top: 39px; width: 250px; height: 110px; }
.chart-line .ch-dot  { left: 251px; top: 35px; width: 8px; height: 8px; }
.chart-area .ch-fill   { left: 5px; top: 45px; width: 250px; height: 122px; }
.chart-area .ch-stroke { left: 5px; top: 45px; width: 250px; height: 104px; }
.chart-area .ch-dot    { left: 251px; top: 41px; width: 8px; height: 8px; }
.chart-donut .ch-ring { left: 87px; top: 37px; width: 104px; height: 104px; }
.chart-donut .ch-arc  { left: 113px; top: 37px; width: 78px; height: 70px; }
.chart-scatter .ch-axis-x { position: absolute; left: 5px; top: 159px; width: 248px; height: 1px; background: rgba(164,152,181,0.15); }
.chart-scatter .ch-axis-y { position: absolute; left: 5px; top: 13px; width: 1px; height: 148px; background: rgba(164,152,181,0.15); }
.chart-scatter .ch-pt    { width: 8px; height: 8px; }
.chart-scatter .ch-pt-hi { width: 13px; height: 13px; }
.chart-funnel .ch-tier {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: var(--w); height: 30px;
  background: color-mix(in srgb, var(--uv) 78%, var(--void-deep));
  clip-path: polygon(0 0, 100% 0, calc(100% - 23px) 100%, 23px 100%);
}
.chart-radar .ch-frame  { left: 76.2px; top: 21px; width: 125.6px; height: 119.4px; }
.chart-radar .ch-rfill  { left: 95.1px; top: 27.6px; width: 78.4px; height: 102.1px; }
.chart-radar .ch-rstroke{ left: 95.1px; top: 27.6px; width: 78.4px; height: 102.1px; }
.chart-gauge .ch-track  { left: 19px;  top: 95px;   width: 220px; height: 54px; }
.chart-gauge .ch-value  { left: 19px;  top: 80.9px; width: 122px; height: 68.1px; }
.chart-gauge .ch-needle { left: 129px; top: 95px;   width: 42px;  height: 54px; }
.chart-gauge .ch-pivot  { left: 125px; top: 145px;  width: 8px;   height: 8px; }
.chart-bullet .ch-track  { position: absolute; left: 5px; top: 85px; width: 240px; height: 26px; background: rgba(229,184,11,0.22); }
.chart-bullet .ch-bar    { position: absolute; left: 5px; top: 92px; height: 12px; width: var(--w, 150px); background: var(--sun); }
.chart-bullet .ch-target { position: absolute; top: 76px; height: 44px; width: 3px; left: var(--t, 189px); background: var(--starlight); }
.chart-waterfall .ch-col {
  position: absolute; width: 40px;
  background: color-mix(in srgb, var(--uv) 42%, transparent);
}
.chart-waterfall .ch-col.is-anchor { background: color-mix(in srgb, var(--uv) 85%, transparent); }
.chart-waterfall .ch-link { position: absolute; height: 1px; width: 14px; background: rgba(164,152,181,0.2); }
