/* ============================================================================
   COMPANY PROFILE REDESIGN — "Terminal-grade" overrides (design ref: 1a / 1b)
   ----------------------------------------------------------------------------
   Pure override layer. NO markup changes required — targets the existing
   classes rendered by Views/Company/Index.cshtml, _companyDtlsHeader.cshtml
   and shared partials. Loads AFTER tcc-redesign-overrides.css.

   Scope guarantee: every selector is scoped under the company-profile
   containers (.hero-header, .brand-maincontent, .brandsidebar,
   .brand-rightdata, .about-wrapper). The site header (_UnifiedHeader) and
   footer (_UnifiedFooter) are NOT touched.

   Tokens come from tcc-design-system.css (--ds-*) with hex fallbacks.
   ========================================================================== */

/* ---------------------------------------------------------------- 0. Tokens */
:root {
  --cpr-ink: var(--ds-ink, #191c1e);
  --cpr-ink-soft: var(--ds-ink-soft, #334155);
  --cpr-muted: var(--ds-muted, #64748b);
  --cpr-faint: var(--ds-faint, #94a3b8);
  --cpr-navy: var(--ds-primary, #051c38);
  --cpr-accent: var(--ds-accent, #1d5080);
  --cpr-cta: var(--ds-cta, #ffc107);
  --cpr-border: var(--ds-border, #e2e8f0);
  --cpr-hairline: #eef1f5;
  --cpr-head-bg: #f7f9fa;
  --cpr-pos: #0f7b4d;
  --cpr-pos-bg: #e7f6ee;
  --cpr-pos-border: #bfe8d2;
  --cpr-neg: #b91c1c;
  --cpr-lock: #b28a00;
  --cpr-lock-bg: #fff8e1;
  --cpr-lock-border: #f5e3a3;
  --cpr-radius: 8px;
}

.breadcrumb-brand,
.hero-header,
.brand-maincontent {
  font-family: Inter, var(--ds-font, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

.hero-header,
.brand-maincontent {
  background: #f7f9fb;
}

.breadcrumb-brand {
  border-bottom: 1px solid var(--cpr-border);
  margin-bottom: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.75rem;
}

/* ---------------------------------------------------- 1. Hero (compact, white) */
.hero-header {
  background: var(--ds-surface-card, #ffffff);
  border-top: 0;
  border-bottom: 1px solid var(--cpr-border);
}

.hero-header .hero-inner {
  position: relative;
}

.hero-header .hero-header-flex {
  padding: 20px 430px 0 0;
  gap: 18px;
  align-items: flex-start;
}

.hero-header .company-logo,
.hero-header .profile-img {
  width: 76px;
  height: 76px;
  border-radius: 10px;
  background: var(--ds-surface-page, #f7f9fb);
  border: 1px solid var(--cpr-border);
  flex: 0 0 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-header .company-logo img,
.hero-header .profile-img img {
  max-width: 62px;
  max-height: 62px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hero-header-flex h1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 1.625rem;            /* 26px */
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--cpr-navy);
  line-height: 1.25;
}

.hero-header-flex h1::after {
  content: "";
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  background: var(--cpr-accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zm3.485 5.03L6.94 9.574 4.515 7.15 3.1 8.564l3.84 3.84 5.96-5.96-1.415-1.414z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zm3.485 5.03L6.94 9.574 4.515 7.15 3.1 8.564l3.84 3.84 5.96-5.96-1.415-1.414z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero-header .short-desc {
  display: none;
}

.hero-header .hero-quick {
  display: none;
}

.hero-header .hero-badges,
.hero-header .hero-stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-header .hero-header-title-flex {
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-header .hero-quick {
  min-width: 0;
}

.hero-header .badge,
.hero-header .stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 24px;
  padding: 2px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cpr-ink-soft);
  background: var(--ds-surface-muted, #f2f4f6);
  border: 1px solid var(--cpr-border);
  border-radius: 999px;
  box-shadow: none;
}

.hero-header .badge-active {
  color: var(--cpr-pos);
  background: var(--cpr-pos-bg);
  border-color: var(--cpr-pos-border);
}

.hero-header .badge-listed {
  color: var(--cpr-accent);
  background: #eef4fb;
  border-color: #d5e3f5;
}

.hero-header .badge-neutral {
  color: var(--cpr-ink-soft);
  background: var(--ds-surface-muted, #f2f4f6);
  border-color: var(--cpr-border);
}

.hero-header .badge-warning {
  color: var(--cpr-lock);
  background: var(--cpr-lock-bg);
  border-color: var(--cpr-lock-border);
}

.hero-header .badge-inactive {
  color: var(--cpr-neg);
  background: #fff1f2;
  border-color: #fecdd3;
}

.hero-header-flex h1 a.website {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cpr-accent);
  align-self: center;
  margin-left: 8px;
}

/* Meta chips — dense pills, status = green dot pill */
.hero-header .chips {
  gap: 8px;
  margin-top: 8px;
}

.hero-header .chip {
  padding: 2px 10px;
  font-size: 0.72rem;              /* 11.5px */
  font-weight: 600;
  color: var(--cpr-ink-soft);
  background: var(--ds-surface-muted, #f2f4f6);
  border: 1px solid var(--cpr-border);
  border-radius: 999px;
  line-height: 18px;
}

.hero-header .chip.chip-success {
  font-weight: 700;
  color: var(--cpr-pos);
  background: var(--cpr-pos-bg);
  border-color: var(--cpr-pos-border);
}

.hero-header .chip.chip-warning {
  font-weight: 700;
  color: var(--cpr-lock);
  background: var(--cpr-lock-bg);
  border-color: var(--cpr-lock-border);
}

/* Meta row (CIN · incorporated · ROC · address line) */
.hero-header .company-header-item {
  display: flex;
  column-gap: 22px;
  row-gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.hero-header .company-header-item .hero-badges {
  order: -1;
  flex: 0 0 100%;
}

.hero-header .company-header-item span {
  font-size: 0.78rem;
  color: var(--cpr-ink-soft);
}

.hero-header .company-header-item .cpr-header-meta strong {
  margin-right: 4px;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cpr-muted);
}

.hero-header .company-header-item .cpr-header-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.hero-header .company-header-item span svg {
  width: 13px;
  height: 13px;
  fill: var(--cpr-faint);
  color: var(--cpr-faint);
}

/* Action row: yellow CTA + quiet secondary */
.hero-header .hero-utility {
  border-top: 1px solid var(--cpr-hairline);
  padding: 8px 0;
}

.hero-header .action-buttons {
  position: absolute;
  top: 20px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 360px;
  gap: 8px;
  margin-top: 0;
  padding: 0;
  border-top: 0;
}

.hero-header .action-buttons .left {
  order: 3;
  flex: 0 0 100%;
  font-size: 0.75rem;
  color: var(--cpr-faint);
  text-align: right;
}

.hero-header .action-buttons .left span {
  color: var(--cpr-muted);
}

.hero-header .action-buttons .right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.hero-header .cpr-header-delivery {
  order: 4;
  flex: 0 0 100%;
  margin-top: -2px;
  font-size: 0.69rem;
  color: var(--cpr-faint);
  text-align: right;
}

.hero-header .cpr-sample-report {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: #ffffff;
}

.cpr-kpi-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  margin-top: 18px;
  border: 1px solid var(--cpr-border);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #ffffff;
  overflow: hidden;
}

.cpr-kpi-item {
  min-width: 0;
  min-height: 76px;
  padding: 10px 12px;
  border-right: 1px solid var(--cpr-hairline);
}

.cpr-kpi-item:last-child {
  border-right: 0;
}

.cpr-kpi-label {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 15px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cpr-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cpr-kpi-locked::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background: var(--cpr-lock);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 1a3 3 0 0 1 3 3v3h.5A1.5 1.5 0 0 1 13 8.5v5A1.5 1.5 0 0 1 11.5 15h-7A1.5 1.5 0 0 1 3 13.5v-5A1.5 1.5 0 0 1 4.5 7H5V4a3 3 0 0 1 3-3Zm2 6V4a2 2 0 1 0-4 0v3h4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 1a3 3 0 0 1 3 3v3h.5A1.5 1.5 0 0 1 13 8.5v5A1.5 1.5 0 0 1 11.5 15h-7A1.5 1.5 0 0 1 3 13.5v-5A1.5 1.5 0 0 1 4.5 7H5V4a3 3 0 0 1 3-3Zm2 6V4a2 2 0 1 0-4 0v3h4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.cpr-kpi-value {
  margin-top: 4px;
  font-size: 1rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--cpr-ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cpr-kpi-blur {
  filter: blur(5px);
  user-select: none;
}

.cpr-kpi-change,
.cpr-kpi-note {
  margin-top: 3px;
  font-size: 0.69rem;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cpr-kpi-change.is-up {
  color: var(--cpr-pos);
}

.cpr-kpi-change.is-down {
  color: var(--cpr-neg);
}

.cpr-kpi-note {
  font-weight: 500;
  color: var(--cpr-faint);
}

.cpr-right-metrics-hidden {
  display: none !important;
}

.report-button {
  height: 34px;
  padding: 0 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ds-on-cta, #051c38);
  background: var(--cpr-cta);
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.report-button:hover {
  background: var(--ds-cta-700, #e0a800);
}

.suggestbtn {
  height: 34px;
  padding: 0 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cpr-ink-soft);
  border-color: var(--ds-border-strong, #cbd5e1);
  border-radius: 6px;
}

.hero-header .share-container button {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cpr-border);
  border-radius: 6px !important;
  background: var(--ds-surface-card, #ffffff);
  color: var(--cpr-ink-soft);
}

.hero-header .share-container {
  position: relative;
  top: auto;
  right: auto;
  margin-left: 6px;
  flex: 0 0 auto;
  z-index: 3;
}

.hero-header .share-container dialog#share-options,
.hero-header .share-options-container {
  position: absolute;
  top: 44px;
  left: 0;
  right: auto;
  margin: 0;
  border-radius: var(--cpr-radius) !important;
  width: min(330px, calc(100vw - 32px));
  padding: 8px;
  border: 1px solid var(--cpr-border);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
  overflow: visible;
  z-index: 30;
}

.hero-header .share-container dialog#share-options:not([open]) {
  display: none;
}

.hero-header .share-options-container[open],
.hero-header .share-container dialog#share-options[open] {
  display: block;
}

.hero-header #share-buttons {
  display: grid;
  gap: 4px;
}

.hero-header #share-buttons a,
.hero-header #share-buttons button {
  width: 100%;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 7px 9px;
  border: 0;
  border-radius: 6px !important;
  background: transparent;
  color: var(--cpr-ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}

.hero-header #share-buttons a:hover,
.hero-header #share-buttons button:hover {
  color: var(--cpr-navy);
  background: var(--ds-surface-muted, #f2f4f6);
}

.hero-header.is-sticky .hero-header-flex {
  min-height: 62px;
  padding: 8px 330px 8px 0;
}

.hero-header.is-sticky .action-buttons {
  width: 300px;
  right: 0;
  top: 14px;
  transform: none;
}

.hero-header.is-sticky .share-container {
  display: block !important;
  top: auto;
  right: auto;
  width: auto;
  height: auto;
  margin: 0 0 0 6px;
}

.hero-header.is-sticky .action-buttons .left,
.hero-header.is-sticky .cpr-header-delivery {
  display: none;
}

.hero-header.is-sticky .cpr-header-actions {
  justify-content: flex-end;
}

.hero-header.is-sticky .sample-report-btn,
.hero-header.is-sticky .report-button {
  min-height: 34px;
}

/* ------------------------------------------- 2. Left rail (sticky scroll-spy) */
.brand-maincontent {
  display: grid;
  grid-template-columns: 216px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding-top: 16px;
}

.brandsidebar {
  position: sticky;
  top: 88px;
  z-index: 5;
}

.brandsidebar .sidebar {
  padding: 6px 0;
  border-radius: var(--cpr-radius);
  border: 1px solid var(--cpr-border);
  box-shadow: none;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

/* Hide horizontal-scroll arrows (rail is vertical on desktop) */
@media (min-width: 992px) {
  .brandsidebar .nav-arrow-brand {
    display: none;
  }
}

.brandsidebar .navigation-menu {
  padding: 0;
  margin: 0;
}

.brandsidebar .nav-section-label {
  list-style: none;
  padding: 8px 14px 4px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cpr-faint);
}

.brandsidebar .nav-section-label-sub {
  padding-top: 10px;
}

.brandsidebar .menu-item {
  margin-bottom: 0;
}

.brandsidebar .menu-item > a,
.brandsidebar .menu-item > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cpr-ink-soft);
  border-radius: 0;
  border-left: 3px solid transparent;
  min-height: 32px;
  line-height: 1.25;
}

.brandsidebar .menu-item > button {
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  text-align: left;
}

.brandsidebar .menu-item > button svg {
  flex: 0 0 auto;
}

.brandsidebar .nav-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 18px;
  margin-left: auto;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  color: var(--cpr-muted);
  background: var(--ds-surface-muted, #f2f4f6);
}

.brandsidebar .menu-item > a.active,
.brandsidebar .menu-item > a.has-sub-menu.active {
  margin-bottom: 0;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cpr-navy);
  background: #eef4fb;
  border-left: 3px solid var(--cpr-accent);
  border-radius: 0;
}

/* Locked items (Control & Ownership, Financials, …) — amber lock */
.brandsidebar .menu-item svg {
  width: 12px;
  height: 12px;
  fill: var(--cpr-lock);
}

.brandsidebar .sub-menu {
  margin: 2px 0 4px;
  padding-left: 0;
  max-height: none;
}

.brandsidebar .sub-menu li {
  list-style: none;
  margin-bottom: 0;
}

.brandsidebar .sub-menu li a {
  padding: 5px 14px 5px 24px;
  font-size: 0.75rem;
  color: var(--cpr-ink-soft);
  border-left: 3px solid transparent;
  border-radius: 0;
}

.brandsidebar .sub-menu li a::before {
  display: none;
}

.brandsidebar .sub-menu li a:hover {
  background: var(--ds-surface-muted, #f2f4f6);
  color: var(--cpr-navy);
}

.brandsidebar .sub-menu li a.active {
  background: #eef4fb;
  color: var(--cpr-navy);
  font-weight: 700;
  border-left: 3px solid var(--cpr-accent);
}

/* ------------------------------------------------ 3. Section cards + headers */
.brand-rightdata {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 16px;
  align-items: start;
  min-width: 0;
}

.brand-rightdata > * {
  grid-column: 1;
  min-width: 0;
}

.brand-rightdata table {
  max-width: 100%;
}

.brand-rightdata .brand-card-table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.brand-rightdata .brand-data-table {
  width: 100%;
  border-collapse: collapse;
}

.brand-rightdata .brand-data-table th,
.brand-rightdata .brand-data-table td {
  vertical-align: top;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: break-word;
  line-height: 1.35;
}

.brand-rightdata .brand-data-table a,
.brand-rightdata .company-information {
  overflow-wrap: anywhere;
  word-break: normal;
}

.brand-rightdata #relatedTable {
  table-layout: fixed;
  min-width: 760px;
}

.brand-rightdata #relatedTable th:nth-child(1),
.brand-rightdata #relatedTable td:nth-child(1) {
  width: 30%;
}

.brand-rightdata #relatedTable th:nth-child(2),
.brand-rightdata #relatedTable td:nth-child(2) {
  width: 18%;
}

.brand-rightdata #relatedTable th:nth-child(3),
.brand-rightdata #relatedTable td:nth-child(3) {
  width: 13%;
}

.brand-rightdata #relatedTable th:nth-child(4),
.brand-rightdata #relatedTable td:nth-child(4) {
  width: 16%;
}

.brand-rightdata #relatedTable th:nth-child(5),
.brand-rightdata #relatedTable td:nth-child(5) {
  width: 23%;
}

.brand-rightdata #relatedTable td:last-child a,
.brand-rightdata #relatedTable td:last-child span {
  display: inline;
  line-height: 1.45;
}

.cpr-associated-brands-table {
  table-layout: fixed;
  min-width: 680px;
}

.cpr-associated-brands-table th:nth-child(1),
.cpr-associated-brands-table td:nth-child(1) {
  width: 32%;
}

.cpr-associated-brands-table th:nth-child(2),
.cpr-associated-brands-table td:nth-child(2) {
  width: 46%;
}

.cpr-associated-brands-table th:nth-child(3),
.cpr-associated-brands-table td:nth-child(3) {
  width: 22%;
}

.cpr-history-table {
  table-layout: fixed;
  min-width: 520px;
}

.cpr-history-table th:nth-child(1),
.cpr-history-table td:nth-child(1) {
  width: 72%;
}

.cpr-history-table th:nth-child(2),
.cpr-history-table td:nth-child(2) {
  width: 28%;
}

.cpr-brand-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.cpr-brand-logo {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cpr-border);
  border-radius: 8px;
  background: #fff;
}

.cpr-brand-logo img {
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
}

.cpr-brand-name-stack {
  min-width: 0;
}

.brand-rightdata > .about-wrapper {
  display: contents;
}

.brand-rightdata > .about-wrapper > .card,
.brand-rightdata > .about-wrapper > .company-inner-banner,
.brand-rightdata .company-inner-banner {
  grid-column: 1;
}

.brand-rightdata > .about-wrapper > .about-right {
  grid-column: 2;
  grid-row: 1 / span 30;
}

.brand-rightdata .card,
.brand-rightdata .brand-card,
.brand-rightdata .brand-card-table,
.brand-rightdata .brand-card-box,
.brand-rightdata .company-card-box,
.brand-rightdata .fin-charts-noselect,
.brand-rightdata .fin-chart-svg,
.brand-rightdata .fin-tables-zone,
.brand-rightdata .donut-wrap-flex,
.brand-rightdata .sahreholding-inner,
.brand-rightdata .pct-bar,
.brand-rightdata .pct-fill {
  border: 1px solid var(--cpr-border);
  border-radius: var(--cpr-radius) !important;
  box-shadow: none;
  margin-bottom: 16px;
  overflow: hidden;
  background: #ffffff;
}

.brand-rightdata .card .card-header,
.brand-rightdata .company-card-box .sec-head-top,
.brand-rightdata .brand-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--ds-surface-card, #ffffff);
  border-bottom: 1px solid var(--cpr-border);
}

.brand-rightdata .card .card-header h2,
.brand-rightdata .brand-card-title,
.brand-rightdata .company-card-box .sec-head {
  font-size: 0.78rem;              /* 12.5px */
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cpr-navy);
}

.brand-rightdata .brand-card-title {
  margin: 0;
}

.brand-rightdata .card .card-header h2 .icon {
  width: 20px;
  height: 20px;
  font-size: 0.875rem;
  background: transparent;
  color: var(--cpr-accent);
}

.brand-rightdata .brand-card-padding,
.brand-rightdata .card .card-body {
  padding: 14px 16px;
}

.brand-rightdata .company-inner-banner {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 0 0 16px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid var(--cpr-border);
  border-radius: var(--cpr-radius) !important;
  box-shadow: none;
}

.brand-rightdata .company-inner-banner.cpr-report-banner {
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border-color: #d8e1ea;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.brand-rightdata .company-inner-banner .report-banner-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-rightdata .cpr-report-banner .report-banner-box {
  align-items: center;
  gap: 14px;
  max-width: none;
  overflow: visible;
  box-shadow: none;
}

.brand-rightdata .company-inner-banner img {
  width: 64px;
  height: 72px;
  object-fit: contain;
}

.brand-rightdata .cpr-report-banner img {
  width: 64px;
  height: 78px;
  padding: 6px;
  border: 1px solid var(--cpr-border);
  border-radius: 8px;
  background: #ffffff;
}

/* Report cover — a CSS-built document cover that carries the company name ON it, replacing
   the old raster thumbnail (which read as a broken/ambiguous dark image). No external asset,
   so it can never break. */
.brand-rightdata .cpr-report-banner .report-cover {
  width: 122px;
  height: 168px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #d8e1ea;
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(15, 47, 82, 0.14);
  overflow: hidden;
  position: relative;
}
.brand-rightdata .cpr-report-banner .report-cover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--cpr-lock, #d4a017);
}
.brand-rightdata .cpr-report-banner .report-cover-head {
  background: var(--cpr-navy, #0f2f52);
  padding: 9px 10px 8px 14px;
}
.brand-rightdata .cpr-report-banner .report-cover-tag {
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.94;
}
.brand-rightdata .cpr-report-banner .report-cover-body {
  flex: 1 1 auto;
  padding: 11px 10px 9px 14px;
  display: flex;
  flex-direction: column;
}
.brand-rightdata .cpr-report-banner .report-cover-name {
  font-size: 0.74rem;
  line-height: 1.24;
  font-weight: 800;
  color: var(--cpr-navy, #0f2f52);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.brand-rightdata .cpr-report-banner .report-cover-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
}
.brand-rightdata .cpr-report-banner .report-cover-lines i {
  height: 3px;
  border-radius: 2px;
  background: #e6ebf1;
}
.brand-rightdata .cpr-report-banner .report-cover-lines i:nth-child(2) {
  width: 80%;
}
.brand-rightdata .cpr-report-banner .report-cover-lines i:nth-child(3) {
  width: 56%;
}
.brand-rightdata .cpr-report-banner .report-cover-foot {
  padding: 7px 10px 9px 14px;
  border-top: 1px solid #eef2f6;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-rightdata .cpr-report-banner .report-cover-foot span:first-child {
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--cpr-navy, #0f2f52);
}
.brand-rightdata .cpr-report-banner .report-cover-foot span:last-child {
  font-size: 0.46rem;
  font-weight: 600;
  color: var(--cpr-faint, #94a3b8);
}

.brand-rightdata .company-inner-banner h2,
.brand-rightdata .company-inner-banner p {
  margin: 0;
}

.brand-rightdata .cpr-report-banner .company-nm-text {
  position: static;
  width: auto;
  height: auto;
  display: block;
  padding: 0;
  text-align: left;
  color: var(--cpr-navy);
  min-width: 0;
}

.brand-rightdata .cpr-report-banner .company-nm-text span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cpr-lock);
}

.brand-rightdata .cpr-report-banner .company-nm-text h2 {
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--cpr-navy);
  overflow-wrap: anywhere;
  display: block;
  text-align: left;
  overflow: visible;
  text-overflow: clip;
}

.brand-rightdata .cpr-report-banner .right {
  width: auto;
  position: static;
  min-width: 0;
}

.brand-rightdata .cpr-report-banner .tcc-premium-title {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--cpr-navy);
}

.brand-rightdata .cpr-report-banner .tcc-premium-subtitle {
  margin-top: 6px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--cpr-ink-soft);
}

.cpr-report-banner-points {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.cpr-report-banner-points span {
  padding: 4px 8px;
  border: 1px solid var(--cpr-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--cpr-ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand-rightdata .cpr-report-banner .tcc-premium-actions {
  margin-top: 12px;
}

.brand-rightdata .cpr-report-banner .tcc-premium-btn-primary {
  margin-top: 0;
}

.brand-rightdata .tcc-premium-btn-primary,
.brand-rightdata .cc-lock-btn,
.brand-rightdata .get-report-btn {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--cpr-navy);
  background: var(--cpr-cta);
}

/* Sub-headings inside cards → micro-labels */
.brand-rightdata .brand-sub-title,
.brand-rightdata .about-sub-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cpr-muted);
  border-bottom: 0;
}

/* Body copy density */
.brand-rightdata .about-content,
.brand-rightdata .text-paragraph,
.brand-rightdata .section-desc,
.brand-rightdata .dynamic-intro-content {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--cpr-ink-soft);
  text-wrap: pretty;
}

/* Freshness note in card headers */
.brand-rightdata .card-header .text-muted {
  font-size: 0.72rem;
  color: var(--cpr-faint) !important;
}

/* -------------------------------------------- 4. Details grid (hairline grid) */
.brand-rightdata .detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--cpr-hairline);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 14px;
}

.brand-rightdata .detail-item {
  gap: 2px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--cpr-hairline);
  border-right: 1px solid var(--cpr-hairline);
}

.brand-rightdata .detail-item:nth-child(3n) {
  border-right: 0;
}

.brand-rightdata .detail-item .detail-label {
  font-size: 0.66rem;              /* 10.5px */
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cpr-muted);
}

.brand-rightdata .detail-item .detail-value {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cpr-ink);
  font-variant-numeric: tabular-nums;
}

.brand-rightdata .detail-item.detail-item-full {
  grid-column: 1 / -1;
  border-right: 0;
}

/* -------------------------------------------------- 5. KPI strip (fin-cards) */
.brand-rightdata .group-structure-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
}

.brand-rightdata .fin-card {
  padding: 10px 14px;
  border: 1px solid var(--cpr-border);
  border-radius: var(--cpr-radius);
  background: var(--ds-surface-card, #ffffff);
  box-shadow: none;
}

.brand-rightdata .km-row-column {
  padding: 0 16px 14px;
}

.brand-rightdata .km-row-box {
  border-top: 1px solid var(--cpr-hairline);
  padding: 12px 0;
}

.brand-rightdata .km-row-box:first-child {
  border-top: 0;
}

.brand-rightdata .km-hero,
.brand-rightdata .km-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.brand-rightdata .km-hero-item {
  padding: 8px 0;
  border-bottom: 1px solid var(--cpr-hairline);
}

.brand-rightdata .km-hero-item:last-child {
  border-bottom: 0;
}

.brand-rightdata .kmh-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cpr-muted);
}

.brand-rightdata .kmh-value {
  margin-top: 2px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--cpr-ink);
  font-variant-numeric: tabular-nums;
}

.brand-rightdata .metric-sub {
  display: block;
  margin-top: 2px;
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--cpr-faint);
}

.brand-rightdata .fin-card:hover {
  box-shadow: none;
  border-color: var(--ds-border-strong, #cbd5e1);
}

/* NOTE: in existing markup .fin-value holds the LABEL, .fin-label the NUMBER */
.brand-rightdata .fin-card .fin-value {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cpr-muted);
}

.brand-rightdata .fin-card .fin-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cpr-ink);
  font-variant-numeric: tabular-nums;
  margin-top: 3px;
}

/* Trend deltas */
.brand-rightdata .change {
  font-size: 0.69rem;
  font-weight: 700;
}

.brand-rightdata .change.change-up {
  color: var(--cpr-pos);
}

.brand-rightdata .change.change-down {
  color: var(--cpr-neg);
}

/* ------------------------------------------------------- 6. Tables (dense) */
.brand-rightdata .card table,
.brand-rightdata .brand-card-box table,
.brand-rightdata .fin-table,
.brand-rightdata .data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.brand-rightdata .card table thead th,
.brand-rightdata .brand-card-box table thead th,
.brand-rightdata .fin-table thead th,
.brand-rightdata .data-table thead th {
  padding: 6px 12px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cpr-muted);
  background: var(--cpr-head-bg);
  border-bottom: 1px solid var(--cpr-border);
  white-space: nowrap;
}

.brand-rightdata .card table tbody td,
.brand-rightdata .brand-card-box table tbody td,
.brand-rightdata .fin-table tbody td,
.brand-rightdata .data-table tbody td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--cpr-hairline);
  color: var(--cpr-ink-soft);
  font-variant-numeric: tabular-nums;
  vertical-align: middle;
}

.brand-rightdata .card table tbody tr:hover td,
.brand-rightdata .brand-card-box table tbody tr:hover td,
.brand-rightdata .fin-table tbody tr:hover td,
.brand-rightdata .data-table tbody tr:hover td {
  background: #fbfcfd;
}

.brand-rightdata table a {
  font-weight: 600;
  color: var(--cpr-accent);
  text-decoration: none;
}

/* --------------------------------------------------- 7. Badges, blur, locks */
.brand-rightdata .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 10px;
  font-size: 0.69rem;
  font-weight: 700;
  border-radius: 999px;
  line-height: 18px;
}

.brand-rightdata .status-badge.status-current,
.brand-rightdata .status-badge.status-satisfied {
  color: var(--cpr-pos);
  background: var(--cpr-pos-bg);
  border: 1px solid var(--cpr-pos-border);
}

.brand-rightdata .status-badge.status-open {
  color: var(--cpr-lock);
  background: var(--cpr-lock-bg);
  border: 1px solid var(--cpr-lock-border);
}

/* Paywall teaser blur (existing .kmh-blur + .cl-blur) */
.brand-rightdata .kmh-blur,
.brand-rightdata .cl-blur,
.brand-rightdata .fin-blur,
.brand-rightdata .tcc-blur {
  filter: blur(5px);
  user-select: none;
  color: var(--cpr-ink);
  font-weight: 600;
}

.brand-rightdata .cc-lock-cta,
.brand-rightdata .cc-lock-card,
.brand-rightdata .lock-shareholding-card {
  border: 1px solid #d5e3f5;
  border-radius: 6px;
  background: #f5f9ff;
  box-shadow: none;
}

.brand-rightdata .cc-lock-cta-title,
.brand-rightdata .cc-lock-title {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--cpr-navy);
}

.brand-rightdata .cc-lock-cta-desc,
.brand-rightdata .cc-lock-sub {
  font-size: 0.78rem;
  color: var(--cpr-ink-soft);
}

/* ------------------------------------------------------ 8. Contact details */
.brand-rightdata .contact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--cpr-hairline);
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.brand-rightdata .contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 16px;
  border-bottom: 1px solid var(--cpr-hairline);
  border-right: 1px solid var(--cpr-hairline);
  margin: 0;
}

.brand-rightdata .contact-list li:nth-child(2n) {
  border-right: 0;
}

.brand-rightdata .contact-list .cl-icon {
  color: var(--cpr-faint);
  margin-top: 2px;
}

.brand-rightdata .contact-list .cl-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cpr-muted);
}

/* ----------------------------------------------- 9. Right rail (about-right) */
.about-wrapper .about-right {
  width: 300px;
  border: 1px solid var(--cpr-border);
  border-radius: var(--cpr-radius) !important;
  box-shadow: none;
  position: sticky;
  top: 240px;
  align-self: start;
  overflow: hidden;
  background: #ffffff;
}

.cpr-payment-card {
  padding: 16px;
  border-top: 3px solid var(--cpr-cta);
  border-bottom: 1px solid var(--cpr-border);
}

.cpr-payment-eyebrow {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cpr-lock);
}

.cpr-payment-title {
  margin-top: 4px;
  font-size: 0.94rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--cpr-navy);
}

.cpr-payment-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 14px;
}

.cpr-payment-price span {
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 800;
  color: var(--cpr-navy);
}

.cpr-payment-price small {
  font-size: 0.72rem;
  color: var(--cpr-faint);
}

.cpr-payment-old-price {
  text-decoration: line-through;
}

.cpr-payment-offer {
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 800;
  color: var(--cpr-pos) !important;
  background: var(--cpr-pos-bg);
}

.cpr-payment-button,
.cpr-payment-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 34px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.cpr-payment-button {
  border: 0;
  color: var(--cpr-navy);
  background: var(--cpr-cta);
}

.cpr-payment-secondary {
  margin-top: 8px;
  border: 1px solid var(--cpr-border);
  color: var(--cpr-ink-soft);
  background: #ffffff;
}

.cpr-payment-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.cpr-payment-list li {
  position: relative;
  padding: 4px 0 4px 20px;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--cpr-ink-soft);
}

.cpr-payment-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--cpr-pos);
}

.cpr-payment-secure {
  margin-top: 10px;
  font-size: 0.69rem;
  color: var(--cpr-faint);
  text-align: center;
}

/* ---------------------------------------------------- 9a. Buy report checkout */
.brm-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(8px);
}

.brm-overlay.brm-hidden,
.brm-step.brm-step-hidden {
  display: none !important;
}

.brm-dialog {
  position: relative;
  width: min(980px, 100%);
  max-width: 980px;
  max-height: calc(100vh - 48px);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.26);
  color: var(--cpr-ink);
  font-family: Inter, var(--ds-font, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

.brm-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--cpr-muted);
  background: #ffffff;
  border: 1px solid var(--cpr-border);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.brm-close:hover {
  color: var(--cpr-ink);
  background: #f8fafc;
  border-color: #cbd5e1;
}

.brm-step {
  overflow: auto;
  max-height: calc(100vh - 48px);
}

.brm-header {
  padding: 34px 40px 16px;
  text-align: left;
}

.brm-kicker,
.brm-summary-kicker {
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cpr-accent);
}

.brm-title {
  margin: 0;
  color: var(--cpr-navy);
  font-size: 1.55rem;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}

.brm-subtitle {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--cpr-muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

.brm-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 12px 40px 40px;
}

.brm-option {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--cpr-border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.brm-option:hover {
  border-color: var(--cpr-accent);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
  transform: translateY(-1px);
}

.brm-option-highlight {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 78%);
}

.brm-option-top {
  text-align: left;
}

.brm-option-badge {
  position: static;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  color: var(--cpr-accent);
  background: #eef6ff;
  border: 1px solid #d8eaff;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  transform: none;
}

.brm-badge-premium {
  color: #7c5b00;
  background: var(--cpr-lock-bg);
  border-color: var(--cpr-lock-border);
}

.brm-option-price {
  margin: 16px 0 4px;
  color: var(--cpr-navy);
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 850;
}

.brm-option-label {
  margin: 0;
  color: var(--cpr-muted);
  font-size: 0.84rem;
}

.brm-option-features {
  flex: 1;
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
}

.brm-option-features li {
  position: relative;
  padding: 7px 0 7px 24px;
  color: var(--cpr-ink-soft);
  font-size: 0.86rem;
  line-height: 1.35;
}

.brm-option-features li::before,
.brm-summary-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cpr-pos-bg);
  border: 1px solid var(--cpr-pos-border);
}

.brm-option-features li::after,
.brm-summary-includes li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 14px;
  width: 4px;
  height: 7px;
  border: solid var(--cpr-pos);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.brm-option-action {
  margin-top: 16px;
}

.brm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.brm-btn-primary {
  color: var(--cpr-navy);
  background: var(--cpr-cta);
  border-color: #f2b705;
}

.brm-btn-primary:hover {
  color: var(--cpr-navy);
  background: #ffd34d;
  box-shadow: 0 8px 18px rgba(255, 193, 7, 0.24);
}

.brm-btn-outline {
  color: var(--cpr-accent);
  background: #ffffff;
  border-color: #b9d4ea;
}

.brm-btn-outline:hover {
  background: #f1f7fc;
  border-color: var(--cpr-accent);
}

.brm-btn-full {
  width: 100%;
}

/* --- Step 1 checkout polish: kicker icon, price unit, best-value ribbon, trust row --- */
.brm-header .brm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.brm-price-unit {
  margin-left: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cpr-muted);
}

.brm-option-highlight {
  border-color: var(--cpr-accent);
  box-shadow: 0 12px 32px rgba(29, 80, 128, 0.14);
}

.brm-option-highlight:hover {
  box-shadow: 0 18px 40px rgba(29, 80, 128, 0.2);
}

.brm-ribbon {
  position: absolute;
  top: -1px;
  right: -1px;
  z-index: 2;
  padding: 5px 12px;
  color: #ffffff;
  background: var(--cpr-accent);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0 8px 0 10px;
}

.brm-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 24px;
  padding: 2px 40px 34px;
  color: var(--cpr-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.brm-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.brm-checkout-page {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  min-height: 620px;
}

.brm-checkout-summary {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  background: #f7f9fb;
  border-right: 1px solid var(--cpr-border);
}

.brm-checkout-summary h3 {
  margin: 0;
  color: var(--cpr-navy);
  font-size: 1.5rem;
  line-height: 1.18;
  font-weight: 850;
}

.brm-summary-company {
  margin: -10px 0 0;
  color: var(--cpr-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.brm-summary-price {
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--cpr-border);
  border-radius: 8px;
}

.brm-summary-price span {
  display: block;
  color: var(--cpr-navy);
  font-size: 2rem;
  line-height: 1;
  font-weight: 850;
}

.brm-summary-price small {
  display: block;
  margin-top: 6px;
  color: var(--cpr-muted);
  font-size: 0.78rem;
}

.brm-order-summary {
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--cpr-border);
  border-bottom: 1px solid var(--cpr-border);
  border-radius: 0;
  margin: 0;
}

.brm-order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  color: var(--cpr-ink-soft);
  font-size: 0.88rem;
}

.brm-order-total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px dashed #cbd5e1;
  color: var(--cpr-navy);
  font-size: 1rem;
  font-weight: 850;
}

.brm-summary-includes {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brm-summary-includes li {
  position: relative;
  padding-left: 24px;
  color: var(--cpr-ink-soft);
  font-size: 0.82rem;
  line-height: 1.4;
}

.brm-summary-includes li::before {
  top: 2px;
}

.brm-summary-includes li::after {
  top: 6px;
}

.brm-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.brm-trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 8px;
  color: var(--cpr-muted);
  background: #ffffff;
  border: 1px solid var(--cpr-border);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.brm-billing-panel {
  padding: 32px 36px;
  background: #ffffff;
}

.brm-billing-panel .brm-header {
  padding: 0 42px 22px 0;
}

.brm-billing-panel .brm-title {
  font-size: 1.32rem;
}

.brm-billing-form {
  padding: 0;
}

.brm-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.brm-form-group {
  margin-bottom: 16px;
}

.brm-form-group label {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 7px;
  color: var(--cpr-ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
}

.brm-req {
  color: #dc2626;
}

.brm-optional {
  color: var(--cpr-muted);
  font-weight: 600;
}

.brm-form-group input,
.brm-form-group select {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  color: var(--cpr-ink);
  background: #ffffff;
  border: 1px solid #cfd8e3;
  border-radius: 6px;
  font-size: 0.9rem;
  outline: 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.brm-form-group input::placeholder {
  color: #9aa7b8;
}

.brm-form-group input:focus,
.brm-form-group select:focus {
  border-color: var(--cpr-accent);
  box-shadow: 0 0 0 3px rgba(29, 80, 128, 0.14);
}

.brm-form-group input.brm-input-error {
  border-color: #dc2626;
  background: #fff7f7;
}

.brm-phone-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 10px;
}

#brm-country-code {
  min-width: 0;
}

.brm-field-hint {
  display: block;
  min-height: 16px;
  margin-top: 5px;
  color: var(--cpr-muted);
  font-size: 0.76rem;
}

.brm-field-hint.brm-hint-error {
  color: #dc2626;
}

.brm-field-hint.brm-hint-info {
  color: var(--cpr-accent);
}

.brm-billing-error {
  display: none;
  margin: 0 0 14px;
  padding: 10px 12px;
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  font-size: 0.84rem;
  line-height: 1.35;
}

.brm-billing-error.brm-hidden {
  display: none !important;
}

.brm-btn-submit {
  min-height: 48px;
  font-size: 0.96rem;
}

.brm-btn:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  box-shadow: none;
}

.brm-secured-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 12px 0 0;
  color: var(--cpr-muted);
  font-size: 0.76rem;
  text-align: center;
}

.brm-back {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0;
  color: var(--cpr-accent);
  background: transparent;
  border: 0;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.brm-back:hover {
  text-decoration: underline;
}

.brm-back-inline {
  margin-bottom: 2px;
}

.brm-spinner {
  width: 42px;
  height: 42px;
  border: 3px solid var(--cpr-border);
  border-top-color: var(--cpr-accent);
  border-radius: 50%;
  animation: brm-spin 0.7s linear infinite;
  margin: 0 auto 14px;
}

.brm-header-lg {
  padding: 72px 40px;
  text-align: center;
}

.brm-header-lg .brm-title {
  margin-top: 12px;
}

@keyframes brm-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 860px) {
  .brm-overlay {
    align-items: flex-start;
    padding: 12px;
  }

  .brm-dialog,
  .brm-step {
    max-height: calc(100vh - 24px);
  }

  .brm-options,
  .brm-checkout-page {
    grid-template-columns: 1fr;
  }

  .brm-options {
    padding: 12px 18px 22px;
  }

  .brm-header {
    padding: 24px 18px 10px;
  }

  .brm-option {
    min-height: auto;
    padding: 18px;
  }

  .brm-checkout-page {
    min-height: 0;
  }

  .brm-checkout-summary {
    gap: 12px;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--cpr-border);
  }

  .brm-checkout-summary h3 {
    font-size: 1.24rem;
  }

  .brm-summary-price {
    padding: 12px 14px;
  }

  .brm-summary-price span {
    font-size: 1.52rem;
  }

  .brm-order-summary {
    padding: 8px 0;
  }

  .brm-order-row {
    padding: 4px 0;
    font-size: 0.82rem;
  }

  .brm-summary-includes {
    grid-template-columns: 1fr 1fr;
    gap: 6px 10px;
  }

  .brm-summary-includes li {
    font-size: 0.74rem;
  }

  .brm-billing-panel {
    padding: 22px 18px;
  }

  .brm-billing-panel .brm-header {
    padding-right: 44px;
  }
}

@media (max-width: 560px) {
  .brm-overlay {
    padding: 0;
  }

  .brm-dialog,
  .brm-step {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .brm-close {
    top: 10px;
    right: 10px;
  }

  .brm-title {
    font-size: 1.3rem;
  }

  .brm-form-row,
  .brm-phone-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .brm-summary-price span {
    font-size: 1.72rem;
  }

  .brm-summary-includes {
    grid-template-columns: 1fr;
  }

  .brm-trust-strip span {
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* --------------------------------------------------- 10. FAQ + news density */
.brand-rightdata #faq .card-body,
.brand-rightdata #recentnews .card-body {
  padding-top: 4px;
  padding-bottom: 4px;
}

.brand-rightdata #faq h3,
.brand-rightdata #faq summary {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cpr-ink-soft);
}

/* --------------------------------------------- 11. Anchors under sticky bars */
.brand-rightdata [id] {
  scroll-margin-top: 150px;
}

/* -------------------------------------------------------- 12. Responsive */
@media (max-width: 1199px) {
  .hero-header .hero-header-flex {
    padding-right: 0;
  }

  .hero-header .share-container,
  .hero-header .action-buttons {
    position: static;
  }

  .hero-header .action-buttons {
    width: 100%;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--cpr-hairline);
  }

  .hero-header .share-container {
    margin-left: 6px;
  }

  .hero-header.is-sticky .hero-header-flex {
    padding-right: 0;
  }

  .hero-header.is-sticky .action-buttons {
    width: 100%;
    transform: none;
  }

  .cpr-kpi-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 1px solid var(--cpr-border);
    border-radius: 8px;
  }

  .cpr-kpi-item {
    border-bottom: 1px solid var(--cpr-hairline);
  }

  .cpr-kpi-item:nth-child(4n) {
    border-right: 0;
  }

  .cpr-kpi-item:nth-last-child(-n + 4) {
    border-bottom: 0;
  }

  .brand-maincontent {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .brand-rightdata {
    grid-template-columns: minmax(0, 1fr);
  }

  .brand-rightdata > .about-wrapper > .about-right {
    grid-column: 1;
    grid-row: auto;
  }

  .about-wrapper .about-right {
    position: static;
    width: 100%;
  }

  .brand-rightdata .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-rightdata .company-inner-banner.cpr-report-banner {
    grid-template-columns: minmax(0, 1fr);
  }

  .brand-rightdata .detail-item:nth-child(3n) {
    border-right: 1px solid var(--cpr-hairline);
  }

  .brand-rightdata .detail-item:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 767px) {
  .brandsidebar .sidebar {
    max-height: none;
    overflow-y: visible;
  }

  .breadcrumb-brand {
    overflow-x: auto;
    white-space: nowrap;
  }

  .hero-header .hero-header-flex {
    padding: 14px 0 10px;
    gap: 12px;
  }

  .hero-header .company-logo,
  .hero-header .profile-img {
    width: 52px;
    height: 52px;
    border-radius: 9px;
  }

  .hero-header-flex h1 {
    font-size: 1.0625rem;          /* 17px */
  }

  .hero-header .company-header-item {
    display: flex !important;
    margin-top: 8px;
    column-gap: 10px;
    row-gap: 6px;
  }

  .hero-header .hero-badges {
    display: flex !important;
  }

  .hero-header .share-container {
    display: block !important;
    width: auto;
    margin: 0 0 0 6px;
  }

  .hero-header .action-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-header .action-buttons .left {
    text-align: center;
  }

  .hero-header .action-buttons .right {
    flex-direction: column;
    width: 100%;
  }

  .hero-header .report-button {
    width: 100%;
  }

  .brand-rightdata .cpr-report-banner .report-banner-box {
    align-items: flex-start;
  }

  .brand-rightdata .cpr-report-banner .tcc-premium-actions,
  .brand-rightdata .cpr-report-banner .tcc-premium-btn-primary {
    width: 100%;
  }

  .hero-header .cpr-header-delivery {
    text-align: center;
  }

  .cpr-kpi-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
  }

  .cpr-kpi-item {
    min-height: 68px;
    padding: 9px 10px;
  }

  .cpr-kpi-item:nth-child(2n) {
    border-right: 0;
  }

  .cpr-kpi-item:nth-child(4n) {
    border-right: 0;
  }

  .cpr-kpi-item:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--cpr-hairline);
  }

  .cpr-kpi-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .cpr-kpi-label {
    font-size: 0.62rem;
  }

  .cpr-kpi-value {
    font-size: 0.92rem;
  }

  .brand-maincontent {
    display: block;
    padding-top: 10px;
  }

  .brandsidebar {
    position: sticky;
    top: 64px;
    margin-bottom: 12px;
    overflow: hidden;
  }

  .brandsidebar .navigation-menu,
  .brandsidebar .sub-menu {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .brandsidebar .nav-section-label {
    display: none;
  }

  .brandsidebar .menu-item {
    display: block;
    flex: 0 0 auto;
  }

  .report-button {
    width: 100%;
    justify-content: center;
    height: 40px;
    border-radius: 7px;
  }

  .brand-rightdata .detail-grid,
  .brand-rightdata .contact-list {
    grid-template-columns: 1fr;
  }

  .brand-rightdata .detail-item,
  .brand-rightdata .contact-list li {
    border-right: 0 !important;
  }

  .brand-rightdata .group-structure-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Mobile: rail becomes horizontal chip nav (matches design 1b) */
  .brandsidebar .sidebar {
    padding: 8px;
  }

  .brandsidebar .menu-item > a,
  .brandsidebar .menu-item > button {
    border-left: 0;
    border-radius: 999px;
    padding: 4px 12px;
    white-space: nowrap;
  }

  .brandsidebar .menu-item > a.active,
  .brandsidebar .menu-item > a.has-sub-menu.active {
    border-left: 0;
    border-radius: 999px;
    padding: 4px 12px;
    color: #ffffff;
    background: var(--cpr-navy);
  }
}

/* ------------------------------------------------ Director profile redesign */
.people-profile-main {
  font-family: Inter, var(--ds-font, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  background: #f7f9fb;
}

.people-profile-main .cpr-director-hero {
  position: static;
  background: var(--ds-surface-card, #ffffff);
  border-top: 0;
  border-bottom: 1px solid var(--cpr-border);
  box-shadow: none;
}

.people-profile-main .cpr-director-hero .hero-inner {
  padding-top: 20px;
}

.people-profile-main .cpr-director-hero .hero-header-flex {
  position: relative;
  min-height: 96px;
  padding: 0 430px 0 0;
  gap: 18px;
  align-items: flex-start;
}

.people-profile-main .cpr-director-title-area .hero-header-title-flex {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.people-profile-main .cpr-director-title-area h1 {
  min-width: 0;
  margin: 0;
  color: var(--cpr-navy);
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: anywhere;
}

.people-profile-main .cpr-director-title-area .share-container {
  position: relative;
  top: auto;
  right: auto;
  margin-left: 6px;
}

.people-profile-main .cpr-director-title-area .share-container #shareButton,
.people-profile-main .cpr-director-title-area .share-container button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--cpr-border);
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.92);
  color: var(--cpr-navy);
  box-shadow: none;
}

.people-profile-main .cpr-director-title-area .share-container #shareButton:hover {
  border-color: var(--cpr-border);
  background: var(--ds-surface-muted, #f2f4f6);
}

.people-profile-main .cpr-director-title-area .share-options-container {
  position: absolute;
  top: 44px;
  left: 0;
  right: auto;
  border: 1px solid var(--cpr-border);
  border-radius: var(--cpr-radius) !important;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.16);
}

.people-profile-main .cpr-director-avatar {
  background: #eef4fb;
}

.people-profile-main .cpr-director-avatar img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.people-profile-main .cpr-director-avatar .initial-nm {
  margin: 0;
  color: var(--cpr-accent);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0;
}

.people-profile-main .cpr-director-title-area .short-desc {
  display: block;
  max-width: 780px;
  margin: 8px 0 0;
  color: var(--cpr-ink-soft);
  font-size: 0.84rem;
  line-height: 1.55;
}

.people-profile-main .cpr-director-chips {
  display: flex;
}

.people-profile-main .cpr-director-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
  color: var(--cpr-ink-soft);
  font-size: 0.78rem;
  line-height: 1.4;
}

.people-profile-main .cpr-director-meta-row strong {
  margin-right: 5px;
  color: var(--cpr-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.people-profile-main .cpr-director-actions {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.people-profile-main .cpr-director-actions .report-button,
.people-profile-main .cpr-director-actions .suggestbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.people-profile-main .cpr-director-actions .report-button {
  background: var(--cpr-cta);
  color: var(--cpr-navy) !important;
}

.people-profile-main .cpr-director-actions .report-button:hover {
  background: var(--ds-cta-700, #e0a800);
  color: var(--cpr-navy) !important;
}

.people-profile-main .cpr-director-actions .suggestbtn {
  border: 1px solid var(--cpr-border);
  background: #ffffff;
  color: var(--cpr-ink-soft) !important;
}

.people-profile-main .cpr-director-actions .suggestbtn:hover {
  border-color: var(--cpr-border);
  background: var(--ds-surface-muted, #f2f4f6);
  color: var(--cpr-navy) !important;
}

.people-profile-main .cpr-director-actions span {
  flex: 0 0 100%;
  color: var(--cpr-faint);
  font-size: 0.7rem;
  line-height: 1.25;
  text-align: right;
  white-space: nowrap;
}

.people-profile-main .cpr-director-kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--cpr-border);
  border-radius: 8px;
  margin-top: 18px;
}

.people-profile-main .cpr-director-hero.is-sticky {
  position: sticky;
  top: 0;
  z-index: 980;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.people-profile-main .cpr-director-hero.is-sticky .hero-inner {
  padding-top: 8px;
}

.people-profile-main .cpr-director-hero.is-sticky .hero-header-flex {
  min-height: 54px;
  padding-bottom: 8px;
}

.people-profile-main .cpr-director-hero.is-sticky .cpr-director-avatar {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  border-radius: 8px;
}

.people-profile-main .cpr-director-hero.is-sticky .cpr-director-title-area h1 {
  font-size: 1.12rem;
}

.people-profile-main .cpr-director-hero.is-sticky .cpr-director-chips,
.people-profile-main .cpr-director-hero.is-sticky .cpr-director-meta-row,
.people-profile-main .cpr-director-hero.is-sticky .cpr-director-actions span,
.people-profile-main .cpr-director-hero.is-sticky .cpr-director-kpi-strip {
  display: none;
}

.people-profile-main .cpr-director-hero.is-sticky .cpr-director-actions {
  top: 0;
}

.people-profile-main .cpr-director-linked-pages .brand-rightdata {
  grid-template-columns: minmax(0, 1fr);
}

.people-profile-main .cpr-director-linked-pages .brand-rightdata > * {
  grid-column: 1;
}

.people-profile-main .subsection {
  scroll-margin-top: 340px;
}

.people-profile-main .director-overview-menu,
.people-profile-main .dir-submenu {
  padding: 0;
  margin: 0;
}

.people-profile-main .dir-submenu {
  margin: 2px 0 4px;
}

.people-profile-main .dir-submenu li {
  list-style: none;
}

.people-profile-main .dir-submenu li a {
  display: flex;
  padding: 5px 14px 5px 24px;
  font-size: 0.75rem;
  color: var(--cpr-ink-soft);
  border-left: 3px solid transparent;
}

.people-profile-main .dir-submenu li a:hover,
.people-profile-main .dir-submenu li a.active {
  color: var(--cpr-navy);
  background: #eef4fb;
  border-left-color: var(--cpr-accent);
  text-decoration: none;
}

.people-profile-main .cpr-nav-lock {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: auto;
  flex: 0 0 13px;
  background: #6b7280;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 1C8.68 1 6 3.68 6 7v1c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2V7C18 3.68 15.32 1 12 1zm0 2c2.28 0 4 1.72 4 4v1H8V7c0-2.28 1.72-4 4-4zm0 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 1C8.68 1 6 3.68 6 7v1c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2V7C18 3.68 15.32 1 12 1zm0 2c2.28 0 4 1.72 4 4v1H8V7c0-2.28 1.72-4 4-4zm0 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.people-profile-main .brand-rightdata > .cpr-director-intel {
  grid-column: 2;
  grid-row: 1 / span 30;
  min-width: 0;
}

.cpr-director-intel-card {
  position: sticky;
  top: 88px;
  padding: 16px;
  border: 1px solid var(--cpr-lock-border);
  border-radius: var(--cpr-radius);
  background: #fff8e1;
}

.cpr-director-intel-eyebrow {
  margin-bottom: 8px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cpr-muted);
}

.cpr-director-intel-card h2 {
  margin: 0;
  color: var(--cpr-navy);
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 800;
}

.cpr-director-intel-card p,
.cpr-director-intel-card li {
  color: var(--cpr-ink-soft);
  font-size: 0.8rem;
  line-height: 1.5;
}

.cpr-director-intel-card ul {
  margin: 12px 0;
  padding-left: 0;
  list-style: none;
}

.cpr-director-intel-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--cpr-pos);
  font-weight: 800;
}

.cpr-director-intel-card .tcc-premium-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
}

.people-profile-main .cpr-director-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 8px;
}

.people-profile-main .cpr-director-about-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.people-profile-main .cpr-director-about-grid .detail-item:nth-child(3n) {
  border-right: 1px solid var(--cpr-hairline);
}

.people-profile-main .cpr-director-about-grid .detail-item:nth-child(4n) {
  border-right: 0;
}

.people-profile-main .key-metric-item {
  padding: 10px 12px;
  border: 1px solid var(--cpr-hairline);
  border-radius: 6px;
  background: #fbfcfd;
}

.people-profile-main .key-metrics-flex {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.people-profile-main .key-metrics-flex .key-metric-item span {
  display: block;
  color: var(--cpr-muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.people-profile-main .key-metrics-flex .key-metric-item strong {
  display: block;
  margin-top: 4px;
  color: var(--cpr-navy);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
}

.people-profile-main .metric-label {
  display: block;
  color: var(--cpr-muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.people-profile-main .metric-value {
  display: block;
  margin-top: 3px;
  color: var(--cpr-ink);
  font-size: 1rem;
  font-weight: 800;
}

.cpr-director-company-table {
  min-width: 760px;
  table-layout: fixed;
}

.people-profile-main .brand-card-box {
  border-radius: var(--cpr-radius) !important;
}

.people-profile-main .brand-card-title {
  min-height: 44px;
  padding: 12px 16px !important;
  border-bottom: 1px solid var(--cpr-border);
  background: var(--cpr-head-bg);
  color: var(--cpr-navy);
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.people-profile-main .brand-card-padding {
  padding: 16px !important;
}

.people-profile-main .brand-card-table {
  border: 1px solid var(--cpr-border);
  border-radius: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.people-profile-main .brand-data-table {
  width: 100%;
  border-collapse: collapse;
}

.people-profile-main .brand-data-table th,
.people-profile-main .brand-data-table tr:first-child th {
  height: 34px;
  padding: 9px 12px !important;
  border-bottom: 1px solid var(--cpr-border);
  background: var(--cpr-head-bg) !important;
  color: var(--cpr-muted) !important;
  font-size: 0.66rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-align: left;
  text-transform: uppercase;
  white-space: normal;
}

.people-profile-main .brand-data-table td {
  padding: 11px 12px !important;
  border-bottom: 1px solid var(--cpr-hairline);
  color: var(--cpr-ink-soft);
  font-size: 0.8rem;
  line-height: 1.4;
  vertical-align: middle;
  overflow-wrap: anywhere;
}

.people-profile-main .brand-data-table tr:last-child td {
  border-bottom: 0;
}

.people-profile-main .brand-data-table tr:hover td {
  background: #fbfcfd;
}

.cpr-director-company-table th:nth-child(1),
.cpr-director-company-table td:nth-child(1) {
  width: 38%;
}

.cpr-director-company-table th:nth-child(2),
.cpr-director-company-table td:nth-child(2) {
  width: 18%;
}

.cpr-director-company-table th:nth-child(3),
.cpr-director-company-table td:nth-child(3),
.cpr-director-company-table th:nth-child(4),
.cpr-director-company-table td:nth-child(4) {
  width: 15%;
}

.cpr-director-company-table th:nth-child(5),
.cpr-director-company-table td:nth-child(5) {
  width: 14%;
}

.cpr-director-company-table--past {
  min-width: 860px;
}

.cpr-director-company-table--past th:nth-child(1),
.cpr-director-company-table--past td:nth-child(1) {
  width: 32%;
}

.cpr-director-company-table--past th:nth-child(2),
.cpr-director-company-table--past td:nth-child(2) {
  width: 17%;
}

.cpr-director-company-table--past th:nth-child(3),
.cpr-director-company-table--past td:nth-child(3),
.cpr-director-company-table--past th:nth-child(5),
.cpr-director-company-table--past td:nth-child(5),
.cpr-director-company-table--past th:nth-child(6),
.cpr-director-company-table--past td:nth-child(6) {
  width: 14%;
}

.cpr-director-company-table--past th:nth-child(4),
.cpr-director-company-table--past td:nth-child(4) {
  width: 9%;
}

.cpr-director-company-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.cpr-director-company-logo {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cpr-border);
  border-radius: 8px;
  background: #ffffff;
}

.cpr-director-company-logo img {
  max-width: 30px;
  max-height: 30px;
  object-fit: contain;
}

.people-profile-main .brand-company-name-flex a,
.people-profile-main .cpr-director-company-stack a {
  color: var(--cpr-accent);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.people-profile-main .brand-company-name-flex a:hover,
.people-profile-main .cpr-director-company-stack a:hover {
  color: var(--cpr-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.people-profile-main .home-banner-box {
  margin-top: 20px !important;
  padding: 28px 32px !important;
  border-radius: var(--cpr-radius) !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #08264a 0%, #051c38 100%) !important;
  color: #ffffff;
  overflow: hidden;
}

.people-profile-main .home-banner-box .title {
  color: #ffffff !important;
  font-size: clamp(1.35rem, 2vw, 1.85rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.people-profile-main .home-banner-box p {
  max-width: 760px;
  margin: 10px 0 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.9rem;
  line-height: 1.6;
}

.people-profile-main .home-banner-box .banner-btngroup {
  margin-top: 18px;
}

.people-profile-main .home-banner-box .banner-btngroup a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border-radius: 6px;
  background: var(--cpr-cta);
  color: var(--cpr-navy) !important;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.people-profile-main .home-banner-box .banner-btngroup a:hover {
  background: var(--ds-cta-700, #e0a800);
}

.people-profile-main .home-banner-box .note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
}

.cpr-director-company-stack {
  min-width: 0;
}

.cpr-director-company-stack a,
.cpr-director-company-stack small {
  display: block;
  overflow-wrap: anywhere;
}

.cpr-director-company-stack small {
  margin-top: 2px;
  color: var(--cpr-faint);
  font-size: 0.66rem;
  font-weight: 600;
}

.cpr-director-timeline {
  border: 1px solid var(--cpr-hairline);
  border-radius: 6px;
  overflow: hidden;
}

.cpr-director-timeline-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--cpr-hairline);
}

.cpr-director-timeline-item:last-child {
  border-bottom: 0;
}

.cpr-director-timeline-date {
  color: var(--cpr-muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cpr-director-timeline-item strong,
.cpr-director-timeline-item span {
  display: block;
}

.cpr-director-timeline-item strong {
  color: var(--cpr-ink);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.cpr-director-timeline-item div span {
  margin-top: 2px;
  color: var(--cpr-muted);
  font-size: 0.74rem;
}

.cpr-director-section-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--cpr-accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.cpr-director-share-table {
  min-width: 520px;
  table-layout: fixed;
}

.cpr-director-share-table th:nth-child(1),
.cpr-director-share-table td:nth-child(1) {
  width: 50%;
}

.cpr-director-lock-card {
  padding: 16px;
}

.cpr-director-lock-card .cc-lock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  text-decoration: none;
}

.cpr-director-value-note {
  margin-top: 10px;
  color: var(--cpr-muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.cpr-director-insight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 14px;
  align-items: stretch;
}

.cpr-director-ref-card {
  height: 100%;
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid var(--cpr-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

.cpr-director-ref-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.cpr-director-ref-head h2 {
  margin: 0;
  color: var(--cpr-navy);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-transform: uppercase;
}

.cpr-director-ref-head a {
  flex: 0 0 auto;
  color: var(--cpr-accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.cpr-director-ref-head a:hover {
  text-decoration: underline;
}

.cpr-director-ref-timeline-list {
  display: grid;
  gap: 8px;
  padding: 2px 0 16px;
}

.cpr-director-ref-timeline-row {
  display: flex;
  align-items: center;
  min-height: 28px;
  padding-left: 14px;
  border-left: 3px solid #d8e6f5;
}

.cpr-director-ref-timeline-row span {
  min-width: 0;
  color: var(--cpr-ink);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.cpr-director-ref-timeline-row:nth-child(1) {
  border-left-color: #1d5080;
}

.cpr-director-ref-timeline-row:nth-child(2) {
  border-left-color: #4f86b8;
}

.cpr-director-ref-timeline-row:nth-child(3) {
  border-left-color: #91b7d8;
}

.cpr-director-ref-timeline-row:nth-child(4) {
  border-left-color: #c8d9e9;
}

.cpr-director-ref-axis {
  position: relative;
  padding-top: 14px;
}

.cpr-director-ref-axis-line {
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1d5080 0%, #d7e3ef 100%);
  border-radius: 999px;
}

.cpr-director-ref-axis-line::before,
.cpr-director-ref-axis-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1d5080;
  transform: translateY(-50%);
}

.cpr-director-ref-axis-line::before {
  left: 0;
}

.cpr-director-ref-axis-line::after {
  right: 0;
  background: #d7e3ef;
  border: 1px solid #b7cce0;
}

.cpr-director-ref-axis-years {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--cpr-muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.cpr-director-pro-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 2px 8px;
  color: #7c5b00;
  background: var(--cpr-lock-bg);
  border: 1px solid var(--cpr-lock-border);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
}

.cpr-director-ref-share-table {
  display: grid;
  border: 1px solid var(--cpr-hairline);
  border-radius: 6px;
  overflow: hidden;
}

.cpr-director-ref-share-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(110px, 0.75fr) minmax(82px, 0.45fr);
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--cpr-hairline);
}

.cpr-director-ref-share-row:last-child {
  border-bottom: 0;
}

.cpr-director-ref-share-row span,
.cpr-director-ref-share-row strong,
.cpr-director-ref-share-row em {
  min-width: 0;
  font-size: 0.8rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.cpr-director-ref-share-row span {
  color: var(--cpr-ink);
  font-weight: 750;
}

.cpr-director-ref-share-row strong {
  color: var(--cpr-ink-soft);
  font-weight: 700;
  text-align: right;
}

.cpr-director-ref-share-row em {
  color: var(--cpr-navy);
  font-style: normal;
  font-weight: 850;
  text-align: right;
}

.cpr-director-ref-share-empty {
  padding: 14px;
  color: var(--cpr-ink-soft);
  background: #f8fafc;
  border: 1px solid var(--cpr-hairline);
  border-radius: 6px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.cpr-director-ref-share p {
  margin: 13px 0 12px;
  color: var(--cpr-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.cpr-director-ref-share .cc-lock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  text-decoration: none;
}

.cpr-director-timeline-page .brand-card-padding {
  display: grid;
  gap: 16px;
}

.cpr-timeline-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--cpr-hairline);
  border-radius: 6px;
  overflow: hidden;
}

.cpr-timeline-summary-grid > div {
  min-width: 0;
  padding: 12px 14px;
  border-right: 1px solid var(--cpr-hairline);
  background: #fbfcfd;
}

.cpr-timeline-summary-grid > div:last-child {
  border-right: 0;
}

.cpr-timeline-summary-grid span {
  display: block;
  color: var(--cpr-muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cpr-timeline-summary-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--cpr-ink);
  font-size: 0.96rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.cpr-timeline-preview,
.cpr-chart-panel {
  padding: 16px;
  border: 1px solid var(--cpr-border);
  border-radius: 8px;
  background: #ffffff;
}

.cpr-timeline-preview-list {
  display: grid;
  border: 1px solid var(--cpr-hairline);
  border-radius: 6px;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 360px;
}

.cpr-timeline-preview-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) minmax(78px, auto);
  gap: 10px;
  align-items: center;
  min-height: 50px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--cpr-hairline);
}

.cpr-timeline-preview-row:last-child {
  border-bottom: 0;
}

.cpr-timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c8d9e9;
  box-shadow: 0 0 0 4px #eef4fb;
}

.cpr-timeline-dot.is-current {
  background: var(--cpr-accent);
}

.cpr-timeline-preview-row strong,
.cpr-timeline-preview-row span {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.cpr-timeline-preview-row strong {
  color: var(--cpr-ink);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
}

.cpr-timeline-preview-row strong a {
  color: inherit;
  text-decoration: none;
}

.cpr-timeline-preview-row strong a:hover {
  color: var(--cpr-accent);
  text-decoration: underline;
}

.cpr-timeline-preview-row span {
  margin-top: 2px;
  color: var(--cpr-muted);
  font-size: 0.74rem;
  line-height: 1.35;
}

.cpr-timeline-preview-row em {
  justify-self: end;
  padding: 3px 8px;
  color: var(--cpr-accent);
  background: #eef6ff;
  border: 1px solid #d8eaff;
  border-radius: 999px;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 850;
}

.cpr-chart-panel .chart-container {
  position: relative;
  min-height: 420px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--cpr-hairline);
  border-radius: 6px;
  background: #f8fafc;
}

.cpr-chart-panel .director-timelinegraph {
  width: 100%;
  min-width: 720px;
  max-width: none;
  padding: 10px;
}

.cpr-chart-panel .director-timelinegraph > div,
.cpr-chart-panel .director-timelinegraph svg {
  max-width: 100%;
}

.cpr-chart-panel .loader {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--cpr-muted);
  font-size: 0.84rem;
  font-weight: 800;
}

@media (max-width: 1199px) {
  .people-profile-main .cpr-director-hero .hero-header-flex {
    padding-right: 0;
  }

  .people-profile-main .cpr-director-actions {
    position: static;
    width: 100%;
    justify-content: flex-start;
    margin-top: 12px;
  }

  .people-profile-main .cpr-director-actions span {
    text-align: left;
  }

  .people-profile-main .brand-rightdata > .cpr-director-intel {
    grid-column: 1;
    grid-row: auto;
  }

  .cpr-director-intel-card {
    position: static;
    margin-bottom: 16px;
  }

  .cpr-director-insight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .people-profile-main .cpr-director-kpi-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .people-profile-main .cpr-director-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  .people-profile-main .cpr-director-hero .hero-inner {
    padding-top: 14px;
  }

  .people-profile-main .subsection {
    scroll-margin-top: 520px;
  }

  .people-profile-main .cpr-director-hero .hero-header-flex {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px 12px;
    align-items: start;
    padding-right: 0;
  }

  .people-profile-main .cpr-director-title-area {
    min-width: 0;
  }

  .people-profile-main .cpr-director-title-area .hero-header-title-flex {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px;
  }

  .people-profile-main .cpr-director-title-area h1 {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
    line-height: 1.15;
  }

  .people-profile-main .cpr-director-actions {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    margin-top: 0;
  }

  .people-profile-main .cpr-director-actions span {
    text-align: left;
  }

  .people-profile-main .cpr-director-title-area .short-desc {
    font-size: 0.8rem;
  }

  .people-profile-main .cpr-director-kpi-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .people-profile-main .dir-submenu {
    display: flex;
    gap: 8px;
    overflow-x: auto;
  }

  .people-profile-main .dir-submenu li {
    flex: 0 0 auto;
  }

  .people-profile-main .dir-submenu li a {
    padding: 4px 12px;
    border: 0;
    border-radius: 999px;
    white-space: nowrap;
  }

  .people-profile-main .cpr-director-metrics {
    grid-template-columns: 1fr !important;
  }

  .people-profile-main .cpr-director-about-grid {
    grid-template-columns: 1fr;
  }

  .cpr-director-timeline-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cpr-director-ref-card {
    padding: 16px;
  }

  .cpr-director-ref-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .cpr-director-ref-share-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .cpr-director-ref-share-row strong,
  .cpr-director-ref-share-row em {
    text-align: left;
  }

  .cpr-timeline-summary-grid,
  .cpr-timeline-preview-row {
    grid-template-columns: 1fr;
  }

  .cpr-timeline-preview-row {
    gap: 5px;
  }

  .cpr-timeline-dot {
    display: none;
  }

  .cpr-timeline-preview-row em {
    justify-self: start;
  }
}

/* ------------------------------------------------ Brand profile redesign */
.cpr-brand-hero,
.cpr-brand-profile-main {
  font-family: Inter, var(--ds-font, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

.cpr-brand-hero {
  background: #ffffff;
}

.cpr-brand-hero .hero-inner {
  position: relative;
}

.cpr-brand-hero .hero-header-flex {
  padding: 20px 350px 0 0;
}

.cpr-brand-hero .company-logo {
  width: 76px;
  height: 76px;
  flex-basis: 76px;
}

.cpr-brand-hero .company-logo img {
  max-width: 62px;
  max-height: 62px;
}

.cpr-brand-hero .hero-header-title-flex {
  gap: 10px;
  align-items: center;
}

.cpr-brand-hero .short-desc {
  display: block;
  max-width: 760px;
  margin-top: 8px;
  color: var(--cpr-ink-soft);
  font-size: 0.84rem;
  line-height: 1.55;
}

.cpr-brand-hero .share-container {
  position: static;
  top: auto;
  right: auto;
  margin-left: 4px;
}

.cpr-brand-hero .hero-utility {
  position: absolute;
  top: 20px;
  right: 0;
  width: 320px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-top: 0;
}

.cpr-brand-hero .hero-utility .report-button,
.cpr-brand-hero .hero-utility .suggestbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.cpr-brand-hero .cpr-brand-kpi-strip {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-bottom: 1px solid var(--cpr-border);
  border-radius: 8px;
}

.cpr-brand-hero.is-sticky {
  background: #ffffff;
  border-top: 0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.cpr-brand-hero.is-sticky .hero-inner {
  min-height: 62px;
}

.cpr-brand-hero.is-sticky .hero-header-flex {
  min-height: 62px;
  padding: 8px 190px 8px 0;
}

.cpr-brand-hero.is-sticky .hero-utility {
  top: 50%;
  right: 0;
  width: auto;
  transform: translateY(-50%);
}

.cpr-brand-hero.is-sticky .cpr-brand-kpi-strip {
  display: none;
}

.cpr-brand-hero.is-sticky .company-logo {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
}

.cpr-brand-hero.is-sticky .company-logo img {
  max-width: 38px;
  max-height: 38px;
}

.cpr-brand-hero.is-sticky .report-button {
  min-width: 140px;
}

.cpr-brand-profile-main .brand-maincontent {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  max-width: 1440px;
  margin: 0 auto;
}

.cpr-brand-profile-main .brand-rightdata {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-width: 0;
}

.cpr-brand-profile-main .brand-rightdata > :not(.cpr-brand-intel) {
  grid-column: 1;
  min-width: 0;
}

.cpr-brand-profile-main .brandsidebar .leftnav {
  padding: 6px 0;
  border: 1px solid var(--cpr-border);
  border-radius: var(--cpr-radius);
  background: #ffffff;
}

.cpr-brand-profile-main .brandsidebar .sidebar-title {
  display: none;
}

.cpr-brand-profile-main .brandsidebar .nav {
  display: block;
  margin-left: 0;
}

.cpr-brand-profile-main .brandsidebar .nav-arrow-brand {
  display: none;
}

.cpr-brand-profile-main .brandsidebar .nav-section-label {
  display: block;
  padding: 8px 14px 4px;
  color: var(--cpr-faint);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cpr-brand-profile-main .brandsidebar .scroll-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 32px;
  padding: 7px 14px;
  border-left: 3px solid transparent;
  color: var(--cpr-ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}

.cpr-brand-profile-main .brandsidebar .scroll-link:hover,
.cpr-brand-profile-main .brandsidebar .scroll-link.active {
  color: var(--cpr-navy);
  background: #eef4fb;
  border-left-color: var(--cpr-accent);
}

.cpr-brand-profile-main .brand-rightdata > .cpr-brand-intel {
  position: static;
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
  align-self: start;
}

.cpr-brand-intel-card {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--cpr-lock-border);
  border-radius: var(--cpr-radius);
  background: #fff8e1;
}

.cpr-brand-intel-eyebrow {
  margin-bottom: 8px;
  color: var(--cpr-muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cpr-brand-intel-card h2 {
  margin: 0;
  color: var(--cpr-navy);
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 800;
}

.cpr-brand-intel-card p,
.cpr-brand-intel-card li {
  color: var(--cpr-ink-soft);
  font-size: 0.8rem;
  line-height: 1.5;
}

.cpr-brand-intel-card ul {
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
}

.cpr-brand-intel-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--cpr-pos);
  font-weight: 800;
}

.cpr-brand-intel-card .tcc-premium-btn-primary {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.cpr-brand-profile-main .brand-card-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.cpr-brand-profile-main .key-indicators {
  width: 100%;
  max-width: none;
  flex-shrink: 1;
}

.cpr-brand-profile-main .about-list ul,
.cpr-brand-profile-main .key-indicators-flex {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--cpr-hairline);
  border-radius: 6px;
  overflow: hidden;
}

.cpr-brand-profile-main .about-list li,
.cpr-brand-profile-main .key-indicators-flex > li {
  display: block;
  list-style: none;
  min-width: 0;
  min-height: 72px;
  padding: 10px 12px;
  border-right: 1px solid var(--cpr-hairline);
  border-bottom: 1px solid var(--cpr-hairline);
  background: #ffffff;
}

.cpr-brand-profile-main .about-list li:nth-child(3n) {
  border-right: 0;
}

.cpr-brand-profile-main .key-indicators-flex > li:nth-child(3n) {
  border-right: 1px solid var(--cpr-hairline);
}

.cpr-brand-profile-main .key-indicators-flex > li:nth-child(4n) {
  border-right: 0;
}

.cpr-brand-profile-main .about-list strong,
.cpr-brand-profile-main .key-indicators-flex > li > span {
  display: block;
  width: auto;
  min-width: 0;
  margin-bottom: 4px;
  color: var(--cpr-muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cpr-brand-profile-main .about-list span,
.cpr-brand-profile-main .keymetrics-lists,
.cpr-brand-profile-main .keymetrics-lists strong {
  display: block;
  min-width: 0;
  color: var(--cpr-ink);
  font-size: 0.8rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.cpr-brand-profile-main .about-list .chip-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.cpr-brand-profile-main .about-list .chip-row > span,
.cpr-brand-profile-main .about-list .chip-row button {
  max-width: 100%;
  font-size: 0.72rem;
}

.cpr-brand-profile-main .about-list .sector-dropdownbox {
  left: 0;
  top: calc(100% + 6px);
  max-width: min(260px, 80vw);
}

.cpr-brand-profile-main .operational-areas-item {
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  line-height: 1.45;
}

.cpr-brand-profile-main .operational-areas-item > span {
  min-width: 0;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: anywhere;
}

.cpr-brand-profile-main .product-service-flex,
.cpr-brand-profile-main .people-stats-row,
.cpr-brand-profile-main .profile-content-row {
  display: grid;
  gap: 10px;
}

.cpr-brand-profile-main .product-service-flex {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.cpr-brand-profile-main .product-service-card,
.cpr-brand-profile-main .people-stat-card,
.cpr-brand-profile-main .profile-content-card {
  border: 1px solid var(--cpr-border);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: none;
}

.cpr-brand-profile-main .brand-card-title {
  min-height: 36px;
  padding: 10px 14px;
}

.cpr-brand-profile-main .brand-card-padding {
  padding: 12px 16px 16px;
}

.cpr-brand-profile-main .brand-sub-title {
  margin: 12px 0 10px;
  color: var(--cpr-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cpr-brand-profile-main #people-section .brand-card-padding {
  min-width: 0;
}

.cpr-brand-profile-main #people-section .people-stats-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.cpr-brand-profile-main #people-section .people-stat-card {
  align-items: flex-start;
  min-width: 0;
  min-height: 98px;
  padding: 16px 20px;
}

.cpr-brand-profile-main #people-section .people-stat-label {
  font-size: 13px;
  line-height: 1.35;
  color: var(--cpr-muted);
}

.cpr-brand-profile-main #people-section .people-stat-value {
  margin-top: 6px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
  color: var(--cpr-ink);
}

.cpr-brand-profile-main #people-section .profile-content-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.cpr-brand-profile-main #people-section .profile-content-card {
  width: auto;
  min-width: 0;
  min-height: 320px;
  padding: 18px 20px 66px;
  display: flex;
  flex-direction: column;
}

.cpr-brand-profile-main #people-section .profile-grid-inner {
  min-height: 0;
  flex: 1 1 auto;
  overflow: hidden;
}

.cpr-brand-profile-main #people-section .profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.cpr-brand-profile-main #people-section .people-profile {
  min-width: 0;
  min-height: 64px;
  align-items: flex-start;
  gap: 12px;
}

.cpr-brand-profile-main #people-section .propfile-people-image {
  flex: 0 0 45px;
}

.cpr-brand-profile-main #people-section .propfile-people-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cpr-brand-profile-main #people-section .propfile-people-detail {
  width: auto;
  min-width: 0;
}

.cpr-brand-profile-main #people-section .peoplename,
.cpr-brand-profile-main #people-section .peopleposition {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.cpr-brand-profile-main #people-section .peoplename {
  font-size: 14px;
  font-weight: 600;
  color: var(--cpr-ink);
}

.cpr-brand-profile-main #people-section .peopleposition {
  margin-top: 4px;
  font-size: 13px;
  color: var(--cpr-muted);
}

.cpr-brand-profile-main #people-section .company-lock-bottom {
  min-height: 58px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.cpr-brand-profile-main #people-section .company-lock-bottom p {
  margin: 0;
  text-align: center;
  line-height: 1.45;
}

.cpr-brand-profile-main #people-section .viewmorepeople {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cpr-blue);
  font: inherit;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cpr-brand-profile-main #people-section .teams-wrapper {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
}

.cpr-brand-profile-main #people-section .team-card {
  min-width: 0;
  height: 100%;
  min-height: 98px;
  padding: 14px 16px;
  border-radius: 6px;
  box-shadow: none;
}

.cpr-brand-profile-main #people-section .team-card:hover {
  transform: none;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.cpr-brand-profile-main #people-section .team-info h3,
.cpr-brand-profile-main #people-section .team-info p {
  white-space: normal;
  overflow-wrap: anywhere;
}

.cpr-brand-profile-main #Comparisons .cc-grid {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 14px;
  overflow: visible;
  padding: 16px;
}

.cpr-brand-profile-main #Comparisons .cc-grid > div,
.cpr-brand-profile-main #Comparisons .cc-track {
  min-width: 0;
}

.cpr-brand-profile-main #Comparisons .cc-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  padding: 0;
}

.cpr-brand-profile-main #Comparisons .cc-col,
.cpr-brand-profile-main #Comparisons .cc-col.cc-labels,
.cpr-brand-profile-main #Comparisons .cc-add {
  width: auto;
  min-width: 0;
  flex: none;
  border-radius: 6px;
  box-shadow: none;
}

.cpr-brand-profile-main #Comparisons .cc-col-head {
  min-width: 0;
}

.cpr-brand-profile-main #Comparisons .cc-row {
  min-width: 0;
}

.cpr-brand-profile-main #Comparisons .cc-name,
.cpr-brand-profile-main #Comparisons .cc-val,
.cpr-brand-profile-main #Comparisons .cc-big,
.cpr-brand-profile-main #Comparisons .cc-row strong,
.cpr-brand-profile-main #Comparisons .cc-lock-sub {
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.cpr-brand-profile-main .inv-card {
  min-width: 0;
}

.cpr-brand-profile-main .inv-card .text-truncate,
.cpr-brand-profile-main .inv-card .text-truncate a,
.cpr-brand-profile-main .inv-card .text-truncate p,
.cpr-brand-profile-main #Competitors .brand-data-table a,
.cpr-brand-profile-main #Competitors .brand-data-table td,
.cpr-brand-profile-main #investors .brand-data-table a,
.cpr-brand-profile-main .cc-name strong,
.cpr-brand-profile-main .cc-name span,
.cpr-brand-profile-main .cc-val {
  width: auto;
  max-width: 100%;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: anywhere;
}

.cpr-brand-profile-main .brand-data-table {
  min-width: 0;
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  background: #ffffff;
}

.cpr-brand-profile-main .brand-card-box,
.cpr-brand-profile-main .subsection {
  min-width: 0;
}

.cpr-brand-profile-main .subsection {
  scroll-margin-top: 340px;
}

.cpr-brand-profile-main .brand-card-table {
  overflow-x: auto;
  border: 1px solid var(--cpr-hairline);
  border-radius: 6px;
}

.cpr-brand-profile-main .brand-data-table th,
.cpr-brand-profile-main .brand-data-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--cpr-hairline);
  line-height: 1.35;
  vertical-align: middle;
}

.cpr-brand-profile-main .brand-data-table th {
  height: 28px;
  color: var(--cpr-muted);
  background: #f7f9fa;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: normal;
  word-break: normal;
}

.cpr-brand-profile-main .brand-data-table td {
  color: #334155;
  font-size: 12.5px;
}

.cpr-brand-profile-main .brand-data-table td:first-child,
.cpr-brand-profile-main .brand-data-table td strong,
.cpr-brand-profile-main .brand-data-table a {
  color: #0f4778;
  font-weight: 700;
}

.cpr-brand-profile-main .premium-gated .brand-data-table td,
.cpr-brand-profile-main .premium-gated .brand-data-table th {
  user-select: none;
}

.cpr-brand-profile-main .cc-lock {
  background: rgba(255, 255, 255, 0.58);
}

.cpr-brand-profile-main .cc-lock-card,
.cpr-brand-profile-main .uibox-lock {
  width: min(520px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid #d5e3f5;
  border-radius: 6px;
  background: #f5f9ff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.cpr-brand-profile-main .cc-lock-icn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: var(--cpr-accent);
  background: #eaf2fb;
  border: 1px solid #c6daef;
}

.cpr-brand-profile-main .cc-lock-title,
.cpr-brand-profile-main .uibox-lock h3 {
  margin: 8px 0 8px;
  color: var(--cpr-navy);
  font-size: 13px;
  font-weight: 800;
}

.cpr-brand-profile-main .cc-lock-sub,
.cpr-brand-profile-main .uibox-lock p {
  color: #334155;
  font-size: 12.5px;
  line-height: 1.45;
}

.cpr-brand-profile-main .cc-lock-btn,
.cpr-brand-profile-main .uibox-lock button {
  min-height: 34px;
  padding: 8px 18px;
  border: 0;
  border-radius: 6px;
  background: #ffc107;
  color: var(--cpr-navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 1199px) {
  .cpr-brand-profile-main .brand-rightdata {
    grid-template-columns: minmax(0, 1fr);
  }

  .cpr-brand-profile-main .brand-rightdata > #about {
    grid-row: 1;
  }

  .cpr-brand-profile-main .brand-rightdata > .cpr-brand-intel {
    grid-column: 1;
    grid-row: 2;
    position: static;
  }

  .cpr-brand-intel-card {
    margin-bottom: 16px;
  }
}

@media (max-width: 991px) {
  .cpr-brand-hero.is-sticky {
    position: sticky;
    top: 65px;
  }

  .cpr-brand-hero.is-sticky .hero-header-flex {
    padding-right: 0;
  }

  .cpr-brand-hero .hero-header-flex {
    padding-right: 0;
  }

  .cpr-brand-hero .hero-utility {
    position: static;
    width: 100%;
    justify-content: flex-start;
    margin-top: 12px;
  }

  .cpr-brand-hero .cpr-brand-kpi-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cpr-brand-hero.is-sticky .hero-utility {
    display: none;
  }

  .cpr-brand-profile-main .about-list ul,
  .cpr-brand-profile-main .key-indicators-flex {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cpr-brand-profile-main #people-section .profile-content-row,
  .cpr-brand-profile-main #people-section .teams-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cpr-brand-profile-main #Comparisons .cc-grid {
    grid-template-columns: 1fr;
  }

  .cpr-brand-profile-main #Comparisons .cc-track {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .cpr-brand-hero {
    position: static !important;
    top: auto !important;
  }

  .cpr-brand-hero.is-sticky {
    position: sticky !important;
    top: 65px !important;
  }

  .cpr-brand-profile-main .brand-maincontent {
    margin-top: 0;
  }

  .cpr-brand-profile-main .brandsidebar {
    width: 100%;
    position: sticky;
    top: 130px;
    z-index: 90;
  }

  .cpr-brand-profile-main .brandsidebar .leftnav {
    position: static;
    top: auto;
    left: auto;
    right: auto;
  }

  .cpr-brand-hero .cpr-brand-kpi-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cpr-brand-profile-main .brandsidebar .leftnav {
    padding: 8px;
  }

  .cpr-brand-profile-main .brandsidebar .nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
  }

  .cpr-brand-profile-main .brandsidebar .nav-section-label,
  .cpr-brand-profile-main .brandsidebar .sidebar-title {
    display: none;
  }

  .cpr-brand-profile-main .brandsidebar .scroll-link {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 4px 12px;
    border-left: 0;
    border-radius: 999px;
    white-space: nowrap;
  }

  .cpr-brand-profile-main .brandsidebar .scroll-link.active {
    color: #ffffff;
    background: var(--cpr-navy);
  }

  .cpr-brand-profile-main .about-list ul,
  .cpr-brand-profile-main .key-indicators-flex {
    grid-template-columns: 1fr;
  }

  .cpr-brand-profile-main #people-section .people-stats-row,
  .cpr-brand-profile-main #people-section .profile-content-row,
  .cpr-brand-profile-main #people-section .teams-wrapper,
  .cpr-brand-profile-main #Comparisons .cc-grid,
  .cpr-brand-profile-main #Comparisons .cc-track {
    grid-template-columns: 1fr;
  }

  .cpr-brand-profile-main #people-section .profile-content-card {
    min-height: 0;
  }

  .cpr-brand-profile-main #people-section .profile-grid {
    grid-template-columns: 1fr;
  }

  .cpr-brand-profile-main .subsection {
    scroll-margin-top: 520px;
  }

  .cpr-brand-profile-main .operational-areas-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 16px;
  }

  .cpr-brand-profile-main .operational-areas-item > span {
    display: block;
  }

  .cpr-brand-profile-main .operational-areas-item > span:not(:first-child)::before {
    content: "";
  }
}
