/* MOTION Control — So Cal Classic Car Storage (tenant instance, dev preview)
   Structure, IA and interaction patterns are Tech Hub's internal MOTION Control
   command center. Tokens are namespaced --cc-* and the theme attribute is
   data-cc-theme (NOT data-theme) — deliberately kept identical to the real
   product so this skin is portable back, and so the console's theme is
   independent of the marketing site's. Dark is the default. */

:root {
  --cc-bg: #08080A;
  --cc-sidebar: #0B0B0E;
  --cc-surface: rgba(255, 255, 255, .055);
  --cc-surface-2: rgba(255, 255, 255, .10);
  --cc-surface-solid: #14141A;
  --cc-border: rgba(255, 255, 255, .14);
  --cc-text: #E8E8E6;
  --cc-text-strong: #FFFFFF;
  --cc-muted: #9A9A9E;
  /* Lifted from the product's #6b7c96-equivalent: --cc-faint carries the small
     uppercase mono labels, and the darker value only reached ~3.95:1 here. */
  --cc-faint: #82828A;
  --cc-green: #34D399;
  --cc-amber: #FBBF24;
  --cc-red: #F87171;
  /* The tenant's brand amber occupies MOTION Control's --cc-gold slot. */
  --cc-gold: #FDBC11;
  --cc-on-gold: #0A0A0B;

  --cc-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --cc-display: "Space Grotesk", "Inter", sans-serif;
  --cc-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --cc-ease: cubic-bezier(.22, .61, .36, 1);
}

:root[data-cc-theme="light"] {
  --cc-bg: #F2F1EE;
  --cc-sidebar: #FFFFFF;
  --cc-surface: rgba(10, 10, 12, .045);
  --cc-surface-2: rgba(10, 10, 12, .085);
  --cc-surface-solid: #FFFFFF;
  --cc-border: rgba(10, 10, 12, .16);
  --cc-text: #24242A;
  --cc-text-strong: #0D0D10;
  --cc-muted: #5A5A62;
  /* Panels sit slightly DARKER than the page in light mode, so faint text needs to
     clear AA against the panel, not just the body. #6A6A72 only made 4.34 there. */
  --cc-faint: #62626A;
  --cc-green: #059669;
  --cc-amber: #B45309;
  --cc-red: #DC2626;
  /* Brand amber can't carry small text on light paper — darkened, same fix as the site.
     Taken one step deeper than the site's #8A6206 because here it also has to carry
     9.5px labels inside panels (.record__bay), where #8A6206 only reached 4.32. */
  --cc-gold: #7D5805;
  --cc-on-gold: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  min-height: 100vh; background: var(--cc-bg); color: var(--cc-text);
  font-family: var(--cc-sans); font-size: 14px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--cc-gold); outline-offset: 2px; border-radius: 4px; }

.shell { display: flex; min-height: 100vh; }

/* ---------------- Sidebar ---------------- */
.sidebar {
  position: fixed; inset-block: 0; left: 0; z-index: 40;
  width: 240px; display: flex; flex-direction: column;
  border-right: 1px solid var(--cc-border); background: var(--cc-sidebar);
  transform: translateX(-100%); transition: transform .25s var(--cc-ease);
}
.sidebar.is-open { transform: none; }
@media (min-width: 1024px) { .sidebar { transform: none; } }

.sb__head { padding: 18px 16px 14px; }
.sb__logo { height: 30px; width: auto; display: block; }
:root[data-cc-theme="light"] .sb__logo { filter: brightness(.25) saturate(1.6); }
.sb__tenant {
  display: flex; align-items: center; gap: 8px; margin-top: 11px;
  font-family: var(--cc-mono); font-size: 9.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .13em; color: var(--cc-muted);
}
.dot { width: 6px; height: 6px; border-radius: 50%; flex: none; }
.dot--gold { background: var(--cc-gold); }
.dot--green { background: var(--cc-green); }
.dot--amber { background: var(--cc-amber); }
.dot--red { background: var(--cc-red); }

.sb__tools { padding: 0 12px; }
.sb__jump {
  display: flex; width: 100%; align-items: center; justify-content: space-between;
  border: 1px solid var(--cc-border); border-radius: 8px; background: var(--cc-surface);
  padding: 8px 11px; font-size: 12px; color: var(--cc-muted);
  transition: color .2s var(--cc-ease), border-color .2s var(--cc-ease);
}
.sb__jump:hover { color: var(--cc-text-strong); border-color: var(--cc-gold); }
kbd {
  font-family: var(--cc-mono); font-size: 10px;
  border: 1px solid var(--cc-border); border-radius: 4px; padding: 1px 5px;
}
.sb__filter {
  width: 100%; margin-top: 8px;
  border: 1px solid var(--cc-border); border-radius: 8px; background: var(--cc-surface);
  padding: 8px 11px; font-size: 12px; color: var(--cc-text); font-family: inherit;
}
.sb__filter::placeholder { color: var(--cc-faint); }
.sb__filter:focus { outline: none; border-color: var(--cc-gold); }

.sb__nav { flex: 1; overflow-y: auto; padding: 14px 12px 16px; }
.sb__group { margin-bottom: 16px; }
.sb__group.is-hidden { display: none; }
.sb__grouplabel {
  padding: 0 8px 5px; font-family: var(--cc-mono);
  font-size: 9.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .13em; color: var(--cc-faint);
}
.navitem {
  display: flex; align-items: center; gap: 10px;
  border-radius: 8px; padding: 8px 10px; font-size: 13.5px;
  color: var(--cc-muted); transition: background .18s var(--cc-ease), color .18s var(--cc-ease);
}
.navitem:hover { background: var(--cc-surface); color: var(--cc-text-strong); }
.navitem.is-active {
  background: var(--cc-surface-2); color: var(--cc-text-strong); font-weight: 600;
}
.navitem.is-hidden { display: none; }
.navitem__icon { width: 16px; text-align: center; font-size: 12px; opacity: .75; flex: none; }
.navitem.is-active .navitem__pip { margin-left: auto; width: 6px; height: 6px; border-radius: 50%; background: var(--cc-gold); }

.sb__foot { border-top: 1px solid var(--cc-border); padding: 12px; }
.sb__role {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--cc-mono); font-size: 9.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--cc-muted);
}
.sb__footrow { display: flex; align-items: center; justify-content: space-between; }
.iconbtn {
  border: 1px solid var(--cc-border); border-radius: 6px; background: transparent;
  padding: 4px 8px; font-size: 12px; color: var(--cc-muted);
  transition: color .2s var(--cc-ease), border-color .2s var(--cc-ease);
}
.iconbtn:hover { color: var(--cc-text-strong); border-color: var(--cc-gold); }
.sb__links { display: flex; justify-content: space-between; margin-top: 10px; font-size: 12px; }
.sb__links a, .sb__links button {
  color: var(--cc-muted); background: none; border: 0; padding: 0;
  transition: color .2s var(--cc-ease);
}
.sb__links a:hover, .sb__links button:hover { color: var(--cc-text-strong); }
.sb__tag {
  margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--cc-border);
  text-align: center; font-family: var(--cc-mono);
  font-size: 9.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .13em; color: var(--cc-faint);
}
.sb__tag b { color: var(--cc-gold); font-weight: 700; }

.backdrop { position: fixed; inset: 0; z-index: 30; background: rgba(0,0,0,.55); display: none; }
.backdrop.is-open { display: block; }
@media (min-width: 1024px) { .backdrop { display: none !important; } }

/* ---------------- Main ---------------- */
.main { display: flex; min-width: 0; flex: 1; flex-direction: column; }
@media (min-width: 1024px) { .main { padding-left: 240px; } }

.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 12px; height: 56px;
  padding-inline: 16px; border-bottom: 1px solid var(--cc-border);
  /* Explicit rgba rather than color-mix(): some engines serialize color-mix as
     color(srgb 0.03 0.03 0.04 / .94), which is harder to reason about and to audit. */
  background: rgba(8, 8, 10, .94);
  backdrop-filter: blur(10px);
}
:root[data-cc-theme="light"] .topbar { background: rgba(242, 241, 238, .94); }
@media (min-width: 1024px) { .topbar { padding-inline: 30px; } .topbar__menu { display: none; } }
.topbar__crumb {
  font-family: var(--cc-mono); font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .13em; color: var(--cc-faint);
}
.topbar__sep { color: var(--cc-faint); }
.topbar__title { font-size: 14px; font-weight: 700; color: var(--cc-text-strong); }
.topbar__sync {
  margin-left: auto; font-family: var(--cc-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .1em; color: var(--cc-faint);
  display: inline-flex; align-items: center; gap: 7px;
}

.content { flex: 1; padding: 26px 16px 40px; }
@media (min-width: 1024px) { .content { padding: 30px 30px 48px; } }

.banner {
  display: flex; gap: 10px; align-items: flex-start;
  border: 1px solid var(--cc-border); border-left: 2px solid var(--cc-gold);
  border-radius: 8px; background: var(--cc-surface);
  padding: 11px 14px; margin-bottom: 24px;
  font-size: 12.5px; color: var(--cc-muted);
}
.banner b { color: var(--cc-text-strong); }

.view { display: none; }
.view.is-active { display: block; }

.vhead { margin-bottom: 22px; }
.vhead h1 {
  font-family: var(--cc-display); font-size: clamp(21px, 3vw, 27px);
  font-weight: 700; letter-spacing: -.025em; color: var(--cc-text-strong);
}
.vhead p { color: var(--cc-muted); margin-top: 6px; font-size: 13.5px; max-width: 70ch; }

.sectitle {
  font-family: var(--cc-mono); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--cc-faint);
  margin: 30px 0 12px;
}

/* ---------------- Cards / tiles ---------------- */
.panel {
  border: 1px solid var(--cc-border); border-radius: 10px;
  background: var(--cc-surface); padding: 18px;
}
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.kpi {
  border: 1px solid var(--cc-border); border-radius: 10px;
  background: var(--cc-surface); padding: 16px 18px;
}
.kpi__k {
  font-family: var(--cc-mono); font-size: 9.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .13em; color: var(--cc-faint);
}
.kpi__v {
  font-family: var(--cc-display); font-size: 26px; font-weight: 700;
  letter-spacing: -.03em; color: var(--cc-text-strong); margin-top: 9px; line-height: 1;
}
.kpi__sub { font-size: 12px; color: var(--cc-muted); margin-top: 7px; }

.cols { display: grid; gap: 16px; }
.cols--2 { grid-template-columns: 1fr 1fr; }
.cols--32 { grid-template-columns: 1.5fr 1fr; }

/* Triage list */
.triage { list-style: none; }
.triage li {
  display: grid; grid-template-columns: 8px 1fr auto; gap: 12px; align-items: start;
  padding: 12px 0; border-bottom: 1px solid var(--cc-border);
}
.triage li:last-child { border-bottom: 0; }
.triage .dot { margin-top: 6px; }
.triage b { color: var(--cc-text-strong); font-weight: 600; display: block; font-size: 13.5px; }
.triage span { color: var(--cc-muted); font-size: 12.5px; }
.triage em {
  font-family: var(--cc-mono); font-style: normal; font-size: 10px;
  text-transform: uppercase; letter-spacing: .1em; color: var(--cc-faint); white-space: nowrap;
}

/* Connected systems */
.systems { display: flex; flex-wrap: wrap; gap: 9px; }
.systems li {
  list-style: none; display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--cc-border); border-radius: 999px;
  background: var(--cc-surface); padding: 6px 13px; font-size: 12.5px;
}
.systems .st {
  font-family: var(--cc-mono); font-size: 9.5px; text-transform: uppercase;
  letter-spacing: .1em; color: var(--cc-faint);
}

/* Tables */
.table { width: 100%; border-collapse: collapse; font-size: 13px; }
.table th {
  text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--cc-border);
  font-family: var(--cc-mono); font-size: 9.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--cc-faint); white-space: nowrap;
}
.table td { padding: 11px 10px; border-bottom: 1px solid var(--cc-border); color: var(--cc-text); }
.table tbody tr { cursor: pointer; transition: background .15s var(--cc-ease); }
.table tbody tr:hover { background: var(--cc-surface-2); }
.table tbody tr.is-sel { background: var(--cc-surface-2); box-shadow: inset 2px 0 0 var(--cc-gold); }
.table td.num, .table th.num { text-align: right; font-family: var(--cc-mono); }
.tablewrap { overflow-x: auto; }

.badge {
  display: inline-block; font-family: var(--cc-mono);
  font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em;
  padding: 3px 8px; border-radius: 999px; white-space: nowrap;
}
/* Explicit rgba rather than color-mix() so the composite is unambiguous (and
   measurable). Badge text is 9.5px bold, so it needs the 4.5:1 small-text bar. */
.badge--gold  { background: rgba(253, 188, 17, .18);  color: var(--cc-gold); }
.badge--green { background: rgba(52, 211, 153, .17);  color: var(--cc-green); }
.badge--amber { background: rgba(251, 191, 36, .17);  color: var(--cc-amber); }
.badge--red   { background: rgba(248, 113, 113, .17); color: var(--cc-red); }
.badge--mute  { background: var(--cc-surface-2);      color: var(--cc-muted); }

/* Light mode: the pale tints push these to 1.7–2.9:1 with the standard status
   colors, so both the tint and the ink are re-derived here. */
:root[data-cc-theme="light"] .badge--gold  { background: rgba(125, 88, 5, .14);   color: #6B4C05; }
:root[data-cc-theme="light"] .badge--green { background: rgba(2, 76, 58, .11);    color: #024C3A; }
:root[data-cc-theme="light"] .badge--amber { background: rgba(138, 71, 8, .13);   color: #8A4708; }
:root[data-cc-theme="light"] .badge--red   { background: rgba(163, 18, 18, .12);  color: #A31212; }
:root[data-cc-theme="light"] .badge--mute  { background: rgba(10, 10, 12, .09);   color: #3F3F46; }

/* Bay map */
.zone + .zone { margin-top: 20px; }
.zone__head {
  display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 10px;
}
.zone__name { font-weight: 700; color: var(--cc-text-strong); font-size: 13.5px; }
.zone__meta { font-family: var(--cc-mono); font-size: 10.5px; color: var(--cc-faint); }
.baymap { display: grid; grid-template-columns: repeat(auto-fill, minmax(46px, 1fr)); gap: 6px; }
.baycell {
  aspect-ratio: 1; border-radius: 6px; border: 1px solid var(--cc-border);
  background: var(--cc-surface); display: flex; align-items: center; justify-content: center;
  font-family: var(--cc-mono); font-size: 9.5px; color: var(--cc-faint);
  transition: transform .15s var(--cc-ease), border-color .15s var(--cc-ease);
}
.baycell--occ {
  background: color-mix(in srgb, var(--cc-gold) 16%, transparent);
  border-color: color-mix(in srgb, var(--cc-gold) 40%, transparent);
  color: var(--cc-text-strong);
}
.baycell--linked { cursor: pointer; }
.baycell--linked:hover { transform: translateY(-2px); border-color: var(--cc-gold); }
.legend { display: flex; gap: 16px; margin-top: 12px; font-family: var(--cc-mono); font-size: 10px; color: var(--cc-faint); text-transform: uppercase; letter-spacing: .1em; }
.legend i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 6px; vertical-align: -1px; border: 1px solid var(--cc-border); }
.legend i.occ { background: color-mix(in srgb, var(--cc-gold) 16%, transparent); border-color: color-mix(in srgb, var(--cc-gold) 40%, transparent); }
.legend i.open { background: var(--cc-surface); }

/* Funnel */
.funnel { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.fstep {
  border: 1px solid var(--cc-border); border-radius: 10px; background: var(--cc-surface);
  padding: 15px; position: relative;
}
.fstep b {
  display: block; font-family: var(--cc-display); font-size: 24px; font-weight: 700;
  letter-spacing: -.03em; color: var(--cc-text-strong); line-height: 1;
}
.fstep span { display: block; margin-top: 8px; font-size: 12.5px; color: var(--cc-text); font-weight: 600; }
.fstep em {
  display: block; font-style: normal; margin-top: 3px;
  font-family: var(--cc-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: .1em; color: var(--cc-faint);
}

/* Quote builder */
.quote { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.field { margin-bottom: 16px; }
.field > label {
  display: block; font-family: var(--cc-mono); font-size: 9.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--cc-faint); margin-bottom: 7px;
}
.field select, .field input[type="number"] {
  width: 100%; font-family: inherit; font-size: 13.5px;
  border: 1px solid var(--cc-border); border-radius: 8px;
  background: var(--cc-surface-solid); color: var(--cc-text-strong); padding: 9px 11px;
}
.field select:focus, .field input:focus { outline: none; border-color: var(--cc-gold); }
.checks { display: grid; gap: 9px; }
.check { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--cc-text); }
.check input { width: 15px; height: 15px; accent-color: var(--cc-gold); flex: none; }
.quote__out { border: 1px solid var(--cc-border); border-radius: 10px; background: var(--cc-surface); overflow: hidden; }
.quote__total { padding: 20px; border-bottom: 1px solid var(--cc-border); }
.quote__total .k {
  font-family: var(--cc-mono); font-size: 9.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .13em; color: var(--cc-faint);
}
.quote__total .v {
  font-family: var(--cc-display); font-size: 42px; font-weight: 700;
  letter-spacing: -.04em; color: var(--cc-text-strong); line-height: 1; margin-top: 8px;
}
.quote__total .per { font-size: 15px; color: var(--cc-muted); font-family: var(--cc-sans); letter-spacing: 0; }
.lines { list-style: none; padding: 8px 20px 16px; }
.lines li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 8px 0; font-size: 13px; border-bottom: 1px solid var(--cc-border);
}
.lines li:last-child { border-bottom: 0; }
.lines .amt { font-family: var(--cc-mono); color: var(--cc-text-strong); white-space: nowrap; }
.lines .neg { color: var(--cc-green); }
.lines li.total { border-top: 1px solid var(--cc-border); margin-top: 6px; padding-top: 12px; font-weight: 700; }

/* Record panel */
.record__title { font-family: var(--cc-display); font-size: 19px; font-weight: 700; letter-spacing: -.02em; color: var(--cc-text-strong); }
.record__bay { font-family: var(--cc-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; color: var(--cc-gold); margin-top: 5px; }
.deflist { list-style: none; margin-top: 16px; }
.deflist li { padding: 10px 0; border-bottom: 1px solid var(--cc-border); }
.deflist li:last-child { border-bottom: 0; }
.deflist .k { display: block; font-family: var(--cc-mono); font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--cc-faint); }
.deflist .v { display: block; margin-top: 4px; color: var(--cc-text-strong); font-size: 13.5px; }
.deflist .v small { color: var(--cc-muted); font-weight: 400; }
.note { margin-top: 14px; padding: 12px 14px; border-radius: 8px; background: var(--cc-surface-2); font-size: 13px; color: var(--cc-text); }

/* Partner scorecard */
.score { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 14px; }
.score div { border: 1px solid var(--cc-border); border-radius: 8px; padding: 11px 12px; }
.score b {
  display: block; font-family: var(--cc-display); font-size: 19px; font-weight: 700;
  letter-spacing: -.025em; color: var(--cc-text-strong); line-height: 1;
}
.score span {
  display: block; margin-top: 5px; font-family: var(--cc-mono); font-size: 9px;
  text-transform: uppercase; letter-spacing: .12em; color: var(--cc-faint); line-height: 1.4;
}
.contactline { margin-top: 3px; font-family: var(--cc-mono); font-size: 12px; color: var(--cc-muted); }
.empty { color: var(--cc-faint); font-size: 13px; padding: 28px 0; text-align: center; }

/* Bars */
.bars { list-style: none; }
.bars li { margin-bottom: 14px; }
.bars .row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.bars .row b { color: var(--cc-text-strong); font-weight: 600; }
.bars .row span { font-family: var(--cc-mono); color: var(--cc-muted); }
.bars .track { height: 7px; border-radius: 999px; background: var(--cc-surface-2); overflow: hidden; }
.bars .fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, color-mix(in srgb, var(--cc-gold) 55%, transparent), var(--cc-gold)); }

.searchbar { margin-bottom: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
.searchbar input, .searchbar select {
  font-family: inherit; font-size: 13px; border: 1px solid var(--cc-border);
  border-radius: 8px; background: var(--cc-surface-solid); color: var(--cc-text-strong);
  padding: 8px 11px;
}
.searchbar input { flex: 1; min-width: 200px; }
.searchbar input:focus, .searchbar select:focus { outline: none; border-color: var(--cc-gold); }

.foot {
  border-top: 1px solid var(--cc-border); padding: 18px 16px 26px;
  font-size: 11.5px; color: var(--cc-faint); line-height: 1.6;
}
@media (min-width: 1024px) { .foot { padding-inline: 30px; } }
.foot b { color: var(--cc-muted); }

/* ---------------- Command palette ---------------- */
.palette {
  position: fixed; inset: 0; z-index: 60; display: none;
  align-items: flex-start; justify-content: center;
  padding: 16px; padding-top: 14vh; background: rgba(0,0,0,.62);
}
.palette.is-open { display: flex; }
.palette__box {
  width: 100%; max-width: 520px; overflow: hidden; border-radius: 12px;
  border: 1px solid var(--cc-border); background: var(--cc-surface-solid);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.7);
}
.palette__input {
  width: 100%; border: 0; border-bottom: 1px solid var(--cc-border);
  background: transparent; padding: 14px 16px; font-family: inherit; font-size: 14px;
  color: var(--cc-text-strong);
}
.palette__input:focus { outline: none; }
.palette__input::placeholder { color: var(--cc-faint); }
.palette__list { list-style: none; max-height: 300px; overflow-y: auto; padding: 6px; }
.palette__list li {
  display: flex; align-items: center; gap: 10px; padding: 9px 11px;
  border-radius: 8px; font-size: 13.5px; color: var(--cc-text); cursor: pointer;
}
.palette__list li.is-cursor { background: var(--cc-surface-2); color: var(--cc-text-strong); }
.palette__list .g {
  margin-left: auto; font-family: var(--cc-mono); font-size: 9.5px;
  text-transform: uppercase; letter-spacing: .1em; color: var(--cc-faint);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1100px) {
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .funnel { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .cols--2, .cols--32, .quote { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .kpis, .funnel { grid-template-columns: 1fr; }
  .content { padding: 20px 14px 34px; }
}
