/* ═══════════════════════════════════════════════════════════════════
   SALTER BROTHERS × TRUSTYOU — REPUTATION INTELLIGENCE
   Restyled to the TrustYou Design System (MUI Material v6.4.4).
   Roboto + violet primary + hairline-outlined white surfaces.
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. TRUSTYOU TOKENS ─────────────────────────────────────────── */
:root {
  /* Brand */
  --ty-primary-main:   #6847F5;
  --ty-primary-light:  #856CFF;
  --ty-primary-dark:   #4E2BD9;
  --ty-brand-primary:  #7C63FC;
  --ty-brand-secondary:#080032;
  --ty-brand-aqua:     #1CDDE6;
  --ty-brand-deepcyan: #0B979F;
  --ty-brand-palesand: #EEEBE4;

  /* Text */
  --ty-text-primary:   #080032;
  --ty-text-secondary: #424242;
  --ty-text-tertiary:  #757575;
  --ty-text-disabled:  #9E9E9E;
  --ty-text-on-violet: #FFFFFF;

  /* Surfaces */
  --ty-page:           #F5F5F7;
  --ty-paper:          #FFFFFF;
  --ty-raised:         #FAFAFC;
  --ty-divider:        #E0E0E0;
  --ty-divider-strong: #BDBDBD;

  /* Semantic chart */
  --ty-chart-good:     #009688;
  --ty-chart-good-dk:  #00695C;
  --ty-chart-good-lt:  #80CBC4;
  --ty-chart-neutral:  #FFA726;
  --ty-chart-neutral-lt:#FFCC80;
  --ty-chart-bad:      #E53935;
  --ty-chart-bad-lt:   #EF9A9A;

  /* Heatmap bands (Strong scale — teal good → red bad) */
  --hm-excellent:      #00695C;
  --hm-very-good:      #009688;
  --hm-good:           #4DB6AC;
  --hm-fair:           #FFCC80;
  --hm-below:          #FFA726;
  --hm-critical:       #E53935;

  /* Status colors — semantic shortcuts kept under old names so JS keeps working */
  --gold:        var(--ty-primary-main);
  --gold-soft:   var(--ty-primary-light);
  --gold-deep:   var(--ty-primary-dark);
  --sage:        var(--ty-chart-good);
  --sage-deep:   var(--ty-chart-good-dk);
  --sage-soft:   var(--ty-chart-good);
  --rust:        var(--ty-chart-bad);
  --rust-soft:   var(--ty-chart-bad);
  --warn:        var(--ty-chart-neutral);
  --cream:       var(--ty-text-primary);
  --cream-soft:  var(--ty-text-secondary);
  --cream-mute:  var(--ty-text-tertiary);
  --ink-deep:    var(--ty-page);
  --ink:         var(--ty-paper);
  --ink-soft:    var(--ty-raised);
  --ink-line:    var(--ty-divider);
  --ink-tint:    var(--ty-divider-strong);

  /* Type stacks */
  --serif: "Roboto", "Helvetica", "Arial", sans-serif;
  --sans:  "Roboto", "Helvetica", "Arial", sans-serif;
  --mono:  "Roboto Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Layout */
  --gutter:    clamp(20px, 4vw, 56px);
  --max-w:     1400px;
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 12px;
  --radius-pill: 999px;

  /* Elevation — outlined-paper plus selective shadows */
  --outline:    0 0 0 1px rgba(69, 90, 100, 0.14);
  --outline-strong: 0 0 0 1px rgba(69, 90, 100, 0.22);
  --elev-1:     0 1px 2px rgba(8, 0, 50, 0.04), 0 1px 3px rgba(8, 0, 50, 0.06);
  --elev-2:     0 4px 12px rgba(8, 0, 50, 0.06), 0 1px 4px rgba(8, 0, 50, 0.04);
  --elev-4:     0 12px 32px rgba(8, 0, 50, 0.08), 0 4px 12px rgba(8, 0, 50, 0.06);
  --elev-16:    0 24px 60px rgba(8, 0, 50, 0.18), 0 8px 24px rgba(8, 0, 50, 0.10);

  /* Motion */
  --t-fast: 180ms cubic-bezier(.4,0,.2,1);
  --t-base: 225ms cubic-bezier(.4,0,.2,1);
  --t-slow: 420ms cubic-bezier(.2,.8,.2,1);
}

/* ── 2. RESET ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ty-text-primary);
  background: var(--ty-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; font-family: var(--sans); }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; width: 100%; }
:focus-visible {
  outline: 2px solid var(--ty-primary-main);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Type primitives */
.serif      { font-family: var(--serif); }
.italic     { font-style: italic; }
.mono       { font-family: var(--mono); font-feature-settings: 'tnum'; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ty-primary-main);
}
.muted { color: var(--ty-text-secondary); }
.dim   { color: var(--ty-text-tertiary); }

/* ── 3. TOP BAR ──────────────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 14px var(--gutter);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--ty-divider);
}
.brandmark { display: flex; align-items: center; gap: 16px; }
.brandmark__divider {
  width: 1px; height: 28px;
  background: var(--ty-divider);
}
.brandmark__ty {
  display: flex; align-items: center; gap: 8px;
  height: 28px;
}
.brandmark__ty img { height: 24px; width: auto; display: block; }
.brandmark__seal {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: var(--ty-text-primary);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.brandmark__title {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--ty-text-primary);
}
.brandmark__sub {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ty-text-tertiary);
  text-transform: uppercase;
}
.topbar__meta { display: flex; align-items: center; gap: 12px; }
.live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  background: rgba(0, 150, 136, 0.08);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  color: var(--ty-chart-good-dk);
}
.live-pill::before {
  content: ''; width: 6px; height: 6px;
  background: var(--ty-chart-good); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(0, 150, 136, 0.6);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 150, 136, 0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(0, 150, 136, 0); }
}
.confidential-pill {
  padding: 5px 12px;
  background: var(--ty-page);
  border: 1px solid var(--ty-divider);
  border-radius: var(--radius-pill);
  font-size: 11px;
  color: var(--ty-text-tertiary);
}
.btn-export {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  background: var(--ty-primary-main);
  color: var(--ty-text-on-violet);
  border-radius: var(--radius-sm);
  transition: background var(--t-base), box-shadow var(--t-base);
  box-shadow: var(--elev-1);
}
.btn-export:hover { background: var(--ty-primary-dark); box-shadow: var(--elev-2); }

/* ── 4. HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 112px) var(--gutter) clamp(48px, 6vw, 80px);
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(124, 99, 252, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(28, 221, 230, 0.06), transparent 70%),
    linear-gradient(180deg, #FDFCFF 0%, var(--ty-page) 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--ty-divider);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('assets/cloud-hero.webp') center right / cover no-repeat;
  opacity: 0.55;
  mask-image: linear-gradient(to right, transparent 0%, transparent 30%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,1) 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 30%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,1) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: end;
}
.hero__lede { max-width: 640px; }
.hero__eyebrow-line {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.hero__eyebrow-line::before {
  content: ''; width: 36px; height: 2px; background: var(--ty-primary-main);
}
.hero__title {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(44px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--ty-text-primary);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ty-primary-main);
  background: linear-gradient(135deg, var(--ty-primary-main) 0%, var(--ty-brand-deepcyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ty-text-secondary);
  max-width: 540px;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-static {
  padding: 6px 14px;
  background: var(--ty-paper);
  box-shadow: var(--outline);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  color: var(--ty-text-secondary);
}

/* Hero metric grid */
.hero__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.metric {
  display: flex;
  flex-direction: column;
  background: var(--ty-paper);
  box-shadow: var(--outline);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  cursor: pointer;
  transition: box-shadow var(--t-base), transform var(--t-base);
  text-align: left;
  min-height: 168px;
}
.metric:hover {
  box-shadow: var(--outline), var(--elev-2);
  transform: translateY(-2px);
}
.metric__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.metric__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ty-text-tertiary);
  font-weight: 500;
  flex: 1;
  min-width: 0;
  line-height: 1.4;
}
.metric__badge {
  flex-shrink: 0;
  font-size: 10px;
  letter-spacing: 0.06em;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}
.metric__badge--gold { background: rgba(104, 71, 245, 0.10); color: var(--ty-primary-dark); }
.metric__badge--sage { background: rgba(0, 150, 136, 0.10); color: var(--ty-chart-good-dk); }
.metric__badge--rust { background: rgba(229, 57, 53, 0.10); color: var(--ty-chart-bad); }
.metric__value {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 12px;
}
.metric__num {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ty-text-primary);
}
.metric__num--sage { color: var(--ty-chart-good-dk); }
.metric__num--rust { color: var(--ty-chart-bad); }
.metric__num--gold { color: var(--ty-primary-main); }
.metric__unit {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--ty-text-tertiary);
}
.metric__context {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ty-text-secondary);
  margin-top: auto;
}

/* ── 5. NAV RAIL ─────────────────────────────────────────────────── */
.nav-rail {
  position: sticky; top: 67px; z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ty-divider);
  padding: 0 var(--gutter);
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-rail::-webkit-scrollbar { display: none; }
.nav-rail__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex; gap: 2px;
  min-width: max-content;
}
.nav-tab {
  display: flex; align-items: baseline; gap: 8px;
  padding: 16px 18px;
  border-bottom: 2px solid transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--ty-text-tertiary);
  white-space: nowrap;
  transition: color var(--t-base), border-color var(--t-base);
}
.nav-tab__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ty-text-disabled);
  font-weight: 400;
}
.nav-tab:hover { color: var(--ty-text-primary); }
.nav-tab.is-active {
  color: var(--ty-primary-main);
  border-bottom-color: var(--ty-primary-main);
}
.nav-tab.is-active .nav-tab__num { color: var(--ty-primary-main); }

/* ── 6. SECTIONS ─────────────────────────────────────────────────── */
.section {
  display: none;
  padding: clamp(48px, 6vw, 80px) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.section.is-active { display: block; animation: fade-in 320ms cubic-bezier(.4,0,.2,1) both; }
@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.section__head { margin-bottom: 40px; max-width: 800px; }
.section__eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.section__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ty-primary-main);
  font-weight: 500;
}
.section__kicker {
  font-size: 11px; letter-spacing: 0.14em; font-weight: 500;
  text-transform: uppercase; color: var(--ty-primary-main);
}
.section__title {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--ty-text-primary);
}
.section__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ty-primary-main);
}
.section__lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ty-text-secondary);
  font-weight: 400;
}

/* Read guide panel */
.read-guide {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px;
  margin-bottom: 28px;
  background: rgba(104, 71, 245, 0.04);
  border-radius: var(--radius);
  border-left: 3px solid var(--ty-primary-main);
}
.read-guide__icon {
  width: 20px; height: 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--ty-primary-main);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
  font-family: var(--sans);
}
.read-guide__body {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ty-text-secondary);
}
.read-guide__body strong { color: var(--ty-text-primary); font-weight: 500; }
.read-guide__body code {
  font-family: var(--mono); font-size: 11.5px;
  padding: 1px 6px;
  background: var(--ty-paper);
  box-shadow: var(--outline);
  border-radius: var(--radius-sm);
  color: var(--ty-primary-dark);
}

/* ── 7. STAT STRIP / INSIGHTS / BARS ─────────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.stat {
  background: var(--ty-paper);
  box-shadow: var(--outline);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
}
.stat__label {
  font-size: 11px; letter-spacing: 0.12em; font-weight: 500;
  text-transform: uppercase;
  color: var(--ty-text-tertiary);
  margin-bottom: 10px;
}
.stat__value {
  font-family: var(--sans); font-weight: 300;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  color: var(--ty-text-primary);
}
.stat__sub {
  font-size: 12.5px;
  color: var(--ty-text-secondary);
}

/* Bars */
.bar {
  position: relative;
  height: 6px;
  background: var(--ty-divider);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.bar__fill {
  height: 100%;
  background: var(--ty-primary-main);
  border-radius: var(--radius-pill);
  transition: width var(--t-slow);
}
.bar__fill--sage  { background: var(--ty-chart-good); }
.bar__fill--rust  { background: var(--ty-chart-bad); }
.bar__fill--cream { background: var(--ty-divider-strong); }

/* Insight cards */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin: 32px 0;
}
.insight {
  padding: 22px;
  background: var(--ty-paper);
  box-shadow: var(--outline);
  border-radius: var(--radius);
  transition: box-shadow var(--t-base);
}
.insight:hover { box-shadow: var(--outline), var(--elev-2); }
.insight__tag {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.12em; font-weight: 600;
  text-transform: uppercase;
  color: var(--ty-primary-main);
  margin-bottom: 12px;
  padding: 3px 9px;
  background: rgba(104, 71, 245, 0.08);
  border-radius: var(--radius-sm);
}
.insight__title {
  font-family: var(--sans); font-weight: 500;
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--ty-text-primary);
}
.insight__body {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ty-text-secondary);
}
.insight__body strong { color: var(--ty-text-primary); font-weight: 500; }

/* Pull quote */
.pullquote {
  margin: 56px 0 0;
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(104, 71, 245, 0.04) 0%, rgba(28, 221, 230, 0.03) 100%);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}
.pullquote::before {
  content: '"';
  position: absolute;
  top: -8px; left: 24px;
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
  color: var(--ty-primary-main);
  opacity: 0.16;
  font-family: Georgia, serif;
}
.pullquote__text {
  font-family: var(--sans); font-weight: 300; font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  color: var(--ty-text-primary);
  max-width: 760px; margin: 0 auto 16px;
  letter-spacing: -0.015em;
}
.pullquote__attr {
  font-size: 11px; letter-spacing: 0.14em; font-weight: 500;
  text-transform: uppercase;
  color: var(--ty-primary-main);
}

/* ── 8. LEADERBOARD / MOVERS ─────────────────────────────────────── */
.leader {
  display: grid;
  grid-template-columns: 32px 1fr 200px 70px;
  align-items: center;
  gap: 18px;
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--t-fast);
}
.leader + .leader { border-top: 1px solid var(--ty-divider); }
.leader:hover { background: var(--ty-raised); }
.leader__rank {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ty-primary-main);
}
.leader__name {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ty-text-primary);
}
.leader__name-sub {
  font-size: 11.5px;
  color: var(--ty-text-tertiary);
  margin-top: 2px;
}
.leader__score {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
  text-align: right;
  color: var(--ty-text-primary);
}

/* Mover */
.mover {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  background: var(--ty-paper);
  box-shadow: var(--outline);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  cursor: pointer;
  transition: box-shadow var(--t-fast);
}
.mover:hover { box-shadow: var(--outline), var(--elev-1); }
.mover__delta {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 15px;
  min-width: 56px;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.mover__delta--up { color: var(--ty-chart-good-dk); background: rgba(0, 150, 136, 0.10); }
.mover__delta--dn { color: var(--ty-chart-bad); background: rgba(229, 57, 53, 0.10); }
.mover__name { flex: 1; font-size: 14px; font-weight: 500; color: var(--ty-text-primary); }
.mover__score { font-family: var(--mono); font-size: 12.5px; color: var(--ty-text-tertiary); }

/* ── 9. TABLES ───────────────────────────────────────────────────── */
.tbl-wrap {
  background: var(--ty-paper);
  box-shadow: var(--outline);
  border-radius: var(--radius);
  overflow-x: auto;
  overflow-y: hidden;
}
.tbl {
  width: 100%;
  font-size: 13.5px;
}
.tbl th {
  text-align: left;
  padding: 12px 18px;
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ty-text-tertiary);
  font-weight: 600;
  background: var(--ty-raised);
  border-bottom: 1px solid var(--ty-divider);
  white-space: nowrap;
  position: sticky; top: 0;
}
.tbl th.sortable { cursor: pointer; user-select: none; transition: color var(--t-fast); }
.tbl th.sortable:hover { color: var(--ty-text-primary); }
.tbl th.sortable::after {
  content: '↕'; opacity: 0.4; margin-left: 6px; font-size: 11px;
}
.tbl th.sort-asc::after  { content: '↑'; opacity: 1; color: var(--ty-primary-main); }
.tbl th.sort-desc::after { content: '↓'; opacity: 1; color: var(--ty-primary-main); }
.tbl td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--ty-divider);
  vertical-align: middle;
  color: var(--ty-text-primary);
}
.tbl tr:last-child td { border-bottom: none; }
.tbl tbody tr { transition: background var(--t-fast); }
.tbl tbody tr:hover { background: var(--ty-raised); }
.tbl tbody tr.is-clickable { cursor: pointer; }
.tbl tbody tr.is-highlight { background: rgba(104, 71, 245, 0.06); }
.tbl tbody tr.is-highlight:hover { background: rgba(104, 71, 245, 0.10); }
.tbl-num { font-family: var(--mono); font-feature-settings: 'tnum'; }
.tbl-state {
  display: inline-block;
  font-size: 10.5px; letter-spacing: 0.06em; font-weight: 500;
  padding: 2px 8px;
  background: var(--ty-raised);
  border-radius: var(--radius-sm);
  color: var(--ty-text-secondary);
  text-transform: uppercase;
}
.delta-up   { color: var(--ty-chart-good-dk); font-weight: 500; }
.delta-dn   { color: var(--ty-chart-bad); font-weight: 500; }
.delta-flat { color: var(--ty-text-tertiary); }

/* ── 10. MARKET COMPARISON ───────────────────────────────────────── */
.market-row {
  display: grid;
  grid-template-columns: 200px 1fr 80px 70px;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ty-divider);
  cursor: pointer;
}
.market-row:last-of-type { border-bottom: none; }
.market-row__cat {
  font-size: 14px;
  font-weight: 500;
  color: var(--ty-text-primary);
}
.market-row__bars {
  display: flex; flex-direction: column; gap: 8px;
}
.market-row__bar {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}
.market-row__bar-label {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ty-text-tertiary);
  font-size: 10.5px;
  font-weight: 500;
}
.market-row__bar-value {
  font-family: var(--mono);
  text-align: right;
  font-size: 12.5px;
  color: var(--ty-text-secondary);
}
.market-row__gap {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 500;
  text-align: right;
}
.market-row__trend {
  font-size: 18px;
  text-align: center;
}
.market-row__trend--up   { color: var(--ty-chart-good); }
.market-row__trend--flat { color: var(--ty-text-tertiary); }
.market-row__trend--down { color: var(--ty-chart-bad); }
.market-detail {
  display: none;
  grid-column: 1 / -1;
  padding: 0 0 12px 0;
}
.market-row.is-open .market-detail { display: block; animation: fade-in 280ms cubic-bezier(.4,0,.2,1) both; }
.market-detail__inner {
  padding: 16px 20px;
  background: rgba(104, 71, 245, 0.04);
  border-left: 3px solid var(--ty-primary-main);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ty-text-secondary);
}
.market-detail__inner strong { color: var(--ty-text-primary); font-weight: 500; }

/* ── 11. RADAR ───────────────────────────────────────────────────── */
.radar-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}
.radar-canvas {
  background: var(--ty-paper);
  box-shadow: var(--outline);
  border-radius: var(--radius);
  padding: 24px;
}
.radar-svg { width: 100%; height: auto; }
.radar-grid-ring { fill: none; stroke: var(--ty-divider); stroke-width: 1; }
.radar-axis-line { stroke: var(--ty-divider); stroke-width: 1; }
.radar-axis-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: var(--ty-text-secondary);
}
.radar-poly {
  fill-opacity: 0.10;
  stroke-width: 2;
  transition: fill-opacity var(--t-base), stroke-width var(--t-base);
}
.radar-poly:hover { fill-opacity: 0.24; stroke-width: 2.5; }

.radar-legend {
  background: var(--ty-paper);
  box-shadow: var(--outline);
  border-radius: var(--radius);
  padding: 18px;
}
.radar-legend__title {
  font-size: 11px; letter-spacing: 0.12em; font-weight: 600;
  text-transform: uppercase;
  color: var(--ty-text-tertiary);
  margin-bottom: 12px;
}
.radar-toggle {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  padding: 7px 10px;
  margin-bottom: 2px;
  border-radius: var(--radius-sm);
  text-align: left;
  transition: background var(--t-fast);
  font-size: 13px;
  color: var(--ty-text-primary);
}
.radar-toggle:hover { background: var(--ty-raised); }
.radar-toggle__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid;
  flex-shrink: 0;
  transition: background var(--t-fast);
}
.radar-toggle.is-on .radar-toggle__dot { background: currentColor; }
.radar-toggle__name { flex: 1; }
.radar-toggle__score { font-family: var(--mono); font-size: 12px; color: var(--ty-text-tertiary); }
.radar-toggle.is-salter .radar-toggle__name { color: var(--ty-primary-main); font-weight: 500; }

/* ── 12. PORTFOLIO CONTROLS ──────────────────────────────────────── */
.tbl-controls {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.search-input {
  flex: 1; min-width: 220px;
  padding: 9px 14px;
  background: var(--ty-paper);
  box-shadow: var(--outline);
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--ty-text-primary);
  font-size: 13.5px;
  transition: box-shadow var(--t-fast);
}
.search-input:focus { box-shadow: 0 0 0 2px var(--ty-primary-main); outline: 0; }
.search-input::placeholder { color: var(--ty-text-tertiary); }
.filter-chip-group { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-chip {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  background: var(--ty-paper);
  box-shadow: var(--outline);
  border: 0;
  border-radius: var(--radius-pill);
  color: var(--ty-text-secondary);
  transition: all var(--t-fast);
}
.filter-chip:hover { color: var(--ty-text-primary); box-shadow: var(--outline-strong); }
.filter-chip.is-active {
  background: var(--ty-primary-main);
  box-shadow: none;
  color: var(--ty-text-on-violet);
}

/* In-cell mini-bar */
.score-cell {
  display: flex; align-items: center; gap: 10px;
}
.score-cell__num {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  min-width: 28px;
  color: var(--ty-text-primary);
}
.score-cell__bar {
  width: 80px; height: 4px;
  background: var(--ty-divider);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.score-cell__fill {
  height: 100%;
  border-radius: var(--radius-pill);
  transition: width var(--t-slow);
}

/* ── 13. HEATMAP ─────────────────────────────────────────────────── */
.heatmap-wrap {
  background: var(--ty-paper);
  box-shadow: var(--outline);
  border-radius: var(--radius);
  padding: 20px;
  overflow-x: auto;
}
.heatmap {
  display: grid;
  gap: 3px;
  min-width: 1100px;
}
.hm-cell {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  display: grid; place-items: center;
  height: 36px;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast), opacity var(--t-fast);
  position: relative;
  border-radius: 3px;
  color: #fff;
}
.hm-cell:hover {
  transform: scale(1.10);
  z-index: 5;
  box-shadow: var(--elev-4);
}
.hm-cell.is-dim { opacity: 0.20; }
.hm-cell.is-on  { opacity: 1; }
.hm-rowlbl, .hm-collbl {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ty-text-secondary);
  cursor: pointer;
  transition: color var(--t-fast);
  font-weight: 500;
}
.hm-rowlbl {
  display: flex; align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  text-align: right;
}
.hm-collbl {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 12px 0;
  font-size: 10.5px;
  display: flex; align-items: center;
}
.hm-rowlbl:hover, .hm-collbl:hover { color: var(--ty-primary-main); }
.hm-rowlbl.is-on, .hm-collbl.is-on { color: var(--ty-primary-main); font-weight: 600; }
.hm-corner { background: transparent; }

.hm-legend {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 4px;
  padding: 12px 16px;
  margin-top: 14px;
  background: var(--ty-raised);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--ty-text-secondary);
}
.hm-legend__title {
  font-size: 11px; letter-spacing: 0.12em; font-weight: 600;
  text-transform: uppercase;
  color: var(--ty-text-tertiary);
  margin-right: 12px;
}
.hm-legend__item {
  display: inline-flex; align-items: center; gap: 6px;
  margin-right: 14px;
}
.hm-legend__swatch {
  width: 18px; height: 12px;
  border-radius: 2px;
}

/* Heatmap tooltip */
.hm-tip {
  position: fixed; z-index: 200;
  pointer-events: none;
  padding: 12px 14px;
  background: var(--ty-text-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  max-width: 260px;
  box-shadow: var(--elev-4);
  opacity: 0; transition: opacity var(--t-fast);
}
.hm-tip.is-on { opacity: 1; }
.hm-tip__head {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13.5px;
  margin-bottom: 4px;
  color: #fff;
}
.hm-tip__body { color: rgba(255,255,255,0.84); line-height: 1.5; }
.hm-tip__num {
  font-family: var(--mono);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

/* ── 14. BRAND DEEP DIVE ─────────────────────────────────────────── */
.brand-tabs {
  display: flex; gap: 4px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--ty-divider);
  overflow-x: auto;
  scrollbar-width: none;
}
.brand-tabs::-webkit-scrollbar { display: none; }
.brand-tab {
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ty-text-tertiary);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all var(--t-base);
}
.brand-tab:hover { color: var(--ty-text-primary); }
.brand-tab.is-active {
  color: var(--ty-primary-main);
  border-bottom-color: var(--ty-primary-main);
}
.brand-panel { display: none; animation: fade-in 280ms cubic-bezier(.4,0,.2,1) both; }
.brand-panel.is-active { display: block; }
.brand-hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--ty-divider);
  margin-bottom: 32px;
}
.brand-hero__title {
  font-family: var(--sans); font-weight: 300;
  font-size: 36px;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--ty-text-primary);
}
.brand-hero__lede {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ty-text-secondary);
}
.brand-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.brand-stat {
  background: var(--ty-paper);
  box-shadow: var(--outline);
  border-radius: var(--radius);
  padding: 16px;
}
.brand-stat__label {
  font-size: 10.5px; letter-spacing: 0.10em; font-weight: 500;
  text-transform: uppercase;
  color: var(--ty-text-tertiary);
  margin-bottom: 6px;
}
.brand-stat__value {
  font-family: var(--sans); font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ty-text-primary);
}

.brand-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.brand-prop {
  padding: 20px;
  background: var(--ty-paper);
  box-shadow: var(--outline);
  border-radius: var(--radius);
  transition: box-shadow var(--t-base);
  cursor: pointer;
}
.brand-prop:hover { box-shadow: var(--outline), var(--elev-2); }
.brand-prop__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.brand-prop__name {
  font-family: var(--sans); font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: var(--ty-text-primary);
}
.brand-prop__score {
  font-family: var(--sans); font-weight: 400;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.brand-prop__cats { display: flex; flex-direction: column; gap: 8px; }
.brand-prop__cat {
  display: grid;
  grid-template-columns: 88px 1fr 28px;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}
.brand-prop__cat-label {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ty-text-tertiary);
  font-weight: 500;
}
.brand-prop__cat-num {
  font-family: var(--mono);
  text-align: right;
  font-size: 11.5px;
  color: var(--ty-text-primary);
}

/* ── 15. SCATTER ─────────────────────────────────────────────────── */
.scatter-wrap {
  background: var(--ty-paper);
  box-shadow: var(--outline);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.scatter-svg { width: 100%; height: auto; display: block; }
.scatter-grid { stroke: var(--ty-divider); stroke-width: 1; stroke-dasharray: 2 4; }
.scatter-axis { stroke: var(--ty-divider-strong); stroke-width: 1; }
.scatter-axis-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: var(--ty-text-secondary);
}
.scatter-tick {
  font-family: var(--mono);
  font-size: 10.5px;
  fill: var(--ty-text-tertiary);
}
.scatter-ref-line { stroke: var(--ty-primary-main); stroke-width: 1; stroke-dasharray: 4 4; opacity: 0.6; }
.scatter-ref-label {
  font-family: var(--mono);
  font-size: 10.5px;
  fill: var(--ty-primary-main);
  font-weight: 500;
}
.scatter-pt { transition: r 180ms ease; cursor: pointer; }
.scatter-pt:hover { r: 9; }
.scatter-pt-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  fill: var(--ty-text-secondary);
  pointer-events: none;
}

.scatter-legend {
  display: flex; flex-wrap: wrap; gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--ty-divider);
  font-size: 12px;
  color: var(--ty-text-secondary);
}
.scatter-legend__item {
  display: inline-flex; align-items: center; gap: 8px;
}

/* ── 16. SOLUTIONS PRIORITY MATRIX ───────────────────────────────── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.solution-tier {
  background: var(--ty-paper);
  box-shadow: var(--outline);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.solution-tier:nth-child(1) { border-top: 3px solid var(--ty-primary-main); }
.solution-tier:nth-child(2) { border-top: 3px solid var(--ty-brand-deepcyan); }
.solution-tier:nth-child(3) { border-top: 3px solid var(--ty-chart-neutral); }
.solution-tier__head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--ty-divider);
}
.solution-tier__name {
  font-family: var(--mono); font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ty-primary-main);
  text-transform: uppercase;
}
.solution-tier:nth-child(2) .solution-tier__name { color: var(--ty-brand-deepcyan); }
.solution-tier:nth-child(3) .solution-tier__name { color: var(--ty-chart-neutral); }
.solution-tier__sub {
  font-family: var(--sans); font-weight: 400;
  font-size: 22px;
  color: var(--ty-text-primary);
  letter-spacing: -0.015em;
  margin-left: 10px;
  text-transform: none;
}
.solution-tier__count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ty-text-tertiary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.solution-mod {
  padding: 14px 0;
  border-bottom: 1px solid var(--ty-divider);
}
.solution-mod:last-child { border-bottom: none; padding-bottom: 0; }
.solution-mod__name {
  font-family: var(--sans); font-weight: 500;
  font-size: 15.5px;
  margin-bottom: 6px;
  color: var(--ty-text-primary);
}
.solution-mod__name::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px;
  background: var(--ty-primary-main);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 2px;
}
.solution-tier:nth-child(2) .solution-mod__name::before { background: var(--ty-brand-deepcyan); }
.solution-tier:nth-child(3) .solution-mod__name::before { background: var(--ty-chart-neutral); }
.solution-mod__body {
  font-size: 13px; line-height: 1.6;
  color: var(--ty-text-secondary);
  padding-left: 16px;
}
.solution-mod__body strong { color: var(--ty-text-primary); font-weight: 500; }

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px; align-items: center;
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--ty-primary-dark) 0%, var(--ty-primary-main) 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.cta-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/cloud-bg.png') center / cover;
  opacity: 0.15;
  mix-blend-mode: screen;
  pointer-events: none;
}
.cta-panel > * { position: relative; z-index: 2; }
.cta-panel__title {
  font-family: var(--sans); font-weight: 300;
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: -0.02em;
}
.cta-panel__title em { font-style: italic; font-weight: 400; color: var(--ty-brand-aqua); }
.cta-panel__sub {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
}
.cta-panel__btn {
  font-family: var(--sans); font-weight: 500;
  font-size: 15px;
  padding: 12px 24px;
  background: #fff;
  color: var(--ty-primary-dark);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: var(--elev-2);
}
.cta-panel__btn:hover { transform: translateY(-1px); box-shadow: var(--elev-4); }

/* ── 17. MODAL ───────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8, 0, 50, 0.50);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-backdrop.is-open { display: flex; animation: fade-in 200ms cubic-bezier(.4,0,.2,1) both; }
.modal {
  width: 100%;
  max-width: 780px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--ty-paper);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  box-shadow: var(--elev-16);
}
.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 22px;
  color: var(--ty-text-tertiary);
  transition: all var(--t-fast);
  line-height: 0;
}
.modal__close:hover { background: var(--ty-raised); color: var(--ty-text-primary); }
.modal__head { margin-bottom: 28px; padding-right: 48px; }
.modal__brand {
  font-size: 11px; letter-spacing: 0.14em; font-weight: 600;
  text-transform: uppercase;
  color: var(--ty-primary-main);
  margin-bottom: 8px;
}
.modal__name {
  font-family: var(--sans); font-weight: 400;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--ty-text-primary);
}
.modal__meta {
  font-size: 13px;
  color: var(--ty-text-tertiary);
}
.modal__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.modal__stat {
  background: var(--ty-raised);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.modal__stat-label {
  font-size: 10.5px; letter-spacing: 0.10em; font-weight: 500;
  text-transform: uppercase;
  color: var(--ty-text-tertiary);
  margin-bottom: 4px;
}
.modal__stat-val {
  font-family: var(--sans); font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  color: var(--ty-text-primary);
  letter-spacing: -0.015em;
}
.modal__section-title {
  font-size: 11px; letter-spacing: 0.14em; font-weight: 600;
  text-transform: uppercase;
  color: var(--ty-primary-main);
  margin: 22px 0 12px;
}
.modal__cats { display: grid; gap: 10px; }
.modal__cat {
  display: grid;
  grid-template-columns: 110px 1fr 32px;
  align-items: center;
  gap: 12px;
}
.modal__cat-label {
  font-size: 11.5px; letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ty-text-secondary);
  font-weight: 500;
}
.modal__cat-num {
  font-family: var(--mono);
  font-size: 13px;
  text-align: right;
  color: var(--ty-text-primary);
}
.modal__split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 16px;
}
.modal__split-list { list-style: none; }
.modal__split-list li {
  font-size: 13px; line-height: 1.5;
  padding: 6px 0; padding-left: 16px;
  position: relative;
  color: var(--ty-text-secondary);
}
.modal__split-list li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 6px; height: 6px;
  background: var(--ty-primary-main);
  border-radius: 50%;
}
.modal__quote {
  margin-top: 16px;
  padding: 18px 22px;
  background: rgba(104, 71, 245, 0.05);
  border-left: 3px solid var(--ty-primary-main);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--sans);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ty-text-primary);
}

/* ── 18. RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__bg { mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 100%); -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 100%); }
  .radar-wrap { grid-template-columns: 1fr; }
  .brand-hero { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .modal__stats { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .hero__metrics { grid-template-columns: 1fr; }
  .market-row { grid-template-columns: 1fr; gap: 12px; }
  .leader { grid-template-columns: 24px 1fr 60px; }
  .leader__name-sub-bar { display: none; }
  .modal__split { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; padding: 28px; }
  .brand-prop__cat { grid-template-columns: 70px 1fr 26px; }
  .topbar { padding: 12px 20px; gap: 8px; }
  .topbar__meta .live-pill { display: none; }
  .confidential-pill { display: none; }
  .btn-export { font-size: 13px; padding: 7px 14px; }
  .brandmark__sub { display: none; }
}
